[GraphQL] allow to query dossiers by groupe instructeur
This commit is contained in:
parent
7e806f191c
commit
32f783142c
6 changed files with 149 additions and 0 deletions
|
@ -745,6 +745,69 @@ type GroupeInstructeur {
|
|||
id: ID!
|
||||
instructeurs: [Profile!]!
|
||||
label: String!
|
||||
|
||||
"""
|
||||
Le numero du groupe instructeur.
|
||||
"""
|
||||
number: Int!
|
||||
}
|
||||
|
||||
"""
|
||||
Un groupe instructeur avec ces dossiers
|
||||
"""
|
||||
type GroupeInstructeurWithDossiers {
|
||||
"""
|
||||
Liste de tous les dossiers d'une démarche.
|
||||
"""
|
||||
dossiers(
|
||||
"""
|
||||
Returns the elements in the list that come after the specified cursor.
|
||||
"""
|
||||
after: String
|
||||
|
||||
"""
|
||||
Returns the elements in the list that come before the specified cursor.
|
||||
"""
|
||||
before: String
|
||||
|
||||
"""
|
||||
Dossiers déposés depuis la date.
|
||||
"""
|
||||
createdSince: ISO8601DateTime
|
||||
|
||||
"""
|
||||
Returns the first _n_ elements from the list.
|
||||
"""
|
||||
first: Int
|
||||
|
||||
"""
|
||||
Returns the last _n_ elements from the list.
|
||||
"""
|
||||
last: Int
|
||||
|
||||
"""
|
||||
L'ordre des dossiers.
|
||||
"""
|
||||
order: Order = ASC
|
||||
|
||||
"""
|
||||
Dossiers avec statut.
|
||||
"""
|
||||
state: DossierState
|
||||
|
||||
"""
|
||||
Dossiers mis à jour depuis la date.
|
||||
"""
|
||||
updatedSince: ISO8601DateTime
|
||||
): DossierConnection!
|
||||
id: ID!
|
||||
instructeurs: [Profile!]!
|
||||
label: String!
|
||||
|
||||
"""
|
||||
Le numero du groupe instructeur.
|
||||
"""
|
||||
number: Int!
|
||||
}
|
||||
|
||||
"""
|
||||
|
@ -975,6 +1038,16 @@ type Query {
|
|||
"""
|
||||
number: Int!
|
||||
): Dossier!
|
||||
|
||||
"""
|
||||
Informations sur un groupe instructeur.
|
||||
"""
|
||||
groupeInstructeur(
|
||||
"""
|
||||
Numéro du groupe instructeur.
|
||||
"""
|
||||
number: Int!
|
||||
): GroupeInstructeurWithDossiers!
|
||||
}
|
||||
|
||||
type RepetitionChamp implements Champ {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue