2020-12-24 17:11:51 +01:00
|
|
|
extend type Query {
|
|
|
|
route(path: String!): NodeInterface
|
|
|
|
}
|
|
|
|
|
2020-12-09 22:55:16 +01:00
|
|
|
extend type Query {
|
|
|
|
materiau(id: Int!): Materiau
|
|
|
|
}
|
|
|
|
|
2020-12-23 18:05:25 +01:00
|
|
|
extend type Query {
|
|
|
|
materiaux(ids: [Int]): [Materiau]
|
|
|
|
}
|
|
|
|
|
2020-12-24 14:50:13 +01:00
|
|
|
extend type Query {
|
|
|
|
searchresults(ids: [Int]): [SearchResult]
|
|
|
|
}
|
|
|
|
|
2020-12-10 22:46:27 +01:00
|
|
|
extend type Query {
|
|
|
|
article(id: Int!): Article
|
2020-12-09 22:55:16 +01:00
|
|
|
}
|
2020-12-16 16:53:07 +01:00
|
|
|
|
2020-12-25 17:37:15 +01:00
|
|
|
extend type Query {
|
|
|
|
thematique(id: Int!): Thematique
|
|
|
|
}
|
|
|
|
|
2020-12-16 16:53:07 +01:00
|
|
|
extend type Query {
|
|
|
|
showroom(id: Int!): Showroom
|
|
|
|
}
|
|
|
|
|
|
|
|
extend type Query {
|
|
|
|
tag(id: Int!): Tag
|
|
|
|
}
|
|
|
|
|
|
|
|
extend type Query {
|
|
|
|
thesaurus(id: Int!): Thesaurus
|
|
|
|
}
|
2020-12-22 18:17:02 +01:00
|
|
|
|
|
|
|
extend type Query {
|
|
|
|
company(id: Int!): Company
|
|
|
|
}
|
2021-01-04 21:44:13 +01:00
|
|
|
|
|
|
|
extend type Query {
|
|
|
|
product(id: Int!): Product
|
|
|
|
}
|
|
|
|
|
|
|
|
extend type Query {
|
|
|
|
products(ids: [Int]): [Product]
|
|
|
|
}
|
|
|
|
|
|
|
|
# extend type Query {
|
|
|
|
# variation(id: Int!): Variation
|
|
|
|
# }
|
|
|
|
#
|
|
|
|
# extend type Query {
|
|
|
|
# variations(id: [Int]): Variation
|
|
|
|
# }
|