maj du schema json
This commit is contained in:
parent
412a87e532
commit
7ba8ab9e6a
2 changed files with 8 additions and 4 deletions
|
@ -713,8 +713,12 @@ type Effectif {
|
|||
type Entreprise {
|
||||
attestationFiscaleAttachment: File
|
||||
attestationSocialeAttachment: File
|
||||
|
||||
"""
|
||||
capital social de l’entreprise. -1 si inconnu.
|
||||
"""
|
||||
capitalSocial: BigInt!
|
||||
codeEffectifEntreprise: String!
|
||||
codeEffectifEntreprise: String
|
||||
dateCreation: ISO8601Date!
|
||||
|
||||
"""
|
||||
|
@ -1011,10 +1015,10 @@ type PersonneMorale implements Demandeur {
|
|||
localite: String!
|
||||
naf: String!
|
||||
nomVoie: String!
|
||||
numeroVoie: String!
|
||||
numeroVoie: String
|
||||
siegeSocial: Boolean!
|
||||
siret: String!
|
||||
typeVoie: String!
|
||||
typeVoie: String
|
||||
}
|
||||
|
||||
type PersonnePhysique implements Demandeur {
|
||||
|
|
|
@ -461,7 +461,7 @@ describe API::V2::GraphqlController do
|
|||
siren: dossier.etablissement.entreprise_siren,
|
||||
dateCreation: dossier.etablissement.entreprise_date_creation.iso8601,
|
||||
capitalSocial: '-1',
|
||||
codeEffectifEntreprise: ''
|
||||
codeEffectifEntreprise: nil
|
||||
}
|
||||
}
|
||||
})
|
||||
|
|
Loading…
Reference in a new issue