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.
  • dossiers(
  • after: String,
  • before: String,
  • first: Int,
  • last: Int,
  • order: Order,
  • createdSince: ISO8601DateTime,
  • updatedSince: ISO8601DateTime,
  • state: DossierState
  • ): DossierConnection!
  • id: ID!
  • instructeurs: [Profile!]!
  • label: String!
  • # Le numero du groupe instructeur.
  • number: Int!
  • }

link Require by