This query loads information about a specific organization.
General pattern
query{
organization(handle: "String"){
field_1
field_2 {
nested_field_1
...
}
}
}
Sample query
Load organization data with basic information
query{
organization(handle: "metaverso"){
id
handle
name
jwtIssuerDomain
}
}
Sample Response
{
"data": {
"organization": {
"id": "a1dc174d-abf4-47d3-be3c-9281c6eba456",
"handle": "metaverso",
"name": "metaverso",
"jwtIssuerDomain": "https://mojito-metaverso.us.auth0.com/"
}
}
}
Arguments
Name | Type | Description | Required |
---|---|---|---|
| String | The nickname of the organization. | Yes |
Fields
Name | Type | Description |
---|---|---|
Object | Contains all the information from |
Examples
1. Load an organization with basic information:
2. Load an organization with members data:
3. Load an organization with NFT Contracts data: