materio_extension.extension.graphqls 498 B

1234567891011121314151617181920212223242526272829303132333435
  1. extend type Query {
  2. route(path: String!): NodeInterface
  3. }
  4. extend type Query {
  5. materiau(id: Int!): Materiau
  6. }
  7. extend type Query {
  8. materiaux(ids: [Int]): [Materiau]
  9. }
  10. extend type Query {
  11. searchresults(ids: [Int]): [SearchResult]
  12. }
  13. extend type Query {
  14. article(id: Int!): Article
  15. }
  16. extend type Query {
  17. showroom(id: Int!): Showroom
  18. }
  19. extend type Query {
  20. tag(id: Int!): Tag
  21. }
  22. extend type Query {
  23. thesaurus(id: Int!): Thesaurus
  24. }
  25. extend type Query {
  26. company(id: Int!): Company
  27. }