feat(graphql): add pays champ to API
This commit is contained in:
parent
5a7ddd52d2
commit
072156d38e
6 changed files with 53 additions and 6 deletions
|
@ -2017,6 +2017,26 @@ type ParcelleCadastrale implements GeoArea {
|
|||
surfaceParcelle: Float! @deprecated(reason: "Utilisez le champ `surface` à la place.")
|
||||
}
|
||||
|
||||
type Pays {
|
||||
code: String!
|
||||
name: String!
|
||||
}
|
||||
|
||||
type PaysChamp implements Champ {
|
||||
id: ID!
|
||||
|
||||
"""
|
||||
Libellé du champ.
|
||||
"""
|
||||
label: String!
|
||||
pays: Pays
|
||||
|
||||
"""
|
||||
La valeur du champ sous forme texte.
|
||||
"""
|
||||
stringValue: String
|
||||
}
|
||||
|
||||
type PersonneMorale implements Demandeur {
|
||||
address: Address!
|
||||
adresse: String! @deprecated(reason: "Utilisez le champ `address.label` à la place.")
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue