Account
version : 0.0.0
stability : stable
Objects
Account
Fields
| Name | Type | Description |
|---|---|---|
| address | String | The account's address. |
| country | String | The account's country according to the ISO 3166-1 alpha 3 code. |
| description | String | The account's description. |
| String | The account's email. | |
| id | ID! | The account's identifier. |
| login | String! | The account's login name. |
| name | String! | The account's public profile name. |
| phone | String | The account's phone. |
| plan | Plan | The account's plan. |
| organization | Organization | The account's organization. |
| vat | String | The account's vat. |
| notificationTimestamps | String | The timestamps when notifications were sent. |
| beta | Boolean | Account with access to beta features. |
| user | User | Find an user by its login that belongs to the account. |
AccountEdge
Fields
| Name | Type | Description |
|---|---|---|
| cursor | ID! | - |
| node | Account | - |
PageInfo
Information about type pagination in a connection. Fields
| Name | Type | Description |
|---|---|---|
| startCursor | ID | When paginating backwards, the cursor to continue. |
| endCursor | ID | When paginating forwards, the cursor to continue. |
| hasNextPage | Boolean! | When paginating forwards, are there more items? |
| hasPreviousPage | Boolean! | When paginating backwards, are there more items? |
AccountConnection
Fields
| Name | Type | Description |
|---|---|---|
| edges | [AccountEdge]! | - |
| nodes | [Account]! | - |
| pageInfo | PageInfo! | - |
Queries
account
Returns: Account
Arguments
| Name | Type | Description |
|---|---|---|
| login | String! | - |
accounts
Returns: AccountConnection
Arguments
| Name | Type | Description |
|---|---|---|
| first | Int! | - |
| after | String | - |
Mutations
createAccount
Returns: Account
Arguments
| Name | Type | Description |
|---|---|---|
| input | CreateAccountMutationInput! | - |
updateAccount
Returns: Account
Arguments
| Name | Type | Description |
|---|---|---|
| input | UpdateAccountMutationInput! | - |
deleteAccount
Returns: Account
Arguments
| Name | Type | Description |
|---|---|---|
| input | DeleteAccountMutationInput! | - |
Inputs
CreateAccountMutationInput
Fields
| Name | Type | Description | Default |
|---|---|---|---|
| address | ConstraintString | The account's address. | - |
| country | ConstraintString | The account's country according to the ISO 3166-1 alpha 3 code. | - |
| description | ConstraintString | The account's description. | - |
| ConstraintString | The account's email. | - | |
| name | ConstraintString | The account's public profile name. | - |
| phone | ConstraintString | The account's phone. | - |
| plan | ConstraintString | The account's plan. | - |
| vat | ConstraintString | The account's vat. | - |
| beta | Boolean | Account with access to beta features. | - |
UpdateAccountMutationInput
Fields
| Name | Type | Description | Default |
|---|---|---|---|
| address | ConstraintString | The account's address. | - |
| country | ConstraintString | The account's country according to the ISO 3166-1 alpha 3 code. | - |
| description | ConstraintString | The account's description. | - |
| ConstraintString | The account's email. | - | |
| login | ConstraintString | The account's login name. | - |
| name | ConstraintString | The account's public profile name. | - |
| phone | ConstraintString | The account's phone. | - |
| plan | ConstraintString | The account's plan. | - |
| vat | ConstraintString | The account's vat. | - |
| beta | Boolean | Account with access to beta features. | - |
DeleteAccountMutationInput
Fields
| Name | Type | Description | Default |
|---|---|---|---|
| login | ConstraintString | The account's login name. | - |