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
|
|
|
|
|
|
|
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
|
|
|
|
}
|