# extend type Query { # route(path: String!): NodeInterface # } extend type Query { allmapitems: [MapItemInterface] } extend type Query { mapitems(ids: [Int]): [MapItemInterface] } extend type Query { mapitem(id: Int!): MapItemInterface } extend type Query { allmapitemsof(familyId: Int!): [MapItemInterface] } extend type Query { texts: [TextInterface] } extend type Query { texte(id: Int!): TextInterface } extend type Query { textsdepart: [Textref] } extend type Query { textref(id: Int!): Textref } extend type Query { textsref(ids: [Int]): [Textref] } extend type Query { textprod(id: Int!): Textprod } extend type Query { textsprod(ids: [Int]): [Textprod] } extend type Query { allcreations: [Creation] } extend type Query { creations(ids: [Int]): [Creation] } extend type Query { creation(id: Int!): Creation } extend type Query { allstatics: [Static] } extend type Query { burgerstatics: [Static] } extend type Query { statics(ids: [Int]): [Static] } extend type Query { static(id: Int!): Static } extend type Query { famille(id: Int!): Taxoterm } extend type Query { alltags: [Taxoterm] } # extend type Query { # famillytags(famillyid: Int!): [Taxoterm] # } extend type Query { tag(id: Int!): Taxoterm } extend type Query { tagprod(id: Int!): Taxoterm } extend type Query { auteur(id: Int!): Auteur } extend type Query { allauteurs: [Auteur] }