[GraphQL]: informations du service
This commit is contained in:
parent
da431295c3
commit
b5eafdab56
4 changed files with 76 additions and 1 deletions
|
@ -285,6 +285,7 @@ type Demarche {
|
|||
Le numero de la démarche.
|
||||
"""
|
||||
number: Int!
|
||||
service: Service!
|
||||
|
||||
"""
|
||||
L'état de la démarche.
|
||||
|
@ -935,6 +936,13 @@ type SelectionUtilisateur implements GeoArea {
|
|||
source: GeoAreaSource!
|
||||
}
|
||||
|
||||
type Service {
|
||||
id: ID!
|
||||
nom: String!
|
||||
organisme: String!
|
||||
typeOrganisme: TypeOrganisme!
|
||||
}
|
||||
|
||||
type SiretChamp implements Champ {
|
||||
etablissement: PersonneMorale
|
||||
id: ID!
|
||||
|
@ -1102,6 +1110,43 @@ enum TypeDeChamp {
|
|||
yes_no
|
||||
}
|
||||
|
||||
enum TypeOrganisme {
|
||||
"""
|
||||
Administration centrale
|
||||
"""
|
||||
administration_centrale
|
||||
|
||||
"""
|
||||
Association
|
||||
"""
|
||||
association
|
||||
|
||||
"""
|
||||
Autre
|
||||
"""
|
||||
autre
|
||||
|
||||
"""
|
||||
Collectivité territoriale
|
||||
"""
|
||||
collectivite_territoriale
|
||||
|
||||
"""
|
||||
Établissement d’enseignement
|
||||
"""
|
||||
etablissement_enseignement
|
||||
|
||||
"""
|
||||
Opérateur d'État
|
||||
"""
|
||||
operateur_d_etat
|
||||
|
||||
"""
|
||||
Service déconcentré de l'État
|
||||
"""
|
||||
service_deconcentre_de_l_etat
|
||||
}
|
||||
|
||||
"""
|
||||
A valid URL, transported as a string
|
||||
"""
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue