materio_extension.extension.graphqls 556 B

123456789101112131415161718192021222324252627282930313233343536373839
  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. thematique(id: Int!): Thematique
  18. }
  19. extend type Query {
  20. showroom(id: Int!): Showroom
  21. }
  22. extend type Query {
  23. tag(id: Int!): Tag
  24. }
  25. extend type Query {
  26. thesaurus(id: Int!): Thesaurus
  27. }
  28. extend type Query {
  29. company(id: Int!): Company
  30. }