Add titre identite champ to GraphQL
This commit is contained in:
parent
302aee0912
commit
09128cb85e
5 changed files with 48 additions and 0 deletions
|
@ -1197,6 +1197,33 @@ type TextChamp implements Champ {
|
|||
value: String
|
||||
}
|
||||
|
||||
type TitreIdentiteChamp implements Champ {
|
||||
grantType: TitreIdentiteGrantType!
|
||||
id: ID!
|
||||
|
||||
"""
|
||||
Libellé du champ.
|
||||
"""
|
||||
label: String!
|
||||
|
||||
"""
|
||||
La valeur du champ sous forme texte.
|
||||
"""
|
||||
stringValue: String
|
||||
}
|
||||
|
||||
enum TitreIdentiteGrantType {
|
||||
"""
|
||||
Françe Connect
|
||||
"""
|
||||
france_connect
|
||||
|
||||
"""
|
||||
Pièce justificative
|
||||
"""
|
||||
piece_justificative
|
||||
}
|
||||
|
||||
enum TypeDeChamp {
|
||||
"""
|
||||
Adresse
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue