schema.graphqls 448 B

1234567891011121314151617181920
  1. # Copyright © Magento, Inc. All rights reserved.
  2. # See COPYING.txt for license details.
  3. type Query {
  4. testItem(id: Int!) : Item @resolver(class: "Magento\\TestModuleGraphQlQuery\\Model\\Resolver\\Item")
  5. }
  6. type Mutation {
  7. testItem(id: Int!) : MutationItem @resolver(class: "Magento\\TestModuleGraphQlQuery\\Model\\Resolver\\Item")
  8. }
  9. type Item {
  10. item_id: Int
  11. name: String
  12. }
  13. type MutationItem {
  14. item_id: Int
  15. name: String
  16. }