materio_extension.extension.graphqls 960 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. extend type Query {
  2. route(path: String!, lang: String): NodeInterface
  3. }
  4. extend type Query {
  5. materiau(id: Int!, lang: String): Materiau
  6. }
  7. extend type Query {
  8. materiaux(ids: [Int], lang: String): [Materiau]
  9. }
  10. extend type Query {
  11. searchresults(ids: [Int], lang: String): [SearchResult]
  12. }
  13. extend type Query {
  14. article(id: Int!, lang: String): Article
  15. }
  16. extend type Query {
  17. thematique(id: Int!, lang: String): Thematique
  18. }
  19. extend type Query {
  20. showroom(id: Int!, lang: String): Showroom
  21. }
  22. extend type Query {
  23. tag(id: Int!, lang: String): Tag
  24. }
  25. extend type Query {
  26. thesaurus(id: Int!, lang: String): Thesaurus
  27. }
  28. extend type Query {
  29. company(id: Int!, lang: String): Company
  30. }
  31. extend type Query {
  32. product(id: Int!, lang: String): Product
  33. }
  34. extend type Query {
  35. products(ids: [Int], lang: String): [Product]
  36. }
  37. # extend type Query {
  38. # variation(id: Int!): Variation
  39. # }
  40. #
  41. # extend type Query {
  42. # variations(id: [Int]): Variation
  43. # }