materio_extension.extension.graphqls 437 B

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