materio_extension.extension.graphqls 806 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  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], lang: String): [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. }
  31. extend type Query {
  32. product(id: Int!): Product
  33. }
  34. extend type Query {
  35. products(ids: [Int]): [Product]
  36. }
  37. # extend type Query {
  38. # variation(id: Int!): Variation
  39. # }
  40. #
  41. # extend type Query {
  42. # variations(id: [Int]): Variation
  43. # }