123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384 |
- # extend type Query {
- # route(path: String!): NodeInterface
- # }
- extend type Query {
- allconcernements: [Concernement]
- }
- extend type Query {
- concernements(ids: [Int]): [Concernement]
- }
- extend type Query {
- concernement(id: Int!): Concernement
- }
- extend type Query {
- allentites: [Entite]
- }
- extend type Query {
- entites(ids: [Int]): [Entite]
- }
- extend type Query {
- entite(id: Int!): Entite
- }
- extend type Query {
- allstatics: [Static]
- }
- extend type Query {
- statics(ids: [Int]): [Static]
- }
- extend type Query {
- static(id: Int!): Static
- }
- extend type Query {
- allbesoins: [Besoin]
- }
- extend type Query {
- besoins(ids: [Int]): [Besoin]
- }
- extend type Query {
- besoin(id: Int!): Besoin
- }
- extend type Query {
- allreponses: [Reponse]
- }
- extend type Query {
- reponses(ids: [Int]): [Reponse]
- }
- extend type Query {
- reponse(id: Int!): Reponse
- }
- extend type Query {
- user(id: Int!): User
- }
- extend type Query {
- allgroups: [Group]
- }
- extend type Query {
- groups(ids: [Int]): [Group]
- }
- extend type Query {
- group(id: Int!): Group
- }
- extend type Query {
- entitydef(type: String, bundle: String): EntityDefinition
- }
|