# 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 { # alltags: [Taxoterm] # } # extend type Query { # tag(id: Int!): Taxoterm # }