##Available queries
| Associated query | Returns multiple results |
|---|---|
| PaymentInformation | |
| PaymentInformations | ✔️ |
##Available fields
| Label | Type | Notes | Null |
|---|---|---|---|
| default_pi | boolean | Indicates if this is the default payment information | ✔️ |
| id | integer | The payment information's id | |
| label | string | The payment information's label | |
| payment_information | string | The payment information | ✔️ |
##Example of a query
query{
PaymentInformations{
edges{
node{
default_pi
id
label
payment_information
}
}
}
}