OBJECT
GroupeInstructeurWithDossiers
Un groupe instructeur avec ces dossiers
link GraphQL Schema definition
- type GroupeInstructeurWithDossiers {
- # Liste de tous les dossiers d’une démarche.
- #
- # Arguments
- # after: Returns the elements in the list that come after the
- # specified cursor.
- # before: Returns the elements in the list that come before the
- # specified cursor.
- # first: Returns the first _n_ elements from the list.
- # last: Returns the last _n_ elements from the list.
- # order: L’ordre des dossiers.
- # createdSince: Dossiers déposés depuis la date.
- # updatedSince: Dossiers mis à jour depuis la date.
- # state: Dossiers avec statut.
- (
- : String,
- : String,
- : Int,
- : Int,
- : Order,
- : ISO8601DateTime,
- : ISO8601DateTime,
- : DossierState
- ): DossierConnection!
- : ID!
- : [Profile!]!
- : String!
- # Le numero du groupe instructeur.
- : Int!
- }