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 {
|
type Entreprise {
|
||||||
attestationFiscaleAttachment: File
|
attestationFiscaleAttachment: File
|
||||||
attestationSocialeAttachment: File
|
attestationSocialeAttachment: File
|
||||||
|
|
||||||
|
"""
|
||||||
|
capital social de l’entreprise. -1 si inconnu.
|
||||||
|
"""
|
||||||
capitalSocial: BigInt!
|
capitalSocial: BigInt!
|
||||||
codeEffectifEntreprise: String!
|
codeEffectifEntreprise: String
|
||||||
dateCreation: ISO8601Date!
|
dateCreation: ISO8601Date!
|
||||||
|
|
||||||
"""
|
"""
|
||||||
|
@ -1011,10 +1015,10 @@ type PersonneMorale implements Demandeur {
|
||||||
localite: String!
|
localite: String!
|
||||||
naf: String!
|
naf: String!
|
||||||
nomVoie: String!
|
nomVoie: String!
|
||||||
numeroVoie: String!
|
numeroVoie: String
|
||||||
siegeSocial: Boolean!
|
siegeSocial: Boolean!
|
||||||
siret: String!
|
siret: String!
|
||||||
typeVoie: String!
|
typeVoie: String
|
||||||
}
|
}
|
||||||
|
|
||||||
type PersonnePhysique implements Demandeur {
|
type PersonnePhysique implements Demandeur {
|
||||||
|
|
|
@ -461,7 +461,7 @@ describe API::V2::GraphqlController do
|
||||||
siren: dossier.etablissement.entreprise_siren,
|
siren: dossier.etablissement.entreprise_siren,
|
||||||
dateCreation: dossier.etablissement.entreprise_date_creation.iso8601,
|
dateCreation: dossier.etablissement.entreprise_date_creation.iso8601,
|
||||||
capitalSocial: '-1',
|
capitalSocial: '-1',
|
||||||
codeEffectifEntreprise: ''
|
codeEffectifEntreprise: nil
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
|
Loading…
Reference in a new issue