> ## Documentation Index
> Fetch the complete documentation index at: https://docs.galxe.com/llms.txt
> Use this file to discover all available pages before exploring further.

# CredentialHolderByUser

### Query credential holder by user

Arguments:

| Name      | Description                    |
| --------- | ------------------------------ |
| `id`      | Cred id.                       |
| `address` | The address bound by the user. |

Request:

```graphql theme={null}
query verifyCredEligible($id: ID!, $address: String!) {
  credential(id: $id) {
    eligible(address:$address)
  }
}
```

Variables

```json theme={null}
{"id": "473720589215887360", "address": "0x1d030d76f5a6505a64c032cf6b350c379d52ae60"}
```

Headers

```json theme={null}
{"access-token": "your-access-token"}
```

Response

```json theme={null}
{
  "data": {
    "credential": {
      "eligible": 1
    }
  }
}
```
