add effectif mensuel to graphql api

This commit is contained in:
Christophe Robillard 2020-04-21 15:52:08 +02:00
parent 1165f8483d
commit 149b98007f
7 changed files with 46 additions and 1 deletions

View file

@ -686,10 +686,24 @@ enum DossierState {
sans_suite
}
type Effectif {
"""
Année de l'effectif mensuel
"""
annee: String!
"""
Mois de l'effectif mensuel
"""
mois: String!
nb: Float!
}
type Entreprise {
capitalSocial: BigInt!
codeEffectifEntreprise: String!
dateCreation: ISO8601Date!
effectifs: [Effectif!]!
formeJuridique: String!
formeJuridiqueCode: String!
inlineAdresse: String!