LUKSO MainnetPlaygroundAPI ReferenceSchema Explorer

LUKSO Mainnet

GraphQL API for indexed LUKSO blockchain data

API Endpoints
http://hasura/v1/graphql

Queries

App

Description

fetch data from the table: "App"

Response

Returns [App!]!

Arguments
Name Description
distinct_on - [App_select_column!] distinct select on columns
limit - Int limit the number of rows returned
offset - Int skip the first n rows. Use only with order_by
order_by - [App_order_by!] sort the rows by one or more columns
where - App_bool_exp filter the rows returned

Example

Query
query App(
  $distinct_on: [App_select_column!],
  $limit: Int,
  $offset: Int,
  $order_by: [App_order_by!],
  $where: App_bool_exp
) {
  App(
    distinct_on: $distinct_on,
    limit: $limit,
    offset: $offset,
    order_by: $order_by,
    where: $where
  ) {
    claimedAtBlock
    claimedAtTime
    contributors {
      ...AppContributorFragment
    }
    contributors_aggregate {
      ...AppContributor_aggregateFragment
    }
    events {
      ...AppInstallEventFragment
    }
    events_aggregate {
      ...AppInstallEvent_aggregateFragment
    }
    firstSeen
    history {
      ...AppHistoryFragment
    }
    history_aggregate {
      ...AppHistory_aggregateFragment
    }
    id
    installCount
    installs {
      ...AppInstallFragment
    }
    installs_aggregate {
      ...AppInstall_aggregateFragment
    }
    isVerified
    lastSeen
    profile {
      ...ProfileFragment
    }
    profile_id
    uuid
    verifiableUriHash
    verifiableUriUrl
    verifiedAtBlock
    verifiedAtTime
  }
}
Variables
{
  "distinct_on": ["claimedAtBlock"],
  "limit": 987,
  "offset": 123,
  "order_by": [App_order_by],
  "where": App_bool_exp
}
Response
{
  "data": {
    "App": [
      {
        "claimedAtBlock": 987,
        "claimedAtTime": 987,
        "contributors": [AppContributor],
        "contributors_aggregate": AppContributor_aggregate,
        "events": [AppInstallEvent],
        "events_aggregate": AppInstallEvent_aggregate,
        "firstSeen": 123,
        "history": [AppHistory],
        "history_aggregate": AppHistory_aggregate,
        "id": "xyz789",
        "installCount": 123,
        "installs": [AppInstall],
        "installs_aggregate": AppInstall_aggregate,
        "isVerified": false,
        "lastSeen": 123,
        "profile": Profile,
        "profile_id": "abc123",
        "uuid": "xyz789",
        "verifiableUriHash": "xyz789",
        "verifiableUriUrl": "abc123",
        "verifiedAtBlock": 987,
        "verifiedAtTime": 123
      }
    ]
  }
}

AppContributor

Description

fetch data from the table: "AppContributor"

Response

Returns [AppContributor!]!

Arguments
Name Description
distinct_on - [AppContributor_select_column!] distinct select on columns
limit - Int limit the number of rows returned
offset - Int skip the first n rows. Use only with order_by
order_by - [AppContributor_order_by!] sort the rows by one or more columns
where - AppContributor_bool_exp filter the rows returned

Example

Query
query AppContributor(
  $distinct_on: [AppContributor_select_column!],
  $limit: Int,
  $offset: Int,
  $order_by: [AppContributor_order_by!],
  $where: AppContributor_bool_exp
) {
  AppContributor(
    distinct_on: $distinct_on,
    limit: $limit,
    offset: $offset,
    order_by: $order_by,
    where: $where
  ) {
    addedAtBlock
    addedAtTime
    app {
      ...AppFragment
    }
    app_id
    confirmedAtBlock
    confirmedAtTime
    id
    isConfirmed
    memberConsented
    profile {
      ...ProfileFragment
    }
    profile_id
    removedAtBlock
    removedAtTime
    teamListed
  }
}
Variables
{
  "distinct_on": ["addedAtBlock"],
  "limit": 123,
  "offset": 123,
  "order_by": [AppContributor_order_by],
  "where": AppContributor_bool_exp
}
Response
{
  "data": {
    "AppContributor": [
      {
        "addedAtBlock": 987,
        "addedAtTime": 987,
        "app": App,
        "app_id": "xyz789",
        "confirmedAtBlock": 987,
        "confirmedAtTime": 987,
        "id": "abc123",
        "isConfirmed": true,
        "memberConsented": false,
        "profile": Profile,
        "profile_id": "xyz789",
        "removedAtBlock": 987,
        "removedAtTime": 123,
        "teamListed": false
      }
    ]
  }
}

AppContributor_aggregate

Description

fetch aggregated fields from the table: "AppContributor"

Response

Returns an AppContributor_aggregate!

Arguments
Name Description
distinct_on - [AppContributor_select_column!] distinct select on columns
limit - Int limit the number of rows returned
offset - Int skip the first n rows. Use only with order_by
order_by - [AppContributor_order_by!] sort the rows by one or more columns
where - AppContributor_bool_exp filter the rows returned

Example

Query
query AppContributor_aggregate(
  $distinct_on: [AppContributor_select_column!],
  $limit: Int,
  $offset: Int,
  $order_by: [AppContributor_order_by!],
  $where: AppContributor_bool_exp
) {
  AppContributor_aggregate(
    distinct_on: $distinct_on,
    limit: $limit,
    offset: $offset,
    order_by: $order_by,
    where: $where
  ) {
    aggregate {
      ...AppContributor_aggregate_fieldsFragment
    }
    nodes {
      ...AppContributorFragment
    }
  }
}
Variables
{
  "distinct_on": ["addedAtBlock"],
  "limit": 123,
  "offset": 987,
  "order_by": [AppContributor_order_by],
  "where": AppContributor_bool_exp
}
Response
{
  "data": {
    "AppContributor_aggregate": {
      "aggregate": AppContributor_aggregate_fields,
      "nodes": [AppContributor]
    }
  }
}

AppContributor_by_pk

Description

fetch data from the table: "AppContributor" using primary key columns

Response

Returns an AppContributor

Arguments
Name Description
id - String! {app_id}-{profile_id}, or pending-{teamProfile}-{profile_id} before binding

Example

Query
query AppContributor_by_pk($id: String!) {
  AppContributor_by_pk(id: $id) {
    addedAtBlock
    addedAtTime
    app {
      ...AppFragment
    }
    app_id
    confirmedAtBlock
    confirmedAtTime
    id
    isConfirmed
    memberConsented
    profile {
      ...ProfileFragment
    }
    profile_id
    removedAtBlock
    removedAtTime
    teamListed
  }
}
Variables
{"id": "abc123"}
Response
{
  "data": {
    "AppContributor_by_pk": {
      "addedAtBlock": 123,
      "addedAtTime": 987,
      "app": App,
      "app_id": "xyz789",
      "confirmedAtBlock": 123,
      "confirmedAtTime": 123,
      "id": "abc123",
      "isConfirmed": false,
      "memberConsented": false,
      "profile": Profile,
      "profile_id": "abc123",
      "removedAtBlock": 987,
      "removedAtTime": 123,
      "teamListed": false
    }
  }
}

AppHistory

Description

fetch data from the table: "AppHistory"

Response

Returns [AppHistory!]!

Arguments
Name Description
distinct_on - [AppHistory_select_column!] distinct select on columns
limit - Int limit the number of rows returned
offset - Int skip the first n rows. Use only with order_by
order_by - [AppHistory_order_by!] sort the rows by one or more columns
where - AppHistory_bool_exp filter the rows returned

Example

Query
query AppHistory(
  $distinct_on: [AppHistory_select_column!],
  $limit: Int,
  $offset: Int,
  $order_by: [AppHistory_order_by!],
  $where: AppHistory_bool_exp
) {
  AppHistory(
    distinct_on: $distinct_on,
    limit: $limit,
    offset: $offset,
    order_by: $order_by,
    where: $where
  ) {
    app {
      ...AppFragment
    }
    app_id
    asset {
      ...AssetFragment
    }
    asset_id
    firstInstalledAtBlock
    firstInstalledAtTime
    id
    installCount
    isCurrentlyInstalled
    lastInstallAtBlock
    lastInstallAtTime
    lastUninstallAtBlock
    lastUninstallAtTime
    profile {
      ...ProfileFragment
    }
    profile_id
    token {
      ...TokenFragment
    }
    token_id
    totalInstalledBlocks
  }
}
Variables
{
  "distinct_on": ["app_id"],
  "limit": 123,
  "offset": 123,
  "order_by": [AppHistory_order_by],
  "where": AppHistory_bool_exp
}
Response
{
  "data": {
    "AppHistory": [
      {
        "app": App,
        "app_id": "abc123",
        "asset": Asset,
        "asset_id": "abc123",
        "firstInstalledAtBlock": 987,
        "firstInstalledAtTime": 123,
        "id": "abc123",
        "installCount": 987,
        "isCurrentlyInstalled": true,
        "lastInstallAtBlock": 987,
        "lastInstallAtTime": 987,
        "lastUninstallAtBlock": 987,
        "lastUninstallAtTime": 987,
        "profile": Profile,
        "profile_id": "xyz789",
        "token": Token,
        "token_id": "xyz789",
        "totalInstalledBlocks": bigint
      }
    ]
  }
}

AppHistory_aggregate

Description

fetch aggregated fields from the table: "AppHistory"

Response

Returns an AppHistory_aggregate!

Arguments
Name Description
distinct_on - [AppHistory_select_column!] distinct select on columns
limit - Int limit the number of rows returned
offset - Int skip the first n rows. Use only with order_by
order_by - [AppHistory_order_by!] sort the rows by one or more columns
where - AppHistory_bool_exp filter the rows returned

Example

Query
query AppHistory_aggregate(
  $distinct_on: [AppHistory_select_column!],
  $limit: Int,
  $offset: Int,
  $order_by: [AppHistory_order_by!],
  $where: AppHistory_bool_exp
) {
  AppHistory_aggregate(
    distinct_on: $distinct_on,
    limit: $limit,
    offset: $offset,
    order_by: $order_by,
    where: $where
  ) {
    aggregate {
      ...AppHistory_aggregate_fieldsFragment
    }
    nodes {
      ...AppHistoryFragment
    }
  }
}
Variables
{
  "distinct_on": ["app_id"],
  "limit": 123,
  "offset": 987,
  "order_by": [AppHistory_order_by],
  "where": AppHistory_bool_exp
}
Response
{
  "data": {
    "AppHistory_aggregate": {
      "aggregate": AppHistory_aggregate_fields,
      "nodes": [AppHistory]
    }
  }
}

AppHistory_by_pk

Description

fetch data from the table: "AppHistory" using primary key columns

Response

Returns an AppHistory

Arguments
Name Description
id - String! {entity}-{app_id}

Example

Query
query AppHistory_by_pk($id: String!) {
  AppHistory_by_pk(id: $id) {
    app {
      ...AppFragment
    }
    app_id
    asset {
      ...AssetFragment
    }
    asset_id
    firstInstalledAtBlock
    firstInstalledAtTime
    id
    installCount
    isCurrentlyInstalled
    lastInstallAtBlock
    lastInstallAtTime
    lastUninstallAtBlock
    lastUninstallAtTime
    profile {
      ...ProfileFragment
    }
    profile_id
    token {
      ...TokenFragment
    }
    token_id
    totalInstalledBlocks
  }
}
Variables
{"id": "abc123"}
Response
{
  "data": {
    "AppHistory_by_pk": {
      "app": App,
      "app_id": "xyz789",
      "asset": Asset,
      "asset_id": "abc123",
      "firstInstalledAtBlock": 123,
      "firstInstalledAtTime": 987,
      "id": "abc123",
      "installCount": 123,
      "isCurrentlyInstalled": false,
      "lastInstallAtBlock": 987,
      "lastInstallAtTime": 123,
      "lastUninstallAtBlock": 987,
      "lastUninstallAtTime": 123,
      "profile": Profile,
      "profile_id": "xyz789",
      "token": Token,
      "token_id": "abc123",
      "totalInstalledBlocks": bigint
    }
  }
}

AppInstall

Description

fetch data from the table: "AppInstall"

Response

Returns [AppInstall!]!

Arguments
Name Description
distinct_on - [AppInstall_select_column!] distinct select on columns
limit - Int limit the number of rows returned
offset - Int skip the first n rows. Use only with order_by
order_by - [AppInstall_order_by!] sort the rows by one or more columns
where - AppInstall_bool_exp filter the rows returned

Example

Query
query AppInstall(
  $distinct_on: [AppInstall_select_column!],
  $limit: Int,
  $offset: Int,
  $order_by: [AppInstall_order_by!],
  $where: AppInstall_bool_exp
) {
  AppInstall(
    distinct_on: $distinct_on,
    limit: $limit,
    offset: $offset,
    order_by: $order_by,
    where: $where
  ) {
    app {
      ...AppFragment
    }
    app_id
    asset {
      ...AssetFragment
    }
    asset_id
    blockNumber
    element
    gridColumns
    id
    profile {
      ...ProfileFragment
    }
    profile_id
    tab
    tabIndex
    timestamp
    token {
      ...TokenFragment
    }
    token_id
    visibility
    widgetIndex
  }
}
Variables
{
  "distinct_on": ["app_id"],
  "limit": 123,
  "offset": 987,
  "order_by": [AppInstall_order_by],
  "where": AppInstall_bool_exp
}
Response
{
  "data": {
    "AppInstall": [
      {
        "app": App,
        "app_id": "abc123",
        "asset": Asset,
        "asset_id": "abc123",
        "blockNumber": 987,
        "element": jsonb,
        "gridColumns": 987,
        "id": "xyz789",
        "profile": Profile,
        "profile_id": "abc123",
        "tab": "abc123",
        "tabIndex": 987,
        "timestamp": 987,
        "token": Token,
        "token_id": "xyz789",
        "visibility": "xyz789",
        "widgetIndex": 987
      }
    ]
  }
}

AppInstallEvent

Description

fetch data from the table: "AppInstallEvent"

Response

Returns [AppInstallEvent!]!

Arguments
Name Description
distinct_on - [AppInstallEvent_select_column!] distinct select on columns
limit - Int limit the number of rows returned
offset - Int skip the first n rows. Use only with order_by
order_by - [AppInstallEvent_order_by!] sort the rows by one or more columns
where - AppInstallEvent_bool_exp filter the rows returned

Example

Query
query AppInstallEvent(
  $distinct_on: [AppInstallEvent_select_column!],
  $limit: Int,
  $offset: Int,
  $order_by: [AppInstallEvent_order_by!],
  $where: AppInstallEvent_bool_exp
) {
  AppInstallEvent(
    distinct_on: $distinct_on,
    limit: $limit,
    offset: $offset,
    order_by: $order_by,
    where: $where
  ) {
    app {
      ...AppFragment
    }
    app_id
    asset {
      ...AssetFragment
    }
    asset_id
    durationBlocks
    id
    installedAtBlock
    installedAtTime
    profile {
      ...ProfileFragment
    }
    profile_id
    token {
      ...TokenFragment
    }
    token_id
    uninstalledAtBlock
    uninstalledAtTime
  }
}
Variables
{
  "distinct_on": ["app_id"],
  "limit": 123,
  "offset": 987,
  "order_by": [AppInstallEvent_order_by],
  "where": AppInstallEvent_bool_exp
}
Response
{
  "data": {
    "AppInstallEvent": [
      {
        "app": App,
        "app_id": "xyz789",
        "asset": Asset,
        "asset_id": "xyz789",
        "durationBlocks": 123,
        "id": "abc123",
        "installedAtBlock": 123,
        "installedAtTime": 987,
        "profile": Profile,
        "profile_id": "xyz789",
        "token": Token,
        "token_id": "abc123",
        "uninstalledAtBlock": 987,
        "uninstalledAtTime": 123
      }
    ]
  }
}

AppInstallEvent_aggregate

Description

fetch aggregated fields from the table: "AppInstallEvent"

Response

Returns an AppInstallEvent_aggregate!

Arguments
Name Description
distinct_on - [AppInstallEvent_select_column!] distinct select on columns
limit - Int limit the number of rows returned
offset - Int skip the first n rows. Use only with order_by
order_by - [AppInstallEvent_order_by!] sort the rows by one or more columns
where - AppInstallEvent_bool_exp filter the rows returned

Example

Query
query AppInstallEvent_aggregate(
  $distinct_on: [AppInstallEvent_select_column!],
  $limit: Int,
  $offset: Int,
  $order_by: [AppInstallEvent_order_by!],
  $where: AppInstallEvent_bool_exp
) {
  AppInstallEvent_aggregate(
    distinct_on: $distinct_on,
    limit: $limit,
    offset: $offset,
    order_by: $order_by,
    where: $where
  ) {
    aggregate {
      ...AppInstallEvent_aggregate_fieldsFragment
    }
    nodes {
      ...AppInstallEventFragment
    }
  }
}
Variables
{
  "distinct_on": ["app_id"],
  "limit": 987,
  "offset": 987,
  "order_by": [AppInstallEvent_order_by],
  "where": AppInstallEvent_bool_exp
}
Response
{
  "data": {
    "AppInstallEvent_aggregate": {
      "aggregate": AppInstallEvent_aggregate_fields,
      "nodes": [AppInstallEvent]
    }
  }
}

AppInstallEvent_by_pk

Description

fetch data from the table: "AppInstallEvent" using primary key columns

Response

Returns an AppInstallEvent

Arguments
Name Description
id - String! {entity}-{app_id}-{installedAtBlock}

Example

Query
query AppInstallEvent_by_pk($id: String!) {
  AppInstallEvent_by_pk(id: $id) {
    app {
      ...AppFragment
    }
    app_id
    asset {
      ...AssetFragment
    }
    asset_id
    durationBlocks
    id
    installedAtBlock
    installedAtTime
    profile {
      ...ProfileFragment
    }
    profile_id
    token {
      ...TokenFragment
    }
    token_id
    uninstalledAtBlock
    uninstalledAtTime
  }
}
Variables
{"id": "xyz789"}
Response
{
  "data": {
    "AppInstallEvent_by_pk": {
      "app": App,
      "app_id": "abc123",
      "asset": Asset,
      "asset_id": "xyz789",
      "durationBlocks": 987,
      "id": "xyz789",
      "installedAtBlock": 123,
      "installedAtTime": 123,
      "profile": Profile,
      "profile_id": "abc123",
      "token": Token,
      "token_id": "xyz789",
      "uninstalledAtBlock": 987,
      "uninstalledAtTime": 987
    }
  }
}

AppInstall_aggregate

Description

fetch aggregated fields from the table: "AppInstall"

Response

Returns an AppInstall_aggregate!

Arguments
Name Description
distinct_on - [AppInstall_select_column!] distinct select on columns
limit - Int limit the number of rows returned
offset - Int skip the first n rows. Use only with order_by
order_by - [AppInstall_order_by!] sort the rows by one or more columns
where - AppInstall_bool_exp filter the rows returned

Example

Query
query AppInstall_aggregate(
  $distinct_on: [AppInstall_select_column!],
  $limit: Int,
  $offset: Int,
  $order_by: [AppInstall_order_by!],
  $where: AppInstall_bool_exp
) {
  AppInstall_aggregate(
    distinct_on: $distinct_on,
    limit: $limit,
    offset: $offset,
    order_by: $order_by,
    where: $where
  ) {
    aggregate {
      ...AppInstall_aggregate_fieldsFragment
    }
    nodes {
      ...AppInstallFragment
    }
  }
}
Variables
{
  "distinct_on": ["app_id"],
  "limit": 987,
  "offset": 987,
  "order_by": [AppInstall_order_by],
  "where": AppInstall_bool_exp
}
Response
{
  "data": {
    "AppInstall_aggregate": {
      "aggregate": AppInstall_aggregate_fields,
      "nodes": [AppInstall]
    }
  }
}

AppInstall_by_pk

Description

fetch data from the table: "AppInstall" using primary key columns

Response

Returns an AppInstall

Arguments
Name Description
id - String! {address}-{tabIndex}-{widgetIndex}

Example

Query
query AppInstall_by_pk($id: String!) {
  AppInstall_by_pk(id: $id) {
    app {
      ...AppFragment
    }
    app_id
    asset {
      ...AssetFragment
    }
    asset_id
    blockNumber
    element
    gridColumns
    id
    profile {
      ...ProfileFragment
    }
    profile_id
    tab
    tabIndex
    timestamp
    token {
      ...TokenFragment
    }
    token_id
    visibility
    widgetIndex
  }
}
Variables
{"id": "xyz789"}
Response
{
  "data": {
    "AppInstall_by_pk": {
      "app": App,
      "app_id": "abc123",
      "asset": Asset,
      "asset_id": "abc123",
      "blockNumber": 987,
      "element": jsonb,
      "gridColumns": 123,
      "id": "xyz789",
      "profile": Profile,
      "profile_id": "xyz789",
      "tab": "xyz789",
      "tabIndex": 123,
      "timestamp": 123,
      "token": Token,
      "token_id": "xyz789",
      "visibility": "abc123",
      "widgetIndex": 987
    }
  }
}

AppLeaderboard

Description

fetch data from the table: "AppLeaderboard"

Response

Returns [AppLeaderboard!]!

Arguments
Name Description
distinct_on - [AppLeaderboard_select_column!] distinct select on columns
limit - Int limit the number of rows returned
offset - Int skip the first n rows. Use only with order_by
order_by - [AppLeaderboard_order_by!] sort the rows by one or more columns
where - AppLeaderboard_bool_exp filter the rows returned

Example

Query
query AppLeaderboard(
  $distinct_on: [AppLeaderboard_select_column!],
  $limit: Int,
  $offset: Int,
  $order_by: [AppLeaderboard_order_by!],
  $where: AppLeaderboard_bool_exp
) {
  AppLeaderboard(
    distinct_on: $distinct_on,
    limit: $limit,
    offset: $offset,
    order_by: $order_by,
    where: $where
  ) {
    firstSeen
    id
    isVerified
    lastSeen
    liveInstalls
    liveProfiles
    profile {
      ...ProfileFragment
    }
    profile_id
    totalEngagementBlocks
    uuid
  }
}
Variables
{
  "distinct_on": ["firstSeen"],
  "limit": 987,
  "offset": 123,
  "order_by": [AppLeaderboard_order_by],
  "where": AppLeaderboard_bool_exp
}
Response
{
  "data": {
    "AppLeaderboard": [
      {
        "firstSeen": 987,
        "id": "abc123",
        "isVerified": false,
        "lastSeen": 123,
        "liveInstalls": bigint,
        "liveProfiles": bigint,
        "profile": Profile,
        "profile_id": "abc123",
        "totalEngagementBlocks": bigint,
        "uuid": "abc123"
      }
    ]
  }
}

AppLeaderboard_aggregate

Description

fetch aggregated fields from the table: "AppLeaderboard"

Response

Returns an AppLeaderboard_aggregate!

Arguments
Name Description
distinct_on - [AppLeaderboard_select_column!] distinct select on columns
limit - Int limit the number of rows returned
offset - Int skip the first n rows. Use only with order_by
order_by - [AppLeaderboard_order_by!] sort the rows by one or more columns
where - AppLeaderboard_bool_exp filter the rows returned

Example

Query
query AppLeaderboard_aggregate(
  $distinct_on: [AppLeaderboard_select_column!],
  $limit: Int,
  $offset: Int,
  $order_by: [AppLeaderboard_order_by!],
  $where: AppLeaderboard_bool_exp
) {
  AppLeaderboard_aggregate(
    distinct_on: $distinct_on,
    limit: $limit,
    offset: $offset,
    order_by: $order_by,
    where: $where
  ) {
    aggregate {
      ...AppLeaderboard_aggregate_fieldsFragment
    }
    nodes {
      ...AppLeaderboardFragment
    }
  }
}
Variables
{
  "distinct_on": ["firstSeen"],
  "limit": 987,
  "offset": 123,
  "order_by": [AppLeaderboard_order_by],
  "where": AppLeaderboard_bool_exp
}
Response
{
  "data": {
    "AppLeaderboard_aggregate": {
      "aggregate": AppLeaderboard_aggregate_fields,
      "nodes": [AppLeaderboard]
    }
  }
}

App_aggregate

Description

fetch aggregated fields from the table: "App"

Response

Returns an App_aggregate!

Arguments
Name Description
distinct_on - [App_select_column!] distinct select on columns
limit - Int limit the number of rows returned
offset - Int skip the first n rows. Use only with order_by
order_by - [App_order_by!] sort the rows by one or more columns
where - App_bool_exp filter the rows returned

Example

Query
query App_aggregate(
  $distinct_on: [App_select_column!],
  $limit: Int,
  $offset: Int,
  $order_by: [App_order_by!],
  $where: App_bool_exp
) {
  App_aggregate(
    distinct_on: $distinct_on,
    limit: $limit,
    offset: $offset,
    order_by: $order_by,
    where: $where
  ) {
    aggregate {
      ...App_aggregate_fieldsFragment
    }
    nodes {
      ...AppFragment
    }
  }
}
Variables
{
  "distinct_on": ["claimedAtBlock"],
  "limit": 123,
  "offset": 123,
  "order_by": [App_order_by],
  "where": App_bool_exp
}
Response
{
  "data": {
    "App_aggregate": {
      "aggregate": App_aggregate_fields,
      "nodes": [App]
    }
  }
}

App_by_pk

Description

fetch data from the table: "App" using primary key columns

Response

Returns an App

Arguments
Name Description
id - String! Domain name (e.g. jup.ag, universalswaps.io)

Example

Query
query App_by_pk($id: String!) {
  App_by_pk(id: $id) {
    claimedAtBlock
    claimedAtTime
    contributors {
      ...AppContributorFragment
    }
    contributors_aggregate {
      ...AppContributor_aggregateFragment
    }
    events {
      ...AppInstallEventFragment
    }
    events_aggregate {
      ...AppInstallEvent_aggregateFragment
    }
    firstSeen
    history {
      ...AppHistoryFragment
    }
    history_aggregate {
      ...AppHistory_aggregateFragment
    }
    id
    installCount
    installs {
      ...AppInstallFragment
    }
    installs_aggregate {
      ...AppInstall_aggregateFragment
    }
    isVerified
    lastSeen
    profile {
      ...ProfileFragment
    }
    profile_id
    uuid
    verifiableUriHash
    verifiableUriUrl
    verifiedAtBlock
    verifiedAtTime
  }
}
Variables
{"id": "abc123"}
Response
{
  "data": {
    "App_by_pk": {
      "claimedAtBlock": 123,
      "claimedAtTime": 987,
      "contributors": [AppContributor],
      "contributors_aggregate": AppContributor_aggregate,
      "events": [AppInstallEvent],
      "events_aggregate": AppInstallEvent_aggregate,
      "firstSeen": 987,
      "history": [AppHistory],
      "history_aggregate": AppHistory_aggregate,
      "id": "abc123",
      "installCount": 123,
      "installs": [AppInstall],
      "installs_aggregate": AppInstall_aggregate,
      "isVerified": false,
      "lastSeen": 987,
      "profile": Profile,
      "profile_id": "xyz789",
      "uuid": "xyz789",
      "verifiableUriHash": "xyz789",
      "verifiableUriUrl": "abc123",
      "verifiedAtBlock": 987,
      "verifiedAtTime": 987
    }
  }
}

Asset

Description

fetch data from the table: "Asset"

Response

Returns [Asset!]!

Arguments
Name Description
distinct_on - [Asset_select_column!] distinct select on columns
limit - Int limit the number of rows returned
offset - Int skip the first n rows. Use only with order_by
order_by - [Asset_order_by!] sort the rows by one or more columns
where - Asset_bool_exp filter the rows returned

Example

Query
query Asset(
  $distinct_on: [Asset_select_column!],
  $limit: Int,
  $offset: Int,
  $order_by: [Asset_order_by!],
  $where: Asset_bool_exp
) {
  Asset(
    distinct_on: $distinct_on,
    limit: $limit,
    offset: $offset,
    order_by: $order_by,
    where: $where
  ) {
    appHistory {
      ...AppHistoryFragment
    }
    appHistory_aggregate {
      ...AppHistory_aggregateFragment
    }
    appInstalls {
      ...AppInstallFragment
    }
    appInstalls_aggregate {
      ...AppInstall_aggregateFragment
    }
    assets {
      ...AssetAssetURLFragment
    }
    assets_
    assets_aggregate {
      ...AssetAssetURL_aggregateFragment
    }
    attributes {
      ...AssetAttributeFragment
    }
    attributes_
    attributes_aggregate {
      ...AssetAttribute_aggregateFragment
    }
    backgroundImages {
      ...AssetBackgroundImageURLFragment
    }
    backgroundImages_
    baseHolders {
      ...HoldFragment
    }
    baseHolders_aggregate {
      ...Hold_aggregateFragment
    }
    blockNumber
    category
    createdBlockNumber
    createdTimestamp
    createdTransactionIndex
    data
    db_write_timestamp
    decimals
    description
    error
    holders {
      ...HoldFragment
    }
    holders_aggregate {
      ...Hold_aggregateFragment
    }
    icons {
      ...AssetIconURLFragment
    }
    icons_
    icons_aggregate {
      ...AssetIconURL_aggregateFragment
    }
    id
    images {
      ...AssetImageURLFragment
    }
    images_
    images_aggregate {
      ...AssetImageURL_aggregateFragment
    }
    interfaces
    isCollection
    isLSP7
    isUnknown
    links {
      ...AssetLinkFragment
    }
    links_
    links_aggregate {
      ...AssetLink_aggregateFragment
    }
    lsp4Creators {
      ...AssetCreatorsFragment
    }
    lsp4CreatorsMap {
      ...AssetCreatorsFragment
    }
    lsp4CreatorsMap_aggregate {
      ...AssetCreators_aggregateFragment
    }
    lsp4Creators_
    lsp4Creators_aggregate {
      ...AssetCreators_aggregateFragment
    }
    lsp4TokenName
    lsp4TokenSymbol
    lsp4TokenType
    lsp8ReferenceContract {
      ...AssetFragment
    }
    lsp8ReferenceContractSelf
    lsp8ReferenceContract_id
    lsp8TokenIdFormat
    lsp8TokenMetadataBaseUri
    method
    name
    owner {
      ...ProfileFragment
    }
    owner_id
    src
    standard
    supportedStandardsLsp4DigitalAsset
    tokens {
      ...TokenFragment
    }
    tokens_aggregate {
      ...Token_aggregateFragment
    }
    totalSupply
    transfers {
      ...TransferFragment
    }
    transfers_aggregate {
      ...Transfer_aggregateFragment
    }
    updatedBlockNumber
    updatedTimestamp
    updatedTransactionIndex
    url
  }
}
Variables
{
  "distinct_on": ["assets_"],
  "limit": 987,
  "offset": 123,
  "order_by": [Asset_order_by],
  "where": Asset_bool_exp
}
Response
{
  "data": {
    "Asset": [
      {
        "appHistory": [AppHistory],
        "appHistory_aggregate": AppHistory_aggregate,
        "appInstalls": [AppInstall],
        "appInstalls_aggregate": AppInstall_aggregate,
        "assets": [AssetAssetURL],
        "assets_": ["xyz789"],
        "assets_aggregate": AssetAssetURL_aggregate,
        "attributes": [AssetAttribute],
        "attributes_": ["abc123"],
        "attributes_aggregate": AssetAttribute_aggregate,
        "backgroundImages": [AssetBackgroundImageURL],
        "backgroundImages_": ["xyz789"],
        "baseHolders": [Hold],
        "baseHolders_aggregate": Hold_aggregate,
        "blockNumber": 987,
        "category": "abc123",
        "createdBlockNumber": 123,
        "createdTimestamp": 987,
        "createdTransactionIndex": 987,
        "data": "xyz789",
        "db_write_timestamp": timestamp,
        "decimals": 123,
        "description": "abc123",
        "error": "abc123",
        "holders": [Hold],
        "holders_aggregate": Hold_aggregate,
        "icons": [AssetIconURL],
        "icons_": ["abc123"],
        "icons_aggregate": AssetIconURL_aggregate,
        "id": "abc123",
        "images": [AssetImageURL],
        "images_": ["abc123"],
        "images_aggregate": AssetImageURL_aggregate,
        "interfaces": ["abc123"],
        "isCollection": true,
        "isLSP7": true,
        "isUnknown": true,
        "links": [AssetLink],
        "links_": ["xyz789"],
        "links_aggregate": AssetLink_aggregate,
        "lsp4Creators": [AssetCreators],
        "lsp4CreatorsMap": [AssetCreators],
        "lsp4CreatorsMap_aggregate": AssetCreators_aggregate,
        "lsp4Creators_": ["abc123"],
        "lsp4Creators_aggregate": AssetCreators_aggregate,
        "lsp4TokenName": "abc123",
        "lsp4TokenSymbol": "xyz789",
        "lsp4TokenType": 123,
        "lsp8ReferenceContract": Asset,
        "lsp8ReferenceContractSelf": "abc123",
        "lsp8ReferenceContract_id": "xyz789",
        "lsp8TokenIdFormat": 123,
        "lsp8TokenMetadataBaseUri": "xyz789",
        "method": "xyz789",
        "name": "abc123",
        "owner": Profile,
        "owner_id": "xyz789",
        "src": "xyz789",
        "standard": standards,
        "supportedStandardsLsp4DigitalAsset": false,
        "tokens": [Token],
        "tokens_aggregate": Token_aggregate,
        "totalSupply": numeric,
        "transfers": [Transfer],
        "transfers_aggregate": Transfer_aggregate,
        "updatedBlockNumber": 123,
        "updatedTimestamp": 123,
        "updatedTransactionIndex": 987,
        "url": "xyz789"
      }
    ]
  }
}

AssetAssetURL

Description

fetch data from the table: "AssetAssetURL"

Response

Returns [AssetAssetURL!]!

Arguments
Name Description
distinct_on - [AssetAssetURL_select_column!] distinct select on columns
limit - Int limit the number of rows returned
offset - Int skip the first n rows. Use only with order_by
order_by - [AssetAssetURL_order_by!] sort the rows by one or more columns
where - AssetAssetURL_bool_exp filter the rows returned

Example

Query
query AssetAssetURL(
  $distinct_on: [AssetAssetURL_select_column!],
  $limit: Int,
  $offset: Int,
  $order_by: [AssetAssetURL_order_by!],
  $where: AssetAssetURL_bool_exp
) {
  AssetAssetURL(
    distinct_on: $distinct_on,
    limit: $limit,
    offset: $offset,
    order_by: $order_by,
    where: $where
  ) {
    asset {
      ...AssetFragment
    }
    asset_id
    blockNumber
    contentAsset {
      ...AssetFragment
    }
    contentAsset_id
    contentToken {
      ...TokenFragment
    }
    contentToken_id
    data
    db_write_timestamp
    error
    fileType
    height
    id
    method
    src
    url
    verified
    width
  }
}
Variables
{
  "distinct_on": ["asset_id"],
  "limit": 987,
  "offset": 123,
  "order_by": [AssetAssetURL_order_by],
  "where": AssetAssetURL_bool_exp
}
Response
{
  "data": {
    "AssetAssetURL": [
      {
        "asset": Asset,
        "asset_id": "xyz789",
        "blockNumber": 123,
        "contentAsset": Asset,
        "contentAsset_id": "xyz789",
        "contentToken": Token,
        "contentToken_id": "xyz789",
        "data": "xyz789",
        "db_write_timestamp": timestamp,
        "error": "xyz789",
        "fileType": "abc123",
        "height": 987,
        "id": "xyz789",
        "method": "abc123",
        "src": "xyz789",
        "url": "abc123",
        "verified": verificationstatus,
        "width": 123
      }
    ]
  }
}

AssetAssetURL_aggregate

Description

fetch aggregated fields from the table: "AssetAssetURL"

Response

Returns an AssetAssetURL_aggregate!

Arguments
Name Description
distinct_on - [AssetAssetURL_select_column!] distinct select on columns
limit - Int limit the number of rows returned
offset - Int skip the first n rows. Use only with order_by
order_by - [AssetAssetURL_order_by!] sort the rows by one or more columns
where - AssetAssetURL_bool_exp filter the rows returned

Example

Query
query AssetAssetURL_aggregate(
  $distinct_on: [AssetAssetURL_select_column!],
  $limit: Int,
  $offset: Int,
  $order_by: [AssetAssetURL_order_by!],
  $where: AssetAssetURL_bool_exp
) {
  AssetAssetURL_aggregate(
    distinct_on: $distinct_on,
    limit: $limit,
    offset: $offset,
    order_by: $order_by,
    where: $where
  ) {
    aggregate {
      ...AssetAssetURL_aggregate_fieldsFragment
    }
    nodes {
      ...AssetAssetURLFragment
    }
  }
}
Variables
{
  "distinct_on": ["asset_id"],
  "limit": 123,
  "offset": 123,
  "order_by": [AssetAssetURL_order_by],
  "where": AssetAssetURL_bool_exp
}
Response
{
  "data": {
    "AssetAssetURL_aggregate": {
      "aggregate": AssetAssetURL_aggregate_fields,
      "nodes": [AssetAssetURL]
    }
  }
}

AssetAssetURL_by_pk

Description

fetch data from the table: "AssetAssetURL" using primary key columns

Response

Returns an AssetAssetURL

Arguments
Name Description
id - String!

Example

Query
query AssetAssetURL_by_pk($id: String!) {
  AssetAssetURL_by_pk(id: $id) {
    asset {
      ...AssetFragment
    }
    asset_id
    blockNumber
    contentAsset {
      ...AssetFragment
    }
    contentAsset_id
    contentToken {
      ...TokenFragment
    }
    contentToken_id
    data
    db_write_timestamp
    error
    fileType
    height
    id
    method
    src
    url
    verified
    width
  }
}
Variables
{"id": "abc123"}
Response
{
  "data": {
    "AssetAssetURL_by_pk": {
      "asset": Asset,
      "asset_id": "xyz789",
      "blockNumber": 123,
      "contentAsset": Asset,
      "contentAsset_id": "abc123",
      "contentToken": Token,
      "contentToken_id": "abc123",
      "data": "xyz789",
      "db_write_timestamp": timestamp,
      "error": "xyz789",
      "fileType": "abc123",
      "height": 987,
      "id": "xyz789",
      "method": "abc123",
      "src": "abc123",
      "url": "abc123",
      "verified": verificationstatus,
      "width": 123
    }
  }
}

AssetAttribute

Description

fetch data from the table: "AssetAttribute"

Response

Returns [AssetAttribute!]!

Arguments
Name Description
distinct_on - [AssetAttribute_select_column!] distinct select on columns
limit - Int limit the number of rows returned
offset - Int skip the first n rows. Use only with order_by
order_by - [AssetAttribute_order_by!] sort the rows by one or more columns
where - AssetAttribute_bool_exp filter the rows returned

Example

Query
query AssetAttribute(
  $distinct_on: [AssetAttribute_select_column!],
  $limit: Int,
  $offset: Int,
  $order_by: [AssetAttribute_order_by!],
  $where: AssetAttribute_bool_exp
) {
  AssetAttribute(
    distinct_on: $distinct_on,
    limit: $limit,
    offset: $offset,
    order_by: $order_by,
    where: $where
  ) {
    asset {
      ...AssetFragment
    }
    asset_id
    attributeType
    blockNumber
    db_write_timestamp
    id
    key
    value
  }
}
Variables
{
  "distinct_on": ["asset_id"],
  "limit": 987,
  "offset": 123,
  "order_by": [AssetAttribute_order_by],
  "where": AssetAttribute_bool_exp
}
Response
{
  "data": {
    "AssetAttribute": [
      {
        "asset": Asset,
        "asset_id": "abc123",
        "attributeType": "xyz789",
        "blockNumber": 123,
        "db_write_timestamp": timestamp,
        "id": "xyz789",
        "key": "abc123",
        "value": "xyz789"
      }
    ]
  }
}

AssetAttribute_aggregate

Description

fetch aggregated fields from the table: "AssetAttribute"

Response

Returns an AssetAttribute_aggregate!

Arguments
Name Description
distinct_on - [AssetAttribute_select_column!] distinct select on columns
limit - Int limit the number of rows returned
offset - Int skip the first n rows. Use only with order_by
order_by - [AssetAttribute_order_by!] sort the rows by one or more columns
where - AssetAttribute_bool_exp filter the rows returned

Example

Query
query AssetAttribute_aggregate(
  $distinct_on: [AssetAttribute_select_column!],
  $limit: Int,
  $offset: Int,
  $order_by: [AssetAttribute_order_by!],
  $where: AssetAttribute_bool_exp
) {
  AssetAttribute_aggregate(
    distinct_on: $distinct_on,
    limit: $limit,
    offset: $offset,
    order_by: $order_by,
    where: $where
  ) {
    aggregate {
      ...AssetAttribute_aggregate_fieldsFragment
    }
    nodes {
      ...AssetAttributeFragment
    }
  }
}
Variables
{
  "distinct_on": ["asset_id"],
  "limit": 987,
  "offset": 123,
  "order_by": [AssetAttribute_order_by],
  "where": AssetAttribute_bool_exp
}
Response
{
  "data": {
    "AssetAttribute_aggregate": {
      "aggregate": AssetAttribute_aggregate_fields,
      "nodes": [AssetAttribute]
    }
  }
}

AssetAttribute_by_pk

Description

fetch data from the table: "AssetAttribute" using primary key columns

Response

Returns an AssetAttribute

Arguments
Name Description
id - String!

Example

Query
query AssetAttribute_by_pk($id: String!) {
  AssetAttribute_by_pk(id: $id) {
    asset {
      ...AssetFragment
    }
    asset_id
    attributeType
    blockNumber
    db_write_timestamp
    id
    key
    value
  }
}
Variables
{"id": "abc123"}
Response
{
  "data": {
    "AssetAttribute_by_pk": {
      "asset": Asset,
      "asset_id": "xyz789",
      "attributeType": "xyz789",
      "blockNumber": 123,
      "db_write_timestamp": timestamp,
      "id": "abc123",
      "key": "abc123",
      "value": "xyz789"
    }
  }
}

AssetBackgroundImageURL

Description

fetch data from the table: "AssetBackgroundImageURL"

Response

Returns [AssetBackgroundImageURL!]!

Arguments
Name Description
distinct_on - [AssetBackgroundImageURL_select_column!] distinct select on columns
limit - Int limit the number of rows returned
offset - Int skip the first n rows. Use only with order_by
order_by - [AssetBackgroundImageURL_order_by!] sort the rows by one or more columns
where - AssetBackgroundImageURL_bool_exp filter the rows returned

Example

Query
query AssetBackgroundImageURL(
  $distinct_on: [AssetBackgroundImageURL_select_column!],
  $limit: Int,
  $offset: Int,
  $order_by: [AssetBackgroundImageURL_order_by!],
  $where: AssetBackgroundImageURL_bool_exp
) {
  AssetBackgroundImageURL(
    distinct_on: $distinct_on,
    limit: $limit,
    offset: $offset,
    order_by: $order_by,
    where: $where
  ) {
    asset_id
    blockNumber
    data
    db_write_timestamp
    error
    fileType
    height
    id
    index
    method
    src
    url
    verified
    width
  }
}
Variables
{
  "distinct_on": ["asset_id"],
  "limit": 987,
  "offset": 987,
  "order_by": [AssetBackgroundImageURL_order_by],
  "where": AssetBackgroundImageURL_bool_exp
}
Response
{
  "data": {
    "AssetBackgroundImageURL": [
      {
        "asset_id": "abc123",
        "blockNumber": 987,
        "data": "xyz789",
        "db_write_timestamp": timestamp,
        "error": "xyz789",
        "fileType": "xyz789",
        "height": 987,
        "id": "xyz789",
        "index": 123,
        "method": "abc123",
        "src": "abc123",
        "url": "xyz789",
        "verified": verificationstatus,
        "width": 987
      }
    ]
  }
}

AssetBackgroundImageURL_by_pk

Description

fetch data from the table: "AssetBackgroundImageURL" using primary key columns

Response

Returns an AssetBackgroundImageURL

Arguments
Name Description
id - String!

Example

Query
query AssetBackgroundImageURL_by_pk($id: String!) {
  AssetBackgroundImageURL_by_pk(id: $id) {
    asset_id
    blockNumber
    data
    db_write_timestamp
    error
    fileType
    height
    id
    index
    method
    src
    url
    verified
    width
  }
}
Variables
{"id": "xyz789"}
Response
{
  "data": {
    "AssetBackgroundImageURL_by_pk": {
      "asset_id": "xyz789",
      "blockNumber": 987,
      "data": "abc123",
      "db_write_timestamp": timestamp,
      "error": "abc123",
      "fileType": "abc123",
      "height": 123,
      "id": "abc123",
      "index": 123,
      "method": "xyz789",
      "src": "xyz789",
      "url": "xyz789",
      "verified": verificationstatus,
      "width": 123
    }
  }
}

AssetCreators

Description

fetch data from the table: "AssetCreators"

Response

Returns [AssetCreators!]!

Arguments
Name Description
distinct_on - [AssetCreators_select_column!] distinct select on columns
limit - Int limit the number of rows returned
offset - Int skip the first n rows. Use only with order_by
order_by - [AssetCreators_order_by!] sort the rows by one or more columns
where - AssetCreators_bool_exp filter the rows returned

Example

Query
query AssetCreators(
  $distinct_on: [AssetCreators_select_column!],
  $limit: Int,
  $offset: Int,
  $order_by: [AssetCreators_order_by!],
  $where: AssetCreators_bool_exp
) {
  AssetCreators(
    distinct_on: $distinct_on,
    limit: $limit,
    offset: $offset,
    order_by: $order_by,
    where: $where
  ) {
    asset {
      ...AssetFragment
    }
    asset_id
    blockNumber
    db_write_timestamp
    id
    index
    interfaceId
    profile {
      ...ProfileFragment
    }
    profile_id
  }
}
Variables
{
  "distinct_on": ["asset_id"],
  "limit": 987,
  "offset": 987,
  "order_by": [AssetCreators_order_by],
  "where": AssetCreators_bool_exp
}
Response
{
  "data": {
    "AssetCreators": [
      {
        "asset": Asset,
        "asset_id": "abc123",
        "blockNumber": 123,
        "db_write_timestamp": timestamp,
        "id": "abc123",
        "index": 123,
        "interfaceId": "xyz789",
        "profile": Profile,
        "profile_id": "xyz789"
      }
    ]
  }
}

AssetCreators_aggregate

Description

fetch aggregated fields from the table: "AssetCreators"

Response

Returns an AssetCreators_aggregate!

Arguments
Name Description
distinct_on - [AssetCreators_select_column!] distinct select on columns
limit - Int limit the number of rows returned
offset - Int skip the first n rows. Use only with order_by
order_by - [AssetCreators_order_by!] sort the rows by one or more columns
where - AssetCreators_bool_exp filter the rows returned

Example

Query
query AssetCreators_aggregate(
  $distinct_on: [AssetCreators_select_column!],
  $limit: Int,
  $offset: Int,
  $order_by: [AssetCreators_order_by!],
  $where: AssetCreators_bool_exp
) {
  AssetCreators_aggregate(
    distinct_on: $distinct_on,
    limit: $limit,
    offset: $offset,
    order_by: $order_by,
    where: $where
  ) {
    aggregate {
      ...AssetCreators_aggregate_fieldsFragment
    }
    nodes {
      ...AssetCreatorsFragment
    }
  }
}
Variables
{
  "distinct_on": ["asset_id"],
  "limit": 987,
  "offset": 123,
  "order_by": [AssetCreators_order_by],
  "where": AssetCreators_bool_exp
}
Response
{
  "data": {
    "AssetCreators_aggregate": {
      "aggregate": AssetCreators_aggregate_fields,
      "nodes": [AssetCreators]
    }
  }
}

AssetCreators_by_pk

Description

fetch data from the table: "AssetCreators" using primary key columns

Response

Returns an AssetCreators

Arguments
Name Description
id - String!

Example

Query
query AssetCreators_by_pk($id: String!) {
  AssetCreators_by_pk(id: $id) {
    asset {
      ...AssetFragment
    }
    asset_id
    blockNumber
    db_write_timestamp
    id
    index
    interfaceId
    profile {
      ...ProfileFragment
    }
    profile_id
  }
}
Variables
{"id": "xyz789"}
Response
{
  "data": {
    "AssetCreators_by_pk": {
      "asset": Asset,
      "asset_id": "abc123",
      "blockNumber": 123,
      "db_write_timestamp": timestamp,
      "id": "xyz789",
      "index": 123,
      "interfaceId": "abc123",
      "profile": Profile,
      "profile_id": "abc123"
    }
  }
}

AssetIconURL

Description

fetch data from the table: "AssetIconURL"

Response

Returns [AssetIconURL!]!

Arguments
Name Description
distinct_on - [AssetIconURL_select_column!] distinct select on columns
limit - Int limit the number of rows returned
offset - Int skip the first n rows. Use only with order_by
order_by - [AssetIconURL_order_by!] sort the rows by one or more columns
where - AssetIconURL_bool_exp filter the rows returned

Example

Query
query AssetIconURL(
  $distinct_on: [AssetIconURL_select_column!],
  $limit: Int,
  $offset: Int,
  $order_by: [AssetIconURL_order_by!],
  $where: AssetIconURL_bool_exp
) {
  AssetIconURL(
    distinct_on: $distinct_on,
    limit: $limit,
    offset: $offset,
    order_by: $order_by,
    where: $where
  ) {
    asset {
      ...AssetFragment
    }
    asset_id
    blockNumber
    data
    db_write_timestamp
    error
    fileType
    height
    id
    method
    src
    url
    verified
    width
  }
}
Variables
{
  "distinct_on": ["asset_id"],
  "limit": 123,
  "offset": 123,
  "order_by": [AssetIconURL_order_by],
  "where": AssetIconURL_bool_exp
}
Response
{
  "data": {
    "AssetIconURL": [
      {
        "asset": Asset,
        "asset_id": "abc123",
        "blockNumber": 987,
        "data": "xyz789",
        "db_write_timestamp": timestamp,
        "error": "xyz789",
        "fileType": "abc123",
        "height": 123,
        "id": "xyz789",
        "method": "abc123",
        "src": "abc123",
        "url": "xyz789",
        "verified": verificationstatus,
        "width": 123
      }
    ]
  }
}

AssetIconURL_aggregate

Description

fetch aggregated fields from the table: "AssetIconURL"

Response

Returns an AssetIconURL_aggregate!

Arguments
Name Description
distinct_on - [AssetIconURL_select_column!] distinct select on columns
limit - Int limit the number of rows returned
offset - Int skip the first n rows. Use only with order_by
order_by - [AssetIconURL_order_by!] sort the rows by one or more columns
where - AssetIconURL_bool_exp filter the rows returned

Example

Query
query AssetIconURL_aggregate(
  $distinct_on: [AssetIconURL_select_column!],
  $limit: Int,
  $offset: Int,
  $order_by: [AssetIconURL_order_by!],
  $where: AssetIconURL_bool_exp
) {
  AssetIconURL_aggregate(
    distinct_on: $distinct_on,
    limit: $limit,
    offset: $offset,
    order_by: $order_by,
    where: $where
  ) {
    aggregate {
      ...AssetIconURL_aggregate_fieldsFragment
    }
    nodes {
      ...AssetIconURLFragment
    }
  }
}
Variables
{
  "distinct_on": ["asset_id"],
  "limit": 123,
  "offset": 987,
  "order_by": [AssetIconURL_order_by],
  "where": AssetIconURL_bool_exp
}
Response
{
  "data": {
    "AssetIconURL_aggregate": {
      "aggregate": AssetIconURL_aggregate_fields,
      "nodes": [AssetIconURL]
    }
  }
}

AssetIconURL_by_pk

Description

fetch data from the table: "AssetIconURL" using primary key columns

Response

Returns an AssetIconURL

Arguments
Name Description
id - String!

Example

Query
query AssetIconURL_by_pk($id: String!) {
  AssetIconURL_by_pk(id: $id) {
    asset {
      ...AssetFragment
    }
    asset_id
    blockNumber
    data
    db_write_timestamp
    error
    fileType
    height
    id
    method
    src
    url
    verified
    width
  }
}
Variables
{"id": "abc123"}
Response
{
  "data": {
    "AssetIconURL_by_pk": {
      "asset": Asset,
      "asset_id": "abc123",
      "blockNumber": 123,
      "data": "xyz789",
      "db_write_timestamp": timestamp,
      "error": "abc123",
      "fileType": "abc123",
      "height": 987,
      "id": "xyz789",
      "method": "abc123",
      "src": "abc123",
      "url": "abc123",
      "verified": verificationstatus,
      "width": 123
    }
  }
}

AssetImageURL

Description

fetch data from the table: "AssetImageURL"

Response

Returns [AssetImageURL!]!

Arguments
Name Description
distinct_on - [AssetImageURL_select_column!] distinct select on columns
limit - Int limit the number of rows returned
offset - Int skip the first n rows. Use only with order_by
order_by - [AssetImageURL_order_by!] sort the rows by one or more columns
where - AssetImageURL_bool_exp filter the rows returned

Example

Query
query AssetImageURL(
  $distinct_on: [AssetImageURL_select_column!],
  $limit: Int,
  $offset: Int,
  $order_by: [AssetImageURL_order_by!],
  $where: AssetImageURL_bool_exp
) {
  AssetImageURL(
    distinct_on: $distinct_on,
    limit: $limit,
    offset: $offset,
    order_by: $order_by,
    where: $where
  ) {
    asset {
      ...AssetFragment
    }
    asset_id
    blockNumber
    data
    db_write_timestamp
    error
    fileType
    height
    id
    index
    method
    src
    url
    verified
    width
  }
}
Variables
{
  "distinct_on": ["asset_id"],
  "limit": 123,
  "offset": 987,
  "order_by": [AssetImageURL_order_by],
  "where": AssetImageURL_bool_exp
}
Response
{
  "data": {
    "AssetImageURL": [
      {
        "asset": Asset,
        "asset_id": "abc123",
        "blockNumber": 987,
        "data": "xyz789",
        "db_write_timestamp": timestamp,
        "error": "xyz789",
        "fileType": "abc123",
        "height": 987,
        "id": "xyz789",
        "index": 987,
        "method": "abc123",
        "src": "xyz789",
        "url": "xyz789",
        "verified": verificationstatus,
        "width": 123
      }
    ]
  }
}

AssetImageURL_aggregate

Description

fetch aggregated fields from the table: "AssetImageURL"

Response

Returns an AssetImageURL_aggregate!

Arguments
Name Description
distinct_on - [AssetImageURL_select_column!] distinct select on columns
limit - Int limit the number of rows returned
offset - Int skip the first n rows. Use only with order_by
order_by - [AssetImageURL_order_by!] sort the rows by one or more columns
where - AssetImageURL_bool_exp filter the rows returned

Example

Query
query AssetImageURL_aggregate(
  $distinct_on: [AssetImageURL_select_column!],
  $limit: Int,
  $offset: Int,
  $order_by: [AssetImageURL_order_by!],
  $where: AssetImageURL_bool_exp
) {
  AssetImageURL_aggregate(
    distinct_on: $distinct_on,
    limit: $limit,
    offset: $offset,
    order_by: $order_by,
    where: $where
  ) {
    aggregate {
      ...AssetImageURL_aggregate_fieldsFragment
    }
    nodes {
      ...AssetImageURLFragment
    }
  }
}
Variables
{
  "distinct_on": ["asset_id"],
  "limit": 987,
  "offset": 987,
  "order_by": [AssetImageURL_order_by],
  "where": AssetImageURL_bool_exp
}
Response
{
  "data": {
    "AssetImageURL_aggregate": {
      "aggregate": AssetImageURL_aggregate_fields,
      "nodes": [AssetImageURL]
    }
  }
}

AssetImageURL_by_pk

Description

fetch data from the table: "AssetImageURL" using primary key columns

Response

Returns an AssetImageURL

Arguments
Name Description
id - String!

Example

Query
query AssetImageURL_by_pk($id: String!) {
  AssetImageURL_by_pk(id: $id) {
    asset {
      ...AssetFragment
    }
    asset_id
    blockNumber
    data
    db_write_timestamp
    error
    fileType
    height
    id
    index
    method
    src
    url
    verified
    width
  }
}
Variables
{"id": "abc123"}
Response
{
  "data": {
    "AssetImageURL_by_pk": {
      "asset": Asset,
      "asset_id": "abc123",
      "blockNumber": 123,
      "data": "xyz789",
      "db_write_timestamp": timestamp,
      "error": "xyz789",
      "fileType": "xyz789",
      "height": 123,
      "id": "xyz789",
      "index": 123,
      "method": "xyz789",
      "src": "abc123",
      "url": "abc123",
      "verified": verificationstatus,
      "width": 987
    }
  }
}

Asset_aggregate

Description

fetch aggregated fields from the table: "Asset"

Response

Returns an Asset_aggregate!

Arguments
Name Description
distinct_on - [Asset_select_column!] distinct select on columns
limit - Int limit the number of rows returned
offset - Int skip the first n rows. Use only with order_by
order_by - [Asset_order_by!] sort the rows by one or more columns
where - Asset_bool_exp filter the rows returned

Example

Query
query Asset_aggregate(
  $distinct_on: [Asset_select_column!],
  $limit: Int,
  $offset: Int,
  $order_by: [Asset_order_by!],
  $where: Asset_bool_exp
) {
  Asset_aggregate(
    distinct_on: $distinct_on,
    limit: $limit,
    offset: $offset,
    order_by: $order_by,
    where: $where
  ) {
    aggregate {
      ...Asset_aggregate_fieldsFragment
    }
    nodes {
      ...AssetFragment
    }
  }
}
Variables
{
  "distinct_on": ["assets_"],
  "limit": 123,
  "offset": 123,
  "order_by": [Asset_order_by],
  "where": Asset_bool_exp
}
Response
{
  "data": {
    "Asset_aggregate": {
      "aggregate": Asset_aggregate_fields,
      "nodes": [Asset]
    }
  }
}

Asset_by_pk

Description

fetch data from the table: "Asset" using primary key columns

Response

Returns an Asset

Arguments
Name Description
id - String!

Example

Query
query Asset_by_pk($id: String!) {
  Asset_by_pk(id: $id) {
    appHistory {
      ...AppHistoryFragment
    }
    appHistory_aggregate {
      ...AppHistory_aggregateFragment
    }
    appInstalls {
      ...AppInstallFragment
    }
    appInstalls_aggregate {
      ...AppInstall_aggregateFragment
    }
    assets {
      ...AssetAssetURLFragment
    }
    assets_
    assets_aggregate {
      ...AssetAssetURL_aggregateFragment
    }
    attributes {
      ...AssetAttributeFragment
    }
    attributes_
    attributes_aggregate {
      ...AssetAttribute_aggregateFragment
    }
    backgroundImages {
      ...AssetBackgroundImageURLFragment
    }
    backgroundImages_
    baseHolders {
      ...HoldFragment
    }
    baseHolders_aggregate {
      ...Hold_aggregateFragment
    }
    blockNumber
    category
    createdBlockNumber
    createdTimestamp
    createdTransactionIndex
    data
    db_write_timestamp
    decimals
    description
    error
    holders {
      ...HoldFragment
    }
    holders_aggregate {
      ...Hold_aggregateFragment
    }
    icons {
      ...AssetIconURLFragment
    }
    icons_
    icons_aggregate {
      ...AssetIconURL_aggregateFragment
    }
    id
    images {
      ...AssetImageURLFragment
    }
    images_
    images_aggregate {
      ...AssetImageURL_aggregateFragment
    }
    interfaces
    isCollection
    isLSP7
    isUnknown
    links {
      ...AssetLinkFragment
    }
    links_
    links_aggregate {
      ...AssetLink_aggregateFragment
    }
    lsp4Creators {
      ...AssetCreatorsFragment
    }
    lsp4CreatorsMap {
      ...AssetCreatorsFragment
    }
    lsp4CreatorsMap_aggregate {
      ...AssetCreators_aggregateFragment
    }
    lsp4Creators_
    lsp4Creators_aggregate {
      ...AssetCreators_aggregateFragment
    }
    lsp4TokenName
    lsp4TokenSymbol
    lsp4TokenType
    lsp8ReferenceContract {
      ...AssetFragment
    }
    lsp8ReferenceContractSelf
    lsp8ReferenceContract_id
    lsp8TokenIdFormat
    lsp8TokenMetadataBaseUri
    method
    name
    owner {
      ...ProfileFragment
    }
    owner_id
    src
    standard
    supportedStandardsLsp4DigitalAsset
    tokens {
      ...TokenFragment
    }
    tokens_aggregate {
      ...Token_aggregateFragment
    }
    totalSupply
    transfers {
      ...TransferFragment
    }
    transfers_aggregate {
      ...Transfer_aggregateFragment
    }
    updatedBlockNumber
    updatedTimestamp
    updatedTransactionIndex
    url
  }
}
Variables
{"id": "xyz789"}
Response
{
  "data": {
    "Asset_by_pk": {
      "appHistory": [AppHistory],
      "appHistory_aggregate": AppHistory_aggregate,
      "appInstalls": [AppInstall],
      "appInstalls_aggregate": AppInstall_aggregate,
      "assets": [AssetAssetURL],
      "assets_": ["xyz789"],
      "assets_aggregate": AssetAssetURL_aggregate,
      "attributes": [AssetAttribute],
      "attributes_": ["xyz789"],
      "attributes_aggregate": AssetAttribute_aggregate,
      "backgroundImages": [AssetBackgroundImageURL],
      "backgroundImages_": ["abc123"],
      "baseHolders": [Hold],
      "baseHolders_aggregate": Hold_aggregate,
      "blockNumber": 123,
      "category": "abc123",
      "createdBlockNumber": 123,
      "createdTimestamp": 123,
      "createdTransactionIndex": 987,
      "data": "abc123",
      "db_write_timestamp": timestamp,
      "decimals": 123,
      "description": "xyz789",
      "error": "abc123",
      "holders": [Hold],
      "holders_aggregate": Hold_aggregate,
      "icons": [AssetIconURL],
      "icons_": ["abc123"],
      "icons_aggregate": AssetIconURL_aggregate,
      "id": "abc123",
      "images": [AssetImageURL],
      "images_": ["abc123"],
      "images_aggregate": AssetImageURL_aggregate,
      "interfaces": ["xyz789"],
      "isCollection": false,
      "isLSP7": true,
      "isUnknown": false,
      "links": [AssetLink],
      "links_": ["abc123"],
      "links_aggregate": AssetLink_aggregate,
      "lsp4Creators": [AssetCreators],
      "lsp4CreatorsMap": [AssetCreators],
      "lsp4CreatorsMap_aggregate": AssetCreators_aggregate,
      "lsp4Creators_": ["xyz789"],
      "lsp4Creators_aggregate": AssetCreators_aggregate,
      "lsp4TokenName": "abc123",
      "lsp4TokenSymbol": "abc123",
      "lsp4TokenType": 123,
      "lsp8ReferenceContract": Asset,
      "lsp8ReferenceContractSelf": "xyz789",
      "lsp8ReferenceContract_id": "abc123",
      "lsp8TokenIdFormat": 123,
      "lsp8TokenMetadataBaseUri": "abc123",
      "method": "abc123",
      "name": "xyz789",
      "owner": Profile,
      "owner_id": "abc123",
      "src": "xyz789",
      "standard": standards,
      "supportedStandardsLsp4DigitalAsset": false,
      "tokens": [Token],
      "tokens_aggregate": Token_aggregate,
      "totalSupply": numeric,
      "transfers": [Transfer],
      "transfers_aggregate": Transfer_aggregate,
      "updatedBlockNumber": 987,
      "updatedTimestamp": 123,
      "updatedTransactionIndex": 987,
      "url": "xyz789"
    }
  }
}

AvatarAssetURL

Description

fetch data from the table: "AvatarAssetURL"

Response

Returns [AvatarAssetURL!]!

Arguments
Name Description
distinct_on - [AvatarAssetURL_select_column!] distinct select on columns
limit - Int limit the number of rows returned
offset - Int skip the first n rows. Use only with order_by
order_by - [AvatarAssetURL_order_by!] sort the rows by one or more columns
where - AvatarAssetURL_bool_exp filter the rows returned

Example

Query
query AvatarAssetURL(
  $distinct_on: [AvatarAssetURL_select_column!],
  $limit: Int,
  $offset: Int,
  $order_by: [AvatarAssetURL_order_by!],
  $where: AvatarAssetURL_bool_exp
) {
  AvatarAssetURL(
    distinct_on: $distinct_on,
    limit: $limit,
    offset: $offset,
    order_by: $order_by,
    where: $where
  ) {
    blockNumber
    contentAsset {
      ...AssetFragment
    }
    contentAsset_id
    contentToken {
      ...TokenFragment
    }
    contentToken_id
    data
    db_write_timestamp
    error
    fileType
    height
    id
    index
    method
    profile {
      ...ProfileFragment
    }
    profile_id
    src
    url
    verified
    width
  }
}
Variables
{
  "distinct_on": ["blockNumber"],
  "limit": 987,
  "offset": 123,
  "order_by": [AvatarAssetURL_order_by],
  "where": AvatarAssetURL_bool_exp
}
Response
{
  "data": {
    "AvatarAssetURL": [
      {
        "blockNumber": 987,
        "contentAsset": Asset,
        "contentAsset_id": "xyz789",
        "contentToken": Token,
        "contentToken_id": "xyz789",
        "data": "abc123",
        "db_write_timestamp": timestamp,
        "error": "xyz789",
        "fileType": "xyz789",
        "height": 123,
        "id": "xyz789",
        "index": 123,
        "method": "xyz789",
        "profile": Profile,
        "profile_id": "abc123",
        "src": "abc123",
        "url": "abc123",
        "verified": verificationstatus,
        "width": 123
      }
    ]
  }
}

AvatarAssetURL_aggregate

Description

fetch aggregated fields from the table: "AvatarAssetURL"

Response

Returns an AvatarAssetURL_aggregate!

Arguments
Name Description
distinct_on - [AvatarAssetURL_select_column!] distinct select on columns
limit - Int limit the number of rows returned
offset - Int skip the first n rows. Use only with order_by
order_by - [AvatarAssetURL_order_by!] sort the rows by one or more columns
where - AvatarAssetURL_bool_exp filter the rows returned

Example

Query
query AvatarAssetURL_aggregate(
  $distinct_on: [AvatarAssetURL_select_column!],
  $limit: Int,
  $offset: Int,
  $order_by: [AvatarAssetURL_order_by!],
  $where: AvatarAssetURL_bool_exp
) {
  AvatarAssetURL_aggregate(
    distinct_on: $distinct_on,
    limit: $limit,
    offset: $offset,
    order_by: $order_by,
    where: $where
  ) {
    aggregate {
      ...AvatarAssetURL_aggregate_fieldsFragment
    }
    nodes {
      ...AvatarAssetURLFragment
    }
  }
}
Variables
{
  "distinct_on": ["blockNumber"],
  "limit": 123,
  "offset": 987,
  "order_by": [AvatarAssetURL_order_by],
  "where": AvatarAssetURL_bool_exp
}
Response
{
  "data": {
    "AvatarAssetURL_aggregate": {
      "aggregate": AvatarAssetURL_aggregate_fields,
      "nodes": [AvatarAssetURL]
    }
  }
}

AvatarAssetURL_by_pk

Description

fetch data from the table: "AvatarAssetURL" using primary key columns

Response

Returns an AvatarAssetURL

Arguments
Name Description
id - String!

Example

Query
query AvatarAssetURL_by_pk($id: String!) {
  AvatarAssetURL_by_pk(id: $id) {
    blockNumber
    contentAsset {
      ...AssetFragment
    }
    contentAsset_id
    contentToken {
      ...TokenFragment
    }
    contentToken_id
    data
    db_write_timestamp
    error
    fileType
    height
    id
    index
    method
    profile {
      ...ProfileFragment
    }
    profile_id
    src
    url
    verified
    width
  }
}
Variables
{"id": "xyz789"}
Response
{
  "data": {
    "AvatarAssetURL_by_pk": {
      "blockNumber": 123,
      "contentAsset": Asset,
      "contentAsset_id": "xyz789",
      "contentToken": Token,
      "contentToken_id": "abc123",
      "data": "abc123",
      "db_write_timestamp": timestamp,
      "error": "xyz789",
      "fileType": "xyz789",
      "height": 123,
      "id": "xyz789",
      "index": 123,
      "method": "xyz789",
      "profile": Profile,
      "profile_id": "xyz789",
      "src": "xyz789",
      "url": "abc123",
      "verified": verificationstatus,
      "width": 123
    }
  }
}

BackgroundImageURL

Description

fetch data from the table: "BackgroundImageURL"

Response

Returns [BackgroundImageURL!]!

Arguments
Name Description
distinct_on - [BackgroundImageURL_select_column!] distinct select on columns
limit - Int limit the number of rows returned
offset - Int skip the first n rows. Use only with order_by
order_by - [BackgroundImageURL_order_by!] sort the rows by one or more columns
where - BackgroundImageURL_bool_exp filter the rows returned

Example

Query
query BackgroundImageURL(
  $distinct_on: [BackgroundImageURL_select_column!],
  $limit: Int,
  $offset: Int,
  $order_by: [BackgroundImageURL_order_by!],
  $where: BackgroundImageURL_bool_exp
) {
  BackgroundImageURL(
    distinct_on: $distinct_on,
    limit: $limit,
    offset: $offset,
    order_by: $order_by,
    where: $where
  ) {
    blockNumber
    data
    db_write_timestamp
    error
    fileType
    height
    id
    index
    method
    profile {
      ...ProfileFragment
    }
    profile_id
    src
    url
    verified
    width
  }
}
Variables
{
  "distinct_on": ["blockNumber"],
  "limit": 123,
  "offset": 987,
  "order_by": [BackgroundImageURL_order_by],
  "where": BackgroundImageURL_bool_exp
}
Response
{
  "data": {
    "BackgroundImageURL": [
      {
        "blockNumber": 987,
        "data": "xyz789",
        "db_write_timestamp": timestamp,
        "error": "xyz789",
        "fileType": "xyz789",
        "height": 987,
        "id": "abc123",
        "index": 987,
        "method": "abc123",
        "profile": Profile,
        "profile_id": "abc123",
        "src": "abc123",
        "url": "abc123",
        "verified": verificationstatus,
        "width": 987
      }
    ]
  }
}

BackgroundImageURL_aggregate

Description

fetch aggregated fields from the table: "BackgroundImageURL"

Response

Returns an BackgroundImageURL_aggregate!

Arguments
Name Description
distinct_on - [BackgroundImageURL_select_column!] distinct select on columns
limit - Int limit the number of rows returned
offset - Int skip the first n rows. Use only with order_by
order_by - [BackgroundImageURL_order_by!] sort the rows by one or more columns
where - BackgroundImageURL_bool_exp filter the rows returned

Example

Query
query BackgroundImageURL_aggregate(
  $distinct_on: [BackgroundImageURL_select_column!],
  $limit: Int,
  $offset: Int,
  $order_by: [BackgroundImageURL_order_by!],
  $where: BackgroundImageURL_bool_exp
) {
  BackgroundImageURL_aggregate(
    distinct_on: $distinct_on,
    limit: $limit,
    offset: $offset,
    order_by: $order_by,
    where: $where
  ) {
    aggregate {
      ...BackgroundImageURL_aggregate_fieldsFragment
    }
    nodes {
      ...BackgroundImageURLFragment
    }
  }
}
Variables
{
  "distinct_on": ["blockNumber"],
  "limit": 123,
  "offset": 987,
  "order_by": [BackgroundImageURL_order_by],
  "where": BackgroundImageURL_bool_exp
}
Response
{
  "data": {
    "BackgroundImageURL_aggregate": {
      "aggregate": BackgroundImageURL_aggregate_fields,
      "nodes": [BackgroundImageURL]
    }
  }
}

BackgroundImageURL_by_pk

Description

fetch data from the table: "BackgroundImageURL" using primary key columns

Response

Returns an BackgroundImageURL

Arguments
Name Description
id - String!

Example

Query
query BackgroundImageURL_by_pk($id: String!) {
  BackgroundImageURL_by_pk(id: $id) {
    blockNumber
    data
    db_write_timestamp
    error
    fileType
    height
    id
    index
    method
    profile {
      ...ProfileFragment
    }
    profile_id
    src
    url
    verified
    width
  }
}
Variables
{"id": "xyz789"}
Response
{
  "data": {
    "BackgroundImageURL_by_pk": {
      "blockNumber": 123,
      "data": "abc123",
      "db_write_timestamp": timestamp,
      "error": "abc123",
      "fileType": "xyz789",
      "height": 987,
      "id": "xyz789",
      "index": 123,
      "method": "xyz789",
      "profile": Profile,
      "profile_id": "abc123",
      "src": "xyz789",
      "url": "abc123",
      "verified": verificationstatus,
      "width": 123
    }
  }
}

Controller

Description

fetch data from the table: "Controller"

Response

Returns [Controller!]!

Arguments
Name Description
distinct_on - [Controller_select_column!] distinct select on columns
limit - Int limit the number of rows returned
offset - Int skip the first n rows. Use only with order_by
order_by - [Controller_order_by!] sort the rows by one or more columns
where - Controller_bool_exp filter the rows returned

Example

Query
query Controller(
  $distinct_on: [Controller_select_column!],
  $limit: Int,
  $offset: Int,
  $order_by: [Controller_order_by!],
  $where: Controller_bool_exp
) {
  Controller(
    distinct_on: $distinct_on,
    limit: $limit,
    offset: $offset,
    order_by: $order_by,
    where: $where
  ) {
    address
    blockNumber
    db_write_timestamp
    id
    permissions
    profile {
      ...ProfileFragment
    }
    profile_id
    tags
  }
}
Variables
{
  "distinct_on": ["address"],
  "limit": 123,
  "offset": 987,
  "order_by": [Controller_order_by],
  "where": Controller_bool_exp
}
Response
{
  "data": {
    "Controller": [
      {
        "address": "xyz789",
        "blockNumber": 123,
        "db_write_timestamp": timestamp,
        "id": "xyz789",
        "permissions": "xyz789",
        "profile": Profile,
        "profile_id": "xyz789",
        "tags": [permissions]
      }
    ]
  }
}

Controller_aggregate

Description

fetch aggregated fields from the table: "Controller"

Response

Returns a Controller_aggregate!

Arguments
Name Description
distinct_on - [Controller_select_column!] distinct select on columns
limit - Int limit the number of rows returned
offset - Int skip the first n rows. Use only with order_by
order_by - [Controller_order_by!] sort the rows by one or more columns
where - Controller_bool_exp filter the rows returned

Example

Query
query Controller_aggregate(
  $distinct_on: [Controller_select_column!],
  $limit: Int,
  $offset: Int,
  $order_by: [Controller_order_by!],
  $where: Controller_bool_exp
) {
  Controller_aggregate(
    distinct_on: $distinct_on,
    limit: $limit,
    offset: $offset,
    order_by: $order_by,
    where: $where
  ) {
    aggregate {
      ...Controller_aggregate_fieldsFragment
    }
    nodes {
      ...ControllerFragment
    }
  }
}
Variables
{
  "distinct_on": ["address"],
  "limit": 123,
  "offset": 123,
  "order_by": [Controller_order_by],
  "where": Controller_bool_exp
}
Response
{
  "data": {
    "Controller_aggregate": {
      "aggregate": Controller_aggregate_fields,
      "nodes": [Controller]
    }
  }
}

Controller_by_pk

Description

fetch data from the table: "Controller" using primary key columns

Response

Returns a Controller

Arguments
Name Description
id - String!

Example

Query
query Controller_by_pk($id: String!) {
  Controller_by_pk(id: $id) {
    address
    blockNumber
    db_write_timestamp
    id
    permissions
    profile {
      ...ProfileFragment
    }
    profile_id
    tags
  }
}
Variables
{"id": "abc123"}
Response
{
  "data": {
    "Controller_by_pk": {
      "address": "abc123",
      "blockNumber": 987,
      "db_write_timestamp": timestamp,
      "id": "abc123",
      "permissions": "xyz789",
      "profile": Profile,
      "profile_id": "abc123",
      "tags": [permissions]
    }
  }
}

DataChanged

Description

fetch data from the table: "DataChanged"

Response

Returns [DataChanged!]!

Arguments
Name Description
distinct_on - [DataChanged_select_column!] distinct select on columns
limit - Int limit the number of rows returned
offset - Int skip the first n rows. Use only with order_by
order_by - [DataChanged_order_by!] sort the rows by one or more columns
where - DataChanged_bool_exp filter the rows returned

Example

Query
query DataChanged(
  $distinct_on: [DataChanged_select_column!],
  $limit: Int,
  $offset: Int,
  $order_by: [DataChanged_order_by!],
  $where: DataChanged_bool_exp
) {
  DataChanged(
    distinct_on: $distinct_on,
    limit: $limit,
    offset: $offset,
    order_by: $order_by,
    where: $where
  ) {
    address
    asset {
      ...AssetFragment
    }
    asset_id
    blockNumber
    db_write_timestamp
    id
    key
    logIndex
    profile {
      ...ProfileFragment
    }
    profile_id
    token {
      ...TokenFragment
    }
    token_id
    transactionHash
    value
  }
}
Variables
{
  "distinct_on": ["address"],
  "limit": 123,
  "offset": 123,
  "order_by": [DataChanged_order_by],
  "where": DataChanged_bool_exp
}
Response
{
  "data": {
    "DataChanged": [
      {
        "address": "xyz789",
        "asset": Asset,
        "asset_id": "xyz789",
        "blockNumber": 987,
        "db_write_timestamp": timestamp,
        "id": "xyz789",
        "key": "xyz789",
        "logIndex": 987,
        "profile": Profile,
        "profile_id": "abc123",
        "token": Token,
        "token_id": "xyz789",
        "transactionHash": "xyz789",
        "value": "abc123"
      }
    ]
  }
}

DataChanged_aggregate

Description

fetch aggregated fields from the table: "DataChanged"

Response

Returns a DataChanged_aggregate!

Arguments
Name Description
distinct_on - [DataChanged_select_column!] distinct select on columns
limit - Int limit the number of rows returned
offset - Int skip the first n rows. Use only with order_by
order_by - [DataChanged_order_by!] sort the rows by one or more columns
where - DataChanged_bool_exp filter the rows returned

Example

Query
query DataChanged_aggregate(
  $distinct_on: [DataChanged_select_column!],
  $limit: Int,
  $offset: Int,
  $order_by: [DataChanged_order_by!],
  $where: DataChanged_bool_exp
) {
  DataChanged_aggregate(
    distinct_on: $distinct_on,
    limit: $limit,
    offset: $offset,
    order_by: $order_by,
    where: $where
  ) {
    aggregate {
      ...DataChanged_aggregate_fieldsFragment
    }
    nodes {
      ...DataChangedFragment
    }
  }
}
Variables
{
  "distinct_on": ["address"],
  "limit": 123,
  "offset": 123,
  "order_by": [DataChanged_order_by],
  "where": DataChanged_bool_exp
}
Response
{
  "data": {
    "DataChanged_aggregate": {
      "aggregate": DataChanged_aggregate_fields,
      "nodes": [DataChanged]
    }
  }
}

DataChanged_by_pk

Description

fetch data from the table: "DataChanged" using primary key columns

Response

Returns a DataChanged

Arguments
Name Description
id - String!

Example

Query
query DataChanged_by_pk($id: String!) {
  DataChanged_by_pk(id: $id) {
    address
    asset {
      ...AssetFragment
    }
    asset_id
    blockNumber
    db_write_timestamp
    id
    key
    logIndex
    profile {
      ...ProfileFragment
    }
    profile_id
    token {
      ...TokenFragment
    }
    token_id
    transactionHash
    value
  }
}
Variables
{"id": "abc123"}
Response
{
  "data": {
    "DataChanged_by_pk": {
      "address": "abc123",
      "asset": Asset,
      "asset_id": "xyz789",
      "blockNumber": 987,
      "db_write_timestamp": timestamp,
      "id": "abc123",
      "key": "abc123",
      "logIndex": 123,
      "profile": Profile,
      "profile_id": "abc123",
      "token": Token,
      "token_id": "abc123",
      "transactionHash": "abc123",
      "value": "abc123"
    }
  }
}

Feed

Description

fetch data from the table: "Feed"

Response

Returns [Feed!]!

Arguments
Name Description
distinct_on - [Feed_select_column!] distinct select on columns
limit - Int limit the number of rows returned
offset - Int skip the first n rows. Use only with order_by
order_by - [Feed_order_by!] sort the rows by one or more columns
where - Feed_bool_exp filter the rows returned

Example

Query
query Feed(
  $distinct_on: [Feed_select_column!],
  $limit: Int,
  $offset: Int,
  $order_by: [Feed_order_by!],
  $where: Feed_bool_exp
) {
  Feed(
    distinct_on: $distinct_on,
    limit: $limit,
    offset: $offset,
    order_by: $order_by,
    where: $where
  ) {
    address
    assetArgs {
      ...FeedAssetArgFragment
    }
    assetArgs_aggregate {
      ...FeedAssetArg_aggregateFragment
    }
    blockNumber
    dataKey
    decoded
    eventType
    id
    logIndex
    profileArgs {
      ...FeedProfileArgFragment
    }
    profileArgs_aggregate {
      ...FeedProfileArg_aggregateFragment
    }
    profiles {
      ...FeedProfileFragment
    }
    profiles_aggregate {
      ...FeedProfile_aggregateFragment
    }
    timestamp
    tokenArgs {
      ...FeedTokenArgFragment
    }
    tokenArgs_aggregate {
      ...FeedTokenArg_aggregateFragment
    }
    transactionHash
    transactionIndex
  }
}
Variables
{
  "distinct_on": ["address"],
  "limit": 123,
  "offset": 123,
  "order_by": [Feed_order_by],
  "where": Feed_bool_exp
}
Response
{
  "data": {
    "Feed": [
      {
        "address": "abc123",
        "assetArgs": [FeedAssetArg],
        "assetArgs_aggregate": FeedAssetArg_aggregate,
        "blockNumber": 123,
        "dataKey": "abc123",
        "decoded": jsonb,
        "eventType": "xyz789",
        "id": "abc123",
        "logIndex": 123,
        "profileArgs": [FeedProfileArg],
        "profileArgs_aggregate": FeedProfileArg_aggregate,
        "profiles": [FeedProfile],
        "profiles_aggregate": FeedProfile_aggregate,
        "timestamp": 987,
        "tokenArgs": [FeedTokenArg],
        "tokenArgs_aggregate": FeedTokenArg_aggregate,
        "transactionHash": "xyz789",
        "transactionIndex": 987
      }
    ]
  }
}

FeedAssetArg

Description

fetch data from the table: "FeedAssetArg"

Response

Returns [FeedAssetArg!]!

Arguments
Name Description
distinct_on - [FeedAssetArg_select_column!] distinct select on columns
limit - Int limit the number of rows returned
offset - Int skip the first n rows. Use only with order_by
order_by - [FeedAssetArg_order_by!] sort the rows by one or more columns
where - FeedAssetArg_bool_exp filter the rows returned

Example

Query
query FeedAssetArg(
  $distinct_on: [FeedAssetArg_select_column!],
  $limit: Int,
  $offset: Int,
  $order_by: [FeedAssetArg_order_by!],
  $where: FeedAssetArg_bool_exp
) {
  FeedAssetArg(
    distinct_on: $distinct_on,
    limit: $limit,
    offset: $offset,
    order_by: $order_by,
    where: $where
  ) {
    asset {
      ...AssetFragment
    }
    asset_id
    feed {
      ...FeedFragment
    }
    feed_id
    id
  }
}
Variables
{
  "distinct_on": ["asset_id"],
  "limit": 987,
  "offset": 123,
  "order_by": [FeedAssetArg_order_by],
  "where": FeedAssetArg_bool_exp
}
Response
{
  "data": {
    "FeedAssetArg": [
      {
        "asset": Asset,
        "asset_id": "abc123",
        "feed": Feed,
        "feed_id": "abc123",
        "id": "xyz789"
      }
    ]
  }
}

FeedAssetArg_aggregate

Description

fetch aggregated fields from the table: "FeedAssetArg"

Response

Returns a FeedAssetArg_aggregate!

Arguments
Name Description
distinct_on - [FeedAssetArg_select_column!] distinct select on columns
limit - Int limit the number of rows returned
offset - Int skip the first n rows. Use only with order_by
order_by - [FeedAssetArg_order_by!] sort the rows by one or more columns
where - FeedAssetArg_bool_exp filter the rows returned

Example

Query
query FeedAssetArg_aggregate(
  $distinct_on: [FeedAssetArg_select_column!],
  $limit: Int,
  $offset: Int,
  $order_by: [FeedAssetArg_order_by!],
  $where: FeedAssetArg_bool_exp
) {
  FeedAssetArg_aggregate(
    distinct_on: $distinct_on,
    limit: $limit,
    offset: $offset,
    order_by: $order_by,
    where: $where
  ) {
    aggregate {
      ...FeedAssetArg_aggregate_fieldsFragment
    }
    nodes {
      ...FeedAssetArgFragment
    }
  }
}
Variables
{
  "distinct_on": ["asset_id"],
  "limit": 123,
  "offset": 987,
  "order_by": [FeedAssetArg_order_by],
  "where": FeedAssetArg_bool_exp
}
Response
{
  "data": {
    "FeedAssetArg_aggregate": {
      "aggregate": FeedAssetArg_aggregate_fields,
      "nodes": [FeedAssetArg]
    }
  }
}

FeedAssetArg_by_pk

Description

fetch data from the table: "FeedAssetArg" using primary key columns

Response

Returns a FeedAssetArg

Arguments
Name Description
id - String!

Example

Query
query FeedAssetArg_by_pk($id: String!) {
  FeedAssetArg_by_pk(id: $id) {
    asset {
      ...AssetFragment
    }
    asset_id
    feed {
      ...FeedFragment
    }
    feed_id
    id
  }
}
Variables
{"id": "abc123"}
Response
{
  "data": {
    "FeedAssetArg_by_pk": {
      "asset": Asset,
      "asset_id": "abc123",
      "feed": Feed,
      "feed_id": "xyz789",
      "id": "abc123"
    }
  }
}

FeedProfile

Description

fetch data from the table: "FeedProfile"

Response

Returns [FeedProfile!]!

Arguments
Name Description
distinct_on - [FeedProfile_select_column!] distinct select on columns
limit - Int limit the number of rows returned
offset - Int skip the first n rows. Use only with order_by
order_by - [FeedProfile_order_by!] sort the rows by one or more columns
where - FeedProfile_bool_exp filter the rows returned

Example

Query
query FeedProfile(
  $distinct_on: [FeedProfile_select_column!],
  $limit: Int,
  $offset: Int,
  $order_by: [FeedProfile_order_by!],
  $where: FeedProfile_bool_exp
) {
  FeedProfile(
    distinct_on: $distinct_on,
    limit: $limit,
    offset: $offset,
    order_by: $order_by,
    where: $where
  ) {
    feed {
      ...FeedFragment
    }
    feed_id
    id
    profile {
      ...ProfileFragment
    }
    profile_id
  }
}
Variables
{
  "distinct_on": ["feed_id"],
  "limit": 123,
  "offset": 123,
  "order_by": [FeedProfile_order_by],
  "where": FeedProfile_bool_exp
}
Response
{
  "data": {
    "FeedProfile": [
      {
        "feed": Feed,
        "feed_id": "abc123",
        "id": "abc123",
        "profile": Profile,
        "profile_id": "xyz789"
      }
    ]
  }
}

FeedProfileArg

Description

fetch data from the table: "FeedProfileArg"

Response

Returns [FeedProfileArg!]!

Arguments
Name Description
distinct_on - [FeedProfileArg_select_column!] distinct select on columns
limit - Int limit the number of rows returned
offset - Int skip the first n rows. Use only with order_by
order_by - [FeedProfileArg_order_by!] sort the rows by one or more columns
where - FeedProfileArg_bool_exp filter the rows returned

Example

Query
query FeedProfileArg(
  $distinct_on: [FeedProfileArg_select_column!],
  $limit: Int,
  $offset: Int,
  $order_by: [FeedProfileArg_order_by!],
  $where: FeedProfileArg_bool_exp
) {
  FeedProfileArg(
    distinct_on: $distinct_on,
    limit: $limit,
    offset: $offset,
    order_by: $order_by,
    where: $where
  ) {
    feed {
      ...FeedFragment
    }
    feed_id
    id
    profile {
      ...ProfileFragment
    }
    profile_id
  }
}
Variables
{
  "distinct_on": ["feed_id"],
  "limit": 123,
  "offset": 123,
  "order_by": [FeedProfileArg_order_by],
  "where": FeedProfileArg_bool_exp
}
Response
{
  "data": {
    "FeedProfileArg": [
      {
        "feed": Feed,
        "feed_id": "xyz789",
        "id": "abc123",
        "profile": Profile,
        "profile_id": "xyz789"
      }
    ]
  }
}

FeedProfileArg_aggregate

Description

fetch aggregated fields from the table: "FeedProfileArg"

Response

Returns a FeedProfileArg_aggregate!

Arguments
Name Description
distinct_on - [FeedProfileArg_select_column!] distinct select on columns
limit - Int limit the number of rows returned
offset - Int skip the first n rows. Use only with order_by
order_by - [FeedProfileArg_order_by!] sort the rows by one or more columns
where - FeedProfileArg_bool_exp filter the rows returned

Example

Query
query FeedProfileArg_aggregate(
  $distinct_on: [FeedProfileArg_select_column!],
  $limit: Int,
  $offset: Int,
  $order_by: [FeedProfileArg_order_by!],
  $where: FeedProfileArg_bool_exp
) {
  FeedProfileArg_aggregate(
    distinct_on: $distinct_on,
    limit: $limit,
    offset: $offset,
    order_by: $order_by,
    where: $where
  ) {
    aggregate {
      ...FeedProfileArg_aggregate_fieldsFragment
    }
    nodes {
      ...FeedProfileArgFragment
    }
  }
}
Variables
{
  "distinct_on": ["feed_id"],
  "limit": 987,
  "offset": 987,
  "order_by": [FeedProfileArg_order_by],
  "where": FeedProfileArg_bool_exp
}
Response
{
  "data": {
    "FeedProfileArg_aggregate": {
      "aggregate": FeedProfileArg_aggregate_fields,
      "nodes": [FeedProfileArg]
    }
  }
}

FeedProfileArg_by_pk

Description

fetch data from the table: "FeedProfileArg" using primary key columns

Response

Returns a FeedProfileArg

Arguments
Name Description
id - String!

Example

Query
query FeedProfileArg_by_pk($id: String!) {
  FeedProfileArg_by_pk(id: $id) {
    feed {
      ...FeedFragment
    }
    feed_id
    id
    profile {
      ...ProfileFragment
    }
    profile_id
  }
}
Variables
{"id": "xyz789"}
Response
{
  "data": {
    "FeedProfileArg_by_pk": {
      "feed": Feed,
      "feed_id": "abc123",
      "id": "xyz789",
      "profile": Profile,
      "profile_id": "abc123"
    }
  }
}

FeedProfile_aggregate

Description

fetch aggregated fields from the table: "FeedProfile"

Response

Returns a FeedProfile_aggregate!

Arguments
Name Description
distinct_on - [FeedProfile_select_column!] distinct select on columns
limit - Int limit the number of rows returned
offset - Int skip the first n rows. Use only with order_by
order_by - [FeedProfile_order_by!] sort the rows by one or more columns
where - FeedProfile_bool_exp filter the rows returned

Example

Query
query FeedProfile_aggregate(
  $distinct_on: [FeedProfile_select_column!],
  $limit: Int,
  $offset: Int,
  $order_by: [FeedProfile_order_by!],
  $where: FeedProfile_bool_exp
) {
  FeedProfile_aggregate(
    distinct_on: $distinct_on,
    limit: $limit,
    offset: $offset,
    order_by: $order_by,
    where: $where
  ) {
    aggregate {
      ...FeedProfile_aggregate_fieldsFragment
    }
    nodes {
      ...FeedProfileFragment
    }
  }
}
Variables
{
  "distinct_on": ["feed_id"],
  "limit": 987,
  "offset": 987,
  "order_by": [FeedProfile_order_by],
  "where": FeedProfile_bool_exp
}
Response
{
  "data": {
    "FeedProfile_aggregate": {
      "aggregate": FeedProfile_aggregate_fields,
      "nodes": [FeedProfile]
    }
  }
}

FeedProfile_by_pk

Description

fetch data from the table: "FeedProfile" using primary key columns

Response

Returns a FeedProfile

Arguments
Name Description
id - String!

Example

Query
query FeedProfile_by_pk($id: String!) {
  FeedProfile_by_pk(id: $id) {
    feed {
      ...FeedFragment
    }
    feed_id
    id
    profile {
      ...ProfileFragment
    }
    profile_id
  }
}
Variables
{"id": "abc123"}
Response
{
  "data": {
    "FeedProfile_by_pk": {
      "feed": Feed,
      "feed_id": "abc123",
      "id": "xyz789",
      "profile": Profile,
      "profile_id": "xyz789"
    }
  }
}

FeedTokenArg

Description

fetch data from the table: "FeedTokenArg"

Response

Returns [FeedTokenArg!]!

Arguments
Name Description
distinct_on - [FeedTokenArg_select_column!] distinct select on columns
limit - Int limit the number of rows returned
offset - Int skip the first n rows. Use only with order_by
order_by - [FeedTokenArg_order_by!] sort the rows by one or more columns
where - FeedTokenArg_bool_exp filter the rows returned

Example

Query
query FeedTokenArg(
  $distinct_on: [FeedTokenArg_select_column!],
  $limit: Int,
  $offset: Int,
  $order_by: [FeedTokenArg_order_by!],
  $where: FeedTokenArg_bool_exp
) {
  FeedTokenArg(
    distinct_on: $distinct_on,
    limit: $limit,
    offset: $offset,
    order_by: $order_by,
    where: $where
  ) {
    feed {
      ...FeedFragment
    }
    feed_id
    id
    token {
      ...TokenFragment
    }
    token_id
  }
}
Variables
{
  "distinct_on": ["feed_id"],
  "limit": 987,
  "offset": 123,
  "order_by": [FeedTokenArg_order_by],
  "where": FeedTokenArg_bool_exp
}
Response
{
  "data": {
    "FeedTokenArg": [
      {
        "feed": Feed,
        "feed_id": "abc123",
        "id": "abc123",
        "token": Token,
        "token_id": "xyz789"
      }
    ]
  }
}

FeedTokenArg_aggregate

Description

fetch aggregated fields from the table: "FeedTokenArg"

Response

Returns a FeedTokenArg_aggregate!

Arguments
Name Description
distinct_on - [FeedTokenArg_select_column!] distinct select on columns
limit - Int limit the number of rows returned
offset - Int skip the first n rows. Use only with order_by
order_by - [FeedTokenArg_order_by!] sort the rows by one or more columns
where - FeedTokenArg_bool_exp filter the rows returned

Example

Query
query FeedTokenArg_aggregate(
  $distinct_on: [FeedTokenArg_select_column!],
  $limit: Int,
  $offset: Int,
  $order_by: [FeedTokenArg_order_by!],
  $where: FeedTokenArg_bool_exp
) {
  FeedTokenArg_aggregate(
    distinct_on: $distinct_on,
    limit: $limit,
    offset: $offset,
    order_by: $order_by,
    where: $where
  ) {
    aggregate {
      ...FeedTokenArg_aggregate_fieldsFragment
    }
    nodes {
      ...FeedTokenArgFragment
    }
  }
}
Variables
{
  "distinct_on": ["feed_id"],
  "limit": 987,
  "offset": 123,
  "order_by": [FeedTokenArg_order_by],
  "where": FeedTokenArg_bool_exp
}
Response
{
  "data": {
    "FeedTokenArg_aggregate": {
      "aggregate": FeedTokenArg_aggregate_fields,
      "nodes": [FeedTokenArg]
    }
  }
}

FeedTokenArg_by_pk

Description

fetch data from the table: "FeedTokenArg" using primary key columns

Response

Returns a FeedTokenArg

Arguments
Name Description
id - String!

Example

Query
query FeedTokenArg_by_pk($id: String!) {
  FeedTokenArg_by_pk(id: $id) {
    feed {
      ...FeedFragment
    }
    feed_id
    id
    token {
      ...TokenFragment
    }
    token_id
  }
}
Variables
{"id": "xyz789"}
Response
{
  "data": {
    "FeedTokenArg_by_pk": {
      "feed": Feed,
      "feed_id": "xyz789",
      "id": "abc123",
      "token": Token,
      "token_id": "abc123"
    }
  }
}

Feed_aggregate

Description

fetch aggregated fields from the table: "Feed"

Response

Returns a Feed_aggregate!

Arguments
Name Description
distinct_on - [Feed_select_column!] distinct select on columns
limit - Int limit the number of rows returned
offset - Int skip the first n rows. Use only with order_by
order_by - [Feed_order_by!] sort the rows by one or more columns
where - Feed_bool_exp filter the rows returned

Example

Query
query Feed_aggregate(
  $distinct_on: [Feed_select_column!],
  $limit: Int,
  $offset: Int,
  $order_by: [Feed_order_by!],
  $where: Feed_bool_exp
) {
  Feed_aggregate(
    distinct_on: $distinct_on,
    limit: $limit,
    offset: $offset,
    order_by: $order_by,
    where: $where
  ) {
    aggregate {
      ...Feed_aggregate_fieldsFragment
    }
    nodes {
      ...FeedFragment
    }
  }
}
Variables
{
  "distinct_on": ["address"],
  "limit": 987,
  "offset": 987,
  "order_by": [Feed_order_by],
  "where": Feed_bool_exp
}
Response
{
  "data": {
    "Feed_aggregate": {
      "aggregate": Feed_aggregate_fields,
      "nodes": [Feed]
    }
  }
}

Feed_by_pk

Description

fetch data from the table: "Feed" using primary key columns

Response

Returns a Feed

Arguments
Name Description
id - String!

Example

Query
query Feed_by_pk($id: String!) {
  Feed_by_pk(id: $id) {
    address
    assetArgs {
      ...FeedAssetArgFragment
    }
    assetArgs_aggregate {
      ...FeedAssetArg_aggregateFragment
    }
    blockNumber
    dataKey
    decoded
    eventType
    id
    logIndex
    profileArgs {
      ...FeedProfileArgFragment
    }
    profileArgs_aggregate {
      ...FeedProfileArg_aggregateFragment
    }
    profiles {
      ...FeedProfileFragment
    }
    profiles_aggregate {
      ...FeedProfile_aggregateFragment
    }
    timestamp
    tokenArgs {
      ...FeedTokenArgFragment
    }
    tokenArgs_aggregate {
      ...FeedTokenArg_aggregateFragment
    }
    transactionHash
    transactionIndex
  }
}
Variables
{"id": "abc123"}
Response
{
  "data": {
    "Feed_by_pk": {
      "address": "xyz789",
      "assetArgs": [FeedAssetArg],
      "assetArgs_aggregate": FeedAssetArg_aggregate,
      "blockNumber": 123,
      "dataKey": "xyz789",
      "decoded": jsonb,
      "eventType": "abc123",
      "id": "xyz789",
      "logIndex": 987,
      "profileArgs": [FeedProfileArg],
      "profileArgs_aggregate": FeedProfileArg_aggregate,
      "profiles": [FeedProfile],
      "profiles_aggregate": FeedProfile_aggregate,
      "timestamp": 123,
      "tokenArgs": [FeedTokenArg],
      "tokenArgs_aggregate": FeedTokenArg_aggregate,
      "transactionHash": "abc123",
      "transactionIndex": 987
    }
  }
}

Follow

Description

fetch data from the table: "Follow"

Response

Returns [Follow!]!

Arguments
Name Description
distinct_on - [Follow_select_column!] distinct select on columns
limit - Int limit the number of rows returned
offset - Int skip the first n rows. Use only with order_by
order_by - [Follow_order_by!] sort the rows by one or more columns
where - Follow_bool_exp filter the rows returned

Example

Query
query Follow(
  $distinct_on: [Follow_select_column!],
  $limit: Int,
  $offset: Int,
  $order_by: [Follow_order_by!],
  $where: Follow_bool_exp
) {
  Follow(
    distinct_on: $distinct_on,
    limit: $limit,
    offset: $offset,
    order_by: $order_by,
    where: $where
  ) {
    blockNumber
    createdBlockNumber
    createdTimestamp
    createdTransactionIndex
    db_write_timestamp
    followee {
      ...ProfileFragment
    }
    followee_id
    follower {
      ...ProfileFragment
    }
    follower_id
    id
    updatedBlockNumber
    updatedTimestamp
    updatedTransactionIndex
  }
}
Variables
{
  "distinct_on": ["blockNumber"],
  "limit": 123,
  "offset": 123,
  "order_by": [Follow_order_by],
  "where": Follow_bool_exp
}
Response
{
  "data": {
    "Follow": [
      {
        "blockNumber": 123,
        "createdBlockNumber": 123,
        "createdTimestamp": 123,
        "createdTransactionIndex": 987,
        "db_write_timestamp": timestamp,
        "followee": Profile,
        "followee_id": "xyz789",
        "follower": Profile,
        "follower_id": "abc123",
        "id": "abc123",
        "updatedBlockNumber": 123,
        "updatedTimestamp": 987,
        "updatedTransactionIndex": 987
      }
    ]
  }
}

Follow_aggregate

Description

fetch aggregated fields from the table: "Follow"

Response

Returns a Follow_aggregate!

Arguments
Name Description
distinct_on - [Follow_select_column!] distinct select on columns
limit - Int limit the number of rows returned
offset - Int skip the first n rows. Use only with order_by
order_by - [Follow_order_by!] sort the rows by one or more columns
where - Follow_bool_exp filter the rows returned

Example

Query
query Follow_aggregate(
  $distinct_on: [Follow_select_column!],
  $limit: Int,
  $offset: Int,
  $order_by: [Follow_order_by!],
  $where: Follow_bool_exp
) {
  Follow_aggregate(
    distinct_on: $distinct_on,
    limit: $limit,
    offset: $offset,
    order_by: $order_by,
    where: $where
  ) {
    aggregate {
      ...Follow_aggregate_fieldsFragment
    }
    nodes {
      ...FollowFragment
    }
  }
}
Variables
{
  "distinct_on": ["blockNumber"],
  "limit": 987,
  "offset": 987,
  "order_by": [Follow_order_by],
  "where": Follow_bool_exp
}
Response
{
  "data": {
    "Follow_aggregate": {
      "aggregate": Follow_aggregate_fields,
      "nodes": [Follow]
    }
  }
}

Follow_by_pk

Description

fetch data from the table: "Follow" using primary key columns

Response

Returns a Follow

Arguments
Name Description
id - String!

Example

Query
query Follow_by_pk($id: String!) {
  Follow_by_pk(id: $id) {
    blockNumber
    createdBlockNumber
    createdTimestamp
    createdTransactionIndex
    db_write_timestamp
    followee {
      ...ProfileFragment
    }
    followee_id
    follower {
      ...ProfileFragment
    }
    follower_id
    id
    updatedBlockNumber
    updatedTimestamp
    updatedTransactionIndex
  }
}
Variables
{"id": "abc123"}
Response
{
  "data": {
    "Follow_by_pk": {
      "blockNumber": 123,
      "createdBlockNumber": 123,
      "createdTimestamp": 123,
      "createdTransactionIndex": 123,
      "db_write_timestamp": timestamp,
      "followee": Profile,
      "followee_id": "xyz789",
      "follower": Profile,
      "follower_id": "xyz789",
      "id": "xyz789",
      "updatedBlockNumber": 987,
      "updatedTimestamp": 123,
      "updatedTransactionIndex": 123
    }
  }
}

Hold

Description

fetch data from the table: "Hold"

Response

Returns [Hold!]!

Arguments
Name Description
distinct_on - [Hold_select_column!] distinct select on columns
limit - Int limit the number of rows returned
offset - Int skip the first n rows. Use only with order_by
order_by - [Hold_order_by!] sort the rows by one or more columns
where - Hold_bool_exp filter the rows returned

Example

Query
query Hold(
  $distinct_on: [Hold_select_column!],
  $limit: Int,
  $offset: Int,
  $order_by: [Hold_order_by!],
  $where: Hold_bool_exp
) {
  Hold(
    distinct_on: $distinct_on,
    limit: $limit,
    offset: $offset,
    order_by: $order_by,
    where: $where
  ) {
    asset {
      ...AssetFragment
    }
    asset_id
    balance
    baseAsset {
      ...AssetFragment
    }
    baseAsset_id
    blockNumber
    createdBlockNumber
    createdTimestamp
    createdTransactionIndex
    db_write_timestamp
    id
    ownerEOA
    profile {
      ...ProfileFragment
    }
    profile_id
    timestamp
    token {
      ...TokenFragment
    }
    token_id
    transaction {
      ...TransactionFragment
    }
    transaction_id
    updatedBlockNumber
    updatedTimestamp
    updatedTransactionIndex
  }
}
Variables
{
  "distinct_on": ["asset_id"],
  "limit": 123,
  "offset": 987,
  "order_by": [Hold_order_by],
  "where": Hold_bool_exp
}
Response
{
  "data": {
    "Hold": [
      {
        "asset": Asset,
        "asset_id": "xyz789",
        "balance": numeric,
        "baseAsset": Asset,
        "baseAsset_id": "abc123",
        "blockNumber": 987,
        "createdBlockNumber": 987,
        "createdTimestamp": 987,
        "createdTransactionIndex": 123,
        "db_write_timestamp": timestamp,
        "id": "xyz789",
        "ownerEOA": true,
        "profile": Profile,
        "profile_id": "abc123",
        "timestamp": 987,
        "token": Token,
        "token_id": "xyz789",
        "transaction": Transaction,
        "transaction_id": "abc123",
        "updatedBlockNumber": 987,
        "updatedTimestamp": 123,
        "updatedTransactionIndex": 123
      }
    ]
  }
}

Hold_aggregate

Description

fetch aggregated fields from the table: "Hold"

Response

Returns a Hold_aggregate!

Arguments
Name Description
distinct_on - [Hold_select_column!] distinct select on columns
limit - Int limit the number of rows returned
offset - Int skip the first n rows. Use only with order_by
order_by - [Hold_order_by!] sort the rows by one or more columns
where - Hold_bool_exp filter the rows returned

Example

Query
query Hold_aggregate(
  $distinct_on: [Hold_select_column!],
  $limit: Int,
  $offset: Int,
  $order_by: [Hold_order_by!],
  $where: Hold_bool_exp
) {
  Hold_aggregate(
    distinct_on: $distinct_on,
    limit: $limit,
    offset: $offset,
    order_by: $order_by,
    where: $where
  ) {
    aggregate {
      ...Hold_aggregate_fieldsFragment
    }
    nodes {
      ...HoldFragment
    }
  }
}
Variables
{
  "distinct_on": ["asset_id"],
  "limit": 987,
  "offset": 987,
  "order_by": [Hold_order_by],
  "where": Hold_bool_exp
}
Response
{
  "data": {
    "Hold_aggregate": {
      "aggregate": Hold_aggregate_fields,
      "nodes": [Hold]
    }
  }
}

Hold_by_pk

Description

fetch data from the table: "Hold" using primary key columns

Response

Returns a Hold

Arguments
Name Description
id - String!

Example

Query
query Hold_by_pk($id: String!) {
  Hold_by_pk(id: $id) {
    asset {
      ...AssetFragment
    }
    asset_id
    balance
    baseAsset {
      ...AssetFragment
    }
    baseAsset_id
    blockNumber
    createdBlockNumber
    createdTimestamp
    createdTransactionIndex
    db_write_timestamp
    id
    ownerEOA
    profile {
      ...ProfileFragment
    }
    profile_id
    timestamp
    token {
      ...TokenFragment
    }
    token_id
    transaction {
      ...TransactionFragment
    }
    transaction_id
    updatedBlockNumber
    updatedTimestamp
    updatedTransactionIndex
  }
}
Variables
{"id": "abc123"}
Response
{
  "data": {
    "Hold_by_pk": {
      "asset": Asset,
      "asset_id": "abc123",
      "balance": numeric,
      "baseAsset": Asset,
      "baseAsset_id": "abc123",
      "blockNumber": 987,
      "createdBlockNumber": 123,
      "createdTimestamp": 987,
      "createdTransactionIndex": 123,
      "db_write_timestamp": timestamp,
      "id": "xyz789",
      "ownerEOA": false,
      "profile": Profile,
      "profile_id": "xyz789",
      "timestamp": 987,
      "token": Token,
      "token_id": "abc123",
      "transaction": Transaction,
      "transaction_id": "abc123",
      "updatedBlockNumber": 987,
      "updatedTimestamp": 987,
      "updatedTransactionIndex": 987
    }
  }
}

Interaction

Description

fetch data from the table: "Interaction"

Response

Returns [Interaction!]!

Arguments
Name Description
distinct_on - [Interaction_select_column!] distinct select on columns
limit - Int limit the number of rows returned
offset - Int skip the first n rows. Use only with order_by
order_by - [Interaction_order_by!] sort the rows by one or more columns
where - Interaction_bool_exp filter the rows returned

Example

Query
query Interaction(
  $distinct_on: [Interaction_select_column!],
  $limit: Int,
  $offset: Int,
  $order_by: [Interaction_order_by!],
  $where: Interaction_bool_exp
) {
  Interaction(
    distinct_on: $distinct_on,
    limit: $limit,
    offset: $offset,
    order_by: $order_by,
    where: $where
  ) {
    blockNumber
    db_write_timestamp
    id
    interacted
    interactedAsset {
      ...AssetFragment
    }
    interactedAsset_id
    interactionType
    operationType
    profile {
      ...ProfileFragment
    }
    profile_id
    receivedData
    returnedValue
    timestamp
    transaction {
      ...TransactionFragment
    }
    transaction_id
    value
  }
}
Variables
{
  "distinct_on": ["blockNumber"],
  "limit": 987,
  "offset": 123,
  "order_by": [Interaction_order_by],
  "where": Interaction_bool_exp
}
Response
{
  "data": {
    "Interaction": [
      {
        "blockNumber": 987,
        "db_write_timestamp": timestamp,
        "id": "xyz789",
        "interacted": "abc123",
        "interactedAsset": Asset,
        "interactedAsset_id": "xyz789",
        "interactionType": interactiontype,
        "operationType": numeric,
        "profile": Profile,
        "profile_id": "xyz789",
        "receivedData": "abc123",
        "returnedValue": "xyz789",
        "timestamp": 987,
        "transaction": Transaction,
        "transaction_id": "abc123",
        "value": numeric
      }
    ]
  }
}

Interaction_aggregate

Description

fetch aggregated fields from the table: "Interaction"

Response

Returns an Interaction_aggregate!

Arguments
Name Description
distinct_on - [Interaction_select_column!] distinct select on columns
limit - Int limit the number of rows returned
offset - Int skip the first n rows. Use only with order_by
order_by - [Interaction_order_by!] sort the rows by one or more columns
where - Interaction_bool_exp filter the rows returned

Example

Query
query Interaction_aggregate(
  $distinct_on: [Interaction_select_column!],
  $limit: Int,
  $offset: Int,
  $order_by: [Interaction_order_by!],
  $where: Interaction_bool_exp
) {
  Interaction_aggregate(
    distinct_on: $distinct_on,
    limit: $limit,
    offset: $offset,
    order_by: $order_by,
    where: $where
  ) {
    aggregate {
      ...Interaction_aggregate_fieldsFragment
    }
    nodes {
      ...InteractionFragment
    }
  }
}
Variables
{
  "distinct_on": ["blockNumber"],
  "limit": 123,
  "offset": 987,
  "order_by": [Interaction_order_by],
  "where": Interaction_bool_exp
}
Response
{
  "data": {
    "Interaction_aggregate": {
      "aggregate": Interaction_aggregate_fields,
      "nodes": [Interaction]
    }
  }
}

Interaction_by_pk

Description

fetch data from the table: "Interaction" using primary key columns

Response

Returns an Interaction

Arguments
Name Description
id - String!

Example

Query
query Interaction_by_pk($id: String!) {
  Interaction_by_pk(id: $id) {
    blockNumber
    db_write_timestamp
    id
    interacted
    interactedAsset {
      ...AssetFragment
    }
    interactedAsset_id
    interactionType
    operationType
    profile {
      ...ProfileFragment
    }
    profile_id
    receivedData
    returnedValue
    timestamp
    transaction {
      ...TransactionFragment
    }
    transaction_id
    value
  }
}
Variables
{"id": "xyz789"}
Response
{
  "data": {
    "Interaction_by_pk": {
      "blockNumber": 123,
      "db_write_timestamp": timestamp,
      "id": "xyz789",
      "interacted": "xyz789",
      "interactedAsset": Asset,
      "interactedAsset_id": "xyz789",
      "interactionType": interactiontype,
      "operationType": numeric,
      "profile": Profile,
      "profile_id": "xyz789",
      "receivedData": "abc123",
      "returnedValue": "abc123",
      "timestamp": 987,
      "transaction": Transaction,
      "transaction_id": "abc123",
      "value": numeric
    }
  }
}

IssuedAsset

Description

fetch data from the table: "IssuedAsset"

Response

Returns [IssuedAsset!]!

Arguments
Name Description
distinct_on - [IssuedAsset_select_column!] distinct select on columns
limit - Int limit the number of rows returned
offset - Int skip the first n rows. Use only with order_by
order_by - [IssuedAsset_order_by!] sort the rows by one or more columns
where - IssuedAsset_bool_exp filter the rows returned

Example

Query
query IssuedAsset(
  $distinct_on: [IssuedAsset_select_column!],
  $limit: Int,
  $offset: Int,
  $order_by: [IssuedAsset_order_by!],
  $where: IssuedAsset_bool_exp
) {
  IssuedAsset(
    distinct_on: $distinct_on,
    limit: $limit,
    offset: $offset,
    order_by: $order_by,
    where: $where
  ) {
    asset {
      ...AssetFragment
    }
    asset_id
    blockNumber
    createdBlockNumber
    createdTimestamp
    createdTransactionIndex
    db_write_timestamp
    id
    index
    interfaceId
    profile {
      ...ProfileFragment
    }
    profile_id
    updatedBlockNumber
    updatedTimestamp
    updatedTransactionIndex
  }
}
Variables
{
  "distinct_on": ["asset_id"],
  "limit": 123,
  "offset": 123,
  "order_by": [IssuedAsset_order_by],
  "where": IssuedAsset_bool_exp
}
Response
{
  "data": {
    "IssuedAsset": [
      {
        "asset": Asset,
        "asset_id": "xyz789",
        "blockNumber": 123,
        "createdBlockNumber": 123,
        "createdTimestamp": 987,
        "createdTransactionIndex": 123,
        "db_write_timestamp": timestamp,
        "id": "xyz789",
        "index": 987,
        "interfaceId": "abc123",
        "profile": Profile,
        "profile_id": "xyz789",
        "updatedBlockNumber": 123,
        "updatedTimestamp": 987,
        "updatedTransactionIndex": 987
      }
    ]
  }
}

IssuedAsset_aggregate

Description

fetch aggregated fields from the table: "IssuedAsset"

Response

Returns an IssuedAsset_aggregate!

Arguments
Name Description
distinct_on - [IssuedAsset_select_column!] distinct select on columns
limit - Int limit the number of rows returned
offset - Int skip the first n rows. Use only with order_by
order_by - [IssuedAsset_order_by!] sort the rows by one or more columns
where - IssuedAsset_bool_exp filter the rows returned

Example

Query
query IssuedAsset_aggregate(
  $distinct_on: [IssuedAsset_select_column!],
  $limit: Int,
  $offset: Int,
  $order_by: [IssuedAsset_order_by!],
  $where: IssuedAsset_bool_exp
) {
  IssuedAsset_aggregate(
    distinct_on: $distinct_on,
    limit: $limit,
    offset: $offset,
    order_by: $order_by,
    where: $where
  ) {
    aggregate {
      ...IssuedAsset_aggregate_fieldsFragment
    }
    nodes {
      ...IssuedAssetFragment
    }
  }
}
Variables
{
  "distinct_on": ["asset_id"],
  "limit": 987,
  "offset": 987,
  "order_by": [IssuedAsset_order_by],
  "where": IssuedAsset_bool_exp
}
Response
{
  "data": {
    "IssuedAsset_aggregate": {
      "aggregate": IssuedAsset_aggregate_fields,
      "nodes": [IssuedAsset]
    }
  }
}

IssuedAsset_by_pk

Description

fetch data from the table: "IssuedAsset" using primary key columns

Response

Returns an IssuedAsset

Arguments
Name Description
id - String!

Example

Query
query IssuedAsset_by_pk($id: String!) {
  IssuedAsset_by_pk(id: $id) {
    asset {
      ...AssetFragment
    }
    asset_id
    blockNumber
    createdBlockNumber
    createdTimestamp
    createdTransactionIndex
    db_write_timestamp
    id
    index
    interfaceId
    profile {
      ...ProfileFragment
    }
    profile_id
    updatedBlockNumber
    updatedTimestamp
    updatedTransactionIndex
  }
}
Variables
{"id": "abc123"}
Response
{
  "data": {
    "IssuedAsset_by_pk": {
      "asset": Asset,
      "asset_id": "xyz789",
      "blockNumber": 123,
      "createdBlockNumber": 123,
      "createdTimestamp": 123,
      "createdTransactionIndex": 123,
      "db_write_timestamp": timestamp,
      "id": "abc123",
      "index": 123,
      "interfaceId": "abc123",
      "profile": Profile,
      "profile_id": "xyz789",
      "updatedBlockNumber": 987,
      "updatedTimestamp": 987,
      "updatedTransactionIndex": 987
    }
  }
}

KeyManager

Description

fetch data from the table: "KeyManager"

Response

Returns [KeyManager!]!

Arguments
Name Description
distinct_on - [KeyManager_select_column!] distinct select on columns
limit - Int limit the number of rows returned
offset - Int skip the first n rows. Use only with order_by
order_by - [KeyManager_order_by!] sort the rows by one or more columns
where - KeyManager_bool_exp filter the rows returned

Example

Query
query KeyManager(
  $distinct_on: [KeyManager_select_column!],
  $limit: Int,
  $offset: Int,
  $order_by: [KeyManager_order_by!],
  $where: KeyManager_bool_exp
) {
  KeyManager(
    distinct_on: $distinct_on,
    limit: $limit,
    offset: $offset,
    order_by: $order_by,
    where: $where
  ) {
    blockNumber
    createdBlockNumber
    createdTimestamp
    createdTransactionIndex
    id
    profile {
      ...ProfileFragment
    }
    profile_id
    updatedBlockNumber
    updatedTimestamp
    updatedTransactionIndex
  }
}
Variables
{
  "distinct_on": ["blockNumber"],
  "limit": 123,
  "offset": 123,
  "order_by": [KeyManager_order_by],
  "where": KeyManager_bool_exp
}
Response
{
  "data": {
    "KeyManager": [
      {
        "blockNumber": 987,
        "createdBlockNumber": 123,
        "createdTimestamp": 123,
        "createdTransactionIndex": 123,
        "id": "xyz789",
        "profile": Profile,
        "profile_id": "xyz789",
        "updatedBlockNumber": 987,
        "updatedTimestamp": 123,
        "updatedTransactionIndex": 987
      }
    ]
  }
}

KeyManager_aggregate

Description

fetch aggregated fields from the table: "KeyManager"

Response

Returns a KeyManager_aggregate!

Arguments
Name Description
distinct_on - [KeyManager_select_column!] distinct select on columns
limit - Int limit the number of rows returned
offset - Int skip the first n rows. Use only with order_by
order_by - [KeyManager_order_by!] sort the rows by one or more columns
where - KeyManager_bool_exp filter the rows returned

Example

Query
query KeyManager_aggregate(
  $distinct_on: [KeyManager_select_column!],
  $limit: Int,
  $offset: Int,
  $order_by: [KeyManager_order_by!],
  $where: KeyManager_bool_exp
) {
  KeyManager_aggregate(
    distinct_on: $distinct_on,
    limit: $limit,
    offset: $offset,
    order_by: $order_by,
    where: $where
  ) {
    aggregate {
      ...KeyManager_aggregate_fieldsFragment
    }
    nodes {
      ...KeyManagerFragment
    }
  }
}
Variables
{
  "distinct_on": ["blockNumber"],
  "limit": 123,
  "offset": 987,
  "order_by": [KeyManager_order_by],
  "where": KeyManager_bool_exp
}
Response
{
  "data": {
    "KeyManager_aggregate": {
      "aggregate": KeyManager_aggregate_fields,
      "nodes": [KeyManager]
    }
  }
}

KeyManager_by_pk

Description

fetch data from the table: "KeyManager" using primary key columns

Response

Returns a KeyManager

Arguments
Name Description
id - String!

Example

Query
query KeyManager_by_pk($id: String!) {
  KeyManager_by_pk(id: $id) {
    blockNumber
    createdBlockNumber
    createdTimestamp
    createdTransactionIndex
    id
    profile {
      ...ProfileFragment
    }
    profile_id
    updatedBlockNumber
    updatedTimestamp
    updatedTransactionIndex
  }
}
Variables
{"id": "abc123"}
Response
{
  "data": {
    "KeyManager_by_pk": {
      "blockNumber": 987,
      "createdBlockNumber": 987,
      "createdTimestamp": 123,
      "createdTransactionIndex": 987,
      "id": "abc123",
      "profile": Profile,
      "profile_id": "abc123",
      "updatedBlockNumber": 123,
      "updatedTimestamp": 123,
      "updatedTransactionIndex": 987
    }
  }
}

LSP23Deployment

Description

fetch data from the table: "LSP23Deployment"

Response

Returns [LSP23Deployment!]!

Arguments
Name Description
distinct_on - [LSP23Deployment_select_column!] distinct select on columns
limit - Int limit the number of rows returned
offset - Int skip the first n rows. Use only with order_by
order_by - [LSP23Deployment_order_by!] sort the rows by one or more columns
where - LSP23Deployment_bool_exp filter the rows returned

Example

Query
query LSP23Deployment(
  $distinct_on: [LSP23Deployment_select_column!],
  $limit: Int,
  $offset: Int,
  $order_by: [LSP23Deployment_order_by!],
  $where: LSP23Deployment_bool_exp
) {
  LSP23Deployment(
    distinct_on: $distinct_on,
    limit: $limit,
    offset: $offset,
    order_by: $order_by,
    where: $where
  ) {
    blockNumber
    chainIds
    decoded
    factoryAddress
    id
    isProfile
    logIndex
    postDeploymentModule
    primaryContract
    profile {
      ...ProfileFragment
    }
    secondaryContract
    timestamp
    transactionHash
  }
}
Variables
{
  "distinct_on": ["blockNumber"],
  "limit": 123,
  "offset": 123,
  "order_by": [LSP23Deployment_order_by],
  "where": LSP23Deployment_bool_exp
}
Response
{
  "data": {
    "LSP23Deployment": [
      {
        "blockNumber": 987,
        "chainIds": [123],
        "decoded": jsonb,
        "factoryAddress": "xyz789",
        "id": "abc123",
        "isProfile": false,
        "logIndex": 987,
        "postDeploymentModule": "abc123",
        "primaryContract": "xyz789",
        "profile": Profile,
        "secondaryContract": "abc123",
        "timestamp": 123,
        "transactionHash": "xyz789"
      }
    ]
  }
}

LSP23Deployment_aggregate

Description

fetch aggregated fields from the table: "LSP23Deployment"

Response

Returns an LSP23Deployment_aggregate!

Arguments
Name Description
distinct_on - [LSP23Deployment_select_column!] distinct select on columns
limit - Int limit the number of rows returned
offset - Int skip the first n rows. Use only with order_by
order_by - [LSP23Deployment_order_by!] sort the rows by one or more columns
where - LSP23Deployment_bool_exp filter the rows returned

Example

Query
query LSP23Deployment_aggregate(
  $distinct_on: [LSP23Deployment_select_column!],
  $limit: Int,
  $offset: Int,
  $order_by: [LSP23Deployment_order_by!],
  $where: LSP23Deployment_bool_exp
) {
  LSP23Deployment_aggregate(
    distinct_on: $distinct_on,
    limit: $limit,
    offset: $offset,
    order_by: $order_by,
    where: $where
  ) {
    aggregate {
      ...LSP23Deployment_aggregate_fieldsFragment
    }
    nodes {
      ...LSP23DeploymentFragment
    }
  }
}
Variables
{
  "distinct_on": ["blockNumber"],
  "limit": 123,
  "offset": 987,
  "order_by": [LSP23Deployment_order_by],
  "where": LSP23Deployment_bool_exp
}
Response
{
  "data": {
    "LSP23Deployment_aggregate": {
      "aggregate": LSP23Deployment_aggregate_fields,
      "nodes": [LSP23Deployment]
    }
  }
}

LSP23Deployment_by_pk

Description

fetch data from the table: "LSP23Deployment" using primary key columns

Response

Returns an LSP23Deployment

Arguments
Name Description
id - String! Primary contract (Universal Profile) address

Example

Query
query LSP23Deployment_by_pk($id: String!) {
  LSP23Deployment_by_pk(id: $id) {
    blockNumber
    chainIds
    decoded
    factoryAddress
    id
    isProfile
    logIndex
    postDeploymentModule
    primaryContract
    profile {
      ...ProfileFragment
    }
    secondaryContract
    timestamp
    transactionHash
  }
}
Variables
{"id": "xyz789"}
Response
{
  "data": {
    "LSP23Deployment_by_pk": {
      "blockNumber": 987,
      "chainIds": [123],
      "decoded": jsonb,
      "factoryAddress": "abc123",
      "id": "xyz789",
      "isProfile": false,
      "logIndex": 123,
      "postDeploymentModule": "abc123",
      "primaryContract": "xyz789",
      "profile": Profile,
      "secondaryContract": "abc123",
      "timestamp": 987,
      "transactionHash": "abc123"
    }
  }
}

Profile

Description

fetch data from the table: "Profile"

Response

Returns [Profile!]!

Arguments
Name Description
distinct_on - [Profile_select_column!] distinct select on columns
limit - Int limit the number of rows returned
offset - Int skip the first n rows. Use only with order_by
order_by - [Profile_order_by!] sort the rows by one or more columns
where - Profile_bool_exp filter the rows returned

Example

Query
query Profile(
  $distinct_on: [Profile_select_column!],
  $limit: Int,
  $offset: Int,
  $order_by: [Profile_order_by!],
  $where: Profile_bool_exp
) {
  Profile(
    distinct_on: $distinct_on,
    limit: $limit,
    offset: $offset,
    order_by: $order_by,
    where: $where
  ) {
    addressPermissions
    addressPermissions_
    app {
      ...AppFragment
    }
    appContributions {
      ...AppContributorFragment
    }
    appContributions_aggregate {
      ...AppContributor_aggregateFragment
    }
    appHistory {
      ...AppHistoryFragment
    }
    appHistory_aggregate {
      ...AppHistory_aggregateFragment
    }
    appInstalls {
      ...AppInstallFragment
    }
    appInstalls_aggregate {
      ...AppInstall_aggregateFragment
    }
    asset {
      ...AssetFragment
    }
    asset_id
    avatars {
      ...AvatarAssetURLFragment
    }
    avatars_
    avatars_aggregate {
      ...AvatarAssetURL_aggregateFragment
    }
    backgroundImages {
      ...ProfileBackgroundImageURLFragment
    }
    backgroundImages_
    backgroundImages_aggregate {
      ...ProfileBackgroundImageURL_aggregateFragment
    }
    blockNumber
    controllers {
      ...ControllerFragment
    }
    controllers_
    controllers_aggregate {
      ...Controller_aggregateFragment
    }
    createdBlockNumber
    createdTimestamp
    createdTransactionIndex
    data
    db_write_timestamp
    description
    error
    feed {
      ...FeedProfileArgFragment
    }
    feed_aggregate {
      ...FeedProfileArg_aggregateFragment
    }
    followed {
      ...FollowFragment
    }
    followed_aggregate {
      ...Follow_aggregateFragment
    }
    following {
      ...FollowFragment
    }
    following_aggregate {
      ...Follow_aggregateFragment
    }
    ft
    fts
    fullName
    holds {
      ...HoldFragment
    }
    holds_aggregate {
      ...Hold_aggregateFragment
    }
    id
    incoming_transfers {
      ...TransferFragment
    }
    incoming_transfers_aggregate {
      ...Transfer_aggregateFragment
    }
    interactions {
      ...InteractionFragment
    }
    interactions_aggregate {
      ...Interaction_aggregateFragment
    }
    interfaces
    isContract
    isEOA
    keyManagers {
      ...KeyManagerFragment
    }
    keyManagers_aggregate {
      ...KeyManager_aggregateFragment
    }
    lastMetadataUpdate
    lastNameUpdate
    links {
      ...ProfileLinkFragment
    }
    links_
    links_aggregate {
      ...ProfileLink_aggregateFragment
    }
    lsp12IssuedAssets {
      ...IssuedAssetFragment
    }
    lsp12IssuedAssets_
    lsp12IssuedAssets_aggregate {
      ...IssuedAsset_aggregateFragment
    }
    lsp1UniversalReceiverDelegate {
      ...ReceiverDelegateFragment
    }
    lsp1UniversalReceiverDelegate_aggregate {
      ...ReceiverDelegate_aggregateFragment
    }
    lsp23Deployment {
      ...LSP23DeploymentFragment
    }
    lsp5ReceivedAssets {
      ...ReceivedAssetFragment
    }
    lsp5ReceivedAssets_
    lsp5ReceivedAssets_aggregate {
      ...ReceivedAsset_aggregateFragment
    }
    method
    name
    outgoing_transfers {
      ...TransferFragment
    }
    outgoing_transfers_aggregate {
      ...Transfer_aggregateFragment
    }
    owner {
      ...ProfileFragment
    }
    owner_id
    profileImages {
      ...ProfileImageURLFragment
    }
    profileImages_
    profileImages_aggregate {
      ...ProfileImageURL_aggregateFragment
    }
    src
    standard
    supportedStandardsLsp3Profile
    tags
    transactions {
      ...TransactionFragment
    }
    transactions_aggregate {
      ...Transaction_aggregateFragment
    }
    updatedBlockNumber
    updatedTimestamp
    updatedTransactionIndex
    url
  }
}
Variables
{
  "distinct_on": ["addressPermissions"],
  "limit": 123,
  "offset": 987,
  "order_by": [Profile_order_by],
  "where": Profile_bool_exp
}
Response
{
  "data": {
    "Profile": [
      {
        "addressPermissions": ["xyz789"],
        "addressPermissions_": ["abc123"],
        "app": App,
        "appContributions": [AppContributor],
        "appContributions_aggregate": AppContributor_aggregate,
        "appHistory": [AppHistory],
        "appHistory_aggregate": AppHistory_aggregate,
        "appInstalls": [AppInstall],
        "appInstalls_aggregate": AppInstall_aggregate,
        "asset": Asset,
        "asset_id": "abc123",
        "avatars": [AvatarAssetURL],
        "avatars_": ["abc123"],
        "avatars_aggregate": AvatarAssetURL_aggregate,
        "backgroundImages": [ProfileBackgroundImageURL],
        "backgroundImages_": ["abc123"],
        "backgroundImages_aggregate": ProfileBackgroundImageURL_aggregate,
        "blockNumber": 123,
        "controllers": [Controller],
        "controllers_": ["xyz789"],
        "controllers_aggregate": Controller_aggregate,
        "createdBlockNumber": 987,
        "createdTimestamp": 987,
        "createdTransactionIndex": 123,
        "data": "abc123",
        "db_write_timestamp": timestamp,
        "description": "xyz789",
        "error": "xyz789",
        "feed": [FeedProfileArg],
        "feed_aggregate": FeedProfileArg_aggregate,
        "followed": [Follow],
        "followed_aggregate": Follow_aggregate,
        "following": [Follow],
        "following_aggregate": Follow_aggregate,
        "ft": "abc123",
        "fts": tsvector,
        "fullName": "abc123",
        "holds": [Hold],
        "holds_aggregate": Hold_aggregate,
        "id": "abc123",
        "incoming_transfers": [Transfer],
        "incoming_transfers_aggregate": Transfer_aggregate,
        "interactions": [Interaction],
        "interactions_aggregate": Interaction_aggregate,
        "interfaces": ["xyz789"],
        "isContract": false,
        "isEOA": false,
        "keyManagers": [KeyManager],
        "keyManagers_aggregate": KeyManager_aggregate,
        "lastMetadataUpdate": 123,
        "lastNameUpdate": 123,
        "links": [ProfileLink],
        "links_": ["abc123"],
        "links_aggregate": ProfileLink_aggregate,
        "lsp12IssuedAssets": [IssuedAsset],
        "lsp12IssuedAssets_": ["xyz789"],
        "lsp12IssuedAssets_aggregate": IssuedAsset_aggregate,
        "lsp1UniversalReceiverDelegate": [
          ReceiverDelegate
        ],
        "lsp1UniversalReceiverDelegate_aggregate": ReceiverDelegate_aggregate,
        "lsp23Deployment": LSP23Deployment,
        "lsp5ReceivedAssets": [ReceivedAsset],
        "lsp5ReceivedAssets_": ["xyz789"],
        "lsp5ReceivedAssets_aggregate": ReceivedAsset_aggregate,
        "method": "xyz789",
        "name": "xyz789",
        "outgoing_transfers": [Transfer],
        "outgoing_transfers_aggregate": Transfer_aggregate,
        "owner": Profile,
        "owner_id": "xyz789",
        "profileImages": [ProfileImageURL],
        "profileImages_": ["xyz789"],
        "profileImages_aggregate": ProfileImageURL_aggregate,
        "src": "abc123",
        "standard": standards,
        "supportedStandardsLsp3Profile": false,
        "tags": ["abc123"],
        "transactions": [Transaction],
        "transactions_aggregate": Transaction_aggregate,
        "updatedBlockNumber": 123,
        "updatedTimestamp": 123,
        "updatedTransactionIndex": 987,
        "url": "xyz789"
      }
    ]
  }
}

ProfileBackgroundImageURL

Description

fetch data from the table: "ProfileBackgroundImageURL"

Arguments
Name Description
distinct_on - [ProfileBackgroundImageURL_select_column!] distinct select on columns
limit - Int limit the number of rows returned
offset - Int skip the first n rows. Use only with order_by
order_by - [ProfileBackgroundImageURL_order_by!] sort the rows by one or more columns
where - ProfileBackgroundImageURL_bool_exp filter the rows returned

Example

Query
query ProfileBackgroundImageURL(
  $distinct_on: [ProfileBackgroundImageURL_select_column!],
  $limit: Int,
  $offset: Int,
  $order_by: [ProfileBackgroundImageURL_order_by!],
  $where: ProfileBackgroundImageURL_bool_exp
) {
  ProfileBackgroundImageURL(
    distinct_on: $distinct_on,
    limit: $limit,
    offset: $offset,
    order_by: $order_by,
    where: $where
  ) {
    blockNumber
    data
    db_write_timestamp
    error
    fileType
    height
    id
    index
    method
    profile {
      ...ProfileFragment
    }
    profile_id
    src
    url
    verified
    width
  }
}
Variables
{
  "distinct_on": ["blockNumber"],
  "limit": 987,
  "offset": 987,
  "order_by": [ProfileBackgroundImageURL_order_by],
  "where": ProfileBackgroundImageURL_bool_exp
}
Response
{
  "data": {
    "ProfileBackgroundImageURL": [
      {
        "blockNumber": 123,
        "data": "xyz789",
        "db_write_timestamp": timestamp,
        "error": "xyz789",
        "fileType": "abc123",
        "height": 123,
        "id": "abc123",
        "index": 987,
        "method": "abc123",
        "profile": Profile,
        "profile_id": "abc123",
        "src": "abc123",
        "url": "xyz789",
        "verified": verificationstatus,
        "width": 987
      }
    ]
  }
}

ProfileBackgroundImageURL_aggregate

Description

fetch aggregated fields from the table: "ProfileBackgroundImageURL"

Arguments
Name Description
distinct_on - [ProfileBackgroundImageURL_select_column!] distinct select on columns
limit - Int limit the number of rows returned
offset - Int skip the first n rows. Use only with order_by
order_by - [ProfileBackgroundImageURL_order_by!] sort the rows by one or more columns
where - ProfileBackgroundImageURL_bool_exp filter the rows returned

Example

Query
query ProfileBackgroundImageURL_aggregate(
  $distinct_on: [ProfileBackgroundImageURL_select_column!],
  $limit: Int,
  $offset: Int,
  $order_by: [ProfileBackgroundImageURL_order_by!],
  $where: ProfileBackgroundImageURL_bool_exp
) {
  ProfileBackgroundImageURL_aggregate(
    distinct_on: $distinct_on,
    limit: $limit,
    offset: $offset,
    order_by: $order_by,
    where: $where
  ) {
    aggregate {
      ...ProfileBackgroundImageURL_aggregate_fieldsFragment
    }
    nodes {
      ...ProfileBackgroundImageURLFragment
    }
  }
}
Variables
{
  "distinct_on": ["blockNumber"],
  "limit": 123,
  "offset": 987,
  "order_by": [ProfileBackgroundImageURL_order_by],
  "where": ProfileBackgroundImageURL_bool_exp
}
Response
{
  "data": {
    "ProfileBackgroundImageURL_aggregate": {
      "aggregate": ProfileBackgroundImageURL_aggregate_fields,
      "nodes": [ProfileBackgroundImageURL]
    }
  }
}

ProfileBackgroundImageURL_by_pk

Description

fetch data from the table: "ProfileBackgroundImageURL" using primary key columns

Response

Returns an ProfileBackgroundImageURL

Arguments
Name Description
id - String!

Example

Query
query ProfileBackgroundImageURL_by_pk($id: String!) {
  ProfileBackgroundImageURL_by_pk(id: $id) {
    blockNumber
    data
    db_write_timestamp
    error
    fileType
    height
    id
    index
    method
    profile {
      ...ProfileFragment
    }
    profile_id
    src
    url
    verified
    width
  }
}
Variables
{"id": "abc123"}
Response
{
  "data": {
    "ProfileBackgroundImageURL_by_pk": {
      "blockNumber": 987,
      "data": "xyz789",
      "db_write_timestamp": timestamp,
      "error": "abc123",
      "fileType": "abc123",
      "height": 987,
      "id": "abc123",
      "index": 987,
      "method": "xyz789",
      "profile": Profile,
      "profile_id": "xyz789",
      "src": "xyz789",
      "url": "xyz789",
      "verified": verificationstatus,
      "width": 123
    }
  }
}

ProfileImageURL

Description

fetch data from the table: "ProfileImageURL"

Response

Returns [ProfileImageURL!]!

Arguments
Name Description
distinct_on - [ProfileImageURL_select_column!] distinct select on columns
limit - Int limit the number of rows returned
offset - Int skip the first n rows. Use only with order_by
order_by - [ProfileImageURL_order_by!] sort the rows by one or more columns
where - ProfileImageURL_bool_exp filter the rows returned

Example

Query
query ProfileImageURL(
  $distinct_on: [ProfileImageURL_select_column!],
  $limit: Int,
  $offset: Int,
  $order_by: [ProfileImageURL_order_by!],
  $where: ProfileImageURL_bool_exp
) {
  ProfileImageURL(
    distinct_on: $distinct_on,
    limit: $limit,
    offset: $offset,
    order_by: $order_by,
    where: $where
  ) {
    blockNumber
    data
    db_write_timestamp
    error
    fileType
    height
    id
    index
    method
    profile {
      ...ProfileFragment
    }
    profile_id
    src
    url
    verified
    width
  }
}
Variables
{
  "distinct_on": ["blockNumber"],
  "limit": 123,
  "offset": 123,
  "order_by": [ProfileImageURL_order_by],
  "where": ProfileImageURL_bool_exp
}
Response
{
  "data": {
    "ProfileImageURL": [
      {
        "blockNumber": 123,
        "data": "abc123",
        "db_write_timestamp": timestamp,
        "error": "xyz789",
        "fileType": "abc123",
        "height": 123,
        "id": "abc123",
        "index": 987,
        "method": "abc123",
        "profile": Profile,
        "profile_id": "abc123",
        "src": "abc123",
        "url": "xyz789",
        "verified": verificationstatus,
        "width": 123
      }
    ]
  }
}

ProfileImageURL_aggregate

Description

fetch aggregated fields from the table: "ProfileImageURL"

Response

Returns an ProfileImageURL_aggregate!

Arguments
Name Description
distinct_on - [ProfileImageURL_select_column!] distinct select on columns
limit - Int limit the number of rows returned
offset - Int skip the first n rows. Use only with order_by
order_by - [ProfileImageURL_order_by!] sort the rows by one or more columns
where - ProfileImageURL_bool_exp filter the rows returned

Example

Query
query ProfileImageURL_aggregate(
  $distinct_on: [ProfileImageURL_select_column!],
  $limit: Int,
  $offset: Int,
  $order_by: [ProfileImageURL_order_by!],
  $where: ProfileImageURL_bool_exp
) {
  ProfileImageURL_aggregate(
    distinct_on: $distinct_on,
    limit: $limit,
    offset: $offset,
    order_by: $order_by,
    where: $where
  ) {
    aggregate {
      ...ProfileImageURL_aggregate_fieldsFragment
    }
    nodes {
      ...ProfileImageURLFragment
    }
  }
}
Variables
{
  "distinct_on": ["blockNumber"],
  "limit": 987,
  "offset": 123,
  "order_by": [ProfileImageURL_order_by],
  "where": ProfileImageURL_bool_exp
}
Response
{
  "data": {
    "ProfileImageURL_aggregate": {
      "aggregate": ProfileImageURL_aggregate_fields,
      "nodes": [ProfileImageURL]
    }
  }
}

ProfileImageURL_by_pk

Description

fetch data from the table: "ProfileImageURL" using primary key columns

Response

Returns an ProfileImageURL

Arguments
Name Description
id - String!

Example

Query
query ProfileImageURL_by_pk($id: String!) {
  ProfileImageURL_by_pk(id: $id) {
    blockNumber
    data
    db_write_timestamp
    error
    fileType
    height
    id
    index
    method
    profile {
      ...ProfileFragment
    }
    profile_id
    src
    url
    verified
    width
  }
}
Variables
{"id": "abc123"}
Response
{
  "data": {
    "ProfileImageURL_by_pk": {
      "blockNumber": 123,
      "data": "abc123",
      "db_write_timestamp": timestamp,
      "error": "abc123",
      "fileType": "abc123",
      "height": 987,
      "id": "xyz789",
      "index": 123,
      "method": "abc123",
      "profile": Profile,
      "profile_id": "xyz789",
      "src": "xyz789",
      "url": "xyz789",
      "verified": verificationstatus,
      "width": 987
    }
  }
}

Profile_aggregate

Description

fetch aggregated fields from the table: "Profile"

Response

Returns a Profile_aggregate!

Arguments
Name Description
distinct_on - [Profile_select_column!] distinct select on columns
limit - Int limit the number of rows returned
offset - Int skip the first n rows. Use only with order_by
order_by - [Profile_order_by!] sort the rows by one or more columns
where - Profile_bool_exp filter the rows returned

Example

Query
query Profile_aggregate(
  $distinct_on: [Profile_select_column!],
  $limit: Int,
  $offset: Int,
  $order_by: [Profile_order_by!],
  $where: Profile_bool_exp
) {
  Profile_aggregate(
    distinct_on: $distinct_on,
    limit: $limit,
    offset: $offset,
    order_by: $order_by,
    where: $where
  ) {
    aggregate {
      ...Profile_aggregate_fieldsFragment
    }
    nodes {
      ...ProfileFragment
    }
  }
}
Variables
{
  "distinct_on": ["addressPermissions"],
  "limit": 123,
  "offset": 123,
  "order_by": [Profile_order_by],
  "where": Profile_bool_exp
}
Response
{
  "data": {
    "Profile_aggregate": {
      "aggregate": Profile_aggregate_fields,
      "nodes": [Profile]
    }
  }
}

Profile_by_pk

Description

fetch data from the table: "Profile" using primary key columns

Response

Returns a Profile

Arguments
Name Description
id - String!

Example

Query
query Profile_by_pk($id: String!) {
  Profile_by_pk(id: $id) {
    addressPermissions
    addressPermissions_
    app {
      ...AppFragment
    }
    appContributions {
      ...AppContributorFragment
    }
    appContributions_aggregate {
      ...AppContributor_aggregateFragment
    }
    appHistory {
      ...AppHistoryFragment
    }
    appHistory_aggregate {
      ...AppHistory_aggregateFragment
    }
    appInstalls {
      ...AppInstallFragment
    }
    appInstalls_aggregate {
      ...AppInstall_aggregateFragment
    }
    asset {
      ...AssetFragment
    }
    asset_id
    avatars {
      ...AvatarAssetURLFragment
    }
    avatars_
    avatars_aggregate {
      ...AvatarAssetURL_aggregateFragment
    }
    backgroundImages {
      ...ProfileBackgroundImageURLFragment
    }
    backgroundImages_
    backgroundImages_aggregate {
      ...ProfileBackgroundImageURL_aggregateFragment
    }
    blockNumber
    controllers {
      ...ControllerFragment
    }
    controllers_
    controllers_aggregate {
      ...Controller_aggregateFragment
    }
    createdBlockNumber
    createdTimestamp
    createdTransactionIndex
    data
    db_write_timestamp
    description
    error
    feed {
      ...FeedProfileArgFragment
    }
    feed_aggregate {
      ...FeedProfileArg_aggregateFragment
    }
    followed {
      ...FollowFragment
    }
    followed_aggregate {
      ...Follow_aggregateFragment
    }
    following {
      ...FollowFragment
    }
    following_aggregate {
      ...Follow_aggregateFragment
    }
    ft
    fts
    fullName
    holds {
      ...HoldFragment
    }
    holds_aggregate {
      ...Hold_aggregateFragment
    }
    id
    incoming_transfers {
      ...TransferFragment
    }
    incoming_transfers_aggregate {
      ...Transfer_aggregateFragment
    }
    interactions {
      ...InteractionFragment
    }
    interactions_aggregate {
      ...Interaction_aggregateFragment
    }
    interfaces
    isContract
    isEOA
    keyManagers {
      ...KeyManagerFragment
    }
    keyManagers_aggregate {
      ...KeyManager_aggregateFragment
    }
    lastMetadataUpdate
    lastNameUpdate
    links {
      ...ProfileLinkFragment
    }
    links_
    links_aggregate {
      ...ProfileLink_aggregateFragment
    }
    lsp12IssuedAssets {
      ...IssuedAssetFragment
    }
    lsp12IssuedAssets_
    lsp12IssuedAssets_aggregate {
      ...IssuedAsset_aggregateFragment
    }
    lsp1UniversalReceiverDelegate {
      ...ReceiverDelegateFragment
    }
    lsp1UniversalReceiverDelegate_aggregate {
      ...ReceiverDelegate_aggregateFragment
    }
    lsp23Deployment {
      ...LSP23DeploymentFragment
    }
    lsp5ReceivedAssets {
      ...ReceivedAssetFragment
    }
    lsp5ReceivedAssets_
    lsp5ReceivedAssets_aggregate {
      ...ReceivedAsset_aggregateFragment
    }
    method
    name
    outgoing_transfers {
      ...TransferFragment
    }
    outgoing_transfers_aggregate {
      ...Transfer_aggregateFragment
    }
    owner {
      ...ProfileFragment
    }
    owner_id
    profileImages {
      ...ProfileImageURLFragment
    }
    profileImages_
    profileImages_aggregate {
      ...ProfileImageURL_aggregateFragment
    }
    src
    standard
    supportedStandardsLsp3Profile
    tags
    transactions {
      ...TransactionFragment
    }
    transactions_aggregate {
      ...Transaction_aggregateFragment
    }
    updatedBlockNumber
    updatedTimestamp
    updatedTransactionIndex
    url
  }
}
Variables
{"id": "xyz789"}
Response
{
  "data": {
    "Profile_by_pk": {
      "addressPermissions": ["xyz789"],
      "addressPermissions_": ["abc123"],
      "app": App,
      "appContributions": [AppContributor],
      "appContributions_aggregate": AppContributor_aggregate,
      "appHistory": [AppHistory],
      "appHistory_aggregate": AppHistory_aggregate,
      "appInstalls": [AppInstall],
      "appInstalls_aggregate": AppInstall_aggregate,
      "asset": Asset,
      "asset_id": "abc123",
      "avatars": [AvatarAssetURL],
      "avatars_": ["xyz789"],
      "avatars_aggregate": AvatarAssetURL_aggregate,
      "backgroundImages": [ProfileBackgroundImageURL],
      "backgroundImages_": ["xyz789"],
      "backgroundImages_aggregate": ProfileBackgroundImageURL_aggregate,
      "blockNumber": 987,
      "controllers": [Controller],
      "controllers_": ["abc123"],
      "controllers_aggregate": Controller_aggregate,
      "createdBlockNumber": 987,
      "createdTimestamp": 987,
      "createdTransactionIndex": 987,
      "data": "xyz789",
      "db_write_timestamp": timestamp,
      "description": "abc123",
      "error": "abc123",
      "feed": [FeedProfileArg],
      "feed_aggregate": FeedProfileArg_aggregate,
      "followed": [Follow],
      "followed_aggregate": Follow_aggregate,
      "following": [Follow],
      "following_aggregate": Follow_aggregate,
      "ft": "xyz789",
      "fts": tsvector,
      "fullName": "abc123",
      "holds": [Hold],
      "holds_aggregate": Hold_aggregate,
      "id": "xyz789",
      "incoming_transfers": [Transfer],
      "incoming_transfers_aggregate": Transfer_aggregate,
      "interactions": [Interaction],
      "interactions_aggregate": Interaction_aggregate,
      "interfaces": ["abc123"],
      "isContract": false,
      "isEOA": false,
      "keyManagers": [KeyManager],
      "keyManagers_aggregate": KeyManager_aggregate,
      "lastMetadataUpdate": 123,
      "lastNameUpdate": 123,
      "links": [ProfileLink],
      "links_": ["xyz789"],
      "links_aggregate": ProfileLink_aggregate,
      "lsp12IssuedAssets": [IssuedAsset],
      "lsp12IssuedAssets_": ["abc123"],
      "lsp12IssuedAssets_aggregate": IssuedAsset_aggregate,
      "lsp1UniversalReceiverDelegate": [ReceiverDelegate],
      "lsp1UniversalReceiverDelegate_aggregate": ReceiverDelegate_aggregate,
      "lsp23Deployment": LSP23Deployment,
      "lsp5ReceivedAssets": [ReceivedAsset],
      "lsp5ReceivedAssets_": ["abc123"],
      "lsp5ReceivedAssets_aggregate": ReceivedAsset_aggregate,
      "method": "xyz789",
      "name": "abc123",
      "outgoing_transfers": [Transfer],
      "outgoing_transfers_aggregate": Transfer_aggregate,
      "owner": Profile,
      "owner_id": "xyz789",
      "profileImages": [ProfileImageURL],
      "profileImages_": ["xyz789"],
      "profileImages_aggregate": ProfileImageURL_aggregate,
      "src": "abc123",
      "standard": standards,
      "supportedStandardsLsp3Profile": true,
      "tags": ["xyz789"],
      "transactions": [Transaction],
      "transactions_aggregate": Transaction_aggregate,
      "updatedBlockNumber": 987,
      "updatedTimestamp": 123,
      "updatedTransactionIndex": 123,
      "url": "abc123"
    }
  }
}

ReceivedAsset

Description

fetch data from the table: "ReceivedAsset"

Response

Returns [ReceivedAsset!]!

Arguments
Name Description
distinct_on - [ReceivedAsset_select_column!] distinct select on columns
limit - Int limit the number of rows returned
offset - Int skip the first n rows. Use only with order_by
order_by - [ReceivedAsset_order_by!] sort the rows by one or more columns
where - ReceivedAsset_bool_exp filter the rows returned

Example

Query
query ReceivedAsset(
  $distinct_on: [ReceivedAsset_select_column!],
  $limit: Int,
  $offset: Int,
  $order_by: [ReceivedAsset_order_by!],
  $where: ReceivedAsset_bool_exp
) {
  ReceivedAsset(
    distinct_on: $distinct_on,
    limit: $limit,
    offset: $offset,
    order_by: $order_by,
    where: $where
  ) {
    asset {
      ...AssetFragment
    }
    asset_id
    blockNumber
    createdBlockNumber
    createdTimestamp
    createdTransactionIndex
    db_write_timestamp
    id
    index
    interfaceId
    profile {
      ...ProfileFragment
    }
    profile_id
    updatedBlockNumber
    updatedTimestamp
    updatedTransactionIndex
  }
}
Variables
{
  "distinct_on": ["asset_id"],
  "limit": 123,
  "offset": 123,
  "order_by": [ReceivedAsset_order_by],
  "where": ReceivedAsset_bool_exp
}
Response
{
  "data": {
    "ReceivedAsset": [
      {
        "asset": Asset,
        "asset_id": "abc123",
        "blockNumber": 987,
        "createdBlockNumber": 987,
        "createdTimestamp": 123,
        "createdTransactionIndex": 987,
        "db_write_timestamp": timestamp,
        "id": "xyz789",
        "index": 987,
        "interfaceId": "xyz789",
        "profile": Profile,
        "profile_id": "abc123",
        "updatedBlockNumber": 987,
        "updatedTimestamp": 123,
        "updatedTransactionIndex": 123
      }
    ]
  }
}

ReceivedAsset_aggregate

Description

fetch aggregated fields from the table: "ReceivedAsset"

Response

Returns a ReceivedAsset_aggregate!

Arguments
Name Description
distinct_on - [ReceivedAsset_select_column!] distinct select on columns
limit - Int limit the number of rows returned
offset - Int skip the first n rows. Use only with order_by
order_by - [ReceivedAsset_order_by!] sort the rows by one or more columns
where - ReceivedAsset_bool_exp filter the rows returned

Example

Query
query ReceivedAsset_aggregate(
  $distinct_on: [ReceivedAsset_select_column!],
  $limit: Int,
  $offset: Int,
  $order_by: [ReceivedAsset_order_by!],
  $where: ReceivedAsset_bool_exp
) {
  ReceivedAsset_aggregate(
    distinct_on: $distinct_on,
    limit: $limit,
    offset: $offset,
    order_by: $order_by,
    where: $where
  ) {
    aggregate {
      ...ReceivedAsset_aggregate_fieldsFragment
    }
    nodes {
      ...ReceivedAssetFragment
    }
  }
}
Variables
{
  "distinct_on": ["asset_id"],
  "limit": 987,
  "offset": 987,
  "order_by": [ReceivedAsset_order_by],
  "where": ReceivedAsset_bool_exp
}
Response
{
  "data": {
    "ReceivedAsset_aggregate": {
      "aggregate": ReceivedAsset_aggregate_fields,
      "nodes": [ReceivedAsset]
    }
  }
}

ReceivedAsset_by_pk

Description

fetch data from the table: "ReceivedAsset" using primary key columns

Response

Returns a ReceivedAsset

Arguments
Name Description
id - String!

Example

Query
query ReceivedAsset_by_pk($id: String!) {
  ReceivedAsset_by_pk(id: $id) {
    asset {
      ...AssetFragment
    }
    asset_id
    blockNumber
    createdBlockNumber
    createdTimestamp
    createdTransactionIndex
    db_write_timestamp
    id
    index
    interfaceId
    profile {
      ...ProfileFragment
    }
    profile_id
    updatedBlockNumber
    updatedTimestamp
    updatedTransactionIndex
  }
}
Variables
{"id": "abc123"}
Response
{
  "data": {
    "ReceivedAsset_by_pk": {
      "asset": Asset,
      "asset_id": "abc123",
      "blockNumber": 987,
      "createdBlockNumber": 123,
      "createdTimestamp": 123,
      "createdTransactionIndex": 987,
      "db_write_timestamp": timestamp,
      "id": "abc123",
      "index": 123,
      "interfaceId": "xyz789",
      "profile": Profile,
      "profile_id": "abc123",
      "updatedBlockNumber": 987,
      "updatedTimestamp": 123,
      "updatedTransactionIndex": 123
    }
  }
}

ReceiverDelegate

Description

fetch data from the table: "ReceiverDelegate"

Response

Returns [ReceiverDelegate!]!

Arguments
Name Description
distinct_on - [ReceiverDelegate_select_column!] distinct select on columns
limit - Int limit the number of rows returned
offset - Int skip the first n rows. Use only with order_by
order_by - [ReceiverDelegate_order_by!] sort the rows by one or more columns
where - ReceiverDelegate_bool_exp filter the rows returned

Example

Query
query ReceiverDelegate(
  $distinct_on: [ReceiverDelegate_select_column!],
  $limit: Int,
  $offset: Int,
  $order_by: [ReceiverDelegate_order_by!],
  $where: ReceiverDelegate_bool_exp
) {
  ReceiverDelegate(
    distinct_on: $distinct_on,
    limit: $limit,
    offset: $offset,
    order_by: $order_by,
    where: $where
  ) {
    blockNumber
    db_write_timestamp
    delegate
    id
    profile {
      ...ProfileFragment
    }
    profile_id
    typeId
  }
}
Variables
{
  "distinct_on": ["blockNumber"],
  "limit": 123,
  "offset": 987,
  "order_by": [ReceiverDelegate_order_by],
  "where": ReceiverDelegate_bool_exp
}
Response
{
  "data": {
    "ReceiverDelegate": [
      {
        "blockNumber": 123,
        "db_write_timestamp": timestamp,
        "delegate": "xyz789",
        "id": "xyz789",
        "profile": Profile,
        "profile_id": "abc123",
        "typeId": "abc123"
      }
    ]
  }
}

ReceiverDelegate_aggregate

Description

fetch aggregated fields from the table: "ReceiverDelegate"

Response

Returns a ReceiverDelegate_aggregate!

Arguments
Name Description
distinct_on - [ReceiverDelegate_select_column!] distinct select on columns
limit - Int limit the number of rows returned
offset - Int skip the first n rows. Use only with order_by
order_by - [ReceiverDelegate_order_by!] sort the rows by one or more columns
where - ReceiverDelegate_bool_exp filter the rows returned

Example

Query
query ReceiverDelegate_aggregate(
  $distinct_on: [ReceiverDelegate_select_column!],
  $limit: Int,
  $offset: Int,
  $order_by: [ReceiverDelegate_order_by!],
  $where: ReceiverDelegate_bool_exp
) {
  ReceiverDelegate_aggregate(
    distinct_on: $distinct_on,
    limit: $limit,
    offset: $offset,
    order_by: $order_by,
    where: $where
  ) {
    aggregate {
      ...ReceiverDelegate_aggregate_fieldsFragment
    }
    nodes {
      ...ReceiverDelegateFragment
    }
  }
}
Variables
{
  "distinct_on": ["blockNumber"],
  "limit": 987,
  "offset": 987,
  "order_by": [ReceiverDelegate_order_by],
  "where": ReceiverDelegate_bool_exp
}
Response
{
  "data": {
    "ReceiverDelegate_aggregate": {
      "aggregate": ReceiverDelegate_aggregate_fields,
      "nodes": [ReceiverDelegate]
    }
  }
}

ReceiverDelegate_by_pk

Description

fetch data from the table: "ReceiverDelegate" using primary key columns

Response

Returns a ReceiverDelegate

Arguments
Name Description
id - String!

Example

Query
query ReceiverDelegate_by_pk($id: String!) {
  ReceiverDelegate_by_pk(id: $id) {
    blockNumber
    db_write_timestamp
    delegate
    id
    profile {
      ...ProfileFragment
    }
    profile_id
    typeId
  }
}
Variables
{"id": "abc123"}
Response
{
  "data": {
    "ReceiverDelegate_by_pk": {
      "blockNumber": 987,
      "db_write_timestamp": timestamp,
      "delegate": "abc123",
      "id": "abc123",
      "profile": Profile,
      "profile_id": "xyz789",
      "typeId": "xyz789"
    }
  }
}

Token

Description

fetch data from the table: "Token"

Response

Returns [Token!]!

Arguments
Name Description
distinct_on - [Token_select_column!] distinct select on columns
limit - Int limit the number of rows returned
offset - Int skip the first n rows. Use only with order_by
order_by - [Token_order_by!] sort the rows by one or more columns
where - Token_bool_exp filter the rows returned

Example

Query
query Token(
  $distinct_on: [Token_select_column!],
  $limit: Int,
  $offset: Int,
  $order_by: [Token_order_by!],
  $where: Token_bool_exp
) {
  Token(
    distinct_on: $distinct_on,
    limit: $limit,
    offset: $offset,
    order_by: $order_by,
    where: $where
  ) {
    appHistory {
      ...AppHistoryFragment
    }
    appHistory_aggregate {
      ...AppHistory_aggregateFragment
    }
    appInstalls {
      ...AppInstallFragment
    }
    appInstalls_aggregate {
      ...AppInstall_aggregateFragment
    }
    asset {
      ...AssetFragment
    }
    asset_id
    assets {
      ...TokenAssetURLFragment
    }
    assets_
    assets_aggregate {
      ...TokenAssetURL_aggregateFragment
    }
    attributes {
      ...TokenAttributeFragment
    }
    attributes_
    attributes_aggregate {
      ...TokenAttribute_aggregateFragment
    }
    backgroundImages {
      ...TokenBackgroundImageURLFragment
    }
    backgroundImages_
    baseAsset {
      ...AssetFragment
    }
    baseAsset_id
    baseUriChanged
    blockNumber
    category
    createdBlockNumber
    createdTimestamp
    createdTransactionIndex
    data
    db_write_timestamp
    description
    error
    formattedTokenId
    holders {
      ...HoldFragment
    }
    holders_aggregate {
      ...Hold_aggregateFragment
    }
    icons {
      ...TokenIconURLFragment
    }
    icons_
    icons_aggregate {
      ...TokenIconURL_aggregateFragment
    }
    id
    images {
      ...TokenImageURLFragment
    }
    images_
    images_aggregate {
      ...TokenImageURL_aggregateFragment
    }
    links {
      ...TokenLinkFragment
    }
    links_
    links_aggregate {
      ...TokenLink_aggregateFragment
    }
    lsp4Creators {
      ...TokenCreatorsFragment
    }
    lsp4CreatorsMap {
      ...TokenCreatorsFragment
    }
    lsp4CreatorsMap_aggregate {
      ...TokenCreators_aggregateFragment
    }
    lsp4Creators_
    lsp4Creators_aggregate {
      ...TokenCreators_aggregateFragment
    }
    lsp4TokenName
    lsp4TokenSymbol
    lsp4TokenType
    lsp8ReferenceContract {
      ...AssetFragment
    }
    lsp8ReferenceContractSelf
    lsp8ReferenceContract_id
    lsp8TokenIdFormat
    method
    name
    src
    supportedStandardsLsp4DigitalAsset
    tokenId
    transfers {
      ...TransferFragment
    }
    transfers_aggregate {
      ...Transfer_aggregateFragment
    }
    updatedBlockNumber
    updatedTimestamp
    updatedTransactionIndex
    url
  }
}
Variables
{
  "distinct_on": ["asset_id"],
  "limit": 987,
  "offset": 123,
  "order_by": [Token_order_by],
  "where": Token_bool_exp
}
Response
{
  "data": {
    "Token": [
      {
        "appHistory": [AppHistory],
        "appHistory_aggregate": AppHistory_aggregate,
        "appInstalls": [AppInstall],
        "appInstalls_aggregate": AppInstall_aggregate,
        "asset": Asset,
        "asset_id": "abc123",
        "assets": [TokenAssetURL],
        "assets_": ["xyz789"],
        "assets_aggregate": TokenAssetURL_aggregate,
        "attributes": [TokenAttribute],
        "attributes_": ["abc123"],
        "attributes_aggregate": TokenAttribute_aggregate,
        "backgroundImages": [TokenBackgroundImageURL],
        "backgroundImages_": ["xyz789"],
        "baseAsset": Asset,
        "baseAsset_id": "abc123",
        "baseUriChanged": true,
        "blockNumber": 987,
        "category": "xyz789",
        "createdBlockNumber": 987,
        "createdTimestamp": 123,
        "createdTransactionIndex": 123,
        "data": "abc123",
        "db_write_timestamp": timestamp,
        "description": "abc123",
        "error": "xyz789",
        "formattedTokenId": "abc123",
        "holders": [Hold],
        "holders_aggregate": Hold_aggregate,
        "icons": [TokenIconURL],
        "icons_": ["abc123"],
        "icons_aggregate": TokenIconURL_aggregate,
        "id": "abc123",
        "images": [TokenImageURL],
        "images_": ["xyz789"],
        "images_aggregate": TokenImageURL_aggregate,
        "links": [TokenLink],
        "links_": ["xyz789"],
        "links_aggregate": TokenLink_aggregate,
        "lsp4Creators": [TokenCreators],
        "lsp4CreatorsMap": [TokenCreators],
        "lsp4CreatorsMap_aggregate": TokenCreators_aggregate,
        "lsp4Creators_": ["xyz789"],
        "lsp4Creators_aggregate": TokenCreators_aggregate,
        "lsp4TokenName": "abc123",
        "lsp4TokenSymbol": "abc123",
        "lsp4TokenType": 987,
        "lsp8ReferenceContract": Asset,
        "lsp8ReferenceContractSelf": "abc123",
        "lsp8ReferenceContract_id": "xyz789",
        "lsp8TokenIdFormat": 123,
        "method": "abc123",
        "name": "xyz789",
        "src": "xyz789",
        "supportedStandardsLsp4DigitalAsset": true,
        "tokenId": "abc123",
        "transfers": [Transfer],
        "transfers_aggregate": Transfer_aggregate,
        "updatedBlockNumber": 123,
        "updatedTimestamp": 123,
        "updatedTransactionIndex": 123,
        "url": "xyz789"
      }
    ]
  }
}

TokenAssetURL

Description

fetch data from the table: "TokenAssetURL"

Response

Returns [TokenAssetURL!]!

Arguments
Name Description
distinct_on - [TokenAssetURL_select_column!] distinct select on columns
limit - Int limit the number of rows returned
offset - Int skip the first n rows. Use only with order_by
order_by - [TokenAssetURL_order_by!] sort the rows by one or more columns
where - TokenAssetURL_bool_exp filter the rows returned

Example

Query
query TokenAssetURL(
  $distinct_on: [TokenAssetURL_select_column!],
  $limit: Int,
  $offset: Int,
  $order_by: [TokenAssetURL_order_by!],
  $where: TokenAssetURL_bool_exp
) {
  TokenAssetURL(
    distinct_on: $distinct_on,
    limit: $limit,
    offset: $offset,
    order_by: $order_by,
    where: $where
  ) {
    blockNumber
    contentAsset {
      ...AssetFragment
    }
    contentAsset_id
    contentToken {
      ...TokenFragment
    }
    contentToken_id
    data
    db_write_timestamp
    error
    fileType
    height
    id
    method
    src
    token {
      ...TokenFragment
    }
    token_id
    url
    verified
    width
  }
}
Variables
{
  "distinct_on": ["blockNumber"],
  "limit": 987,
  "offset": 123,
  "order_by": [TokenAssetURL_order_by],
  "where": TokenAssetURL_bool_exp
}
Response
{
  "data": {
    "TokenAssetURL": [
      {
        "blockNumber": 123,
        "contentAsset": Asset,
        "contentAsset_id": "abc123",
        "contentToken": Token,
        "contentToken_id": "xyz789",
        "data": "xyz789",
        "db_write_timestamp": timestamp,
        "error": "abc123",
        "fileType": "abc123",
        "height": 123,
        "id": "abc123",
        "method": "abc123",
        "src": "xyz789",
        "token": Token,
        "token_id": "abc123",
        "url": "xyz789",
        "verified": verificationstatus,
        "width": 987
      }
    ]
  }
}

TokenAssetURL_aggregate

Description

fetch aggregated fields from the table: "TokenAssetURL"

Response

Returns an TokenAssetURL_aggregate!

Arguments
Name Description
distinct_on - [TokenAssetURL_select_column!] distinct select on columns
limit - Int limit the number of rows returned
offset - Int skip the first n rows. Use only with order_by
order_by - [TokenAssetURL_order_by!] sort the rows by one or more columns
where - TokenAssetURL_bool_exp filter the rows returned

Example

Query
query TokenAssetURL_aggregate(
  $distinct_on: [TokenAssetURL_select_column!],
  $limit: Int,
  $offset: Int,
  $order_by: [TokenAssetURL_order_by!],
  $where: TokenAssetURL_bool_exp
) {
  TokenAssetURL_aggregate(
    distinct_on: $distinct_on,
    limit: $limit,
    offset: $offset,
    order_by: $order_by,
    where: $where
  ) {
    aggregate {
      ...TokenAssetURL_aggregate_fieldsFragment
    }
    nodes {
      ...TokenAssetURLFragment
    }
  }
}
Variables
{
  "distinct_on": ["blockNumber"],
  "limit": 123,
  "offset": 987,
  "order_by": [TokenAssetURL_order_by],
  "where": TokenAssetURL_bool_exp
}
Response
{
  "data": {
    "TokenAssetURL_aggregate": {
      "aggregate": TokenAssetURL_aggregate_fields,
      "nodes": [TokenAssetURL]
    }
  }
}

TokenAssetURL_by_pk

Description

fetch data from the table: "TokenAssetURL" using primary key columns

Response

Returns an TokenAssetURL

Arguments
Name Description
id - String!

Example

Query
query TokenAssetURL_by_pk($id: String!) {
  TokenAssetURL_by_pk(id: $id) {
    blockNumber
    contentAsset {
      ...AssetFragment
    }
    contentAsset_id
    contentToken {
      ...TokenFragment
    }
    contentToken_id
    data
    db_write_timestamp
    error
    fileType
    height
    id
    method
    src
    token {
      ...TokenFragment
    }
    token_id
    url
    verified
    width
  }
}
Variables
{"id": "xyz789"}
Response
{
  "data": {
    "TokenAssetURL_by_pk": {
      "blockNumber": 987,
      "contentAsset": Asset,
      "contentAsset_id": "abc123",
      "contentToken": Token,
      "contentToken_id": "xyz789",
      "data": "abc123",
      "db_write_timestamp": timestamp,
      "error": "xyz789",
      "fileType": "abc123",
      "height": 987,
      "id": "xyz789",
      "method": "xyz789",
      "src": "abc123",
      "token": Token,
      "token_id": "abc123",
      "url": "xyz789",
      "verified": verificationstatus,
      "width": 987
    }
  }
}

TokenAttribute

Description

fetch data from the table: "TokenAttribute"

Response

Returns [TokenAttribute!]!

Arguments
Name Description
distinct_on - [TokenAttribute_select_column!] distinct select on columns
limit - Int limit the number of rows returned
offset - Int skip the first n rows. Use only with order_by
order_by - [TokenAttribute_order_by!] sort the rows by one or more columns
where - TokenAttribute_bool_exp filter the rows returned

Example

Query
query TokenAttribute(
  $distinct_on: [TokenAttribute_select_column!],
  $limit: Int,
  $offset: Int,
  $order_by: [TokenAttribute_order_by!],
  $where: TokenAttribute_bool_exp
) {
  TokenAttribute(
    distinct_on: $distinct_on,
    limit: $limit,
    offset: $offset,
    order_by: $order_by,
    where: $where
  ) {
    attributeType
    blockNumber
    db_write_timestamp
    id
    key
    token {
      ...TokenFragment
    }
    token_id
    value
  }
}
Variables
{
  "distinct_on": ["attributeType"],
  "limit": 987,
  "offset": 987,
  "order_by": [TokenAttribute_order_by],
  "where": TokenAttribute_bool_exp
}
Response
{
  "data": {
    "TokenAttribute": [
      {
        "attributeType": "abc123",
        "blockNumber": 987,
        "db_write_timestamp": timestamp,
        "id": "abc123",
        "key": "xyz789",
        "token": Token,
        "token_id": "abc123",
        "value": "abc123"
      }
    ]
  }
}

TokenAttribute_aggregate

Description

fetch aggregated fields from the table: "TokenAttribute"

Response

Returns a TokenAttribute_aggregate!

Arguments
Name Description
distinct_on - [TokenAttribute_select_column!] distinct select on columns
limit - Int limit the number of rows returned
offset - Int skip the first n rows. Use only with order_by
order_by - [TokenAttribute_order_by!] sort the rows by one or more columns
where - TokenAttribute_bool_exp filter the rows returned

Example

Query
query TokenAttribute_aggregate(
  $distinct_on: [TokenAttribute_select_column!],
  $limit: Int,
  $offset: Int,
  $order_by: [TokenAttribute_order_by!],
  $where: TokenAttribute_bool_exp
) {
  TokenAttribute_aggregate(
    distinct_on: $distinct_on,
    limit: $limit,
    offset: $offset,
    order_by: $order_by,
    where: $where
  ) {
    aggregate {
      ...TokenAttribute_aggregate_fieldsFragment
    }
    nodes {
      ...TokenAttributeFragment
    }
  }
}
Variables
{
  "distinct_on": ["attributeType"],
  "limit": 123,
  "offset": 987,
  "order_by": [TokenAttribute_order_by],
  "where": TokenAttribute_bool_exp
}
Response
{
  "data": {
    "TokenAttribute_aggregate": {
      "aggregate": TokenAttribute_aggregate_fields,
      "nodes": [TokenAttribute]
    }
  }
}

TokenAttribute_by_pk

Description

fetch data from the table: "TokenAttribute" using primary key columns

Response

Returns a TokenAttribute

Arguments
Name Description
id - String!

Example

Query
query TokenAttribute_by_pk($id: String!) {
  TokenAttribute_by_pk(id: $id) {
    attributeType
    blockNumber
    db_write_timestamp
    id
    key
    token {
      ...TokenFragment
    }
    token_id
    value
  }
}
Variables
{"id": "xyz789"}
Response
{
  "data": {
    "TokenAttribute_by_pk": {
      "attributeType": "abc123",
      "blockNumber": 987,
      "db_write_timestamp": timestamp,
      "id": "abc123",
      "key": "xyz789",
      "token": Token,
      "token_id": "xyz789",
      "value": "abc123"
    }
  }
}

TokenBackgroundImageURL

Description

fetch data from the table: "TokenBackgroundImageURL"

Response

Returns [TokenBackgroundImageURL!]!

Arguments
Name Description
distinct_on - [TokenBackgroundImageURL_select_column!] distinct select on columns
limit - Int limit the number of rows returned
offset - Int skip the first n rows. Use only with order_by
order_by - [TokenBackgroundImageURL_order_by!] sort the rows by one or more columns
where - TokenBackgroundImageURL_bool_exp filter the rows returned

Example

Query
query TokenBackgroundImageURL(
  $distinct_on: [TokenBackgroundImageURL_select_column!],
  $limit: Int,
  $offset: Int,
  $order_by: [TokenBackgroundImageURL_order_by!],
  $where: TokenBackgroundImageURL_bool_exp
) {
  TokenBackgroundImageURL(
    distinct_on: $distinct_on,
    limit: $limit,
    offset: $offset,
    order_by: $order_by,
    where: $where
  ) {
    blockNumber
    data
    db_write_timestamp
    error
    fileType
    height
    id
    index
    method
    src
    token_id
    url
    verified
    width
  }
}
Variables
{
  "distinct_on": ["blockNumber"],
  "limit": 987,
  "offset": 987,
  "order_by": [TokenBackgroundImageURL_order_by],
  "where": TokenBackgroundImageURL_bool_exp
}
Response
{
  "data": {
    "TokenBackgroundImageURL": [
      {
        "blockNumber": 123,
        "data": "abc123",
        "db_write_timestamp": timestamp,
        "error": "xyz789",
        "fileType": "abc123",
        "height": 987,
        "id": "xyz789",
        "index": 987,
        "method": "xyz789",
        "src": "xyz789",
        "token_id": "xyz789",
        "url": "abc123",
        "verified": verificationstatus,
        "width": 123
      }
    ]
  }
}

TokenBackgroundImageURL_by_pk

Description

fetch data from the table: "TokenBackgroundImageURL" using primary key columns

Response

Returns an TokenBackgroundImageURL

Arguments
Name Description
id - String!

Example

Query
query TokenBackgroundImageURL_by_pk($id: String!) {
  TokenBackgroundImageURL_by_pk(id: $id) {
    blockNumber
    data
    db_write_timestamp
    error
    fileType
    height
    id
    index
    method
    src
    token_id
    url
    verified
    width
  }
}
Variables
{"id": "abc123"}
Response
{
  "data": {
    "TokenBackgroundImageURL_by_pk": {
      "blockNumber": 123,
      "data": "xyz789",
      "db_write_timestamp": timestamp,
      "error": "xyz789",
      "fileType": "xyz789",
      "height": 987,
      "id": "xyz789",
      "index": 987,
      "method": "xyz789",
      "src": "xyz789",
      "token_id": "abc123",
      "url": "abc123",
      "verified": verificationstatus,
      "width": 123
    }
  }
}

TokenCreators

Description

fetch data from the table: "TokenCreators"

Response

Returns [TokenCreators!]!

Arguments
Name Description
distinct_on - [TokenCreators_select_column!] distinct select on columns
limit - Int limit the number of rows returned
offset - Int skip the first n rows. Use only with order_by
order_by - [TokenCreators_order_by!] sort the rows by one or more columns
where - TokenCreators_bool_exp filter the rows returned

Example

Query
query TokenCreators(
  $distinct_on: [TokenCreators_select_column!],
  $limit: Int,
  $offset: Int,
  $order_by: [TokenCreators_order_by!],
  $where: TokenCreators_bool_exp
) {
  TokenCreators(
    distinct_on: $distinct_on,
    limit: $limit,
    offset: $offset,
    order_by: $order_by,
    where: $where
  ) {
    blockNumber
    db_write_timestamp
    id
    index
    interfaceId
    profile {
      ...ProfileFragment
    }
    profile_id
    token {
      ...TokenFragment
    }
    token_id
  }
}
Variables
{
  "distinct_on": ["blockNumber"],
  "limit": 123,
  "offset": 987,
  "order_by": [TokenCreators_order_by],
  "where": TokenCreators_bool_exp
}
Response
{
  "data": {
    "TokenCreators": [
      {
        "blockNumber": 987,
        "db_write_timestamp": timestamp,
        "id": "xyz789",
        "index": 987,
        "interfaceId": "abc123",
        "profile": Profile,
        "profile_id": "abc123",
        "token": Token,
        "token_id": "abc123"
      }
    ]
  }
}

TokenCreators_aggregate

Description

fetch aggregated fields from the table: "TokenCreators"

Response

Returns a TokenCreators_aggregate!

Arguments
Name Description
distinct_on - [TokenCreators_select_column!] distinct select on columns
limit - Int limit the number of rows returned
offset - Int skip the first n rows. Use only with order_by
order_by - [TokenCreators_order_by!] sort the rows by one or more columns
where - TokenCreators_bool_exp filter the rows returned

Example

Query
query TokenCreators_aggregate(
  $distinct_on: [TokenCreators_select_column!],
  $limit: Int,
  $offset: Int,
  $order_by: [TokenCreators_order_by!],
  $where: TokenCreators_bool_exp
) {
  TokenCreators_aggregate(
    distinct_on: $distinct_on,
    limit: $limit,
    offset: $offset,
    order_by: $order_by,
    where: $where
  ) {
    aggregate {
      ...TokenCreators_aggregate_fieldsFragment
    }
    nodes {
      ...TokenCreatorsFragment
    }
  }
}
Variables
{
  "distinct_on": ["blockNumber"],
  "limit": 987,
  "offset": 123,
  "order_by": [TokenCreators_order_by],
  "where": TokenCreators_bool_exp
}
Response
{
  "data": {
    "TokenCreators_aggregate": {
      "aggregate": TokenCreators_aggregate_fields,
      "nodes": [TokenCreators]
    }
  }
}

TokenCreators_by_pk

Description

fetch data from the table: "TokenCreators" using primary key columns

Response

Returns a TokenCreators

Arguments
Name Description
id - String!

Example

Query
query TokenCreators_by_pk($id: String!) {
  TokenCreators_by_pk(id: $id) {
    blockNumber
    db_write_timestamp
    id
    index
    interfaceId
    profile {
      ...ProfileFragment
    }
    profile_id
    token {
      ...TokenFragment
    }
    token_id
  }
}
Variables
{"id": "abc123"}
Response
{
  "data": {
    "TokenCreators_by_pk": {
      "blockNumber": 987,
      "db_write_timestamp": timestamp,
      "id": "xyz789",
      "index": 987,
      "interfaceId": "xyz789",
      "profile": Profile,
      "profile_id": "abc123",
      "token": Token,
      "token_id": "xyz789"
    }
  }
}

TokenIconURL

Description

fetch data from the table: "TokenIconURL"

Response

Returns [TokenIconURL!]!

Arguments
Name Description
distinct_on - [TokenIconURL_select_column!] distinct select on columns
limit - Int limit the number of rows returned
offset - Int skip the first n rows. Use only with order_by
order_by - [TokenIconURL_order_by!] sort the rows by one or more columns
where - TokenIconURL_bool_exp filter the rows returned

Example

Query
query TokenIconURL(
  $distinct_on: [TokenIconURL_select_column!],
  $limit: Int,
  $offset: Int,
  $order_by: [TokenIconURL_order_by!],
  $where: TokenIconURL_bool_exp
) {
  TokenIconURL(
    distinct_on: $distinct_on,
    limit: $limit,
    offset: $offset,
    order_by: $order_by,
    where: $where
  ) {
    blockNumber
    data
    db_write_timestamp
    error
    fileType
    height
    id
    method
    src
    token {
      ...TokenFragment
    }
    token_id
    url
    verified
    width
  }
}
Variables
{
  "distinct_on": ["blockNumber"],
  "limit": 987,
  "offset": 987,
  "order_by": [TokenIconURL_order_by],
  "where": TokenIconURL_bool_exp
}
Response
{
  "data": {
    "TokenIconURL": [
      {
        "blockNumber": 987,
        "data": "xyz789",
        "db_write_timestamp": timestamp,
        "error": "xyz789",
        "fileType": "abc123",
        "height": 987,
        "id": "abc123",
        "method": "xyz789",
        "src": "xyz789",
        "token": Token,
        "token_id": "xyz789",
        "url": "xyz789",
        "verified": verificationstatus,
        "width": 987
      }
    ]
  }
}

TokenIconURL_aggregate

Description

fetch aggregated fields from the table: "TokenIconURL"

Response

Returns an TokenIconURL_aggregate!

Arguments
Name Description
distinct_on - [TokenIconURL_select_column!] distinct select on columns
limit - Int limit the number of rows returned
offset - Int skip the first n rows. Use only with order_by
order_by - [TokenIconURL_order_by!] sort the rows by one or more columns
where - TokenIconURL_bool_exp filter the rows returned

Example

Query
query TokenIconURL_aggregate(
  $distinct_on: [TokenIconURL_select_column!],
  $limit: Int,
  $offset: Int,
  $order_by: [TokenIconURL_order_by!],
  $where: TokenIconURL_bool_exp
) {
  TokenIconURL_aggregate(
    distinct_on: $distinct_on,
    limit: $limit,
    offset: $offset,
    order_by: $order_by,
    where: $where
  ) {
    aggregate {
      ...TokenIconURL_aggregate_fieldsFragment
    }
    nodes {
      ...TokenIconURLFragment
    }
  }
}
Variables
{
  "distinct_on": ["blockNumber"],
  "limit": 123,
  "offset": 987,
  "order_by": [TokenIconURL_order_by],
  "where": TokenIconURL_bool_exp
}
Response
{
  "data": {
    "TokenIconURL_aggregate": {
      "aggregate": TokenIconURL_aggregate_fields,
      "nodes": [TokenIconURL]
    }
  }
}

TokenIconURL_by_pk

Description

fetch data from the table: "TokenIconURL" using primary key columns

Response

Returns an TokenIconURL

Arguments
Name Description
id - String!

Example

Query
query TokenIconURL_by_pk($id: String!) {
  TokenIconURL_by_pk(id: $id) {
    blockNumber
    data
    db_write_timestamp
    error
    fileType
    height
    id
    method
    src
    token {
      ...TokenFragment
    }
    token_id
    url
    verified
    width
  }
}
Variables
{"id": "xyz789"}
Response
{
  "data": {
    "TokenIconURL_by_pk": {
      "blockNumber": 123,
      "data": "abc123",
      "db_write_timestamp": timestamp,
      "error": "abc123",
      "fileType": "abc123",
      "height": 987,
      "id": "xyz789",
      "method": "xyz789",
      "src": "xyz789",
      "token": Token,
      "token_id": "xyz789",
      "url": "xyz789",
      "verified": verificationstatus,
      "width": 987
    }
  }
}

TokenImageURL

Description

fetch data from the table: "TokenImageURL"

Response

Returns [TokenImageURL!]!

Arguments
Name Description
distinct_on - [TokenImageURL_select_column!] distinct select on columns
limit - Int limit the number of rows returned
offset - Int skip the first n rows. Use only with order_by
order_by - [TokenImageURL_order_by!] sort the rows by one or more columns
where - TokenImageURL_bool_exp filter the rows returned

Example

Query
query TokenImageURL(
  $distinct_on: [TokenImageURL_select_column!],
  $limit: Int,
  $offset: Int,
  $order_by: [TokenImageURL_order_by!],
  $where: TokenImageURL_bool_exp
) {
  TokenImageURL(
    distinct_on: $distinct_on,
    limit: $limit,
    offset: $offset,
    order_by: $order_by,
    where: $where
  ) {
    blockNumber
    data
    db_write_timestamp
    error
    fileType
    height
    id
    index
    method
    src
    token {
      ...TokenFragment
    }
    token_id
    url
    verified
    width
  }
}
Variables
{
  "distinct_on": ["blockNumber"],
  "limit": 123,
  "offset": 987,
  "order_by": [TokenImageURL_order_by],
  "where": TokenImageURL_bool_exp
}
Response
{
  "data": {
    "TokenImageURL": [
      {
        "blockNumber": 987,
        "data": "xyz789",
        "db_write_timestamp": timestamp,
        "error": "abc123",
        "fileType": "abc123",
        "height": 123,
        "id": "xyz789",
        "index": 123,
        "method": "abc123",
        "src": "xyz789",
        "token": Token,
        "token_id": "abc123",
        "url": "xyz789",
        "verified": verificationstatus,
        "width": 123
      }
    ]
  }
}

TokenImageURL_aggregate

Description

fetch aggregated fields from the table: "TokenImageURL"

Response

Returns an TokenImageURL_aggregate!

Arguments
Name Description
distinct_on - [TokenImageURL_select_column!] distinct select on columns
limit - Int limit the number of rows returned
offset - Int skip the first n rows. Use only with order_by
order_by - [TokenImageURL_order_by!] sort the rows by one or more columns
where - TokenImageURL_bool_exp filter the rows returned

Example

Query
query TokenImageURL_aggregate(
  $distinct_on: [TokenImageURL_select_column!],
  $limit: Int,
  $offset: Int,
  $order_by: [TokenImageURL_order_by!],
  $where: TokenImageURL_bool_exp
) {
  TokenImageURL_aggregate(
    distinct_on: $distinct_on,
    limit: $limit,
    offset: $offset,
    order_by: $order_by,
    where: $where
  ) {
    aggregate {
      ...TokenImageURL_aggregate_fieldsFragment
    }
    nodes {
      ...TokenImageURLFragment
    }
  }
}
Variables
{
  "distinct_on": ["blockNumber"],
  "limit": 123,
  "offset": 987,
  "order_by": [TokenImageURL_order_by],
  "where": TokenImageURL_bool_exp
}
Response
{
  "data": {
    "TokenImageURL_aggregate": {
      "aggregate": TokenImageURL_aggregate_fields,
      "nodes": [TokenImageURL]
    }
  }
}

TokenImageURL_by_pk

Description

fetch data from the table: "TokenImageURL" using primary key columns

Response

Returns an TokenImageURL

Arguments
Name Description
id - String!

Example

Query
query TokenImageURL_by_pk($id: String!) {
  TokenImageURL_by_pk(id: $id) {
    blockNumber
    data
    db_write_timestamp
    error
    fileType
    height
    id
    index
    method
    src
    token {
      ...TokenFragment
    }
    token_id
    url
    verified
    width
  }
}
Variables
{"id": "abc123"}
Response
{
  "data": {
    "TokenImageURL_by_pk": {
      "blockNumber": 987,
      "data": "abc123",
      "db_write_timestamp": timestamp,
      "error": "xyz789",
      "fileType": "abc123",
      "height": 123,
      "id": "xyz789",
      "index": 123,
      "method": "abc123",
      "src": "abc123",
      "token": Token,
      "token_id": "xyz789",
      "url": "abc123",
      "verified": verificationstatus,
      "width": 123
    }
  }
}

Token_aggregate

Description

fetch aggregated fields from the table: "Token"

Response

Returns a Token_aggregate!

Arguments
Name Description
distinct_on - [Token_select_column!] distinct select on columns
limit - Int limit the number of rows returned
offset - Int skip the first n rows. Use only with order_by
order_by - [Token_order_by!] sort the rows by one or more columns
where - Token_bool_exp filter the rows returned

Example

Query
query Token_aggregate(
  $distinct_on: [Token_select_column!],
  $limit: Int,
  $offset: Int,
  $order_by: [Token_order_by!],
  $where: Token_bool_exp
) {
  Token_aggregate(
    distinct_on: $distinct_on,
    limit: $limit,
    offset: $offset,
    order_by: $order_by,
    where: $where
  ) {
    aggregate {
      ...Token_aggregate_fieldsFragment
    }
    nodes {
      ...TokenFragment
    }
  }
}
Variables
{
  "distinct_on": ["asset_id"],
  "limit": 123,
  "offset": 987,
  "order_by": [Token_order_by],
  "where": Token_bool_exp
}
Response
{
  "data": {
    "Token_aggregate": {
      "aggregate": Token_aggregate_fields,
      "nodes": [Token]
    }
  }
}

Token_by_pk

Description

fetch data from the table: "Token" using primary key columns

Response

Returns a Token

Arguments
Name Description
id - String!

Example

Query
query Token_by_pk($id: String!) {
  Token_by_pk(id: $id) {
    appHistory {
      ...AppHistoryFragment
    }
    appHistory_aggregate {
      ...AppHistory_aggregateFragment
    }
    appInstalls {
      ...AppInstallFragment
    }
    appInstalls_aggregate {
      ...AppInstall_aggregateFragment
    }
    asset {
      ...AssetFragment
    }
    asset_id
    assets {
      ...TokenAssetURLFragment
    }
    assets_
    assets_aggregate {
      ...TokenAssetURL_aggregateFragment
    }
    attributes {
      ...TokenAttributeFragment
    }
    attributes_
    attributes_aggregate {
      ...TokenAttribute_aggregateFragment
    }
    backgroundImages {
      ...TokenBackgroundImageURLFragment
    }
    backgroundImages_
    baseAsset {
      ...AssetFragment
    }
    baseAsset_id
    baseUriChanged
    blockNumber
    category
    createdBlockNumber
    createdTimestamp
    createdTransactionIndex
    data
    db_write_timestamp
    description
    error
    formattedTokenId
    holders {
      ...HoldFragment
    }
    holders_aggregate {
      ...Hold_aggregateFragment
    }
    icons {
      ...TokenIconURLFragment
    }
    icons_
    icons_aggregate {
      ...TokenIconURL_aggregateFragment
    }
    id
    images {
      ...TokenImageURLFragment
    }
    images_
    images_aggregate {
      ...TokenImageURL_aggregateFragment
    }
    links {
      ...TokenLinkFragment
    }
    links_
    links_aggregate {
      ...TokenLink_aggregateFragment
    }
    lsp4Creators {
      ...TokenCreatorsFragment
    }
    lsp4CreatorsMap {
      ...TokenCreatorsFragment
    }
    lsp4CreatorsMap_aggregate {
      ...TokenCreators_aggregateFragment
    }
    lsp4Creators_
    lsp4Creators_aggregate {
      ...TokenCreators_aggregateFragment
    }
    lsp4TokenName
    lsp4TokenSymbol
    lsp4TokenType
    lsp8ReferenceContract {
      ...AssetFragment
    }
    lsp8ReferenceContractSelf
    lsp8ReferenceContract_id
    lsp8TokenIdFormat
    method
    name
    src
    supportedStandardsLsp4DigitalAsset
    tokenId
    transfers {
      ...TransferFragment
    }
    transfers_aggregate {
      ...Transfer_aggregateFragment
    }
    updatedBlockNumber
    updatedTimestamp
    updatedTransactionIndex
    url
  }
}
Variables
{"id": "abc123"}
Response
{
  "data": {
    "Token_by_pk": {
      "appHistory": [AppHistory],
      "appHistory_aggregate": AppHistory_aggregate,
      "appInstalls": [AppInstall],
      "appInstalls_aggregate": AppInstall_aggregate,
      "asset": Asset,
      "asset_id": "abc123",
      "assets": [TokenAssetURL],
      "assets_": ["xyz789"],
      "assets_aggregate": TokenAssetURL_aggregate,
      "attributes": [TokenAttribute],
      "attributes_": ["abc123"],
      "attributes_aggregate": TokenAttribute_aggregate,
      "backgroundImages": [TokenBackgroundImageURL],
      "backgroundImages_": ["abc123"],
      "baseAsset": Asset,
      "baseAsset_id": "xyz789",
      "baseUriChanged": false,
      "blockNumber": 987,
      "category": "xyz789",
      "createdBlockNumber": 123,
      "createdTimestamp": 987,
      "createdTransactionIndex": 987,
      "data": "abc123",
      "db_write_timestamp": timestamp,
      "description": "abc123",
      "error": "xyz789",
      "formattedTokenId": "xyz789",
      "holders": [Hold],
      "holders_aggregate": Hold_aggregate,
      "icons": [TokenIconURL],
      "icons_": ["abc123"],
      "icons_aggregate": TokenIconURL_aggregate,
      "id": "xyz789",
      "images": [TokenImageURL],
      "images_": ["xyz789"],
      "images_aggregate": TokenImageURL_aggregate,
      "links": [TokenLink],
      "links_": ["abc123"],
      "links_aggregate": TokenLink_aggregate,
      "lsp4Creators": [TokenCreators],
      "lsp4CreatorsMap": [TokenCreators],
      "lsp4CreatorsMap_aggregate": TokenCreators_aggregate,
      "lsp4Creators_": ["abc123"],
      "lsp4Creators_aggregate": TokenCreators_aggregate,
      "lsp4TokenName": "xyz789",
      "lsp4TokenSymbol": "xyz789",
      "lsp4TokenType": 123,
      "lsp8ReferenceContract": Asset,
      "lsp8ReferenceContractSelf": "abc123",
      "lsp8ReferenceContract_id": "abc123",
      "lsp8TokenIdFormat": 123,
      "method": "abc123",
      "name": "xyz789",
      "src": "abc123",
      "supportedStandardsLsp4DigitalAsset": false,
      "tokenId": "xyz789",
      "transfers": [Transfer],
      "transfers_aggregate": Transfer_aggregate,
      "updatedBlockNumber": 123,
      "updatedTimestamp": 987,
      "updatedTransactionIndex": 123,
      "url": "xyz789"
    }
  }
}

Transaction

Description

fetch data from the table: "Transaction"

Response

Returns [Transaction!]!

Arguments
Name Description
distinct_on - [Transaction_select_column!] distinct select on columns
limit - Int limit the number of rows returned
offset - Int skip the first n rows. Use only with order_by
order_by - [Transaction_order_by!] sort the rows by one or more columns
where - Transaction_bool_exp filter the rows returned

Example

Query
query Transaction(
  $distinct_on: [Transaction_select_column!],
  $limit: Int,
  $offset: Int,
  $order_by: [Transaction_order_by!],
  $where: Transaction_bool_exp
) {
  Transaction(
    distinct_on: $distinct_on,
    limit: $limit,
    offset: $offset,
    order_by: $order_by,
    where: $where
  ) {
    blockNumber
    cumulativeGasUsed
    db_write_timestamp
    effectiveGasPrice
    from
    gas
    gasPrice
    gasUsed
    holds {
      ...HoldFragment
    }
    holds_aggregate {
      ...Hold_aggregateFragment
    }
    id
    input
    isRelayer
    maxFeePerGas
    maxPriorityFeePerGas
    profile {
      ...ProfileFragment
    }
    profile_id
    timestamp
    to
    transactionIndex
    transfers {
      ...TransferFragment
    }
    transfers_aggregate {
      ...Transfer_aggregateFragment
    }
    value
  }
}
Variables
{
  "distinct_on": ["blockNumber"],
  "limit": 123,
  "offset": 123,
  "order_by": [Transaction_order_by],
  "where": Transaction_bool_exp
}
Response
{
  "data": {
    "Transaction": [
      {
        "blockNumber": 123,
        "cumulativeGasUsed": numeric,
        "db_write_timestamp": timestamp,
        "effectiveGasPrice": numeric,
        "from": "abc123",
        "gas": numeric,
        "gasPrice": numeric,
        "gasUsed": numeric,
        "holds": [Hold],
        "holds_aggregate": Hold_aggregate,
        "id": "abc123",
        "input": "xyz789",
        "isRelayer": true,
        "maxFeePerGas": numeric,
        "maxPriorityFeePerGas": numeric,
        "profile": Profile,
        "profile_id": "xyz789",
        "timestamp": 123,
        "to": "xyz789",
        "transactionIndex": 123,
        "transfers": [Transfer],
        "transfers_aggregate": Transfer_aggregate,
        "value": numeric
      }
    ]
  }
}

Transaction_aggregate

Description

fetch aggregated fields from the table: "Transaction"

Response

Returns a Transaction_aggregate!

Arguments
Name Description
distinct_on - [Transaction_select_column!] distinct select on columns
limit - Int limit the number of rows returned
offset - Int skip the first n rows. Use only with order_by
order_by - [Transaction_order_by!] sort the rows by one or more columns
where - Transaction_bool_exp filter the rows returned

Example

Query
query Transaction_aggregate(
  $distinct_on: [Transaction_select_column!],
  $limit: Int,
  $offset: Int,
  $order_by: [Transaction_order_by!],
  $where: Transaction_bool_exp
) {
  Transaction_aggregate(
    distinct_on: $distinct_on,
    limit: $limit,
    offset: $offset,
    order_by: $order_by,
    where: $where
  ) {
    aggregate {
      ...Transaction_aggregate_fieldsFragment
    }
    nodes {
      ...TransactionFragment
    }
  }
}
Variables
{
  "distinct_on": ["blockNumber"],
  "limit": 123,
  "offset": 123,
  "order_by": [Transaction_order_by],
  "where": Transaction_bool_exp
}
Response
{
  "data": {
    "Transaction_aggregate": {
      "aggregate": Transaction_aggregate_fields,
      "nodes": [Transaction]
    }
  }
}

Transaction_by_pk

Description

fetch data from the table: "Transaction" using primary key columns

Response

Returns a Transaction

Arguments
Name Description
id - String!

Example

Query
query Transaction_by_pk($id: String!) {
  Transaction_by_pk(id: $id) {
    blockNumber
    cumulativeGasUsed
    db_write_timestamp
    effectiveGasPrice
    from
    gas
    gasPrice
    gasUsed
    holds {
      ...HoldFragment
    }
    holds_aggregate {
      ...Hold_aggregateFragment
    }
    id
    input
    isRelayer
    maxFeePerGas
    maxPriorityFeePerGas
    profile {
      ...ProfileFragment
    }
    profile_id
    timestamp
    to
    transactionIndex
    transfers {
      ...TransferFragment
    }
    transfers_aggregate {
      ...Transfer_aggregateFragment
    }
    value
  }
}
Variables
{"id": "abc123"}
Response
{
  "data": {
    "Transaction_by_pk": {
      "blockNumber": 987,
      "cumulativeGasUsed": numeric,
      "db_write_timestamp": timestamp,
      "effectiveGasPrice": numeric,
      "from": "xyz789",
      "gas": numeric,
      "gasPrice": numeric,
      "gasUsed": numeric,
      "holds": [Hold],
      "holds_aggregate": Hold_aggregate,
      "id": "xyz789",
      "input": "abc123",
      "isRelayer": false,
      "maxFeePerGas": numeric,
      "maxPriorityFeePerGas": numeric,
      "profile": Profile,
      "profile_id": "abc123",
      "timestamp": 123,
      "to": "xyz789",
      "transactionIndex": 123,
      "transfers": [Transfer],
      "transfers_aggregate": Transfer_aggregate,
      "value": numeric
    }
  }
}

Transfer

Description

fetch data from the table: "Transfer"

Response

Returns [Transfer!]!

Arguments
Name Description
distinct_on - [Transfer_select_column!] distinct select on columns
limit - Int limit the number of rows returned
offset - Int skip the first n rows. Use only with order_by
order_by - [Transfer_order_by!] sort the rows by one or more columns
where - Transfer_bool_exp filter the rows returned

Example

Query
query Transfer(
  $distinct_on: [Transfer_select_column!],
  $limit: Int,
  $offset: Int,
  $order_by: [Transfer_order_by!],
  $where: Transfer_bool_exp
) {
  Transfer(
    distinct_on: $distinct_on,
    limit: $limit,
    offset: $offset,
    order_by: $order_by,
    where: $where
  ) {
    asset {
      ...AssetFragment
    }
    asset_id
    blockNumber
    db_write_timestamp
    from {
      ...ProfileFragment
    }
    from_id
    id
    timestamp
    to {
      ...ProfileFragment
    }
    to_id
    token {
      ...TokenFragment
    }
    token_id
    transaction {
      ...TransactionFragment
    }
    transaction_id
    value
  }
}
Variables
{
  "distinct_on": ["asset_id"],
  "limit": 987,
  "offset": 123,
  "order_by": [Transfer_order_by],
  "where": Transfer_bool_exp
}
Response
{
  "data": {
    "Transfer": [
      {
        "asset": Asset,
        "asset_id": "xyz789",
        "blockNumber": 987,
        "db_write_timestamp": timestamp,
        "from": Profile,
        "from_id": "abc123",
        "id": "abc123",
        "timestamp": 987,
        "to": Profile,
        "to_id": "abc123",
        "token": Token,
        "token_id": "abc123",
        "transaction": Transaction,
        "transaction_id": "abc123",
        "value": numeric
      }
    ]
  }
}

Transfer_aggregate

Description

fetch aggregated fields from the table: "Transfer"

Response

Returns a Transfer_aggregate!

Arguments
Name Description
distinct_on - [Transfer_select_column!] distinct select on columns
limit - Int limit the number of rows returned
offset - Int skip the first n rows. Use only with order_by
order_by - [Transfer_order_by!] sort the rows by one or more columns
where - Transfer_bool_exp filter the rows returned

Example

Query
query Transfer_aggregate(
  $distinct_on: [Transfer_select_column!],
  $limit: Int,
  $offset: Int,
  $order_by: [Transfer_order_by!],
  $where: Transfer_bool_exp
) {
  Transfer_aggregate(
    distinct_on: $distinct_on,
    limit: $limit,
    offset: $offset,
    order_by: $order_by,
    where: $where
  ) {
    aggregate {
      ...Transfer_aggregate_fieldsFragment
    }
    nodes {
      ...TransferFragment
    }
  }
}
Variables
{
  "distinct_on": ["asset_id"],
  "limit": 987,
  "offset": 987,
  "order_by": [Transfer_order_by],
  "where": Transfer_bool_exp
}
Response
{
  "data": {
    "Transfer_aggregate": {
      "aggregate": Transfer_aggregate_fields,
      "nodes": [Transfer]
    }
  }
}

Transfer_by_pk

Description

fetch data from the table: "Transfer" using primary key columns

Response

Returns a Transfer

Arguments
Name Description
id - String!

Example

Query
query Transfer_by_pk($id: String!) {
  Transfer_by_pk(id: $id) {
    asset {
      ...AssetFragment
    }
    asset_id
    blockNumber
    db_write_timestamp
    from {
      ...ProfileFragment
    }
    from_id
    id
    timestamp
    to {
      ...ProfileFragment
    }
    to_id
    token {
      ...TokenFragment
    }
    token_id
    transaction {
      ...TransactionFragment
    }
    transaction_id
    value
  }
}
Variables
{"id": "xyz789"}
Response
{
  "data": {
    "Transfer_by_pk": {
      "asset": Asset,
      "asset_id": "abc123",
      "blockNumber": 123,
      "db_write_timestamp": timestamp,
      "from": Profile,
      "from_id": "abc123",
      "id": "abc123",
      "timestamp": 123,
      "to": Profile,
      "to_id": "abc123",
      "token": Token,
      "token_id": "abc123",
      "transaction": Transaction,
      "transaction_id": "xyz789",
      "value": numeric
    }
  }
}

asset_category_stats

Description

fetch data from the table: "asset_category_stats"

Response

Returns [asset_category_stats!]!

Arguments
Name Description
distinct_on - [asset_category_stats_select_column!] distinct select on columns
limit - Int limit the number of rows returned
offset - Int skip the first n rows. Use only with order_by
order_by - [asset_category_stats_order_by!] sort the rows by one or more columns
where - asset_category_stats_bool_exp filter the rows returned

Example

Query
query asset_category_stats(
  $distinct_on: [asset_category_stats_select_column!],
  $limit: Int,
  $offset: Int,
  $order_by: [asset_category_stats_order_by!],
  $where: asset_category_stats_bool_exp
) {
  asset_category_stats(
    distinct_on: $distinct_on,
    limit: $limit,
    offset: $offset,
    order_by: $order_by,
    where: $where
  ) {
    activity_score
    avg_hot_score
    category
    category_score
    is_active
    last_activity
    max_hot_score
    popularity_score
    total_assets
    total_holders
    transfer_count_3d
    transfer_count_7d
    trending_score
  }
}
Variables
{
  "distinct_on": ["activity_score"],
  "limit": 123,
  "offset": 987,
  "order_by": [asset_category_stats_order_by],
  "where": asset_category_stats_bool_exp
}
Response
{
  "data": {
    "asset_category_stats": [
      {
        "activity_score": numeric,
        "avg_hot_score": numeric,
        "category": "abc123",
        "category_score": numeric,
        "is_active": true,
        "last_activity": 987,
        "max_hot_score": numeric,
        "popularity_score": numeric,
        "total_assets": 123,
        "total_holders": 123,
        "transfer_count_3d": 987,
        "transfer_count_7d": 123,
        "trending_score": numeric
      }
    ]
  }
}

asset_category_stats_aggregate

Description

fetch aggregated fields from the table: "asset_category_stats"

Response

Returns an asset_category_stats_aggregate!

Arguments
Name Description
distinct_on - [asset_category_stats_select_column!] distinct select on columns
limit - Int limit the number of rows returned
offset - Int skip the first n rows. Use only with order_by
order_by - [asset_category_stats_order_by!] sort the rows by one or more columns
where - asset_category_stats_bool_exp filter the rows returned

Example

Query
query asset_category_stats_aggregate(
  $distinct_on: [asset_category_stats_select_column!],
  $limit: Int,
  $offset: Int,
  $order_by: [asset_category_stats_order_by!],
  $where: asset_category_stats_bool_exp
) {
  asset_category_stats_aggregate(
    distinct_on: $distinct_on,
    limit: $limit,
    offset: $offset,
    order_by: $order_by,
    where: $where
  ) {
    aggregate {
      ...asset_category_stats_aggregate_fieldsFragment
    }
    nodes {
      ...asset_category_statsFragment
    }
  }
}
Variables
{
  "distinct_on": ["activity_score"],
  "limit": 123,
  "offset": 123,
  "order_by": [asset_category_stats_order_by],
  "where": asset_category_stats_bool_exp
}
Response
{
  "data": {
    "asset_category_stats_aggregate": {
      "aggregate": asset_category_stats_aggregate_fields,
      "nodes": [asset_category_stats]
    }
  }
}

chain_metadata

Description

fetch data from the table: "chain_metadata"

Response

Returns [chain_metadata!]!

Arguments
Name Description
distinct_on - [chain_metadata_select_column!] distinct select on columns
limit - Int limit the number of rows returned
offset - Int skip the first n rows. Use only with order_by
order_by - [chain_metadata_order_by!] sort the rows by one or more columns
where - chain_metadata_bool_exp filter the rows returned

Example

Query
query chain_metadata(
  $distinct_on: [chain_metadata_select_column!],
  $limit: Int,
  $offset: Int,
  $order_by: [chain_metadata_order_by!],
  $where: chain_metadata_bool_exp
) {
  chain_metadata(
    distinct_on: $distinct_on,
    limit: $limit,
    offset: $offset,
    order_by: $order_by,
    where: $where
  ) {
    block_height
    chain_id
    end_block
    first_event_block_number
    is_hyper_sync
    latest_fetched_block_number
    latest_processed_block
    num_batches_fetched
    num_events_processed
    start_block
    timestamp_caught_up_to_head_or_endblock
  }
}
Variables
{
  "distinct_on": ["block_height"],
  "limit": 987,
  "offset": 123,
  "order_by": [chain_metadata_order_by],
  "where": chain_metadata_bool_exp
}
Response
{
  "data": {
    "chain_metadata": [
      {
        "block_height": 987,
        "chain_id": 987,
        "end_block": 987,
        "first_event_block_number": 123,
        "is_hyper_sync": false,
        "latest_fetched_block_number": 123,
        "latest_processed_block": 123,
        "num_batches_fetched": 123,
        "num_events_processed": 123,
        "start_block": 123,
        "timestamp_caught_up_to_head_or_endblock": timestamptz
      }
    ]
  }
}

chain_metadata_aggregate

Description

fetch aggregated fields from the table: "chain_metadata"

Response

Returns a chain_metadata_aggregate!

Arguments
Name Description
distinct_on - [chain_metadata_select_column!] distinct select on columns
limit - Int limit the number of rows returned
offset - Int skip the first n rows. Use only with order_by
order_by - [chain_metadata_order_by!] sort the rows by one or more columns
where - chain_metadata_bool_exp filter the rows returned

Example

Query
query chain_metadata_aggregate(
  $distinct_on: [chain_metadata_select_column!],
  $limit: Int,
  $offset: Int,
  $order_by: [chain_metadata_order_by!],
  $where: chain_metadata_bool_exp
) {
  chain_metadata_aggregate(
    distinct_on: $distinct_on,
    limit: $limit,
    offset: $offset,
    order_by: $order_by,
    where: $where
  ) {
    aggregate {
      ...chain_metadata_aggregate_fieldsFragment
    }
    nodes {
      ...chain_metadataFragment
    }
  }
}
Variables
{
  "distinct_on": ["block_height"],
  "limit": 987,
  "offset": 987,
  "order_by": [chain_metadata_order_by],
  "where": chain_metadata_bool_exp
}
Response
{
  "data": {
    "chain_metadata_aggregate": {
      "aggregate": chain_metadata_aggregate_fields,
      "nodes": [chain_metadata]
    }
  }
}

chain_metadata_by_pk

Description

fetch data from the table: "chain_metadata" using primary key columns

Response

Returns a chain_metadata

Arguments
Name Description
chain_id - Int!

Example

Query
query chain_metadata_by_pk($chain_id: Int!) {
  chain_metadata_by_pk(chain_id: $chain_id) {
    block_height
    chain_id
    end_block
    first_event_block_number
    is_hyper_sync
    latest_fetched_block_number
    latest_processed_block
    num_batches_fetched
    num_events_processed
    start_block
    timestamp_caught_up_to_head_or_endblock
  }
}
Variables
{"chain_id": 123}
Response
{
  "data": {
    "chain_metadata_by_pk": {
      "block_height": 123,
      "chain_id": 987,
      "end_block": 123,
      "first_event_block_number": 123,
      "is_hyper_sync": false,
      "latest_fetched_block_number": 987,
      "latest_processed_block": 123,
      "num_batches_fetched": 987,
      "num_events_processed": 123,
      "start_block": 987,
      "timestamp_caught_up_to_head_or_endblock": timestamptz
    }
  }
}

dynamic_contract_registry

Description

fetch data from the table: "dynamic_contract_registry"

Arguments
Name Description
distinct_on - [dynamic_contract_registry_select_column!] distinct select on columns
limit - Int limit the number of rows returned
offset - Int skip the first n rows. Use only with order_by
order_by - [dynamic_contract_registry_order_by!] sort the rows by one or more columns
where - dynamic_contract_registry_bool_exp filter the rows returned

Example

Query
query dynamic_contract_registry(
  $distinct_on: [dynamic_contract_registry_select_column!],
  $limit: Int,
  $offset: Int,
  $order_by: [dynamic_contract_registry_order_by!],
  $where: dynamic_contract_registry_bool_exp
) {
  dynamic_contract_registry(
    distinct_on: $distinct_on,
    limit: $limit,
    offset: $offset,
    order_by: $order_by,
    where: $where
  ) {
    block_timestamp
    chain_id
    contract_address
    contract_type
    event_id
  }
}
Variables
{
  "distinct_on": ["block_timestamp"],
  "limit": 987,
  "offset": 987,
  "order_by": [dynamic_contract_registry_order_by],
  "where": dynamic_contract_registry_bool_exp
}
Response
{
  "data": {
    "dynamic_contract_registry": [
      {
        "block_timestamp": 987,
        "chain_id": 123,
        "contract_address": "abc123",
        "contract_type": contract_type,
        "event_id": numeric
      }
    ]
  }
}

dynamic_contract_registry_aggregate

Description

fetch aggregated fields from the table: "dynamic_contract_registry"

Arguments
Name Description
distinct_on - [dynamic_contract_registry_select_column!] distinct select on columns
limit - Int limit the number of rows returned
offset - Int skip the first n rows. Use only with order_by
order_by - [dynamic_contract_registry_order_by!] sort the rows by one or more columns
where - dynamic_contract_registry_bool_exp filter the rows returned

Example

Query
query dynamic_contract_registry_aggregate(
  $distinct_on: [dynamic_contract_registry_select_column!],
  $limit: Int,
  $offset: Int,
  $order_by: [dynamic_contract_registry_order_by!],
  $where: dynamic_contract_registry_bool_exp
) {
  dynamic_contract_registry_aggregate(
    distinct_on: $distinct_on,
    limit: $limit,
    offset: $offset,
    order_by: $order_by,
    where: $where
  ) {
    aggregate {
      ...dynamic_contract_registry_aggregate_fieldsFragment
    }
    nodes {
      ...dynamic_contract_registryFragment
    }
  }
}
Variables
{
  "distinct_on": ["block_timestamp"],
  "limit": 123,
  "offset": 123,
  "order_by": [dynamic_contract_registry_order_by],
  "where": dynamic_contract_registry_bool_exp
}
Response
{
  "data": {
    "dynamic_contract_registry_aggregate": {
      "aggregate": dynamic_contract_registry_aggregate_fields,
      "nodes": [dynamic_contract_registry]
    }
  }
}

dynamic_contract_registry_by_pk

Description

fetch data from the table: "dynamic_contract_registry" using primary key columns

Response

Returns a dynamic_contract_registry

Arguments
Name Description
chain_id - Int!
contract_address - String!

Example

Query
query dynamic_contract_registry_by_pk(
  $chain_id: Int!,
  $contract_address: String!
) {
  dynamic_contract_registry_by_pk(
    chain_id: $chain_id,
    contract_address: $contract_address
  ) {
    block_timestamp
    chain_id
    contract_address
    contract_type
    event_id
  }
}
Variables
{
  "chain_id": 123,
  "contract_address": "xyz789"
}
Response
{
  "data": {
    "dynamic_contract_registry_by_pk": {
      "block_timestamp": 123,
      "chain_id": 123,
      "contract_address": "xyz789",
      "contract_type": contract_type,
      "event_id": numeric
    }
  }
}

entity_history

Description

fetch data from the table: "entity_history"

Response

Returns [entity_history!]!

Arguments
Name Description
distinct_on - [entity_history_select_column!] distinct select on columns
limit - Int limit the number of rows returned
offset - Int skip the first n rows. Use only with order_by
order_by - [entity_history_order_by!] sort the rows by one or more columns
where - entity_history_bool_exp filter the rows returned

Example

Query
query entity_history(
  $distinct_on: [entity_history_select_column!],
  $limit: Int,
  $offset: Int,
  $order_by: [entity_history_order_by!],
  $where: entity_history_bool_exp
) {
  entity_history(
    distinct_on: $distinct_on,
    limit: $limit,
    offset: $offset,
    order_by: $order_by,
    where: $where
  ) {
    block_number
    block_timestamp
    chain_id
    entity_id
    entity_type
    event {
      ...raw_eventsFragment
    }
    log_index
    params
    previous_block_number
    previous_block_timestamp
    previous_chain_id
    previous_log_index
  }
}
Variables
{
  "distinct_on": ["block_number"],
  "limit": 987,
  "offset": 123,
  "order_by": [entity_history_order_by],
  "where": entity_history_bool_exp
}
Response
{
  "data": {
    "entity_history": [
      {
        "block_number": 987,
        "block_timestamp": 123,
        "chain_id": 123,
        "entity_id": "abc123",
        "entity_type": entity_type,
        "event": raw_events,
        "log_index": 123,
        "params": json,
        "previous_block_number": 123,
        "previous_block_timestamp": 123,
        "previous_chain_id": 123,
        "previous_log_index": 123
      }
    ]
  }
}

entity_history_aggregate

Description

fetch aggregated fields from the table: "entity_history"

Response

Returns an entity_history_aggregate!

Arguments
Name Description
distinct_on - [entity_history_select_column!] distinct select on columns
limit - Int limit the number of rows returned
offset - Int skip the first n rows. Use only with order_by
order_by - [entity_history_order_by!] sort the rows by one or more columns
where - entity_history_bool_exp filter the rows returned

Example

Query
query entity_history_aggregate(
  $distinct_on: [entity_history_select_column!],
  $limit: Int,
  $offset: Int,
  $order_by: [entity_history_order_by!],
  $where: entity_history_bool_exp
) {
  entity_history_aggregate(
    distinct_on: $distinct_on,
    limit: $limit,
    offset: $offset,
    order_by: $order_by,
    where: $where
  ) {
    aggregate {
      ...entity_history_aggregate_fieldsFragment
    }
    nodes {
      ...entity_historyFragment
    }
  }
}
Variables
{
  "distinct_on": ["block_number"],
  "limit": 987,
  "offset": 123,
  "order_by": [entity_history_order_by],
  "where": entity_history_bool_exp
}
Response
{
  "data": {
    "entity_history_aggregate": {
      "aggregate": entity_history_aggregate_fields,
      "nodes": [entity_history]
    }
  }
}

entity_history_by_pk

Description

fetch data from the table: "entity_history" using primary key columns

Response

Returns an entity_history

Arguments
Name Description
block_number - Int!
block_timestamp - Int!
chain_id - Int!
entity_id - String!
entity_type - entity_type!
log_index - Int!

Example

Query
query entity_history_by_pk(
  $block_number: Int!,
  $block_timestamp: Int!,
  $chain_id: Int!,
  $entity_id: String!,
  $entity_type: entity_type!,
  $log_index: Int!
) {
  entity_history_by_pk(
    block_number: $block_number,
    block_timestamp: $block_timestamp,
    chain_id: $chain_id,
    entity_id: $entity_id,
    entity_type: $entity_type,
    log_index: $log_index
  ) {
    block_number
    block_timestamp
    chain_id
    entity_id
    entity_type
    event {
      ...raw_eventsFragment
    }
    log_index
    params
    previous_block_number
    previous_block_timestamp
    previous_chain_id
    previous_log_index
  }
}
Variables
{
  "block_number": 123,
  "block_timestamp": 123,
  "chain_id": 123,
  "entity_id": "xyz789",
  "entity_type": entity_type,
  "log_index": 987
}
Response
{
  "data": {
    "entity_history_by_pk": {
      "block_number": 987,
      "block_timestamp": 987,
      "chain_id": 123,
      "entity_id": "xyz789",
      "entity_type": entity_type,
      "event": raw_events,
      "log_index": 123,
      "params": json,
      "previous_block_number": 123,
      "previous_block_timestamp": 987,
      "previous_chain_id": 987,
      "previous_log_index": 123
    }
  }
}

entity_history_filter

Description

fetch data from the table: "entity_history_filter"

Response

Returns [entity_history_filter!]!

Arguments
Name Description
distinct_on - [entity_history_filter_select_column!] distinct select on columns
limit - Int limit the number of rows returned
offset - Int skip the first n rows. Use only with order_by
order_by - [entity_history_filter_order_by!] sort the rows by one or more columns
where - entity_history_filter_bool_exp filter the rows returned

Example

Query
query entity_history_filter(
  $distinct_on: [entity_history_filter_select_column!],
  $limit: Int,
  $offset: Int,
  $order_by: [entity_history_filter_order_by!],
  $where: entity_history_filter_bool_exp
) {
  entity_history_filter(
    distinct_on: $distinct_on,
    limit: $limit,
    offset: $offset,
    order_by: $order_by,
    where: $where
  ) {
    block_number
    block_timestamp
    chain_id
    entity_id
    entity_type
    event {
      ...raw_eventsFragment
    }
    log_index
    new_val
    old_val
    previous_block_number
    previous_log_index
  }
}
Variables
{
  "distinct_on": ["block_number"],
  "limit": 987,
  "offset": 987,
  "order_by": [entity_history_filter_order_by],
  "where": entity_history_filter_bool_exp
}
Response
{
  "data": {
    "entity_history_filter": [
      {
        "block_number": 123,
        "block_timestamp": 123,
        "chain_id": 987,
        "entity_id": "xyz789",
        "entity_type": entity_type,
        "event": raw_events,
        "log_index": 987,
        "new_val": json,
        "old_val": json,
        "previous_block_number": 987,
        "previous_log_index": 987
      }
    ]
  }
}

entity_history_filter_aggregate

Description

fetch aggregated fields from the table: "entity_history_filter"

Response

Returns an entity_history_filter_aggregate!

Arguments
Name Description
distinct_on - [entity_history_filter_select_column!] distinct select on columns
limit - Int limit the number of rows returned
offset - Int skip the first n rows. Use only with order_by
order_by - [entity_history_filter_order_by!] sort the rows by one or more columns
where - entity_history_filter_bool_exp filter the rows returned

Example

Query
query entity_history_filter_aggregate(
  $distinct_on: [entity_history_filter_select_column!],
  $limit: Int,
  $offset: Int,
  $order_by: [entity_history_filter_order_by!],
  $where: entity_history_filter_bool_exp
) {
  entity_history_filter_aggregate(
    distinct_on: $distinct_on,
    limit: $limit,
    offset: $offset,
    order_by: $order_by,
    where: $where
  ) {
    aggregate {
      ...entity_history_filter_aggregate_fieldsFragment
    }
    nodes {
      ...entity_history_filterFragment
    }
  }
}
Variables
{
  "distinct_on": ["block_number"],
  "limit": 987,
  "offset": 123,
  "order_by": [entity_history_filter_order_by],
  "where": entity_history_filter_bool_exp
}
Response
{
  "data": {
    "entity_history_filter_aggregate": {
      "aggregate": entity_history_filter_aggregate_fields,
      "nodes": [entity_history_filter]
    }
  }
}

entity_history_filter_by_pk

Description

fetch data from the table: "entity_history_filter" using primary key columns

Response

Returns an entity_history_filter

Arguments
Name Description
block_number - Int!
chain_id - Int!
entity_id - String!
log_index - Int!
previous_block_number - Int!
previous_log_index - Int!

Example

Query
query entity_history_filter_by_pk(
  $block_number: Int!,
  $chain_id: Int!,
  $entity_id: String!,
  $log_index: Int!,
  $previous_block_number: Int!,
  $previous_log_index: Int!
) {
  entity_history_filter_by_pk(
    block_number: $block_number,
    chain_id: $chain_id,
    entity_id: $entity_id,
    log_index: $log_index,
    previous_block_number: $previous_block_number,
    previous_log_index: $previous_log_index
  ) {
    block_number
    block_timestamp
    chain_id
    entity_id
    entity_type
    event {
      ...raw_eventsFragment
    }
    log_index
    new_val
    old_val
    previous_block_number
    previous_log_index
  }
}
Variables
{
  "block_number": 987,
  "chain_id": 987,
  "entity_id": "xyz789",
  "log_index": 123,
  "previous_block_number": 987,
  "previous_log_index": 123
}
Response
{
  "data": {
    "entity_history_filter_by_pk": {
      "block_number": 123,
      "block_timestamp": 987,
      "chain_id": 123,
      "entity_id": "abc123",
      "entity_type": entity_type,
      "event": raw_events,
      "log_index": 123,
      "new_val": json,
      "old_val": json,
      "previous_block_number": 123,
      "previous_log_index": 987
    }
  }
}

event_sync_state

Description

fetch data from the table: "event_sync_state"

Response

Returns [event_sync_state!]!

Arguments
Name Description
distinct_on - [event_sync_state_select_column!] distinct select on columns
limit - Int limit the number of rows returned
offset - Int skip the first n rows. Use only with order_by
order_by - [event_sync_state_order_by!] sort the rows by one or more columns
where - event_sync_state_bool_exp filter the rows returned

Example

Query
query event_sync_state(
  $distinct_on: [event_sync_state_select_column!],
  $limit: Int,
  $offset: Int,
  $order_by: [event_sync_state_order_by!],
  $where: event_sync_state_bool_exp
) {
  event_sync_state(
    distinct_on: $distinct_on,
    limit: $limit,
    offset: $offset,
    order_by: $order_by,
    where: $where
  ) {
    block_number
    block_timestamp
    chain_id
    log_index
    transaction_index
  }
}
Variables
{
  "distinct_on": ["block_number"],
  "limit": 987,
  "offset": 987,
  "order_by": [event_sync_state_order_by],
  "where": event_sync_state_bool_exp
}
Response
{
  "data": {
    "event_sync_state": [
      {
        "block_number": 123,
        "block_timestamp": 123,
        "chain_id": 987,
        "log_index": 987,
        "transaction_index": 987
      }
    ]
  }
}

event_sync_state_aggregate

Description

fetch aggregated fields from the table: "event_sync_state"

Response

Returns an event_sync_state_aggregate!

Arguments
Name Description
distinct_on - [event_sync_state_select_column!] distinct select on columns
limit - Int limit the number of rows returned
offset - Int skip the first n rows. Use only with order_by
order_by - [event_sync_state_order_by!] sort the rows by one or more columns
where - event_sync_state_bool_exp filter the rows returned

Example

Query
query event_sync_state_aggregate(
  $distinct_on: [event_sync_state_select_column!],
  $limit: Int,
  $offset: Int,
  $order_by: [event_sync_state_order_by!],
  $where: event_sync_state_bool_exp
) {
  event_sync_state_aggregate(
    distinct_on: $distinct_on,
    limit: $limit,
    offset: $offset,
    order_by: $order_by,
    where: $where
  ) {
    aggregate {
      ...event_sync_state_aggregate_fieldsFragment
    }
    nodes {
      ...event_sync_stateFragment
    }
  }
}
Variables
{
  "distinct_on": ["block_number"],
  "limit": 987,
  "offset": 987,
  "order_by": [event_sync_state_order_by],
  "where": event_sync_state_bool_exp
}
Response
{
  "data": {
    "event_sync_state_aggregate": {
      "aggregate": event_sync_state_aggregate_fields,
      "nodes": [event_sync_state]
    }
  }
}

event_sync_state_by_pk

Description

fetch data from the table: "event_sync_state" using primary key columns

Response

Returns an event_sync_state

Arguments
Name Description
chain_id - Int!

Example

Query
query event_sync_state_by_pk($chain_id: Int!) {
  event_sync_state_by_pk(chain_id: $chain_id) {
    block_number
    block_timestamp
    chain_id
    log_index
    transaction_index
  }
}
Variables
{"chain_id": 123}
Response
{
  "data": {
    "event_sync_state_by_pk": {
      "block_number": 123,
      "block_timestamp": 987,
      "chain_id": 123,
      "log_index": 123,
      "transaction_index": 123
    }
  }
}

get_entity_history_filter

Description

This function helps search for articles

Response

Returns [entity_history_filter!]!

Arguments
Name Description
args - get_entity_history_filter_args! input parameters for function "get_entity_history_filter"
distinct_on - [entity_history_filter_select_column!] distinct select on columns
limit - Int limit the number of rows returned
offset - Int skip the first n rows. Use only with order_by
order_by - [entity_history_filter_order_by!] sort the rows by one or more columns
where - entity_history_filter_bool_exp filter the rows returned

Example

Query
query get_entity_history_filter(
  $args: get_entity_history_filter_args!,
  $distinct_on: [entity_history_filter_select_column!],
  $limit: Int,
  $offset: Int,
  $order_by: [entity_history_filter_order_by!],
  $where: entity_history_filter_bool_exp
) {
  get_entity_history_filter(
    args: $args,
    distinct_on: $distinct_on,
    limit: $limit,
    offset: $offset,
    order_by: $order_by,
    where: $where
  ) {
    block_number
    block_timestamp
    chain_id
    entity_id
    entity_type
    event {
      ...raw_eventsFragment
    }
    log_index
    new_val
    old_val
    previous_block_number
    previous_log_index
  }
}
Variables
{
  "args": get_entity_history_filter_args,
  "distinct_on": ["block_number"],
  "limit": 987,
  "offset": 987,
  "order_by": [entity_history_filter_order_by],
  "where": entity_history_filter_bool_exp
}
Response
{
  "data": {
    "get_entity_history_filter": [
      {
        "block_number": 123,
        "block_timestamp": 123,
        "chain_id": 987,
        "entity_id": "xyz789",
        "entity_type": entity_type,
        "event": raw_events,
        "log_index": 123,
        "new_val": json,
        "old_val": json,
        "previous_block_number": 123,
        "previous_log_index": 987
      }
    ]
  }
}

get_entity_history_filter_aggregate

Description

execute function "get_entity_history_filter" and query aggregates on result of table type "entity_history_filter"

Response

Returns an entity_history_filter_aggregate!

Arguments
Name Description
args - get_entity_history_filter_args! input parameters for function "get_entity_history_filter_aggregate"
distinct_on - [entity_history_filter_select_column!] distinct select on columns
limit - Int limit the number of rows returned
offset - Int skip the first n rows. Use only with order_by
order_by - [entity_history_filter_order_by!] sort the rows by one or more columns
where - entity_history_filter_bool_exp filter the rows returned

Example

Query
query get_entity_history_filter_aggregate(
  $args: get_entity_history_filter_args!,
  $distinct_on: [entity_history_filter_select_column!],
  $limit: Int,
  $offset: Int,
  $order_by: [entity_history_filter_order_by!],
  $where: entity_history_filter_bool_exp
) {
  get_entity_history_filter_aggregate(
    args: $args,
    distinct_on: $distinct_on,
    limit: $limit,
    offset: $offset,
    order_by: $order_by,
    where: $where
  ) {
    aggregate {
      ...entity_history_filter_aggregate_fieldsFragment
    }
    nodes {
      ...entity_history_filterFragment
    }
  }
}
Variables
{
  "args": get_entity_history_filter_args,
  "distinct_on": ["block_number"],
  "limit": 987,
  "offset": 987,
  "order_by": [entity_history_filter_order_by],
  "where": entity_history_filter_bool_exp
}
Response
{
  "data": {
    "get_entity_history_filter_aggregate": {
      "aggregate": entity_history_filter_aggregate_fields,
      "nodes": [entity_history_filter]
    }
  }
}

persisted_state

Description

fetch data from the table: "persisted_state"

Response

Returns [persisted_state!]!

Arguments
Name Description
distinct_on - [persisted_state_select_column!] distinct select on columns
limit - Int limit the number of rows returned
offset - Int skip the first n rows. Use only with order_by
order_by - [persisted_state_order_by!] sort the rows by one or more columns
where - persisted_state_bool_exp filter the rows returned

Example

Query
query persisted_state(
  $distinct_on: [persisted_state_select_column!],
  $limit: Int,
  $offset: Int,
  $order_by: [persisted_state_order_by!],
  $where: persisted_state_bool_exp
) {
  persisted_state(
    distinct_on: $distinct_on,
    limit: $limit,
    offset: $offset,
    order_by: $order_by,
    where: $where
  ) {
    abi_files_hash
    config_hash
    envio_version
    handler_files_hash
    id
    schema_hash
  }
}
Variables
{
  "distinct_on": ["abi_files_hash"],
  "limit": 123,
  "offset": 123,
  "order_by": [persisted_state_order_by],
  "where": persisted_state_bool_exp
}
Response
{
  "data": {
    "persisted_state": [
      {
        "abi_files_hash": "xyz789",
        "config_hash": "xyz789",
        "envio_version": "xyz789",
        "handler_files_hash": "xyz789",
        "id": 123,
        "schema_hash": "xyz789"
      }
    ]
  }
}

persisted_state_aggregate

Description

fetch aggregated fields from the table: "persisted_state"

Response

Returns a persisted_state_aggregate!

Arguments
Name Description
distinct_on - [persisted_state_select_column!] distinct select on columns
limit - Int limit the number of rows returned
offset - Int skip the first n rows. Use only with order_by
order_by - [persisted_state_order_by!] sort the rows by one or more columns
where - persisted_state_bool_exp filter the rows returned

Example

Query
query persisted_state_aggregate(
  $distinct_on: [persisted_state_select_column!],
  $limit: Int,
  $offset: Int,
  $order_by: [persisted_state_order_by!],
  $where: persisted_state_bool_exp
) {
  persisted_state_aggregate(
    distinct_on: $distinct_on,
    limit: $limit,
    offset: $offset,
    order_by: $order_by,
    where: $where
  ) {
    aggregate {
      ...persisted_state_aggregate_fieldsFragment
    }
    nodes {
      ...persisted_stateFragment
    }
  }
}
Variables
{
  "distinct_on": ["abi_files_hash"],
  "limit": 123,
  "offset": 987,
  "order_by": [persisted_state_order_by],
  "where": persisted_state_bool_exp
}
Response
{
  "data": {
    "persisted_state_aggregate": {
      "aggregate": persisted_state_aggregate_fields,
      "nodes": [persisted_state]
    }
  }
}

persisted_state_by_pk

Description

fetch data from the table: "persisted_state" using primary key columns

Response

Returns a persisted_state

Arguments
Name Description
id - Int!

Example

Query
query persisted_state_by_pk($id: Int!) {
  persisted_state_by_pk(id: $id) {
    abi_files_hash
    config_hash
    envio_version
    handler_files_hash
    id
    schema_hash
  }
}
Variables
{"id": 987}
Response
{
  "data": {
    "persisted_state_by_pk": {
      "abi_files_hash": "xyz789",
      "config_hash": "abc123",
      "envio_version": "xyz789",
      "handler_files_hash": "abc123",
      "id": 123,
      "schema_hash": "xyz789"
    }
  }
}

raw_events

Description

fetch data from the table: "raw_events"

Response

Returns [raw_events!]!

Arguments
Name Description
distinct_on - [raw_events_select_column!] distinct select on columns
limit - Int limit the number of rows returned
offset - Int skip the first n rows. Use only with order_by
order_by - [raw_events_order_by!] sort the rows by one or more columns
where - raw_events_bool_exp filter the rows returned

Example

Query
query raw_events(
  $distinct_on: [raw_events_select_column!],
  $limit: Int,
  $offset: Int,
  $order_by: [raw_events_order_by!],
  $where: raw_events_bool_exp
) {
  raw_events(
    distinct_on: $distinct_on,
    limit: $limit,
    offset: $offset,
    order_by: $order_by,
    where: $where
  ) {
    block_hash
    block_number
    block_timestamp
    chain_id
    db_write_timestamp
    event_history {
      ...entity_historyFragment
    }
    event_history_aggregate {
      ...entity_history_aggregateFragment
    }
    event_id
    event_type
    log_index
    params
    src_address
    transaction_hash
    transaction_index
  }
}
Variables
{
  "distinct_on": ["block_hash"],
  "limit": 123,
  "offset": 123,
  "order_by": [raw_events_order_by],
  "where": raw_events_bool_exp
}
Response
{
  "data": {
    "raw_events": [
      {
        "block_hash": "abc123",
        "block_number": 123,
        "block_timestamp": 123,
        "chain_id": 123,
        "db_write_timestamp": timestamp,
        "event_history": [entity_history],
        "event_history_aggregate": entity_history_aggregate,
        "event_id": numeric,
        "event_type": event_type,
        "log_index": 987,
        "params": json,
        "src_address": "abc123",
        "transaction_hash": "abc123",
        "transaction_index": 123
      }
    ]
  }
}

raw_events_aggregate

Description

fetch aggregated fields from the table: "raw_events"

Response

Returns a raw_events_aggregate!

Arguments
Name Description
distinct_on - [raw_events_select_column!] distinct select on columns
limit - Int limit the number of rows returned
offset - Int skip the first n rows. Use only with order_by
order_by - [raw_events_order_by!] sort the rows by one or more columns
where - raw_events_bool_exp filter the rows returned

Example

Query
query raw_events_aggregate(
  $distinct_on: [raw_events_select_column!],
  $limit: Int,
  $offset: Int,
  $order_by: [raw_events_order_by!],
  $where: raw_events_bool_exp
) {
  raw_events_aggregate(
    distinct_on: $distinct_on,
    limit: $limit,
    offset: $offset,
    order_by: $order_by,
    where: $where
  ) {
    aggregate {
      ...raw_events_aggregate_fieldsFragment
    }
    nodes {
      ...raw_eventsFragment
    }
  }
}
Variables
{
  "distinct_on": ["block_hash"],
  "limit": 987,
  "offset": 987,
  "order_by": [raw_events_order_by],
  "where": raw_events_bool_exp
}
Response
{
  "data": {
    "raw_events_aggregate": {
      "aggregate": raw_events_aggregate_fields,
      "nodes": [raw_events]
    }
  }
}

raw_events_by_pk

Description

fetch data from the table: "raw_events" using primary key columns

Response

Returns a raw_events

Arguments
Name Description
chain_id - Int!
event_id - numeric!

Example

Query
query raw_events_by_pk(
  $chain_id: Int!,
  $event_id: numeric!
) {
  raw_events_by_pk(
    chain_id: $chain_id,
    event_id: $event_id
  ) {
    block_hash
    block_number
    block_timestamp
    chain_id
    db_write_timestamp
    event_history {
      ...entity_historyFragment
    }
    event_history_aggregate {
      ...entity_history_aggregateFragment
    }
    event_id
    event_type
    log_index
    params
    src_address
    transaction_hash
    transaction_index
  }
}
Variables
{"chain_id": 123, "event_id": numeric}
Response
{
  "data": {
    "raw_events_by_pk": {
      "block_hash": "xyz789",
      "block_number": 987,
      "block_timestamp": 123,
      "chain_id": 123,
      "db_write_timestamp": timestamp,
      "event_history": [entity_history],
      "event_history_aggregate": entity_history_aggregate,
      "event_id": numeric,
      "event_type": event_type,
      "log_index": 123,
      "params": json,
      "src_address": "abc123",
      "transaction_hash": "abc123",
      "transaction_index": 123
    }
  }
}

search_all

Description

execute function "search_all" which returns "search_all_result"

Response

Returns [search_all_result!]!

Arguments
Name Description
args - search_all_args! input parameters for function "search_all"
distinct_on - [search_all_result_select_column!] distinct select on columns
limit - Int limit the number of rows returned
offset - Int skip the first n rows. Use only with order_by
order_by - [search_all_result_order_by!] sort the rows by one or more columns
where - search_all_result_bool_exp filter the rows returned

Example

Query
query search_all(
  $args: search_all_args!,
  $distinct_on: [search_all_result_select_column!],
  $limit: Int,
  $offset: Int,
  $order_by: [search_all_result_order_by!],
  $where: search_all_result_bool_exp
) {
  search_all(
    args: $args,
    distinct_on: $distinct_on,
    limit: $limit,
    offset: $offset,
    order_by: $order_by,
    where: $where
  ) {
    asset {
      ...AssetFragment
    }
    asset_id
    description
    metadata
    name
    profile {
      ...ProfileFragment
    }
    profile_id
    result_type
    score
    token {
      ...TokenFragment
    }
    token_id
  }
}
Variables
{
  "args": search_all_args,
  "distinct_on": ["asset_id"],
  "limit": 987,
  "offset": 123,
  "order_by": [search_all_result_order_by],
  "where": search_all_result_bool_exp
}
Response
{
  "data": {
    "search_all": [
      {
        "asset": Asset,
        "asset_id": "xyz789",
        "description": "abc123",
        "metadata": jsonb,
        "name": "abc123",
        "profile": Profile,
        "profile_id": "abc123",
        "result_type": "xyz789",
        "score": numeric,
        "token": Token,
        "token_id": "xyz789"
      }
    ]
  }
}

search_all_result

Description

fetch data from the table: "search_all_result"

Response

Returns [search_all_result!]!

Arguments
Name Description
distinct_on - [search_all_result_select_column!] distinct select on columns
limit - Int limit the number of rows returned
offset - Int skip the first n rows. Use only with order_by
order_by - [search_all_result_order_by!] sort the rows by one or more columns
where - search_all_result_bool_exp filter the rows returned

Example

Query
query search_all_result(
  $distinct_on: [search_all_result_select_column!],
  $limit: Int,
  $offset: Int,
  $order_by: [search_all_result_order_by!],
  $where: search_all_result_bool_exp
) {
  search_all_result(
    distinct_on: $distinct_on,
    limit: $limit,
    offset: $offset,
    order_by: $order_by,
    where: $where
  ) {
    asset {
      ...AssetFragment
    }
    asset_id
    description
    metadata
    name
    profile {
      ...ProfileFragment
    }
    profile_id
    result_type
    score
    token {
      ...TokenFragment
    }
    token_id
  }
}
Variables
{
  "distinct_on": ["asset_id"],
  "limit": 987,
  "offset": 987,
  "order_by": [search_all_result_order_by],
  "where": search_all_result_bool_exp
}
Response
{
  "data": {
    "search_all_result": [
      {
        "asset": Asset,
        "asset_id": "xyz789",
        "description": "xyz789",
        "metadata": jsonb,
        "name": "xyz789",
        "profile": Profile,
        "profile_id": "abc123",
        "result_type": "abc123",
        "score": numeric,
        "token": Token,
        "token_id": "xyz789"
      }
    ]
  }
}

search_assets

Description

execute function "search_assets" which returns "search_assets_result"

Response

Returns [search_assets_result!]!

Arguments
Name Description
args - search_assets_args input parameters for function "search_assets"
distinct_on - [search_assets_result_select_column!] distinct select on columns
limit - Int limit the number of rows returned
offset - Int skip the first n rows. Use only with order_by
order_by - [search_assets_result_order_by!] sort the rows by one or more columns
where - search_assets_result_bool_exp filter the rows returned

Example

Query
query search_assets(
  $args: search_assets_args,
  $distinct_on: [search_assets_result_select_column!],
  $limit: Int,
  $offset: Int,
  $order_by: [search_assets_result_order_by!],
  $where: search_assets_result_bool_exp
) {
  search_assets(
    args: $args,
    distinct_on: $distinct_on,
    limit: $limit,
    offset: $offset,
    order_by: $order_by,
    where: $where
  ) {
    active_holders_7d
    asset {
      ...AssetFragment
    }
    asset_id
    collectible_score
    concentration_ratio
    description
    holder_count
    hot_score
    is_lsp7
    last_transfer
    name
    symbol
    total_holdings
    total_supply
    transfer_count_3d
    transfer_count_7d
    unique_holders
  }
}
Variables
{
  "args": search_assets_args,
  "distinct_on": ["active_holders_7d"],
  "limit": 123,
  "offset": 987,
  "order_by": [search_assets_result_order_by],
  "where": search_assets_result_bool_exp
}
Response
{
  "data": {
    "search_assets": [
      {
        "active_holders_7d": 987,
        "asset": Asset,
        "asset_id": "abc123",
        "collectible_score": numeric,
        "concentration_ratio": numeric,
        "description": "xyz789",
        "holder_count": 987,
        "hot_score": numeric,
        "is_lsp7": true,
        "last_transfer": 987,
        "name": "abc123",
        "symbol": "xyz789",
        "total_holdings": 123,
        "total_supply": numeric,
        "transfer_count_3d": 123,
        "transfer_count_7d": 987,
        "unique_holders": 987
      }
    ]
  }
}

search_assets_result

Description

fetch data from the table: "search_assets_result"

Response

Returns [search_assets_result!]!

Arguments
Name Description
distinct_on - [search_assets_result_select_column!] distinct select on columns
limit - Int limit the number of rows returned
offset - Int skip the first n rows. Use only with order_by
order_by - [search_assets_result_order_by!] sort the rows by one or more columns
where - search_assets_result_bool_exp filter the rows returned

Example

Query
query search_assets_result(
  $distinct_on: [search_assets_result_select_column!],
  $limit: Int,
  $offset: Int,
  $order_by: [search_assets_result_order_by!],
  $where: search_assets_result_bool_exp
) {
  search_assets_result(
    distinct_on: $distinct_on,
    limit: $limit,
    offset: $offset,
    order_by: $order_by,
    where: $where
  ) {
    active_holders_7d
    asset {
      ...AssetFragment
    }
    asset_id
    collectible_score
    concentration_ratio
    description
    holder_count
    hot_score
    is_lsp7
    last_transfer
    name
    symbol
    total_holdings
    total_supply
    transfer_count_3d
    transfer_count_7d
    unique_holders
  }
}
Variables
{
  "distinct_on": ["active_holders_7d"],
  "limit": 987,
  "offset": 123,
  "order_by": [search_assets_result_order_by],
  "where": search_assets_result_bool_exp
}
Response
{
  "data": {
    "search_assets_result": [
      {
        "active_holders_7d": 123,
        "asset": Asset,
        "asset_id": "abc123",
        "collectible_score": numeric,
        "concentration_ratio": numeric,
        "description": "abc123",
        "holder_count": 123,
        "hot_score": numeric,
        "is_lsp7": true,
        "last_transfer": 987,
        "name": "xyz789",
        "symbol": "xyz789",
        "total_holdings": 123,
        "total_supply": numeric,
        "transfer_count_3d": 123,
        "transfer_count_7d": 123,
        "unique_holders": 123
      }
    ]
  }
}

search_assets_v2

Description

execute function "search_assets_v2" which returns "search_assets_v2_result"

Response

Returns [search_assets_v2_result!]!

Arguments
Name Description
args - search_assets_v2_args input parameters for function "search_assets_v2"
distinct_on - [search_assets_v2_result_select_column!] distinct select on columns
limit - Int limit the number of rows returned
offset - Int skip the first n rows. Use only with order_by
order_by - [search_assets_v2_result_order_by!] sort the rows by one or more columns
where - search_assets_v2_result_bool_exp filter the rows returned

Example

Query
query search_assets_v2(
  $args: search_assets_v2_args,
  $distinct_on: [search_assets_v2_result_select_column!],
  $limit: Int,
  $offset: Int,
  $order_by: [search_assets_v2_result_order_by!],
  $where: search_assets_v2_result_bool_exp
) {
  search_assets_v2(
    args: $args,
    distinct_on: $distinct_on,
    limit: $limit,
    offset: $offset,
    order_by: $order_by,
    where: $where
  ) {
    active_holders_7d
    asset {
      ...AssetFragment
    }
    asset_id
    collectible_score
    concentration_ratio
    description
    holder_count
    hot_score
    is_collectible
    is_lsp7
    is_token
    last_transfer
    lsp4TokenType
    name
    symbol
    total_holdings
    total_supply
    transfer_count_3d
    transfer_count_7d
    unique_holders
  }
}
Variables
{
  "args": search_assets_v2_args,
  "distinct_on": ["active_holders_7d"],
  "limit": 987,
  "offset": 987,
  "order_by": [search_assets_v2_result_order_by],
  "where": search_assets_v2_result_bool_exp
}
Response
{
  "data": {
    "search_assets_v2": [
      {
        "active_holders_7d": 987,
        "asset": Asset,
        "asset_id": "xyz789",
        "collectible_score": numeric,
        "concentration_ratio": numeric,
        "description": "xyz789",
        "holder_count": 123,
        "hot_score": numeric,
        "is_collectible": false,
        "is_lsp7": true,
        "is_token": false,
        "last_transfer": 123,
        "lsp4TokenType": 987,
        "name": "abc123",
        "symbol": "xyz789",
        "total_holdings": 987,
        "total_supply": numeric,
        "transfer_count_3d": 987,
        "transfer_count_7d": 123,
        "unique_holders": 123
      }
    ]
  }
}

search_assets_v2_result

Description

fetch data from the table: "search_assets_v2_result"

Response

Returns [search_assets_v2_result!]!

Arguments
Name Description
distinct_on - [search_assets_v2_result_select_column!] distinct select on columns
limit - Int limit the number of rows returned
offset - Int skip the first n rows. Use only with order_by
order_by - [search_assets_v2_result_order_by!] sort the rows by one or more columns
where - search_assets_v2_result_bool_exp filter the rows returned

Example

Query
query search_assets_v2_result(
  $distinct_on: [search_assets_v2_result_select_column!],
  $limit: Int,
  $offset: Int,
  $order_by: [search_assets_v2_result_order_by!],
  $where: search_assets_v2_result_bool_exp
) {
  search_assets_v2_result(
    distinct_on: $distinct_on,
    limit: $limit,
    offset: $offset,
    order_by: $order_by,
    where: $where
  ) {
    active_holders_7d
    asset {
      ...AssetFragment
    }
    asset_id
    collectible_score
    concentration_ratio
    description
    holder_count
    hot_score
    is_collectible
    is_lsp7
    is_token
    last_transfer
    lsp4TokenType
    name
    symbol
    total_holdings
    total_supply
    transfer_count_3d
    transfer_count_7d
    unique_holders
  }
}
Variables
{
  "distinct_on": ["active_holders_7d"],
  "limit": 123,
  "offset": 987,
  "order_by": [search_assets_v2_result_order_by],
  "where": search_assets_v2_result_bool_exp
}
Response
{
  "data": {
    "search_assets_v2_result": [
      {
        "active_holders_7d": 123,
        "asset": Asset,
        "asset_id": "abc123",
        "collectible_score": numeric,
        "concentration_ratio": numeric,
        "description": "xyz789",
        "holder_count": 123,
        "hot_score": numeric,
        "is_collectible": false,
        "is_lsp7": false,
        "is_token": true,
        "last_transfer": 123,
        "lsp4TokenType": 123,
        "name": "abc123",
        "symbol": "xyz789",
        "total_holdings": 123,
        "total_supply": numeric,
        "transfer_count_3d": 123,
        "transfer_count_7d": 987,
        "unique_holders": 123
      }
    ]
  }
}

search_profiles

Description

execute function "search_profiles" which returns "Profile"

Response

Returns [Profile!]!

Arguments
Name Description
args - search_profiles_args! input parameters for function "search_profiles"
distinct_on - [Profile_select_column!] distinct select on columns
limit - Int limit the number of rows returned
offset - Int skip the first n rows. Use only with order_by
order_by - [Profile_order_by!] sort the rows by one or more columns
where - Profile_bool_exp filter the rows returned

Example

Query
query search_profiles(
  $args: search_profiles_args!,
  $distinct_on: [Profile_select_column!],
  $limit: Int,
  $offset: Int,
  $order_by: [Profile_order_by!],
  $where: Profile_bool_exp
) {
  search_profiles(
    args: $args,
    distinct_on: $distinct_on,
    limit: $limit,
    offset: $offset,
    order_by: $order_by,
    where: $where
  ) {
    addressPermissions
    addressPermissions_
    app {
      ...AppFragment
    }
    appContributions {
      ...AppContributorFragment
    }
    appContributions_aggregate {
      ...AppContributor_aggregateFragment
    }
    appHistory {
      ...AppHistoryFragment
    }
    appHistory_aggregate {
      ...AppHistory_aggregateFragment
    }
    appInstalls {
      ...AppInstallFragment
    }
    appInstalls_aggregate {
      ...AppInstall_aggregateFragment
    }
    asset {
      ...AssetFragment
    }
    asset_id
    avatars {
      ...AvatarAssetURLFragment
    }
    avatars_
    avatars_aggregate {
      ...AvatarAssetURL_aggregateFragment
    }
    backgroundImages {
      ...ProfileBackgroundImageURLFragment
    }
    backgroundImages_
    backgroundImages_aggregate {
      ...ProfileBackgroundImageURL_aggregateFragment
    }
    blockNumber
    controllers {
      ...ControllerFragment
    }
    controllers_
    controllers_aggregate {
      ...Controller_aggregateFragment
    }
    createdBlockNumber
    createdTimestamp
    createdTransactionIndex
    data
    db_write_timestamp
    description
    error
    feed {
      ...FeedProfileArgFragment
    }
    feed_aggregate {
      ...FeedProfileArg_aggregateFragment
    }
    followed {
      ...FollowFragment
    }
    followed_aggregate {
      ...Follow_aggregateFragment
    }
    following {
      ...FollowFragment
    }
    following_aggregate {
      ...Follow_aggregateFragment
    }
    ft
    fts
    fullName
    holds {
      ...HoldFragment
    }
    holds_aggregate {
      ...Hold_aggregateFragment
    }
    id
    incoming_transfers {
      ...TransferFragment
    }
    incoming_transfers_aggregate {
      ...Transfer_aggregateFragment
    }
    interactions {
      ...InteractionFragment
    }
    interactions_aggregate {
      ...Interaction_aggregateFragment
    }
    interfaces
    isContract
    isEOA
    keyManagers {
      ...KeyManagerFragment
    }
    keyManagers_aggregate {
      ...KeyManager_aggregateFragment
    }
    lastMetadataUpdate
    lastNameUpdate
    links {
      ...ProfileLinkFragment
    }
    links_
    links_aggregate {
      ...ProfileLink_aggregateFragment
    }
    lsp12IssuedAssets {
      ...IssuedAssetFragment
    }
    lsp12IssuedAssets_
    lsp12IssuedAssets_aggregate {
      ...IssuedAsset_aggregateFragment
    }
    lsp1UniversalReceiverDelegate {
      ...ReceiverDelegateFragment
    }
    lsp1UniversalReceiverDelegate_aggregate {
      ...ReceiverDelegate_aggregateFragment
    }
    lsp23Deployment {
      ...LSP23DeploymentFragment
    }
    lsp5ReceivedAssets {
      ...ReceivedAssetFragment
    }
    lsp5ReceivedAssets_
    lsp5ReceivedAssets_aggregate {
      ...ReceivedAsset_aggregateFragment
    }
    method
    name
    outgoing_transfers {
      ...TransferFragment
    }
    outgoing_transfers_aggregate {
      ...Transfer_aggregateFragment
    }
    owner {
      ...ProfileFragment
    }
    owner_id
    profileImages {
      ...ProfileImageURLFragment
    }
    profileImages_
    profileImages_aggregate {
      ...ProfileImageURL_aggregateFragment
    }
    src
    standard
    supportedStandardsLsp3Profile
    tags
    transactions {
      ...TransactionFragment
    }
    transactions_aggregate {
      ...Transaction_aggregateFragment
    }
    updatedBlockNumber
    updatedTimestamp
    updatedTransactionIndex
    url
  }
}
Variables
{
  "args": search_profiles_args,
  "distinct_on": ["addressPermissions"],
  "limit": 123,
  "offset": 987,
  "order_by": [Profile_order_by],
  "where": Profile_bool_exp
}
Response
{
  "data": {
    "search_profiles": [
      {
        "addressPermissions": ["xyz789"],
        "addressPermissions_": ["abc123"],
        "app": App,
        "appContributions": [AppContributor],
        "appContributions_aggregate": AppContributor_aggregate,
        "appHistory": [AppHistory],
        "appHistory_aggregate": AppHistory_aggregate,
        "appInstalls": [AppInstall],
        "appInstalls_aggregate": AppInstall_aggregate,
        "asset": Asset,
        "asset_id": "abc123",
        "avatars": [AvatarAssetURL],
        "avatars_": ["xyz789"],
        "avatars_aggregate": AvatarAssetURL_aggregate,
        "backgroundImages": [ProfileBackgroundImageURL],
        "backgroundImages_": ["abc123"],
        "backgroundImages_aggregate": ProfileBackgroundImageURL_aggregate,
        "blockNumber": 987,
        "controllers": [Controller],
        "controllers_": ["xyz789"],
        "controllers_aggregate": Controller_aggregate,
        "createdBlockNumber": 123,
        "createdTimestamp": 987,
        "createdTransactionIndex": 123,
        "data": "abc123",
        "db_write_timestamp": timestamp,
        "description": "xyz789",
        "error": "xyz789",
        "feed": [FeedProfileArg],
        "feed_aggregate": FeedProfileArg_aggregate,
        "followed": [Follow],
        "followed_aggregate": Follow_aggregate,
        "following": [Follow],
        "following_aggregate": Follow_aggregate,
        "ft": "abc123",
        "fts": tsvector,
        "fullName": "abc123",
        "holds": [Hold],
        "holds_aggregate": Hold_aggregate,
        "id": "abc123",
        "incoming_transfers": [Transfer],
        "incoming_transfers_aggregate": Transfer_aggregate,
        "interactions": [Interaction],
        "interactions_aggregate": Interaction_aggregate,
        "interfaces": ["xyz789"],
        "isContract": false,
        "isEOA": true,
        "keyManagers": [KeyManager],
        "keyManagers_aggregate": KeyManager_aggregate,
        "lastMetadataUpdate": 987,
        "lastNameUpdate": 987,
        "links": [ProfileLink],
        "links_": ["abc123"],
        "links_aggregate": ProfileLink_aggregate,
        "lsp12IssuedAssets": [IssuedAsset],
        "lsp12IssuedAssets_": ["abc123"],
        "lsp12IssuedAssets_aggregate": IssuedAsset_aggregate,
        "lsp1UniversalReceiverDelegate": [
          ReceiverDelegate
        ],
        "lsp1UniversalReceiverDelegate_aggregate": ReceiverDelegate_aggregate,
        "lsp23Deployment": LSP23Deployment,
        "lsp5ReceivedAssets": [ReceivedAsset],
        "lsp5ReceivedAssets_": ["abc123"],
        "lsp5ReceivedAssets_aggregate": ReceivedAsset_aggregate,
        "method": "abc123",
        "name": "abc123",
        "outgoing_transfers": [Transfer],
        "outgoing_transfers_aggregate": Transfer_aggregate,
        "owner": Profile,
        "owner_id": "abc123",
        "profileImages": [ProfileImageURL],
        "profileImages_": ["xyz789"],
        "profileImages_aggregate": ProfileImageURL_aggregate,
        "src": "abc123",
        "standard": standards,
        "supportedStandardsLsp3Profile": false,
        "tags": ["abc123"],
        "transactions": [Transaction],
        "transactions_aggregate": Transaction_aggregate,
        "updatedBlockNumber": 123,
        "updatedTimestamp": 123,
        "updatedTransactionIndex": 123,
        "url": "abc123"
      }
    ]
  }
}

search_profiles_aggregate

Description

execute function "search_profiles" and query aggregates on result of table type "Profile"

Response

Returns a Profile_aggregate!

Arguments
Name Description
args - search_profiles_args! input parameters for function "search_profiles_aggregate"
distinct_on - [Profile_select_column!] distinct select on columns
limit - Int limit the number of rows returned
offset - Int skip the first n rows. Use only with order_by
order_by - [Profile_order_by!] sort the rows by one or more columns
where - Profile_bool_exp filter the rows returned

Example

Query
query search_profiles_aggregate(
  $args: search_profiles_args!,
  $distinct_on: [Profile_select_column!],
  $limit: Int,
  $offset: Int,
  $order_by: [Profile_order_by!],
  $where: Profile_bool_exp
) {
  search_profiles_aggregate(
    args: $args,
    distinct_on: $distinct_on,
    limit: $limit,
    offset: $offset,
    order_by: $order_by,
    where: $where
  ) {
    aggregate {
      ...Profile_aggregate_fieldsFragment
    }
    nodes {
      ...ProfileFragment
    }
  }
}
Variables
{
  "args": search_profiles_args,
  "distinct_on": ["addressPermissions"],
  "limit": 123,
  "offset": 123,
  "order_by": [Profile_order_by],
  "where": Profile_bool_exp
}
Response
{
  "data": {
    "search_profiles_aggregate": {
      "aggregate": Profile_aggregate_fields,
      "nodes": [Profile]
    }
  }
}

search_profiles_result

Description

fetch data from the table: "search_profiles_result"

Response

Returns [search_profiles_result!]!

Arguments
Name Description
distinct_on - [search_profiles_result_select_column!] distinct select on columns
limit - Int limit the number of rows returned
offset - Int skip the first n rows. Use only with order_by
order_by - [search_profiles_result_order_by!] sort the rows by one or more columns
where - search_profiles_result_bool_exp filter the rows returned

Example

Query
query search_profiles_result(
  $distinct_on: [search_profiles_result_select_column!],
  $limit: Int,
  $offset: Int,
  $order_by: [search_profiles_result_order_by!],
  $where: search_profiles_result_bool_exp
) {
  search_profiles_result(
    distinct_on: $distinct_on,
    limit: $limit,
    offset: $offset,
    order_by: $order_by,
    where: $where
  ) {
    activity_score
    combined_score
    description
    follower_count
    fullName
    id
    last_activity
    lsp7_collectible_count
    lsp7_token_count
    lsp8_nft_count
    name
    popularity_score
    profile {
      ...ProfileFragment
    }
    recently_acquired_count
    tags
    total_asset_value
    total_holds
    tx_count_3d
    tx_count_5d
    unique_assets_held
    unique_collections_held
    unique_tokens_held
  }
}
Variables
{
  "distinct_on": ["activity_score"],
  "limit": 123,
  "offset": 987,
  "order_by": [search_profiles_result_order_by],
  "where": search_profiles_result_bool_exp
}
Response
{
  "data": {
    "search_profiles_result": [
      {
        "activity_score": numeric,
        "combined_score": numeric,
        "description": "xyz789",
        "follower_count": 123,
        "fullName": "abc123",
        "id": "xyz789",
        "last_activity": 987,
        "lsp7_collectible_count": 987,
        "lsp7_token_count": 123,
        "lsp8_nft_count": 123,
        "name": "abc123",
        "popularity_score": numeric,
        "profile": Profile,
        "recently_acquired_count": 123,
        "tags": ["abc123"],
        "total_asset_value": numeric,
        "total_holds": 123,
        "tx_count_3d": 123,
        "tx_count_5d": 123,
        "unique_assets_held": 123,
        "unique_collections_held": 987,
        "unique_tokens_held": 987
      }
    ]
  }
}

search_profiles_v2

Description

execute function "search_profiles_v2" which returns "search_profiles_result"

Response

Returns [search_profiles_result!]!

Arguments
Name Description
args - search_profiles_v2_args input parameters for function "search_profiles_v2"
distinct_on - [search_profiles_result_select_column!] distinct select on columns
limit - Int limit the number of rows returned
offset - Int skip the first n rows. Use only with order_by
order_by - [search_profiles_result_order_by!] sort the rows by one or more columns
where - search_profiles_result_bool_exp filter the rows returned

Example

Query
query search_profiles_v2(
  $args: search_profiles_v2_args,
  $distinct_on: [search_profiles_result_select_column!],
  $limit: Int,
  $offset: Int,
  $order_by: [search_profiles_result_order_by!],
  $where: search_profiles_result_bool_exp
) {
  search_profiles_v2(
    args: $args,
    distinct_on: $distinct_on,
    limit: $limit,
    offset: $offset,
    order_by: $order_by,
    where: $where
  ) {
    activity_score
    combined_score
    description
    follower_count
    fullName
    id
    last_activity
    lsp7_collectible_count
    lsp7_token_count
    lsp8_nft_count
    name
    popularity_score
    profile {
      ...ProfileFragment
    }
    recently_acquired_count
    tags
    total_asset_value
    total_holds
    tx_count_3d
    tx_count_5d
    unique_assets_held
    unique_collections_held
    unique_tokens_held
  }
}
Variables
{
  "args": search_profiles_v2_args,
  "distinct_on": ["activity_score"],
  "limit": 123,
  "offset": 987,
  "order_by": [search_profiles_result_order_by],
  "where": search_profiles_result_bool_exp
}
Response
{
  "data": {
    "search_profiles_v2": [
      {
        "activity_score": numeric,
        "combined_score": numeric,
        "description": "xyz789",
        "follower_count": 123,
        "fullName": "abc123",
        "id": "xyz789",
        "last_activity": 123,
        "lsp7_collectible_count": 987,
        "lsp7_token_count": 123,
        "lsp8_nft_count": 123,
        "name": "abc123",
        "popularity_score": numeric,
        "profile": Profile,
        "recently_acquired_count": 123,
        "tags": ["xyz789"],
        "total_asset_value": numeric,
        "total_holds": 123,
        "tx_count_3d": 987,
        "tx_count_5d": 123,
        "unique_assets_held": 123,
        "unique_collections_held": 123,
        "unique_tokens_held": 987
      }
    ]
  }
}

search_tokens

Description

execute function "search_tokens" which returns "search_tokens_result"

Response

Returns [search_tokens_result!]!

Arguments
Name Description
args - search_tokens_args input parameters for function "search_tokens"
distinct_on - [search_tokens_result_select_column!] distinct select on columns
limit - Int limit the number of rows returned
offset - Int skip the first n rows. Use only with order_by
order_by - [search_tokens_result_order_by!] sort the rows by one or more columns
where - search_tokens_result_bool_exp filter the rows returned

Example

Query
query search_tokens(
  $args: search_tokens_args,
  $distinct_on: [search_tokens_result_select_column!],
  $limit: Int,
  $offset: Int,
  $order_by: [search_tokens_result_order_by!],
  $where: search_tokens_result_bool_exp
) {
  search_tokens(
    args: $args,
    distinct_on: $distinct_on,
    limit: $limit,
    offset: $offset,
    order_by: $order_by,
    where: $where
  ) {
    baseAsset {
      ...AssetFragment
    }
    baseAsset_id
    current_owner {
      ...ProfileFragment
    }
    current_owner_id
    description
    formattedTokenId
    hot_score
    last_transfer
    name
    symbol
    token {
      ...TokenFragment
    }
    tokenId
    token_id
    transfer_count_3d
    transfer_count_7d
  }
}
Variables
{
  "args": search_tokens_args,
  "distinct_on": ["baseAsset_id"],
  "limit": 123,
  "offset": 123,
  "order_by": [search_tokens_result_order_by],
  "where": search_tokens_result_bool_exp
}
Response
{
  "data": {
    "search_tokens": [
      {
        "baseAsset": Asset,
        "baseAsset_id": "xyz789",
        "current_owner": Profile,
        "current_owner_id": "abc123",
        "description": "xyz789",
        "formattedTokenId": "abc123",
        "hot_score": numeric,
        "last_transfer": 123,
        "name": "xyz789",
        "symbol": "abc123",
        "token": Token,
        "tokenId": "xyz789",
        "token_id": "abc123",
        "transfer_count_3d": 987,
        "transfer_count_7d": 987
      }
    ]
  }
}

search_tokens_result

Description

fetch data from the table: "search_tokens_result"

Response

Returns [search_tokens_result!]!

Arguments
Name Description
distinct_on - [search_tokens_result_select_column!] distinct select on columns
limit - Int limit the number of rows returned
offset - Int skip the first n rows. Use only with order_by
order_by - [search_tokens_result_order_by!] sort the rows by one or more columns
where - search_tokens_result_bool_exp filter the rows returned

Example

Query
query search_tokens_result(
  $distinct_on: [search_tokens_result_select_column!],
  $limit: Int,
  $offset: Int,
  $order_by: [search_tokens_result_order_by!],
  $where: search_tokens_result_bool_exp
) {
  search_tokens_result(
    distinct_on: $distinct_on,
    limit: $limit,
    offset: $offset,
    order_by: $order_by,
    where: $where
  ) {
    baseAsset {
      ...AssetFragment
    }
    baseAsset_id
    current_owner {
      ...ProfileFragment
    }
    current_owner_id
    description
    formattedTokenId
    hot_score
    last_transfer
    name
    symbol
    token {
      ...TokenFragment
    }
    tokenId
    token_id
    transfer_count_3d
    transfer_count_7d
  }
}
Variables
{
  "distinct_on": ["baseAsset_id"],
  "limit": 123,
  "offset": 123,
  "order_by": [search_tokens_result_order_by],
  "where": search_tokens_result_bool_exp
}
Response
{
  "data": {
    "search_tokens_result": [
      {
        "baseAsset": Asset,
        "baseAsset_id": "xyz789",
        "current_owner": Profile,
        "current_owner_id": "abc123",
        "description": "xyz789",
        "formattedTokenId": "abc123",
        "hot_score": numeric,
        "last_transfer": 987,
        "name": "xyz789",
        "symbol": "abc123",
        "token": Token,
        "tokenId": "xyz789",
        "token_id": "abc123",
        "transfer_count_3d": 123,
        "transfer_count_7d": 987
      }
    ]
  }
}

Subscriptions

App

Description

fetch data from the table: "App"

Response

Returns [App!]!

Arguments
Name Description
distinct_on - [App_select_column!] distinct select on columns
limit - Int limit the number of rows returned
offset - Int skip the first n rows. Use only with order_by
order_by - [App_order_by!] sort the rows by one or more columns
where - App_bool_exp filter the rows returned

Example

Query
subscription App(
  $distinct_on: [App_select_column!],
  $limit: Int,
  $offset: Int,
  $order_by: [App_order_by!],
  $where: App_bool_exp
) {
  App(
    distinct_on: $distinct_on,
    limit: $limit,
    offset: $offset,
    order_by: $order_by,
    where: $where
  ) {
    claimedAtBlock
    claimedAtTime
    contributors {
      ...AppContributorFragment
    }
    contributors_aggregate {
      ...AppContributor_aggregateFragment
    }
    events {
      ...AppInstallEventFragment
    }
    events_aggregate {
      ...AppInstallEvent_aggregateFragment
    }
    firstSeen
    history {
      ...AppHistoryFragment
    }
    history_aggregate {
      ...AppHistory_aggregateFragment
    }
    id
    installCount
    installs {
      ...AppInstallFragment
    }
    installs_aggregate {
      ...AppInstall_aggregateFragment
    }
    isVerified
    lastSeen
    profile {
      ...ProfileFragment
    }
    profile_id
    uuid
    verifiableUriHash
    verifiableUriUrl
    verifiedAtBlock
    verifiedAtTime
  }
}
Variables
{
  "distinct_on": ["claimedAtBlock"],
  "limit": 123,
  "offset": 987,
  "order_by": [App_order_by],
  "where": App_bool_exp
}
Response
{
  "data": {
    "App": [
      {
        "claimedAtBlock": 987,
        "claimedAtTime": 987,
        "contributors": [AppContributor],
        "contributors_aggregate": AppContributor_aggregate,
        "events": [AppInstallEvent],
        "events_aggregate": AppInstallEvent_aggregate,
        "firstSeen": 987,
        "history": [AppHistory],
        "history_aggregate": AppHistory_aggregate,
        "id": "abc123",
        "installCount": 987,
        "installs": [AppInstall],
        "installs_aggregate": AppInstall_aggregate,
        "isVerified": false,
        "lastSeen": 987,
        "profile": Profile,
        "profile_id": "abc123",
        "uuid": "xyz789",
        "verifiableUriHash": "xyz789",
        "verifiableUriUrl": "abc123",
        "verifiedAtBlock": 123,
        "verifiedAtTime": 987
      }
    ]
  }
}

AppContributor

Description

fetch data from the table: "AppContributor"

Response

Returns [AppContributor!]!

Arguments
Name Description
distinct_on - [AppContributor_select_column!] distinct select on columns
limit - Int limit the number of rows returned
offset - Int skip the first n rows. Use only with order_by
order_by - [AppContributor_order_by!] sort the rows by one or more columns
where - AppContributor_bool_exp filter the rows returned

Example

Query
subscription AppContributor(
  $distinct_on: [AppContributor_select_column!],
  $limit: Int,
  $offset: Int,
  $order_by: [AppContributor_order_by!],
  $where: AppContributor_bool_exp
) {
  AppContributor(
    distinct_on: $distinct_on,
    limit: $limit,
    offset: $offset,
    order_by: $order_by,
    where: $where
  ) {
    addedAtBlock
    addedAtTime
    app {
      ...AppFragment
    }
    app_id
    confirmedAtBlock
    confirmedAtTime
    id
    isConfirmed
    memberConsented
    profile {
      ...ProfileFragment
    }
    profile_id
    removedAtBlock
    removedAtTime
    teamListed
  }
}
Variables
{
  "distinct_on": ["addedAtBlock"],
  "limit": 123,
  "offset": 987,
  "order_by": [AppContributor_order_by],
  "where": AppContributor_bool_exp
}
Response
{
  "data": {
    "AppContributor": [
      {
        "addedAtBlock": 123,
        "addedAtTime": 123,
        "app": App,
        "app_id": "xyz789",
        "confirmedAtBlock": 987,
        "confirmedAtTime": 123,
        "id": "xyz789",
        "isConfirmed": false,
        "memberConsented": true,
        "profile": Profile,
        "profile_id": "abc123",
        "removedAtBlock": 123,
        "removedAtTime": 123,
        "teamListed": true
      }
    ]
  }
}

AppContributor_aggregate

Description

fetch aggregated fields from the table: "AppContributor"

Response

Returns an AppContributor_aggregate!

Arguments
Name Description
distinct_on - [AppContributor_select_column!] distinct select on columns
limit - Int limit the number of rows returned
offset - Int skip the first n rows. Use only with order_by
order_by - [AppContributor_order_by!] sort the rows by one or more columns
where - AppContributor_bool_exp filter the rows returned

Example

Query
subscription AppContributor_aggregate(
  $distinct_on: [AppContributor_select_column!],
  $limit: Int,
  $offset: Int,
  $order_by: [AppContributor_order_by!],
  $where: AppContributor_bool_exp
) {
  AppContributor_aggregate(
    distinct_on: $distinct_on,
    limit: $limit,
    offset: $offset,
    order_by: $order_by,
    where: $where
  ) {
    aggregate {
      ...AppContributor_aggregate_fieldsFragment
    }
    nodes {
      ...AppContributorFragment
    }
  }
}
Variables
{
  "distinct_on": ["addedAtBlock"],
  "limit": 987,
  "offset": 123,
  "order_by": [AppContributor_order_by],
  "where": AppContributor_bool_exp
}
Response
{
  "data": {
    "AppContributor_aggregate": {
      "aggregate": AppContributor_aggregate_fields,
      "nodes": [AppContributor]
    }
  }
}

AppContributor_by_pk

Description

fetch data from the table: "AppContributor" using primary key columns

Response

Returns an AppContributor

Arguments
Name Description
id - String! {app_id}-{profile_id}, or pending-{teamProfile}-{profile_id} before binding

Example

Query
subscription AppContributor_by_pk($id: String!) {
  AppContributor_by_pk(id: $id) {
    addedAtBlock
    addedAtTime
    app {
      ...AppFragment
    }
    app_id
    confirmedAtBlock
    confirmedAtTime
    id
    isConfirmed
    memberConsented
    profile {
      ...ProfileFragment
    }
    profile_id
    removedAtBlock
    removedAtTime
    teamListed
  }
}
Variables
{"id": "xyz789"}
Response
{
  "data": {
    "AppContributor_by_pk": {
      "addedAtBlock": 123,
      "addedAtTime": 987,
      "app": App,
      "app_id": "xyz789",
      "confirmedAtBlock": 987,
      "confirmedAtTime": 123,
      "id": "abc123",
      "isConfirmed": false,
      "memberConsented": true,
      "profile": Profile,
      "profile_id": "abc123",
      "removedAtBlock": 123,
      "removedAtTime": 123,
      "teamListed": false
    }
  }
}

AppContributor_stream

Description

fetch data from the table in a streaming manner: "AppContributor"

Response

Returns [AppContributor!]!

Arguments
Name Description
batch_size - Int! maximum number of rows returned in a single batch
cursor - [AppContributor_stream_cursor_input]! cursor to stream the results returned by the query
where - AppContributor_bool_exp filter the rows returned

Example

Query
subscription AppContributor_stream(
  $batch_size: Int!,
  $cursor: [AppContributor_stream_cursor_input]!,
  $where: AppContributor_bool_exp
) {
  AppContributor_stream(
    batch_size: $batch_size,
    cursor: $cursor,
    where: $where
  ) {
    addedAtBlock
    addedAtTime
    app {
      ...AppFragment
    }
    app_id
    confirmedAtBlock
    confirmedAtTime
    id
    isConfirmed
    memberConsented
    profile {
      ...ProfileFragment
    }
    profile_id
    removedAtBlock
    removedAtTime
    teamListed
  }
}
Variables
{
  "batch_size": 123,
  "cursor": [AppContributor_stream_cursor_input],
  "where": AppContributor_bool_exp
}
Response
{
  "data": {
    "AppContributor_stream": [
      {
        "addedAtBlock": 987,
        "addedAtTime": 987,
        "app": App,
        "app_id": "abc123",
        "confirmedAtBlock": 123,
        "confirmedAtTime": 123,
        "id": "xyz789",
        "isConfirmed": true,
        "memberConsented": true,
        "profile": Profile,
        "profile_id": "xyz789",
        "removedAtBlock": 123,
        "removedAtTime": 123,
        "teamListed": false
      }
    ]
  }
}

AppHistory

Description

fetch data from the table: "AppHistory"

Response

Returns [AppHistory!]!

Arguments
Name Description
distinct_on - [AppHistory_select_column!] distinct select on columns
limit - Int limit the number of rows returned
offset - Int skip the first n rows. Use only with order_by
order_by - [AppHistory_order_by!] sort the rows by one or more columns
where - AppHistory_bool_exp filter the rows returned

Example

Query
subscription AppHistory(
  $distinct_on: [AppHistory_select_column!],
  $limit: Int,
  $offset: Int,
  $order_by: [AppHistory_order_by!],
  $where: AppHistory_bool_exp
) {
  AppHistory(
    distinct_on: $distinct_on,
    limit: $limit,
    offset: $offset,
    order_by: $order_by,
    where: $where
  ) {
    app {
      ...AppFragment
    }
    app_id
    asset {
      ...AssetFragment
    }
    asset_id
    firstInstalledAtBlock
    firstInstalledAtTime
    id
    installCount
    isCurrentlyInstalled
    lastInstallAtBlock
    lastInstallAtTime
    lastUninstallAtBlock
    lastUninstallAtTime
    profile {
      ...ProfileFragment
    }
    profile_id
    token {
      ...TokenFragment
    }
    token_id
    totalInstalledBlocks
  }
}
Variables
{
  "distinct_on": ["app_id"],
  "limit": 987,
  "offset": 123,
  "order_by": [AppHistory_order_by],
  "where": AppHistory_bool_exp
}
Response
{
  "data": {
    "AppHistory": [
      {
        "app": App,
        "app_id": "abc123",
        "asset": Asset,
        "asset_id": "abc123",
        "firstInstalledAtBlock": 987,
        "firstInstalledAtTime": 123,
        "id": "abc123",
        "installCount": 987,
        "isCurrentlyInstalled": true,
        "lastInstallAtBlock": 987,
        "lastInstallAtTime": 123,
        "lastUninstallAtBlock": 123,
        "lastUninstallAtTime": 123,
        "profile": Profile,
        "profile_id": "xyz789",
        "token": Token,
        "token_id": "xyz789",
        "totalInstalledBlocks": bigint
      }
    ]
  }
}

AppHistory_aggregate

Description

fetch aggregated fields from the table: "AppHistory"

Response

Returns an AppHistory_aggregate!

Arguments
Name Description
distinct_on - [AppHistory_select_column!] distinct select on columns
limit - Int limit the number of rows returned
offset - Int skip the first n rows. Use only with order_by
order_by - [AppHistory_order_by!] sort the rows by one or more columns
where - AppHistory_bool_exp filter the rows returned

Example

Query
subscription AppHistory_aggregate(
  $distinct_on: [AppHistory_select_column!],
  $limit: Int,
  $offset: Int,
  $order_by: [AppHistory_order_by!],
  $where: AppHistory_bool_exp
) {
  AppHistory_aggregate(
    distinct_on: $distinct_on,
    limit: $limit,
    offset: $offset,
    order_by: $order_by,
    where: $where
  ) {
    aggregate {
      ...AppHistory_aggregate_fieldsFragment
    }
    nodes {
      ...AppHistoryFragment
    }
  }
}
Variables
{
  "distinct_on": ["app_id"],
  "limit": 987,
  "offset": 987,
  "order_by": [AppHistory_order_by],
  "where": AppHistory_bool_exp
}
Response
{
  "data": {
    "AppHistory_aggregate": {
      "aggregate": AppHistory_aggregate_fields,
      "nodes": [AppHistory]
    }
  }
}

AppHistory_by_pk

Description

fetch data from the table: "AppHistory" using primary key columns

Response

Returns an AppHistory

Arguments
Name Description
id - String! {entity}-{app_id}

Example

Query
subscription AppHistory_by_pk($id: String!) {
  AppHistory_by_pk(id: $id) {
    app {
      ...AppFragment
    }
    app_id
    asset {
      ...AssetFragment
    }
    asset_id
    firstInstalledAtBlock
    firstInstalledAtTime
    id
    installCount
    isCurrentlyInstalled
    lastInstallAtBlock
    lastInstallAtTime
    lastUninstallAtBlock
    lastUninstallAtTime
    profile {
      ...ProfileFragment
    }
    profile_id
    token {
      ...TokenFragment
    }
    token_id
    totalInstalledBlocks
  }
}
Variables
{"id": "xyz789"}
Response
{
  "data": {
    "AppHistory_by_pk": {
      "app": App,
      "app_id": "xyz789",
      "asset": Asset,
      "asset_id": "xyz789",
      "firstInstalledAtBlock": 123,
      "firstInstalledAtTime": 123,
      "id": "abc123",
      "installCount": 123,
      "isCurrentlyInstalled": false,
      "lastInstallAtBlock": 987,
      "lastInstallAtTime": 123,
      "lastUninstallAtBlock": 123,
      "lastUninstallAtTime": 987,
      "profile": Profile,
      "profile_id": "xyz789",
      "token": Token,
      "token_id": "xyz789",
      "totalInstalledBlocks": bigint
    }
  }
}

AppHistory_stream

Description

fetch data from the table in a streaming manner: "AppHistory"

Response

Returns [AppHistory!]!

Arguments
Name Description
batch_size - Int! maximum number of rows returned in a single batch
cursor - [AppHistory_stream_cursor_input]! cursor to stream the results returned by the query
where - AppHistory_bool_exp filter the rows returned

Example

Query
subscription AppHistory_stream(
  $batch_size: Int!,
  $cursor: [AppHistory_stream_cursor_input]!,
  $where: AppHistory_bool_exp
) {
  AppHistory_stream(
    batch_size: $batch_size,
    cursor: $cursor,
    where: $where
  ) {
    app {
      ...AppFragment
    }
    app_id
    asset {
      ...AssetFragment
    }
    asset_id
    firstInstalledAtBlock
    firstInstalledAtTime
    id
    installCount
    isCurrentlyInstalled
    lastInstallAtBlock
    lastInstallAtTime
    lastUninstallAtBlock
    lastUninstallAtTime
    profile {
      ...ProfileFragment
    }
    profile_id
    token {
      ...TokenFragment
    }
    token_id
    totalInstalledBlocks
  }
}
Variables
{
  "batch_size": 123,
  "cursor": [AppHistory_stream_cursor_input],
  "where": AppHistory_bool_exp
}
Response
{
  "data": {
    "AppHistory_stream": [
      {
        "app": App,
        "app_id": "xyz789",
        "asset": Asset,
        "asset_id": "xyz789",
        "firstInstalledAtBlock": 987,
        "firstInstalledAtTime": 123,
        "id": "abc123",
        "installCount": 987,
        "isCurrentlyInstalled": false,
        "lastInstallAtBlock": 123,
        "lastInstallAtTime": 987,
        "lastUninstallAtBlock": 987,
        "lastUninstallAtTime": 123,
        "profile": Profile,
        "profile_id": "xyz789",
        "token": Token,
        "token_id": "abc123",
        "totalInstalledBlocks": bigint
      }
    ]
  }
}

AppInstall

Description

fetch data from the table: "AppInstall"

Response

Returns [AppInstall!]!

Arguments
Name Description
distinct_on - [AppInstall_select_column!] distinct select on columns
limit - Int limit the number of rows returned
offset - Int skip the first n rows. Use only with order_by
order_by - [AppInstall_order_by!] sort the rows by one or more columns
where - AppInstall_bool_exp filter the rows returned

Example

Query
subscription AppInstall(
  $distinct_on: [AppInstall_select_column!],
  $limit: Int,
  $offset: Int,
  $order_by: [AppInstall_order_by!],
  $where: AppInstall_bool_exp
) {
  AppInstall(
    distinct_on: $distinct_on,
    limit: $limit,
    offset: $offset,
    order_by: $order_by,
    where: $where
  ) {
    app {
      ...AppFragment
    }
    app_id
    asset {
      ...AssetFragment
    }
    asset_id
    blockNumber
    element
    gridColumns
    id
    profile {
      ...ProfileFragment
    }
    profile_id
    tab
    tabIndex
    timestamp
    token {
      ...TokenFragment
    }
    token_id
    visibility
    widgetIndex
  }
}
Variables
{
  "distinct_on": ["app_id"],
  "limit": 123,
  "offset": 123,
  "order_by": [AppInstall_order_by],
  "where": AppInstall_bool_exp
}
Response
{
  "data": {
    "AppInstall": [
      {
        "app": App,
        "app_id": "xyz789",
        "asset": Asset,
        "asset_id": "xyz789",
        "blockNumber": 987,
        "element": jsonb,
        "gridColumns": 987,
        "id": "xyz789",
        "profile": Profile,
        "profile_id": "xyz789",
        "tab": "xyz789",
        "tabIndex": 123,
        "timestamp": 123,
        "token": Token,
        "token_id": "xyz789",
        "visibility": "xyz789",
        "widgetIndex": 123
      }
    ]
  }
}

AppInstallEvent

Description

fetch data from the table: "AppInstallEvent"

Response

Returns [AppInstallEvent!]!

Arguments
Name Description
distinct_on - [AppInstallEvent_select_column!] distinct select on columns
limit - Int limit the number of rows returned
offset - Int skip the first n rows. Use only with order_by
order_by - [AppInstallEvent_order_by!] sort the rows by one or more columns
where - AppInstallEvent_bool_exp filter the rows returned

Example

Query
subscription AppInstallEvent(
  $distinct_on: [AppInstallEvent_select_column!],
  $limit: Int,
  $offset: Int,
  $order_by: [AppInstallEvent_order_by!],
  $where: AppInstallEvent_bool_exp
) {
  AppInstallEvent(
    distinct_on: $distinct_on,
    limit: $limit,
    offset: $offset,
    order_by: $order_by,
    where: $where
  ) {
    app {
      ...AppFragment
    }
    app_id
    asset {
      ...AssetFragment
    }
    asset_id
    durationBlocks
    id
    installedAtBlock
    installedAtTime
    profile {
      ...ProfileFragment
    }
    profile_id
    token {
      ...TokenFragment
    }
    token_id
    uninstalledAtBlock
    uninstalledAtTime
  }
}
Variables
{
  "distinct_on": ["app_id"],
  "limit": 123,
  "offset": 123,
  "order_by": [AppInstallEvent_order_by],
  "where": AppInstallEvent_bool_exp
}
Response
{
  "data": {
    "AppInstallEvent": [
      {
        "app": App,
        "app_id": "xyz789",
        "asset": Asset,
        "asset_id": "xyz789",
        "durationBlocks": 123,
        "id": "xyz789",
        "installedAtBlock": 123,
        "installedAtTime": 987,
        "profile": Profile,
        "profile_id": "abc123",
        "token": Token,
        "token_id": "abc123",
        "uninstalledAtBlock": 987,
        "uninstalledAtTime": 123
      }
    ]
  }
}

AppInstallEvent_aggregate

Description

fetch aggregated fields from the table: "AppInstallEvent"

Response

Returns an AppInstallEvent_aggregate!

Arguments
Name Description
distinct_on - [AppInstallEvent_select_column!] distinct select on columns
limit - Int limit the number of rows returned
offset - Int skip the first n rows. Use only with order_by
order_by - [AppInstallEvent_order_by!] sort the rows by one or more columns
where - AppInstallEvent_bool_exp filter the rows returned

Example

Query
subscription AppInstallEvent_aggregate(
  $distinct_on: [AppInstallEvent_select_column!],
  $limit: Int,
  $offset: Int,
  $order_by: [AppInstallEvent_order_by!],
  $where: AppInstallEvent_bool_exp
) {
  AppInstallEvent_aggregate(
    distinct_on: $distinct_on,
    limit: $limit,
    offset: $offset,
    order_by: $order_by,
    where: $where
  ) {
    aggregate {
      ...AppInstallEvent_aggregate_fieldsFragment
    }
    nodes {
      ...AppInstallEventFragment
    }
  }
}
Variables
{
  "distinct_on": ["app_id"],
  "limit": 123,
  "offset": 123,
  "order_by": [AppInstallEvent_order_by],
  "where": AppInstallEvent_bool_exp
}
Response
{
  "data": {
    "AppInstallEvent_aggregate": {
      "aggregate": AppInstallEvent_aggregate_fields,
      "nodes": [AppInstallEvent]
    }
  }
}

AppInstallEvent_by_pk

Description

fetch data from the table: "AppInstallEvent" using primary key columns

Response

Returns an AppInstallEvent

Arguments
Name Description
id - String! {entity}-{app_id}-{installedAtBlock}

Example

Query
subscription AppInstallEvent_by_pk($id: String!) {
  AppInstallEvent_by_pk(id: $id) {
    app {
      ...AppFragment
    }
    app_id
    asset {
      ...AssetFragment
    }
    asset_id
    durationBlocks
    id
    installedAtBlock
    installedAtTime
    profile {
      ...ProfileFragment
    }
    profile_id
    token {
      ...TokenFragment
    }
    token_id
    uninstalledAtBlock
    uninstalledAtTime
  }
}
Variables
{"id": "xyz789"}
Response
{
  "data": {
    "AppInstallEvent_by_pk": {
      "app": App,
      "app_id": "abc123",
      "asset": Asset,
      "asset_id": "xyz789",
      "durationBlocks": 987,
      "id": "xyz789",
      "installedAtBlock": 987,
      "installedAtTime": 123,
      "profile": Profile,
      "profile_id": "abc123",
      "token": Token,
      "token_id": "abc123",
      "uninstalledAtBlock": 987,
      "uninstalledAtTime": 123
    }
  }
}

AppInstallEvent_stream

Description

fetch data from the table in a streaming manner: "AppInstallEvent"

Response

Returns [AppInstallEvent!]!

Arguments
Name Description
batch_size - Int! maximum number of rows returned in a single batch
cursor - [AppInstallEvent_stream_cursor_input]! cursor to stream the results returned by the query
where - AppInstallEvent_bool_exp filter the rows returned

Example

Query
subscription AppInstallEvent_stream(
  $batch_size: Int!,
  $cursor: [AppInstallEvent_stream_cursor_input]!,
  $where: AppInstallEvent_bool_exp
) {
  AppInstallEvent_stream(
    batch_size: $batch_size,
    cursor: $cursor,
    where: $where
  ) {
    app {
      ...AppFragment
    }
    app_id
    asset {
      ...AssetFragment
    }
    asset_id
    durationBlocks
    id
    installedAtBlock
    installedAtTime
    profile {
      ...ProfileFragment
    }
    profile_id
    token {
      ...TokenFragment
    }
    token_id
    uninstalledAtBlock
    uninstalledAtTime
  }
}
Variables
{
  "batch_size": 987,
  "cursor": [AppInstallEvent_stream_cursor_input],
  "where": AppInstallEvent_bool_exp
}
Response
{
  "data": {
    "AppInstallEvent_stream": [
      {
        "app": App,
        "app_id": "abc123",
        "asset": Asset,
        "asset_id": "xyz789",
        "durationBlocks": 987,
        "id": "xyz789",
        "installedAtBlock": 987,
        "installedAtTime": 987,
        "profile": Profile,
        "profile_id": "xyz789",
        "token": Token,
        "token_id": "xyz789",
        "uninstalledAtBlock": 987,
        "uninstalledAtTime": 987
      }
    ]
  }
}

AppInstall_aggregate

Description

fetch aggregated fields from the table: "AppInstall"

Response

Returns an AppInstall_aggregate!

Arguments
Name Description
distinct_on - [AppInstall_select_column!] distinct select on columns
limit - Int limit the number of rows returned
offset - Int skip the first n rows. Use only with order_by
order_by - [AppInstall_order_by!] sort the rows by one or more columns
where - AppInstall_bool_exp filter the rows returned

Example

Query
subscription AppInstall_aggregate(
  $distinct_on: [AppInstall_select_column!],
  $limit: Int,
  $offset: Int,
  $order_by: [AppInstall_order_by!],
  $where: AppInstall_bool_exp
) {
  AppInstall_aggregate(
    distinct_on: $distinct_on,
    limit: $limit,
    offset: $offset,
    order_by: $order_by,
    where: $where
  ) {
    aggregate {
      ...AppInstall_aggregate_fieldsFragment
    }
    nodes {
      ...AppInstallFragment
    }
  }
}
Variables
{
  "distinct_on": ["app_id"],
  "limit": 987,
  "offset": 123,
  "order_by": [AppInstall_order_by],
  "where": AppInstall_bool_exp
}
Response
{
  "data": {
    "AppInstall_aggregate": {
      "aggregate": AppInstall_aggregate_fields,
      "nodes": [AppInstall]
    }
  }
}

AppInstall_by_pk

Description

fetch data from the table: "AppInstall" using primary key columns

Response

Returns an AppInstall

Arguments
Name Description
id - String! {address}-{tabIndex}-{widgetIndex}

Example

Query
subscription AppInstall_by_pk($id: String!) {
  AppInstall_by_pk(id: $id) {
    app {
      ...AppFragment
    }
    app_id
    asset {
      ...AssetFragment
    }
    asset_id
    blockNumber
    element
    gridColumns
    id
    profile {
      ...ProfileFragment
    }
    profile_id
    tab
    tabIndex
    timestamp
    token {
      ...TokenFragment
    }
    token_id
    visibility
    widgetIndex
  }
}
Variables
{"id": "abc123"}
Response
{
  "data": {
    "AppInstall_by_pk": {
      "app": App,
      "app_id": "abc123",
      "asset": Asset,
      "asset_id": "abc123",
      "blockNumber": 987,
      "element": jsonb,
      "gridColumns": 987,
      "id": "abc123",
      "profile": Profile,
      "profile_id": "xyz789",
      "tab": "abc123",
      "tabIndex": 123,
      "timestamp": 987,
      "token": Token,
      "token_id": "xyz789",
      "visibility": "xyz789",
      "widgetIndex": 123
    }
  }
}

AppInstall_stream

Description

fetch data from the table in a streaming manner: "AppInstall"

Response

Returns [AppInstall!]!

Arguments
Name Description
batch_size - Int! maximum number of rows returned in a single batch
cursor - [AppInstall_stream_cursor_input]! cursor to stream the results returned by the query
where - AppInstall_bool_exp filter the rows returned

Example

Query
subscription AppInstall_stream(
  $batch_size: Int!,
  $cursor: [AppInstall_stream_cursor_input]!,
  $where: AppInstall_bool_exp
) {
  AppInstall_stream(
    batch_size: $batch_size,
    cursor: $cursor,
    where: $where
  ) {
    app {
      ...AppFragment
    }
    app_id
    asset {
      ...AssetFragment
    }
    asset_id
    blockNumber
    element
    gridColumns
    id
    profile {
      ...ProfileFragment
    }
    profile_id
    tab
    tabIndex
    timestamp
    token {
      ...TokenFragment
    }
    token_id
    visibility
    widgetIndex
  }
}
Variables
{
  "batch_size": 123,
  "cursor": [AppInstall_stream_cursor_input],
  "where": AppInstall_bool_exp
}
Response
{
  "data": {
    "AppInstall_stream": [
      {
        "app": App,
        "app_id": "abc123",
        "asset": Asset,
        "asset_id": "abc123",
        "blockNumber": 987,
        "element": jsonb,
        "gridColumns": 123,
        "id": "xyz789",
        "profile": Profile,
        "profile_id": "xyz789",
        "tab": "abc123",
        "tabIndex": 987,
        "timestamp": 987,
        "token": Token,
        "token_id": "xyz789",
        "visibility": "abc123",
        "widgetIndex": 123
      }
    ]
  }
}

AppLeaderboard

Description

fetch data from the table: "AppLeaderboard"

Response

Returns [AppLeaderboard!]!

Arguments
Name Description
distinct_on - [AppLeaderboard_select_column!] distinct select on columns
limit - Int limit the number of rows returned
offset - Int skip the first n rows. Use only with order_by
order_by - [AppLeaderboard_order_by!] sort the rows by one or more columns
where - AppLeaderboard_bool_exp filter the rows returned

Example

Query
subscription AppLeaderboard(
  $distinct_on: [AppLeaderboard_select_column!],
  $limit: Int,
  $offset: Int,
  $order_by: [AppLeaderboard_order_by!],
  $where: AppLeaderboard_bool_exp
) {
  AppLeaderboard(
    distinct_on: $distinct_on,
    limit: $limit,
    offset: $offset,
    order_by: $order_by,
    where: $where
  ) {
    firstSeen
    id
    isVerified
    lastSeen
    liveInstalls
    liveProfiles
    profile {
      ...ProfileFragment
    }
    profile_id
    totalEngagementBlocks
    uuid
  }
}
Variables
{
  "distinct_on": ["firstSeen"],
  "limit": 123,
  "offset": 123,
  "order_by": [AppLeaderboard_order_by],
  "where": AppLeaderboard_bool_exp
}
Response
{
  "data": {
    "AppLeaderboard": [
      {
        "firstSeen": 123,
        "id": "xyz789",
        "isVerified": true,
        "lastSeen": 123,
        "liveInstalls": bigint,
        "liveProfiles": bigint,
        "profile": Profile,
        "profile_id": "xyz789",
        "totalEngagementBlocks": bigint,
        "uuid": "xyz789"
      }
    ]
  }
}

AppLeaderboard_aggregate

Description

fetch aggregated fields from the table: "AppLeaderboard"

Response

Returns an AppLeaderboard_aggregate!

Arguments
Name Description
distinct_on - [AppLeaderboard_select_column!] distinct select on columns
limit - Int limit the number of rows returned
offset - Int skip the first n rows. Use only with order_by
order_by - [AppLeaderboard_order_by!] sort the rows by one or more columns
where - AppLeaderboard_bool_exp filter the rows returned

Example

Query
subscription AppLeaderboard_aggregate(
  $distinct_on: [AppLeaderboard_select_column!],
  $limit: Int,
  $offset: Int,
  $order_by: [AppLeaderboard_order_by!],
  $where: AppLeaderboard_bool_exp
) {
  AppLeaderboard_aggregate(
    distinct_on: $distinct_on,
    limit: $limit,
    offset: $offset,
    order_by: $order_by,
    where: $where
  ) {
    aggregate {
      ...AppLeaderboard_aggregate_fieldsFragment
    }
    nodes {
      ...AppLeaderboardFragment
    }
  }
}
Variables
{
  "distinct_on": ["firstSeen"],
  "limit": 123,
  "offset": 987,
  "order_by": [AppLeaderboard_order_by],
  "where": AppLeaderboard_bool_exp
}
Response
{
  "data": {
    "AppLeaderboard_aggregate": {
      "aggregate": AppLeaderboard_aggregate_fields,
      "nodes": [AppLeaderboard]
    }
  }
}

AppLeaderboard_stream

Description

fetch data from the table in a streaming manner: "AppLeaderboard"

Response

Returns [AppLeaderboard!]!

Arguments
Name Description
batch_size - Int! maximum number of rows returned in a single batch
cursor - [AppLeaderboard_stream_cursor_input]! cursor to stream the results returned by the query
where - AppLeaderboard_bool_exp filter the rows returned

Example

Query
subscription AppLeaderboard_stream(
  $batch_size: Int!,
  $cursor: [AppLeaderboard_stream_cursor_input]!,
  $where: AppLeaderboard_bool_exp
) {
  AppLeaderboard_stream(
    batch_size: $batch_size,
    cursor: $cursor,
    where: $where
  ) {
    firstSeen
    id
    isVerified
    lastSeen
    liveInstalls
    liveProfiles
    profile {
      ...ProfileFragment
    }
    profile_id
    totalEngagementBlocks
    uuid
  }
}
Variables
{
  "batch_size": 123,
  "cursor": [AppLeaderboard_stream_cursor_input],
  "where": AppLeaderboard_bool_exp
}
Response
{
  "data": {
    "AppLeaderboard_stream": [
      {
        "firstSeen": 987,
        "id": "xyz789",
        "isVerified": true,
        "lastSeen": 123,
        "liveInstalls": bigint,
        "liveProfiles": bigint,
        "profile": Profile,
        "profile_id": "xyz789",
        "totalEngagementBlocks": bigint,
        "uuid": "xyz789"
      }
    ]
  }
}

App_aggregate

Description

fetch aggregated fields from the table: "App"

Response

Returns an App_aggregate!

Arguments
Name Description
distinct_on - [App_select_column!] distinct select on columns
limit - Int limit the number of rows returned
offset - Int skip the first n rows. Use only with order_by
order_by - [App_order_by!] sort the rows by one or more columns
where - App_bool_exp filter the rows returned

Example

Query
subscription App_aggregate(
  $distinct_on: [App_select_column!],
  $limit: Int,
  $offset: Int,
  $order_by: [App_order_by!],
  $where: App_bool_exp
) {
  App_aggregate(
    distinct_on: $distinct_on,
    limit: $limit,
    offset: $offset,
    order_by: $order_by,
    where: $where
  ) {
    aggregate {
      ...App_aggregate_fieldsFragment
    }
    nodes {
      ...AppFragment
    }
  }
}
Variables
{
  "distinct_on": ["claimedAtBlock"],
  "limit": 987,
  "offset": 987,
  "order_by": [App_order_by],
  "where": App_bool_exp
}
Response
{
  "data": {
    "App_aggregate": {
      "aggregate": App_aggregate_fields,
      "nodes": [App]
    }
  }
}

App_by_pk

Description

fetch data from the table: "App" using primary key columns

Response

Returns an App

Arguments
Name Description
id - String! Domain name (e.g. jup.ag, universalswaps.io)

Example

Query
subscription App_by_pk($id: String!) {
  App_by_pk(id: $id) {
    claimedAtBlock
    claimedAtTime
    contributors {
      ...AppContributorFragment
    }
    contributors_aggregate {
      ...AppContributor_aggregateFragment
    }
    events {
      ...AppInstallEventFragment
    }
    events_aggregate {
      ...AppInstallEvent_aggregateFragment
    }
    firstSeen
    history {
      ...AppHistoryFragment
    }
    history_aggregate {
      ...AppHistory_aggregateFragment
    }
    id
    installCount
    installs {
      ...AppInstallFragment
    }
    installs_aggregate {
      ...AppInstall_aggregateFragment
    }
    isVerified
    lastSeen
    profile {
      ...ProfileFragment
    }
    profile_id
    uuid
    verifiableUriHash
    verifiableUriUrl
    verifiedAtBlock
    verifiedAtTime
  }
}
Variables
{"id": "abc123"}
Response
{
  "data": {
    "App_by_pk": {
      "claimedAtBlock": 123,
      "claimedAtTime": 123,
      "contributors": [AppContributor],
      "contributors_aggregate": AppContributor_aggregate,
      "events": [AppInstallEvent],
      "events_aggregate": AppInstallEvent_aggregate,
      "firstSeen": 987,
      "history": [AppHistory],
      "history_aggregate": AppHistory_aggregate,
      "id": "abc123",
      "installCount": 123,
      "installs": [AppInstall],
      "installs_aggregate": AppInstall_aggregate,
      "isVerified": false,
      "lastSeen": 987,
      "profile": Profile,
      "profile_id": "abc123",
      "uuid": "abc123",
      "verifiableUriHash": "xyz789",
      "verifiableUriUrl": "xyz789",
      "verifiedAtBlock": 987,
      "verifiedAtTime": 987
    }
  }
}

App_stream

Description

fetch data from the table in a streaming manner: "App"

Response

Returns [App!]!

Arguments
Name Description
batch_size - Int! maximum number of rows returned in a single batch
cursor - [App_stream_cursor_input]! cursor to stream the results returned by the query
where - App_bool_exp filter the rows returned

Example

Query
subscription App_stream(
  $batch_size: Int!,
  $cursor: [App_stream_cursor_input]!,
  $where: App_bool_exp
) {
  App_stream(
    batch_size: $batch_size,
    cursor: $cursor,
    where: $where
  ) {
    claimedAtBlock
    claimedAtTime
    contributors {
      ...AppContributorFragment
    }
    contributors_aggregate {
      ...AppContributor_aggregateFragment
    }
    events {
      ...AppInstallEventFragment
    }
    events_aggregate {
      ...AppInstallEvent_aggregateFragment
    }
    firstSeen
    history {
      ...AppHistoryFragment
    }
    history_aggregate {
      ...AppHistory_aggregateFragment
    }
    id
    installCount
    installs {
      ...AppInstallFragment
    }
    installs_aggregate {
      ...AppInstall_aggregateFragment
    }
    isVerified
    lastSeen
    profile {
      ...ProfileFragment
    }
    profile_id
    uuid
    verifiableUriHash
    verifiableUriUrl
    verifiedAtBlock
    verifiedAtTime
  }
}
Variables
{
  "batch_size": 123,
  "cursor": [App_stream_cursor_input],
  "where": App_bool_exp
}
Response
{
  "data": {
    "App_stream": [
      {
        "claimedAtBlock": 123,
        "claimedAtTime": 987,
        "contributors": [AppContributor],
        "contributors_aggregate": AppContributor_aggregate,
        "events": [AppInstallEvent],
        "events_aggregate": AppInstallEvent_aggregate,
        "firstSeen": 123,
        "history": [AppHistory],
        "history_aggregate": AppHistory_aggregate,
        "id": "abc123",
        "installCount": 123,
        "installs": [AppInstall],
        "installs_aggregate": AppInstall_aggregate,
        "isVerified": false,
        "lastSeen": 123,
        "profile": Profile,
        "profile_id": "xyz789",
        "uuid": "xyz789",
        "verifiableUriHash": "abc123",
        "verifiableUriUrl": "abc123",
        "verifiedAtBlock": 123,
        "verifiedAtTime": 987
      }
    ]
  }
}

Asset

Description

fetch data from the table: "Asset"

Response

Returns [Asset!]!

Arguments
Name Description
distinct_on - [Asset_select_column!] distinct select on columns
limit - Int limit the number of rows returned
offset - Int skip the first n rows. Use only with order_by
order_by - [Asset_order_by!] sort the rows by one or more columns
where - Asset_bool_exp filter the rows returned

Example

Query
subscription Asset(
  $distinct_on: [Asset_select_column!],
  $limit: Int,
  $offset: Int,
  $order_by: [Asset_order_by!],
  $where: Asset_bool_exp
) {
  Asset(
    distinct_on: $distinct_on,
    limit: $limit,
    offset: $offset,
    order_by: $order_by,
    where: $where
  ) {
    appHistory {
      ...AppHistoryFragment
    }
    appHistory_aggregate {
      ...AppHistory_aggregateFragment
    }
    appInstalls {
      ...AppInstallFragment
    }
    appInstalls_aggregate {
      ...AppInstall_aggregateFragment
    }
    assets {
      ...AssetAssetURLFragment
    }
    assets_
    assets_aggregate {
      ...AssetAssetURL_aggregateFragment
    }
    attributes {
      ...AssetAttributeFragment
    }
    attributes_
    attributes_aggregate {
      ...AssetAttribute_aggregateFragment
    }
    backgroundImages {
      ...AssetBackgroundImageURLFragment
    }
    backgroundImages_
    baseHolders {
      ...HoldFragment
    }
    baseHolders_aggregate {
      ...Hold_aggregateFragment
    }
    blockNumber
    category
    createdBlockNumber
    createdTimestamp
    createdTransactionIndex
    data
    db_write_timestamp
    decimals
    description
    error
    holders {
      ...HoldFragment
    }
    holders_aggregate {
      ...Hold_aggregateFragment
    }
    icons {
      ...AssetIconURLFragment
    }
    icons_
    icons_aggregate {
      ...AssetIconURL_aggregateFragment
    }
    id
    images {
      ...AssetImageURLFragment
    }
    images_
    images_aggregate {
      ...AssetImageURL_aggregateFragment
    }
    interfaces
    isCollection
    isLSP7
    isUnknown
    links {
      ...AssetLinkFragment
    }
    links_
    links_aggregate {
      ...AssetLink_aggregateFragment
    }
    lsp4Creators {
      ...AssetCreatorsFragment
    }
    lsp4CreatorsMap {
      ...AssetCreatorsFragment
    }
    lsp4CreatorsMap_aggregate {
      ...AssetCreators_aggregateFragment
    }
    lsp4Creators_
    lsp4Creators_aggregate {
      ...AssetCreators_aggregateFragment
    }
    lsp4TokenName
    lsp4TokenSymbol
    lsp4TokenType
    lsp8ReferenceContract {
      ...AssetFragment
    }
    lsp8ReferenceContractSelf
    lsp8ReferenceContract_id
    lsp8TokenIdFormat
    lsp8TokenMetadataBaseUri
    method
    name
    owner {
      ...ProfileFragment
    }
    owner_id
    src
    standard
    supportedStandardsLsp4DigitalAsset
    tokens {
      ...TokenFragment
    }
    tokens_aggregate {
      ...Token_aggregateFragment
    }
    totalSupply
    transfers {
      ...TransferFragment
    }
    transfers_aggregate {
      ...Transfer_aggregateFragment
    }
    updatedBlockNumber
    updatedTimestamp
    updatedTransactionIndex
    url
  }
}
Variables
{
  "distinct_on": ["assets_"],
  "limit": 123,
  "offset": 987,
  "order_by": [Asset_order_by],
  "where": Asset_bool_exp
}
Response
{
  "data": {
    "Asset": [
      {
        "appHistory": [AppHistory],
        "appHistory_aggregate": AppHistory_aggregate,
        "appInstalls": [AppInstall],
        "appInstalls_aggregate": AppInstall_aggregate,
        "assets": [AssetAssetURL],
        "assets_": ["abc123"],
        "assets_aggregate": AssetAssetURL_aggregate,
        "attributes": [AssetAttribute],
        "attributes_": ["abc123"],
        "attributes_aggregate": AssetAttribute_aggregate,
        "backgroundImages": [AssetBackgroundImageURL],
        "backgroundImages_": ["xyz789"],
        "baseHolders": [Hold],
        "baseHolders_aggregate": Hold_aggregate,
        "blockNumber": 123,
        "category": "xyz789",
        "createdBlockNumber": 987,
        "createdTimestamp": 987,
        "createdTransactionIndex": 987,
        "data": "xyz789",
        "db_write_timestamp": timestamp,
        "decimals": 123,
        "description": "xyz789",
        "error": "xyz789",
        "holders": [Hold],
        "holders_aggregate": Hold_aggregate,
        "icons": [AssetIconURL],
        "icons_": ["xyz789"],
        "icons_aggregate": AssetIconURL_aggregate,
        "id": "abc123",
        "images": [AssetImageURL],
        "images_": ["xyz789"],
        "images_aggregate": AssetImageURL_aggregate,
        "interfaces": ["abc123"],
        "isCollection": false,
        "isLSP7": true,
        "isUnknown": false,
        "links": [AssetLink],
        "links_": ["abc123"],
        "links_aggregate": AssetLink_aggregate,
        "lsp4Creators": [AssetCreators],
        "lsp4CreatorsMap": [AssetCreators],
        "lsp4CreatorsMap_aggregate": AssetCreators_aggregate,
        "lsp4Creators_": ["abc123"],
        "lsp4Creators_aggregate": AssetCreators_aggregate,
        "lsp4TokenName": "abc123",
        "lsp4TokenSymbol": "abc123",
        "lsp4TokenType": 123,
        "lsp8ReferenceContract": Asset,
        "lsp8ReferenceContractSelf": "abc123",
        "lsp8ReferenceContract_id": "abc123",
        "lsp8TokenIdFormat": 123,
        "lsp8TokenMetadataBaseUri": "abc123",
        "method": "xyz789",
        "name": "xyz789",
        "owner": Profile,
        "owner_id": "abc123",
        "src": "xyz789",
        "standard": standards,
        "supportedStandardsLsp4DigitalAsset": false,
        "tokens": [Token],
        "tokens_aggregate": Token_aggregate,
        "totalSupply": numeric,
        "transfers": [Transfer],
        "transfers_aggregate": Transfer_aggregate,
        "updatedBlockNumber": 123,
        "updatedTimestamp": 987,
        "updatedTransactionIndex": 987,
        "url": "abc123"
      }
    ]
  }
}

AssetAssetURL

Description

fetch data from the table: "AssetAssetURL"

Response

Returns [AssetAssetURL!]!

Arguments
Name Description
distinct_on - [AssetAssetURL_select_column!] distinct select on columns
limit - Int limit the number of rows returned
offset - Int skip the first n rows. Use only with order_by
order_by - [AssetAssetURL_order_by!] sort the rows by one or more columns
where - AssetAssetURL_bool_exp filter the rows returned

Example

Query
subscription AssetAssetURL(
  $distinct_on: [AssetAssetURL_select_column!],
  $limit: Int,
  $offset: Int,
  $order_by: [AssetAssetURL_order_by!],
  $where: AssetAssetURL_bool_exp
) {
  AssetAssetURL(
    distinct_on: $distinct_on,
    limit: $limit,
    offset: $offset,
    order_by: $order_by,
    where: $where
  ) {
    asset {
      ...AssetFragment
    }
    asset_id
    blockNumber
    contentAsset {
      ...AssetFragment
    }
    contentAsset_id
    contentToken {
      ...TokenFragment
    }
    contentToken_id
    data
    db_write_timestamp
    error
    fileType
    height
    id
    method
    src
    url
    verified
    width
  }
}
Variables
{
  "distinct_on": ["asset_id"],
  "limit": 987,
  "offset": 123,
  "order_by": [AssetAssetURL_order_by],
  "where": AssetAssetURL_bool_exp
}
Response
{
  "data": {
    "AssetAssetURL": [
      {
        "asset": Asset,
        "asset_id": "abc123",
        "blockNumber": 123,
        "contentAsset": Asset,
        "contentAsset_id": "abc123",
        "contentToken": Token,
        "contentToken_id": "abc123",
        "data": "xyz789",
        "db_write_timestamp": timestamp,
        "error": "abc123",
        "fileType": "xyz789",
        "height": 987,
        "id": "xyz789",
        "method": "abc123",
        "src": "abc123",
        "url": "abc123",
        "verified": verificationstatus,
        "width": 987
      }
    ]
  }
}

AssetAssetURL_aggregate

Description

fetch aggregated fields from the table: "AssetAssetURL"

Response

Returns an AssetAssetURL_aggregate!

Arguments
Name Description
distinct_on - [AssetAssetURL_select_column!] distinct select on columns
limit - Int limit the number of rows returned
offset - Int skip the first n rows. Use only with order_by
order_by - [AssetAssetURL_order_by!] sort the rows by one or more columns
where - AssetAssetURL_bool_exp filter the rows returned

Example

Query
subscription AssetAssetURL_aggregate(
  $distinct_on: [AssetAssetURL_select_column!],
  $limit: Int,
  $offset: Int,
  $order_by: [AssetAssetURL_order_by!],
  $where: AssetAssetURL_bool_exp
) {
  AssetAssetURL_aggregate(
    distinct_on: $distinct_on,
    limit: $limit,
    offset: $offset,
    order_by: $order_by,
    where: $where
  ) {
    aggregate {
      ...AssetAssetURL_aggregate_fieldsFragment
    }
    nodes {
      ...AssetAssetURLFragment
    }
  }
}
Variables
{
  "distinct_on": ["asset_id"],
  "limit": 123,
  "offset": 123,
  "order_by": [AssetAssetURL_order_by],
  "where": AssetAssetURL_bool_exp
}
Response
{
  "data": {
    "AssetAssetURL_aggregate": {
      "aggregate": AssetAssetURL_aggregate_fields,
      "nodes": [AssetAssetURL]
    }
  }
}

AssetAssetURL_by_pk

Description

fetch data from the table: "AssetAssetURL" using primary key columns

Response

Returns an AssetAssetURL

Arguments
Name Description
id - String!

Example

Query
subscription AssetAssetURL_by_pk($id: String!) {
  AssetAssetURL_by_pk(id: $id) {
    asset {
      ...AssetFragment
    }
    asset_id
    blockNumber
    contentAsset {
      ...AssetFragment
    }
    contentAsset_id
    contentToken {
      ...TokenFragment
    }
    contentToken_id
    data
    db_write_timestamp
    error
    fileType
    height
    id
    method
    src
    url
    verified
    width
  }
}
Variables
{"id": "abc123"}
Response
{
  "data": {
    "AssetAssetURL_by_pk": {
      "asset": Asset,
      "asset_id": "abc123",
      "blockNumber": 987,
      "contentAsset": Asset,
      "contentAsset_id": "abc123",
      "contentToken": Token,
      "contentToken_id": "xyz789",
      "data": "xyz789",
      "db_write_timestamp": timestamp,
      "error": "abc123",
      "fileType": "xyz789",
      "height": 123,
      "id": "xyz789",
      "method": "xyz789",
      "src": "xyz789",
      "url": "xyz789",
      "verified": verificationstatus,
      "width": 987
    }
  }
}

AssetAssetURL_stream

Description

fetch data from the table in a streaming manner: "AssetAssetURL"

Response

Returns [AssetAssetURL!]!

Arguments
Name Description
batch_size - Int! maximum number of rows returned in a single batch
cursor - [AssetAssetURL_stream_cursor_input]! cursor to stream the results returned by the query
where - AssetAssetURL_bool_exp filter the rows returned

Example

Query
subscription AssetAssetURL_stream(
  $batch_size: Int!,
  $cursor: [AssetAssetURL_stream_cursor_input]!,
  $where: AssetAssetURL_bool_exp
) {
  AssetAssetURL_stream(
    batch_size: $batch_size,
    cursor: $cursor,
    where: $where
  ) {
    asset {
      ...AssetFragment
    }
    asset_id
    blockNumber
    contentAsset {
      ...AssetFragment
    }
    contentAsset_id
    contentToken {
      ...TokenFragment
    }
    contentToken_id
    data
    db_write_timestamp
    error
    fileType
    height
    id
    method
    src
    url
    verified
    width
  }
}
Variables
{
  "batch_size": 987,
  "cursor": [AssetAssetURL_stream_cursor_input],
  "where": AssetAssetURL_bool_exp
}
Response
{
  "data": {
    "AssetAssetURL_stream": [
      {
        "asset": Asset,
        "asset_id": "abc123",
        "blockNumber": 123,
        "contentAsset": Asset,
        "contentAsset_id": "abc123",
        "contentToken": Token,
        "contentToken_id": "xyz789",
        "data": "abc123",
        "db_write_timestamp": timestamp,
        "error": "xyz789",
        "fileType": "abc123",
        "height": 123,
        "id": "abc123",
        "method": "xyz789",
        "src": "xyz789",
        "url": "abc123",
        "verified": verificationstatus,
        "width": 123
      }
    ]
  }
}

AssetAttribute

Description

fetch data from the table: "AssetAttribute"

Response

Returns [AssetAttribute!]!

Arguments
Name Description
distinct_on - [AssetAttribute_select_column!] distinct select on columns
limit - Int limit the number of rows returned
offset - Int skip the first n rows. Use only with order_by
order_by - [AssetAttribute_order_by!] sort the rows by one or more columns
where - AssetAttribute_bool_exp filter the rows returned

Example

Query
subscription AssetAttribute(
  $distinct_on: [AssetAttribute_select_column!],
  $limit: Int,
  $offset: Int,
  $order_by: [AssetAttribute_order_by!],
  $where: AssetAttribute_bool_exp
) {
  AssetAttribute(
    distinct_on: $distinct_on,
    limit: $limit,
    offset: $offset,
    order_by: $order_by,
    where: $where
  ) {
    asset {
      ...AssetFragment
    }
    asset_id
    attributeType
    blockNumber
    db_write_timestamp
    id
    key
    value
  }
}
Variables
{
  "distinct_on": ["asset_id"],
  "limit": 123,
  "offset": 987,
  "order_by": [AssetAttribute_order_by],
  "where": AssetAttribute_bool_exp
}
Response
{
  "data": {
    "AssetAttribute": [
      {
        "asset": Asset,
        "asset_id": "abc123",
        "attributeType": "abc123",
        "blockNumber": 123,
        "db_write_timestamp": timestamp,
        "id": "abc123",
        "key": "abc123",
        "value": "xyz789"
      }
    ]
  }
}

AssetAttribute_aggregate

Description

fetch aggregated fields from the table: "AssetAttribute"

Response

Returns an AssetAttribute_aggregate!

Arguments
Name Description
distinct_on - [AssetAttribute_select_column!] distinct select on columns
limit - Int limit the number of rows returned
offset - Int skip the first n rows. Use only with order_by
order_by - [AssetAttribute_order_by!] sort the rows by one or more columns
where - AssetAttribute_bool_exp filter the rows returned

Example

Query
subscription AssetAttribute_aggregate(
  $distinct_on: [AssetAttribute_select_column!],
  $limit: Int,
  $offset: Int,
  $order_by: [AssetAttribute_order_by!],
  $where: AssetAttribute_bool_exp
) {
  AssetAttribute_aggregate(
    distinct_on: $distinct_on,
    limit: $limit,
    offset: $offset,
    order_by: $order_by,
    where: $where
  ) {
    aggregate {
      ...AssetAttribute_aggregate_fieldsFragment
    }
    nodes {
      ...AssetAttributeFragment
    }
  }
}
Variables
{
  "distinct_on": ["asset_id"],
  "limit": 123,
  "offset": 123,
  "order_by": [AssetAttribute_order_by],
  "where": AssetAttribute_bool_exp
}
Response
{
  "data": {
    "AssetAttribute_aggregate": {
      "aggregate": AssetAttribute_aggregate_fields,
      "nodes": [AssetAttribute]
    }
  }
}

AssetAttribute_by_pk

Description

fetch data from the table: "AssetAttribute" using primary key columns

Response

Returns an AssetAttribute

Arguments
Name Description
id - String!

Example

Query
subscription AssetAttribute_by_pk($id: String!) {
  AssetAttribute_by_pk(id: $id) {
    asset {
      ...AssetFragment
    }
    asset_id
    attributeType
    blockNumber
    db_write_timestamp
    id
    key
    value
  }
}
Variables
{"id": "abc123"}
Response
{
  "data": {
    "AssetAttribute_by_pk": {
      "asset": Asset,
      "asset_id": "xyz789",
      "attributeType": "xyz789",
      "blockNumber": 123,
      "db_write_timestamp": timestamp,
      "id": "abc123",
      "key": "abc123",
      "value": "abc123"
    }
  }
}

AssetAttribute_stream

Description

fetch data from the table in a streaming manner: "AssetAttribute"

Response

Returns [AssetAttribute!]!

Arguments
Name Description
batch_size - Int! maximum number of rows returned in a single batch
cursor - [AssetAttribute_stream_cursor_input]! cursor to stream the results returned by the query
where - AssetAttribute_bool_exp filter the rows returned

Example

Query
subscription AssetAttribute_stream(
  $batch_size: Int!,
  $cursor: [AssetAttribute_stream_cursor_input]!,
  $where: AssetAttribute_bool_exp
) {
  AssetAttribute_stream(
    batch_size: $batch_size,
    cursor: $cursor,
    where: $where
  ) {
    asset {
      ...AssetFragment
    }
    asset_id
    attributeType
    blockNumber
    db_write_timestamp
    id
    key
    value
  }
}
Variables
{
  "batch_size": 123,
  "cursor": [AssetAttribute_stream_cursor_input],
  "where": AssetAttribute_bool_exp
}
Response
{
  "data": {
    "AssetAttribute_stream": [
      {
        "asset": Asset,
        "asset_id": "xyz789",
        "attributeType": "abc123",
        "blockNumber": 123,
        "db_write_timestamp": timestamp,
        "id": "xyz789",
        "key": "abc123",
        "value": "abc123"
      }
    ]
  }
}

AssetBackgroundImageURL

Description

fetch data from the table: "AssetBackgroundImageURL"

Response

Returns [AssetBackgroundImageURL!]!

Arguments
Name Description
distinct_on - [AssetBackgroundImageURL_select_column!] distinct select on columns
limit - Int limit the number of rows returned
offset - Int skip the first n rows. Use only with order_by
order_by - [AssetBackgroundImageURL_order_by!] sort the rows by one or more columns
where - AssetBackgroundImageURL_bool_exp filter the rows returned

Example

Query
subscription AssetBackgroundImageURL(
  $distinct_on: [AssetBackgroundImageURL_select_column!],
  $limit: Int,
  $offset: Int,
  $order_by: [AssetBackgroundImageURL_order_by!],
  $where: AssetBackgroundImageURL_bool_exp
) {
  AssetBackgroundImageURL(
    distinct_on: $distinct_on,
    limit: $limit,
    offset: $offset,
    order_by: $order_by,
    where: $where
  ) {
    asset_id
    blockNumber
    data
    db_write_timestamp
    error
    fileType
    height
    id
    index
    method
    src
    url
    verified
    width
  }
}
Variables
{
  "distinct_on": ["asset_id"],
  "limit": 123,
  "offset": 123,
  "order_by": [AssetBackgroundImageURL_order_by],
  "where": AssetBackgroundImageURL_bool_exp
}
Response
{
  "data": {
    "AssetBackgroundImageURL": [
      {
        "asset_id": "abc123",
        "blockNumber": 987,
        "data": "abc123",
        "db_write_timestamp": timestamp,
        "error": "xyz789",
        "fileType": "xyz789",
        "height": 123,
        "id": "xyz789",
        "index": 123,
        "method": "xyz789",
        "src": "abc123",
        "url": "xyz789",
        "verified": verificationstatus,
        "width": 123
      }
    ]
  }
}

AssetBackgroundImageURL_by_pk

Description

fetch data from the table: "AssetBackgroundImageURL" using primary key columns

Response

Returns an AssetBackgroundImageURL

Arguments
Name Description
id - String!

Example

Query
subscription AssetBackgroundImageURL_by_pk($id: String!) {
  AssetBackgroundImageURL_by_pk(id: $id) {
    asset_id
    blockNumber
    data
    db_write_timestamp
    error
    fileType
    height
    id
    index
    method
    src
    url
    verified
    width
  }
}
Variables
{"id": "abc123"}
Response
{
  "data": {
    "AssetBackgroundImageURL_by_pk": {
      "asset_id": "xyz789",
      "blockNumber": 123,
      "data": "xyz789",
      "db_write_timestamp": timestamp,
      "error": "xyz789",
      "fileType": "abc123",
      "height": 123,
      "id": "xyz789",
      "index": 987,
      "method": "abc123",
      "src": "xyz789",
      "url": "xyz789",
      "verified": verificationstatus,
      "width": 987
    }
  }
}

AssetBackgroundImageURL_stream

Description

fetch data from the table in a streaming manner: "AssetBackgroundImageURL"

Response

Returns [AssetBackgroundImageURL!]!

Arguments
Name Description
batch_size - Int! maximum number of rows returned in a single batch
cursor - [AssetBackgroundImageURL_stream_cursor_input]! cursor to stream the results returned by the query
where - AssetBackgroundImageURL_bool_exp filter the rows returned

Example

Query
subscription AssetBackgroundImageURL_stream(
  $batch_size: Int!,
  $cursor: [AssetBackgroundImageURL_stream_cursor_input]!,
  $where: AssetBackgroundImageURL_bool_exp
) {
  AssetBackgroundImageURL_stream(
    batch_size: $batch_size,
    cursor: $cursor,
    where: $where
  ) {
    asset_id
    blockNumber
    data
    db_write_timestamp
    error
    fileType
    height
    id
    index
    method
    src
    url
    verified
    width
  }
}
Variables
{
  "batch_size": 123,
  "cursor": [AssetBackgroundImageURL_stream_cursor_input],
  "where": AssetBackgroundImageURL_bool_exp
}
Response
{
  "data": {
    "AssetBackgroundImageURL_stream": [
      {
        "asset_id": "abc123",
        "blockNumber": 123,
        "data": "abc123",
        "db_write_timestamp": timestamp,
        "error": "abc123",
        "fileType": "xyz789",
        "height": 987,
        "id": "xyz789",
        "index": 123,
        "method": "xyz789",
        "src": "abc123",
        "url": "abc123",
        "verified": verificationstatus,
        "width": 987
      }
    ]
  }
}

AssetCreators

Description

fetch data from the table: "AssetCreators"

Response

Returns [AssetCreators!]!

Arguments
Name Description
distinct_on - [AssetCreators_select_column!] distinct select on columns
limit - Int limit the number of rows returned
offset - Int skip the first n rows. Use only with order_by
order_by - [AssetCreators_order_by!] sort the rows by one or more columns
where - AssetCreators_bool_exp filter the rows returned

Example

Query
subscription AssetCreators(
  $distinct_on: [AssetCreators_select_column!],
  $limit: Int,
  $offset: Int,
  $order_by: [AssetCreators_order_by!],
  $where: AssetCreators_bool_exp
) {
  AssetCreators(
    distinct_on: $distinct_on,
    limit: $limit,
    offset: $offset,
    order_by: $order_by,
    where: $where
  ) {
    asset {
      ...AssetFragment
    }
    asset_id
    blockNumber
    db_write_timestamp
    id
    index
    interfaceId
    profile {
      ...ProfileFragment
    }
    profile_id
  }
}
Variables
{
  "distinct_on": ["asset_id"],
  "limit": 987,
  "offset": 987,
  "order_by": [AssetCreators_order_by],
  "where": AssetCreators_bool_exp
}
Response
{
  "data": {
    "AssetCreators": [
      {
        "asset": Asset,
        "asset_id": "abc123",
        "blockNumber": 123,
        "db_write_timestamp": timestamp,
        "id": "abc123",
        "index": 987,
        "interfaceId": "xyz789",
        "profile": Profile,
        "profile_id": "abc123"
      }
    ]
  }
}

AssetCreators_aggregate

Description

fetch aggregated fields from the table: "AssetCreators"

Response

Returns an AssetCreators_aggregate!

Arguments
Name Description
distinct_on - [AssetCreators_select_column!] distinct select on columns
limit - Int limit the number of rows returned
offset - Int skip the first n rows. Use only with order_by
order_by - [AssetCreators_order_by!] sort the rows by one or more columns
where - AssetCreators_bool_exp filter the rows returned

Example

Query
subscription AssetCreators_aggregate(
  $distinct_on: [AssetCreators_select_column!],
  $limit: Int,
  $offset: Int,
  $order_by: [AssetCreators_order_by!],
  $where: AssetCreators_bool_exp
) {
  AssetCreators_aggregate(
    distinct_on: $distinct_on,
    limit: $limit,
    offset: $offset,
    order_by: $order_by,
    where: $where
  ) {
    aggregate {
      ...AssetCreators_aggregate_fieldsFragment
    }
    nodes {
      ...AssetCreatorsFragment
    }
  }
}
Variables
{
  "distinct_on": ["asset_id"],
  "limit": 987,
  "offset": 987,
  "order_by": [AssetCreators_order_by],
  "where": AssetCreators_bool_exp
}
Response
{
  "data": {
    "AssetCreators_aggregate": {
      "aggregate": AssetCreators_aggregate_fields,
      "nodes": [AssetCreators]
    }
  }
}

AssetCreators_by_pk

Description

fetch data from the table: "AssetCreators" using primary key columns

Response

Returns an AssetCreators

Arguments
Name Description
id - String!

Example

Query
subscription AssetCreators_by_pk($id: String!) {
  AssetCreators_by_pk(id: $id) {
    asset {
      ...AssetFragment
    }
    asset_id
    blockNumber
    db_write_timestamp
    id
    index
    interfaceId
    profile {
      ...ProfileFragment
    }
    profile_id
  }
}
Variables
{"id": "abc123"}
Response
{
  "data": {
    "AssetCreators_by_pk": {
      "asset": Asset,
      "asset_id": "abc123",
      "blockNumber": 987,
      "db_write_timestamp": timestamp,
      "id": "abc123",
      "index": 987,
      "interfaceId": "abc123",
      "profile": Profile,
      "profile_id": "xyz789"
    }
  }
}

AssetCreators_stream

Description

fetch data from the table in a streaming manner: "AssetCreators"

Response

Returns [AssetCreators!]!

Arguments
Name Description
batch_size - Int! maximum number of rows returned in a single batch
cursor - [AssetCreators_stream_cursor_input]! cursor to stream the results returned by the query
where - AssetCreators_bool_exp filter the rows returned

Example

Query
subscription AssetCreators_stream(
  $batch_size: Int!,
  $cursor: [AssetCreators_stream_cursor_input]!,
  $where: AssetCreators_bool_exp
) {
  AssetCreators_stream(
    batch_size: $batch_size,
    cursor: $cursor,
    where: $where
  ) {
    asset {
      ...AssetFragment
    }
    asset_id
    blockNumber
    db_write_timestamp
    id
    index
    interfaceId
    profile {
      ...ProfileFragment
    }
    profile_id
  }
}
Variables
{
  "batch_size": 987,
  "cursor": [AssetCreators_stream_cursor_input],
  "where": AssetCreators_bool_exp
}
Response
{
  "data": {
    "AssetCreators_stream": [
      {
        "asset": Asset,
        "asset_id": "xyz789",
        "blockNumber": 987,
        "db_write_timestamp": timestamp,
        "id": "abc123",
        "index": 987,
        "interfaceId": "xyz789",
        "profile": Profile,
        "profile_id": "abc123"
      }
    ]
  }
}

AssetIconURL

Description

fetch data from the table: "AssetIconURL"

Response

Returns [AssetIconURL!]!

Arguments
Name Description
distinct_on - [AssetIconURL_select_column!] distinct select on columns
limit - Int limit the number of rows returned
offset - Int skip the first n rows. Use only with order_by
order_by - [AssetIconURL_order_by!] sort the rows by one or more columns
where - AssetIconURL_bool_exp filter the rows returned

Example

Query
subscription AssetIconURL(
  $distinct_on: [AssetIconURL_select_column!],
  $limit: Int,
  $offset: Int,
  $order_by: [AssetIconURL_order_by!],
  $where: AssetIconURL_bool_exp
) {
  AssetIconURL(
    distinct_on: $distinct_on,
    limit: $limit,
    offset: $offset,
    order_by: $order_by,
    where: $where
  ) {
    asset {
      ...AssetFragment
    }
    asset_id
    blockNumber
    data
    db_write_timestamp
    error
    fileType
    height
    id
    method
    src
    url
    verified
    width
  }
}
Variables
{
  "distinct_on": ["asset_id"],
  "limit": 987,
  "offset": 123,
  "order_by": [AssetIconURL_order_by],
  "where": AssetIconURL_bool_exp
}
Response
{
  "data": {
    "AssetIconURL": [
      {
        "asset": Asset,
        "asset_id": "xyz789",
        "blockNumber": 123,
        "data": "abc123",
        "db_write_timestamp": timestamp,
        "error": "abc123",
        "fileType": "xyz789",
        "height": 987,
        "id": "abc123",
        "method": "xyz789",
        "src": "xyz789",
        "url": "abc123",
        "verified": verificationstatus,
        "width": 123
      }
    ]
  }
}

AssetIconURL_aggregate

Description

fetch aggregated fields from the table: "AssetIconURL"

Response

Returns an AssetIconURL_aggregate!

Arguments
Name Description
distinct_on - [AssetIconURL_select_column!] distinct select on columns
limit - Int limit the number of rows returned
offset - Int skip the first n rows. Use only with order_by
order_by - [AssetIconURL_order_by!] sort the rows by one or more columns
where - AssetIconURL_bool_exp filter the rows returned

Example

Query
subscription AssetIconURL_aggregate(
  $distinct_on: [AssetIconURL_select_column!],
  $limit: Int,
  $offset: Int,
  $order_by: [AssetIconURL_order_by!],
  $where: AssetIconURL_bool_exp
) {
  AssetIconURL_aggregate(
    distinct_on: $distinct_on,
    limit: $limit,
    offset: $offset,
    order_by: $order_by,
    where: $where
  ) {
    aggregate {
      ...AssetIconURL_aggregate_fieldsFragment
    }
    nodes {
      ...AssetIconURLFragment
    }
  }
}
Variables
{
  "distinct_on": ["asset_id"],
  "limit": 987,
  "offset": 123,
  "order_by": [AssetIconURL_order_by],
  "where": AssetIconURL_bool_exp
}
Response
{
  "data": {
    "AssetIconURL_aggregate": {
      "aggregate": AssetIconURL_aggregate_fields,
      "nodes": [AssetIconURL]
    }
  }
}

AssetIconURL_by_pk

Description

fetch data from the table: "AssetIconURL" using primary key columns

Response

Returns an AssetIconURL

Arguments
Name Description
id - String!

Example

Query
subscription AssetIconURL_by_pk($id: String!) {
  AssetIconURL_by_pk(id: $id) {
    asset {
      ...AssetFragment
    }
    asset_id
    blockNumber
    data
    db_write_timestamp
    error
    fileType
    height
    id
    method
    src
    url
    verified
    width
  }
}
Variables
{"id": "xyz789"}
Response
{
  "data": {
    "AssetIconURL_by_pk": {
      "asset": Asset,
      "asset_id": "abc123",
      "blockNumber": 987,
      "data": "abc123",
      "db_write_timestamp": timestamp,
      "error": "xyz789",
      "fileType": "xyz789",
      "height": 987,
      "id": "abc123",
      "method": "abc123",
      "src": "abc123",
      "url": "xyz789",
      "verified": verificationstatus,
      "width": 123
    }
  }
}

AssetIconURL_stream

Description

fetch data from the table in a streaming manner: "AssetIconURL"

Response

Returns [AssetIconURL!]!

Arguments
Name Description
batch_size - Int! maximum number of rows returned in a single batch
cursor - [AssetIconURL_stream_cursor_input]! cursor to stream the results returned by the query
where - AssetIconURL_bool_exp filter the rows returned

Example

Query
subscription AssetIconURL_stream(
  $batch_size: Int!,
  $cursor: [AssetIconURL_stream_cursor_input]!,
  $where: AssetIconURL_bool_exp
) {
  AssetIconURL_stream(
    batch_size: $batch_size,
    cursor: $cursor,
    where: $where
  ) {
    asset {
      ...AssetFragment
    }
    asset_id
    blockNumber
    data
    db_write_timestamp
    error
    fileType
    height
    id
    method
    src
    url
    verified
    width
  }
}
Variables
{
  "batch_size": 987,
  "cursor": [AssetIconURL_stream_cursor_input],
  "where": AssetIconURL_bool_exp
}
Response
{
  "data": {
    "AssetIconURL_stream": [
      {
        "asset": Asset,
        "asset_id": "abc123",
        "blockNumber": 123,
        "data": "abc123",
        "db_write_timestamp": timestamp,
        "error": "xyz789",
        "fileType": "xyz789",
        "height": 987,
        "id": "abc123",
        "method": "abc123",
        "src": "xyz789",
        "url": "xyz789",
        "verified": verificationstatus,
        "width": 123
      }
    ]
  }
}

AssetImageURL

Description

fetch data from the table: "AssetImageURL"

Response

Returns [AssetImageURL!]!

Arguments
Name Description
distinct_on - [AssetImageURL_select_column!] distinct select on columns
limit - Int limit the number of rows returned
offset - Int skip the first n rows. Use only with order_by
order_by - [AssetImageURL_order_by!] sort the rows by one or more columns
where - AssetImageURL_bool_exp filter the rows returned

Example

Query
subscription AssetImageURL(
  $distinct_on: [AssetImageURL_select_column!],
  $limit: Int,
  $offset: Int,
  $order_by: [AssetImageURL_order_by!],
  $where: AssetImageURL_bool_exp
) {
  AssetImageURL(
    distinct_on: $distinct_on,
    limit: $limit,
    offset: $offset,
    order_by: $order_by,
    where: $where
  ) {
    asset {
      ...AssetFragment
    }
    asset_id
    blockNumber
    data
    db_write_timestamp
    error
    fileType
    height
    id
    index
    method
    src
    url
    verified
    width
  }
}
Variables
{
  "distinct_on": ["asset_id"],
  "limit": 123,
  "offset": 123,
  "order_by": [AssetImageURL_order_by],
  "where": AssetImageURL_bool_exp
}
Response
{
  "data": {
    "AssetImageURL": [
      {
        "asset": Asset,
        "asset_id": "xyz789",
        "blockNumber": 987,
        "data": "xyz789",
        "db_write_timestamp": timestamp,
        "error": "abc123",
        "fileType": "abc123",
        "height": 123,
        "id": "abc123",
        "index": 123,
        "method": "abc123",
        "src": "abc123",
        "url": "xyz789",
        "verified": verificationstatus,
        "width": 987
      }
    ]
  }
}

AssetImageURL_aggregate

Description

fetch aggregated fields from the table: "AssetImageURL"

Response

Returns an AssetImageURL_aggregate!

Arguments
Name Description
distinct_on - [AssetImageURL_select_column!] distinct select on columns
limit - Int limit the number of rows returned
offset - Int skip the first n rows. Use only with order_by
order_by - [AssetImageURL_order_by!] sort the rows by one or more columns
where - AssetImageURL_bool_exp filter the rows returned

Example

Query
subscription AssetImageURL_aggregate(
  $distinct_on: [AssetImageURL_select_column!],
  $limit: Int,
  $offset: Int,
  $order_by: [AssetImageURL_order_by!],
  $where: AssetImageURL_bool_exp
) {
  AssetImageURL_aggregate(
    distinct_on: $distinct_on,
    limit: $limit,
    offset: $offset,
    order_by: $order_by,
    where: $where
  ) {
    aggregate {
      ...AssetImageURL_aggregate_fieldsFragment
    }
    nodes {
      ...AssetImageURLFragment
    }
  }
}
Variables
{
  "distinct_on": ["asset_id"],
  "limit": 123,
  "offset": 987,
  "order_by": [AssetImageURL_order_by],
  "where": AssetImageURL_bool_exp
}
Response
{
  "data": {
    "AssetImageURL_aggregate": {
      "aggregate": AssetImageURL_aggregate_fields,
      "nodes": [AssetImageURL]
    }
  }
}

AssetImageURL_by_pk

Description

fetch data from the table: "AssetImageURL" using primary key columns

Response

Returns an AssetImageURL

Arguments
Name Description
id - String!

Example

Query
subscription AssetImageURL_by_pk($id: String!) {
  AssetImageURL_by_pk(id: $id) {
    asset {
      ...AssetFragment
    }
    asset_id
    blockNumber
    data
    db_write_timestamp
    error
    fileType
    height
    id
    index
    method
    src
    url
    verified
    width
  }
}
Variables
{"id": "abc123"}
Response
{
  "data": {
    "AssetImageURL_by_pk": {
      "asset": Asset,
      "asset_id": "abc123",
      "blockNumber": 987,
      "data": "xyz789",
      "db_write_timestamp": timestamp,
      "error": "abc123",
      "fileType": "abc123",
      "height": 123,
      "id": "xyz789",
      "index": 123,
      "method": "abc123",
      "src": "abc123",
      "url": "abc123",
      "verified": verificationstatus,
      "width": 123
    }
  }
}

AssetImageURL_stream

Description

fetch data from the table in a streaming manner: "AssetImageURL"

Response

Returns [AssetImageURL!]!

Arguments
Name Description
batch_size - Int! maximum number of rows returned in a single batch
cursor - [AssetImageURL_stream_cursor_input]! cursor to stream the results returned by the query
where - AssetImageURL_bool_exp filter the rows returned

Example

Query
subscription AssetImageURL_stream(
  $batch_size: Int!,
  $cursor: [AssetImageURL_stream_cursor_input]!,
  $where: AssetImageURL_bool_exp
) {
  AssetImageURL_stream(
    batch_size: $batch_size,
    cursor: $cursor,
    where: $where
  ) {
    asset {
      ...AssetFragment
    }
    asset_id
    blockNumber
    data
    db_write_timestamp
    error
    fileType
    height
    id
    index
    method
    src
    url
    verified
    width
  }
}
Variables
{
  "batch_size": 123,
  "cursor": [AssetImageURL_stream_cursor_input],
  "where": AssetImageURL_bool_exp
}
Response
{
  "data": {
    "AssetImageURL_stream": [
      {
        "asset": Asset,
        "asset_id": "xyz789",
        "blockNumber": 123,
        "data": "abc123",
        "db_write_timestamp": timestamp,
        "error": "abc123",
        "fileType": "xyz789",
        "height": 123,
        "id": "xyz789",
        "index": 123,
        "method": "abc123",
        "src": "abc123",
        "url": "xyz789",
        "verified": verificationstatus,
        "width": 123
      }
    ]
  }
}

Asset_aggregate

Description

fetch aggregated fields from the table: "Asset"

Response

Returns an Asset_aggregate!

Arguments
Name Description
distinct_on - [Asset_select_column!] distinct select on columns
limit - Int limit the number of rows returned
offset - Int skip the first n rows. Use only with order_by
order_by - [Asset_order_by!] sort the rows by one or more columns
where - Asset_bool_exp filter the rows returned

Example

Query
subscription Asset_aggregate(
  $distinct_on: [Asset_select_column!],
  $limit: Int,
  $offset: Int,
  $order_by: [Asset_order_by!],
  $where: Asset_bool_exp
) {
  Asset_aggregate(
    distinct_on: $distinct_on,
    limit: $limit,
    offset: $offset,
    order_by: $order_by,
    where: $where
  ) {
    aggregate {
      ...Asset_aggregate_fieldsFragment
    }
    nodes {
      ...AssetFragment
    }
  }
}
Variables
{
  "distinct_on": ["assets_"],
  "limit": 987,
  "offset": 987,
  "order_by": [Asset_order_by],
  "where": Asset_bool_exp
}
Response
{
  "data": {
    "Asset_aggregate": {
      "aggregate": Asset_aggregate_fields,
      "nodes": [Asset]
    }
  }
}

Asset_by_pk

Description

fetch data from the table: "Asset" using primary key columns

Response

Returns an Asset

Arguments
Name Description
id - String!

Example

Query
subscription Asset_by_pk($id: String!) {
  Asset_by_pk(id: $id) {
    appHistory {
      ...AppHistoryFragment
    }
    appHistory_aggregate {
      ...AppHistory_aggregateFragment
    }
    appInstalls {
      ...AppInstallFragment
    }
    appInstalls_aggregate {
      ...AppInstall_aggregateFragment
    }
    assets {
      ...AssetAssetURLFragment
    }
    assets_
    assets_aggregate {
      ...AssetAssetURL_aggregateFragment
    }
    attributes {
      ...AssetAttributeFragment
    }
    attributes_
    attributes_aggregate {
      ...AssetAttribute_aggregateFragment
    }
    backgroundImages {
      ...AssetBackgroundImageURLFragment
    }
    backgroundImages_
    baseHolders {
      ...HoldFragment
    }
    baseHolders_aggregate {
      ...Hold_aggregateFragment
    }
    blockNumber
    category
    createdBlockNumber
    createdTimestamp
    createdTransactionIndex
    data
    db_write_timestamp
    decimals
    description
    error
    holders {
      ...HoldFragment
    }
    holders_aggregate {
      ...Hold_aggregateFragment
    }
    icons {
      ...AssetIconURLFragment
    }
    icons_
    icons_aggregate {
      ...AssetIconURL_aggregateFragment
    }
    id
    images {
      ...AssetImageURLFragment
    }
    images_
    images_aggregate {
      ...AssetImageURL_aggregateFragment
    }
    interfaces
    isCollection
    isLSP7
    isUnknown
    links {
      ...AssetLinkFragment
    }
    links_
    links_aggregate {
      ...AssetLink_aggregateFragment
    }
    lsp4Creators {
      ...AssetCreatorsFragment
    }
    lsp4CreatorsMap {
      ...AssetCreatorsFragment
    }
    lsp4CreatorsMap_aggregate {
      ...AssetCreators_aggregateFragment
    }
    lsp4Creators_
    lsp4Creators_aggregate {
      ...AssetCreators_aggregateFragment
    }
    lsp4TokenName
    lsp4TokenSymbol
    lsp4TokenType
    lsp8ReferenceContract {
      ...AssetFragment
    }
    lsp8ReferenceContractSelf
    lsp8ReferenceContract_id
    lsp8TokenIdFormat
    lsp8TokenMetadataBaseUri
    method
    name
    owner {
      ...ProfileFragment
    }
    owner_id
    src
    standard
    supportedStandardsLsp4DigitalAsset
    tokens {
      ...TokenFragment
    }
    tokens_aggregate {
      ...Token_aggregateFragment
    }
    totalSupply
    transfers {
      ...TransferFragment
    }
    transfers_aggregate {
      ...Transfer_aggregateFragment
    }
    updatedBlockNumber
    updatedTimestamp
    updatedTransactionIndex
    url
  }
}
Variables
{"id": "xyz789"}
Response
{
  "data": {
    "Asset_by_pk": {
      "appHistory": [AppHistory],
      "appHistory_aggregate": AppHistory_aggregate,
      "appInstalls": [AppInstall],
      "appInstalls_aggregate": AppInstall_aggregate,
      "assets": [AssetAssetURL],
      "assets_": ["xyz789"],
      "assets_aggregate": AssetAssetURL_aggregate,
      "attributes": [AssetAttribute],
      "attributes_": ["xyz789"],
      "attributes_aggregate": AssetAttribute_aggregate,
      "backgroundImages": [AssetBackgroundImageURL],
      "backgroundImages_": ["xyz789"],
      "baseHolders": [Hold],
      "baseHolders_aggregate": Hold_aggregate,
      "blockNumber": 987,
      "category": "abc123",
      "createdBlockNumber": 123,
      "createdTimestamp": 987,
      "createdTransactionIndex": 987,
      "data": "abc123",
      "db_write_timestamp": timestamp,
      "decimals": 987,
      "description": "abc123",
      "error": "xyz789",
      "holders": [Hold],
      "holders_aggregate": Hold_aggregate,
      "icons": [AssetIconURL],
      "icons_": ["xyz789"],
      "icons_aggregate": AssetIconURL_aggregate,
      "id": "abc123",
      "images": [AssetImageURL],
      "images_": ["abc123"],
      "images_aggregate": AssetImageURL_aggregate,
      "interfaces": ["abc123"],
      "isCollection": false,
      "isLSP7": true,
      "isUnknown": false,
      "links": [AssetLink],
      "links_": ["abc123"],
      "links_aggregate": AssetLink_aggregate,
      "lsp4Creators": [AssetCreators],
      "lsp4CreatorsMap": [AssetCreators],
      "lsp4CreatorsMap_aggregate": AssetCreators_aggregate,
      "lsp4Creators_": ["xyz789"],
      "lsp4Creators_aggregate": AssetCreators_aggregate,
      "lsp4TokenName": "abc123",
      "lsp4TokenSymbol": "xyz789",
      "lsp4TokenType": 123,
      "lsp8ReferenceContract": Asset,
      "lsp8ReferenceContractSelf": "xyz789",
      "lsp8ReferenceContract_id": "abc123",
      "lsp8TokenIdFormat": 987,
      "lsp8TokenMetadataBaseUri": "xyz789",
      "method": "abc123",
      "name": "xyz789",
      "owner": Profile,
      "owner_id": "abc123",
      "src": "abc123",
      "standard": standards,
      "supportedStandardsLsp4DigitalAsset": false,
      "tokens": [Token],
      "tokens_aggregate": Token_aggregate,
      "totalSupply": numeric,
      "transfers": [Transfer],
      "transfers_aggregate": Transfer_aggregate,
      "updatedBlockNumber": 123,
      "updatedTimestamp": 987,
      "updatedTransactionIndex": 123,
      "url": "abc123"
    }
  }
}

Asset_stream

Description

fetch data from the table in a streaming manner: "Asset"

Response

Returns [Asset!]!

Arguments
Name Description
batch_size - Int! maximum number of rows returned in a single batch
cursor - [Asset_stream_cursor_input]! cursor to stream the results returned by the query
where - Asset_bool_exp filter the rows returned

Example

Query
subscription Asset_stream(
  $batch_size: Int!,
  $cursor: [Asset_stream_cursor_input]!,
  $where: Asset_bool_exp
) {
  Asset_stream(
    batch_size: $batch_size,
    cursor: $cursor,
    where: $where
  ) {
    appHistory {
      ...AppHistoryFragment
    }
    appHistory_aggregate {
      ...AppHistory_aggregateFragment
    }
    appInstalls {
      ...AppInstallFragment
    }
    appInstalls_aggregate {
      ...AppInstall_aggregateFragment
    }
    assets {
      ...AssetAssetURLFragment
    }
    assets_
    assets_aggregate {
      ...AssetAssetURL_aggregateFragment
    }
    attributes {
      ...AssetAttributeFragment
    }
    attributes_
    attributes_aggregate {
      ...AssetAttribute_aggregateFragment
    }
    backgroundImages {
      ...AssetBackgroundImageURLFragment
    }
    backgroundImages_
    baseHolders {
      ...HoldFragment
    }
    baseHolders_aggregate {
      ...Hold_aggregateFragment
    }
    blockNumber
    category
    createdBlockNumber
    createdTimestamp
    createdTransactionIndex
    data
    db_write_timestamp
    decimals
    description
    error
    holders {
      ...HoldFragment
    }
    holders_aggregate {
      ...Hold_aggregateFragment
    }
    icons {
      ...AssetIconURLFragment
    }
    icons_
    icons_aggregate {
      ...AssetIconURL_aggregateFragment
    }
    id
    images {
      ...AssetImageURLFragment
    }
    images_
    images_aggregate {
      ...AssetImageURL_aggregateFragment
    }
    interfaces
    isCollection
    isLSP7
    isUnknown
    links {
      ...AssetLinkFragment
    }
    links_
    links_aggregate {
      ...AssetLink_aggregateFragment
    }
    lsp4Creators {
      ...AssetCreatorsFragment
    }
    lsp4CreatorsMap {
      ...AssetCreatorsFragment
    }
    lsp4CreatorsMap_aggregate {
      ...AssetCreators_aggregateFragment
    }
    lsp4Creators_
    lsp4Creators_aggregate {
      ...AssetCreators_aggregateFragment
    }
    lsp4TokenName
    lsp4TokenSymbol
    lsp4TokenType
    lsp8ReferenceContract {
      ...AssetFragment
    }
    lsp8ReferenceContractSelf
    lsp8ReferenceContract_id
    lsp8TokenIdFormat
    lsp8TokenMetadataBaseUri
    method
    name
    owner {
      ...ProfileFragment
    }
    owner_id
    src
    standard
    supportedStandardsLsp4DigitalAsset
    tokens {
      ...TokenFragment
    }
    tokens_aggregate {
      ...Token_aggregateFragment
    }
    totalSupply
    transfers {
      ...TransferFragment
    }
    transfers_aggregate {
      ...Transfer_aggregateFragment
    }
    updatedBlockNumber
    updatedTimestamp
    updatedTransactionIndex
    url
  }
}
Variables
{
  "batch_size": 123,
  "cursor": [Asset_stream_cursor_input],
  "where": Asset_bool_exp
}
Response
{
  "data": {
    "Asset_stream": [
      {
        "appHistory": [AppHistory],
        "appHistory_aggregate": AppHistory_aggregate,
        "appInstalls": [AppInstall],
        "appInstalls_aggregate": AppInstall_aggregate,
        "assets": [AssetAssetURL],
        "assets_": ["xyz789"],
        "assets_aggregate": AssetAssetURL_aggregate,
        "attributes": [AssetAttribute],
        "attributes_": ["abc123"],
        "attributes_aggregate": AssetAttribute_aggregate,
        "backgroundImages": [AssetBackgroundImageURL],
        "backgroundImages_": ["abc123"],
        "baseHolders": [Hold],
        "baseHolders_aggregate": Hold_aggregate,
        "blockNumber": 123,
        "category": "abc123",
        "createdBlockNumber": 987,
        "createdTimestamp": 123,
        "createdTransactionIndex": 123,
        "data": "abc123",
        "db_write_timestamp": timestamp,
        "decimals": 123,
        "description": "xyz789",
        "error": "abc123",
        "holders": [Hold],
        "holders_aggregate": Hold_aggregate,
        "icons": [AssetIconURL],
        "icons_": ["abc123"],
        "icons_aggregate": AssetIconURL_aggregate,
        "id": "xyz789",
        "images": [AssetImageURL],
        "images_": ["xyz789"],
        "images_aggregate": AssetImageURL_aggregate,
        "interfaces": ["xyz789"],
        "isCollection": false,
        "isLSP7": false,
        "isUnknown": false,
        "links": [AssetLink],
        "links_": ["xyz789"],
        "links_aggregate": AssetLink_aggregate,
        "lsp4Creators": [AssetCreators],
        "lsp4CreatorsMap": [AssetCreators],
        "lsp4CreatorsMap_aggregate": AssetCreators_aggregate,
        "lsp4Creators_": ["abc123"],
        "lsp4Creators_aggregate": AssetCreators_aggregate,
        "lsp4TokenName": "xyz789",
        "lsp4TokenSymbol": "abc123",
        "lsp4TokenType": 987,
        "lsp8ReferenceContract": Asset,
        "lsp8ReferenceContractSelf": "xyz789",
        "lsp8ReferenceContract_id": "xyz789",
        "lsp8TokenIdFormat": 987,
        "lsp8TokenMetadataBaseUri": "xyz789",
        "method": "xyz789",
        "name": "xyz789",
        "owner": Profile,
        "owner_id": "abc123",
        "src": "abc123",
        "standard": standards,
        "supportedStandardsLsp4DigitalAsset": true,
        "tokens": [Token],
        "tokens_aggregate": Token_aggregate,
        "totalSupply": numeric,
        "transfers": [Transfer],
        "transfers_aggregate": Transfer_aggregate,
        "updatedBlockNumber": 987,
        "updatedTimestamp": 123,
        "updatedTransactionIndex": 123,
        "url": "xyz789"
      }
    ]
  }
}

AvatarAssetURL

Description

fetch data from the table: "AvatarAssetURL"

Response

Returns [AvatarAssetURL!]!

Arguments
Name Description
distinct_on - [AvatarAssetURL_select_column!] distinct select on columns
limit - Int limit the number of rows returned
offset - Int skip the first n rows. Use only with order_by
order_by - [AvatarAssetURL_order_by!] sort the rows by one or more columns
where - AvatarAssetURL_bool_exp filter the rows returned

Example

Query
subscription AvatarAssetURL(
  $distinct_on: [AvatarAssetURL_select_column!],
  $limit: Int,
  $offset: Int,
  $order_by: [AvatarAssetURL_order_by!],
  $where: AvatarAssetURL_bool_exp
) {
  AvatarAssetURL(
    distinct_on: $distinct_on,
    limit: $limit,
    offset: $offset,
    order_by: $order_by,
    where: $where
  ) {
    blockNumber
    contentAsset {
      ...AssetFragment
    }
    contentAsset_id
    contentToken {
      ...TokenFragment
    }
    contentToken_id
    data
    db_write_timestamp
    error
    fileType
    height
    id
    index
    method
    profile {
      ...ProfileFragment
    }
    profile_id
    src
    url
    verified
    width
  }
}
Variables
{
  "distinct_on": ["blockNumber"],
  "limit": 987,
  "offset": 987,
  "order_by": [AvatarAssetURL_order_by],
  "where": AvatarAssetURL_bool_exp
}
Response
{
  "data": {
    "AvatarAssetURL": [
      {
        "blockNumber": 987,
        "contentAsset": Asset,
        "contentAsset_id": "xyz789",
        "contentToken": Token,
        "contentToken_id": "abc123",
        "data": "abc123",
        "db_write_timestamp": timestamp,
        "error": "xyz789",
        "fileType": "xyz789",
        "height": 987,
        "id": "xyz789",
        "index": 987,
        "method": "xyz789",
        "profile": Profile,
        "profile_id": "xyz789",
        "src": "abc123",
        "url": "xyz789",
        "verified": verificationstatus,
        "width": 123
      }
    ]
  }
}

AvatarAssetURL_aggregate

Description

fetch aggregated fields from the table: "AvatarAssetURL"

Response

Returns an AvatarAssetURL_aggregate!

Arguments
Name Description
distinct_on - [AvatarAssetURL_select_column!] distinct select on columns
limit - Int limit the number of rows returned
offset - Int skip the first n rows. Use only with order_by
order_by - [AvatarAssetURL_order_by!] sort the rows by one or more columns
where - AvatarAssetURL_bool_exp filter the rows returned

Example

Query
subscription AvatarAssetURL_aggregate(
  $distinct_on: [AvatarAssetURL_select_column!],
  $limit: Int,
  $offset: Int,
  $order_by: [AvatarAssetURL_order_by!],
  $where: AvatarAssetURL_bool_exp
) {
  AvatarAssetURL_aggregate(
    distinct_on: $distinct_on,
    limit: $limit,
    offset: $offset,
    order_by: $order_by,
    where: $where
  ) {
    aggregate {
      ...AvatarAssetURL_aggregate_fieldsFragment
    }
    nodes {
      ...AvatarAssetURLFragment
    }
  }
}
Variables
{
  "distinct_on": ["blockNumber"],
  "limit": 123,
  "offset": 123,
  "order_by": [AvatarAssetURL_order_by],
  "where": AvatarAssetURL_bool_exp
}
Response
{
  "data": {
    "AvatarAssetURL_aggregate": {
      "aggregate": AvatarAssetURL_aggregate_fields,
      "nodes": [AvatarAssetURL]
    }
  }
}

AvatarAssetURL_by_pk

Description

fetch data from the table: "AvatarAssetURL" using primary key columns

Response

Returns an AvatarAssetURL

Arguments
Name Description
id - String!

Example

Query
subscription AvatarAssetURL_by_pk($id: String!) {
  AvatarAssetURL_by_pk(id: $id) {
    blockNumber
    contentAsset {
      ...AssetFragment
    }
    contentAsset_id
    contentToken {
      ...TokenFragment
    }
    contentToken_id
    data
    db_write_timestamp
    error
    fileType
    height
    id
    index
    method
    profile {
      ...ProfileFragment
    }
    profile_id
    src
    url
    verified
    width
  }
}
Variables
{"id": "xyz789"}
Response
{
  "data": {
    "AvatarAssetURL_by_pk": {
      "blockNumber": 123,
      "contentAsset": Asset,
      "contentAsset_id": "xyz789",
      "contentToken": Token,
      "contentToken_id": "abc123",
      "data": "abc123",
      "db_write_timestamp": timestamp,
      "error": "xyz789",
      "fileType": "xyz789",
      "height": 987,
      "id": "xyz789",
      "index": 123,
      "method": "xyz789",
      "profile": Profile,
      "profile_id": "xyz789",
      "src": "xyz789",
      "url": "xyz789",
      "verified": verificationstatus,
      "width": 987
    }
  }
}

AvatarAssetURL_stream

Description

fetch data from the table in a streaming manner: "AvatarAssetURL"

Response

Returns [AvatarAssetURL!]!

Arguments
Name Description
batch_size - Int! maximum number of rows returned in a single batch
cursor - [AvatarAssetURL_stream_cursor_input]! cursor to stream the results returned by the query
where - AvatarAssetURL_bool_exp filter the rows returned

Example

Query
subscription AvatarAssetURL_stream(
  $batch_size: Int!,
  $cursor: [AvatarAssetURL_stream_cursor_input]!,
  $where: AvatarAssetURL_bool_exp
) {
  AvatarAssetURL_stream(
    batch_size: $batch_size,
    cursor: $cursor,
    where: $where
  ) {
    blockNumber
    contentAsset {
      ...AssetFragment
    }
    contentAsset_id
    contentToken {
      ...TokenFragment
    }
    contentToken_id
    data
    db_write_timestamp
    error
    fileType
    height
    id
    index
    method
    profile {
      ...ProfileFragment
    }
    profile_id
    src
    url
    verified
    width
  }
}
Variables
{
  "batch_size": 123,
  "cursor": [AvatarAssetURL_stream_cursor_input],
  "where": AvatarAssetURL_bool_exp
}
Response
{
  "data": {
    "AvatarAssetURL_stream": [
      {
        "blockNumber": 987,
        "contentAsset": Asset,
        "contentAsset_id": "abc123",
        "contentToken": Token,
        "contentToken_id": "abc123",
        "data": "xyz789",
        "db_write_timestamp": timestamp,
        "error": "abc123",
        "fileType": "abc123",
        "height": 987,
        "id": "abc123",
        "index": 987,
        "method": "xyz789",
        "profile": Profile,
        "profile_id": "xyz789",
        "src": "abc123",
        "url": "xyz789",
        "verified": verificationstatus,
        "width": 987
      }
    ]
  }
}

BackgroundImageURL

Description

fetch data from the table: "BackgroundImageURL"

Response

Returns [BackgroundImageURL!]!

Arguments
Name Description
distinct_on - [BackgroundImageURL_select_column!] distinct select on columns
limit - Int limit the number of rows returned
offset - Int skip the first n rows. Use only with order_by
order_by - [BackgroundImageURL_order_by!] sort the rows by one or more columns
where - BackgroundImageURL_bool_exp filter the rows returned

Example

Query
subscription BackgroundImageURL(
  $distinct_on: [BackgroundImageURL_select_column!],
  $limit: Int,
  $offset: Int,
  $order_by: [BackgroundImageURL_order_by!],
  $where: BackgroundImageURL_bool_exp
) {
  BackgroundImageURL(
    distinct_on: $distinct_on,
    limit: $limit,
    offset: $offset,
    order_by: $order_by,
    where: $where
  ) {
    blockNumber
    data
    db_write_timestamp
    error
    fileType
    height
    id
    index
    method
    profile {
      ...ProfileFragment
    }
    profile_id
    src
    url
    verified
    width
  }
}
Variables
{
  "distinct_on": ["blockNumber"],
  "limit": 123,
  "offset": 123,
  "order_by": [BackgroundImageURL_order_by],
  "where": BackgroundImageURL_bool_exp
}
Response
{
  "data": {
    "BackgroundImageURL": [
      {
        "blockNumber": 987,
        "data": "xyz789",
        "db_write_timestamp": timestamp,
        "error": "abc123",
        "fileType": "abc123",
        "height": 123,
        "id": "xyz789",
        "index": 987,
        "method": "abc123",
        "profile": Profile,
        "profile_id": "abc123",
        "src": "abc123",
        "url": "abc123",
        "verified": verificationstatus,
        "width": 123
      }
    ]
  }
}

BackgroundImageURL_aggregate

Description

fetch aggregated fields from the table: "BackgroundImageURL"

Response

Returns an BackgroundImageURL_aggregate!

Arguments
Name Description
distinct_on - [BackgroundImageURL_select_column!] distinct select on columns
limit - Int limit the number of rows returned
offset - Int skip the first n rows. Use only with order_by
order_by - [BackgroundImageURL_order_by!] sort the rows by one or more columns
where - BackgroundImageURL_bool_exp filter the rows returned

Example

Query
subscription BackgroundImageURL_aggregate(
  $distinct_on: [BackgroundImageURL_select_column!],
  $limit: Int,
  $offset: Int,
  $order_by: [BackgroundImageURL_order_by!],
  $where: BackgroundImageURL_bool_exp
) {
  BackgroundImageURL_aggregate(
    distinct_on: $distinct_on,
    limit: $limit,
    offset: $offset,
    order_by: $order_by,
    where: $where
  ) {
    aggregate {
      ...BackgroundImageURL_aggregate_fieldsFragment
    }
    nodes {
      ...BackgroundImageURLFragment
    }
  }
}
Variables
{
  "distinct_on": ["blockNumber"],
  "limit": 987,
  "offset": 987,
  "order_by": [BackgroundImageURL_order_by],
  "where": BackgroundImageURL_bool_exp
}
Response
{
  "data": {
    "BackgroundImageURL_aggregate": {
      "aggregate": BackgroundImageURL_aggregate_fields,
      "nodes": [BackgroundImageURL]
    }
  }
}

BackgroundImageURL_by_pk

Description

fetch data from the table: "BackgroundImageURL" using primary key columns

Response

Returns an BackgroundImageURL

Arguments
Name Description
id - String!

Example

Query
subscription BackgroundImageURL_by_pk($id: String!) {
  BackgroundImageURL_by_pk(id: $id) {
    blockNumber
    data
    db_write_timestamp
    error
    fileType
    height
    id
    index
    method
    profile {
      ...ProfileFragment
    }
    profile_id
    src
    url
    verified
    width
  }
}
Variables
{"id": "xyz789"}
Response
{
  "data": {
    "BackgroundImageURL_by_pk": {
      "blockNumber": 987,
      "data": "xyz789",
      "db_write_timestamp": timestamp,
      "error": "abc123",
      "fileType": "abc123",
      "height": 123,
      "id": "xyz789",
      "index": 123,
      "method": "abc123",
      "profile": Profile,
      "profile_id": "abc123",
      "src": "xyz789",
      "url": "abc123",
      "verified": verificationstatus,
      "width": 123
    }
  }
}

BackgroundImageURL_stream

Description

fetch data from the table in a streaming manner: "BackgroundImageURL"

Response

Returns [BackgroundImageURL!]!

Arguments
Name Description
batch_size - Int! maximum number of rows returned in a single batch
cursor - [BackgroundImageURL_stream_cursor_input]! cursor to stream the results returned by the query
where - BackgroundImageURL_bool_exp filter the rows returned

Example

Query
subscription BackgroundImageURL_stream(
  $batch_size: Int!,
  $cursor: [BackgroundImageURL_stream_cursor_input]!,
  $where: BackgroundImageURL_bool_exp
) {
  BackgroundImageURL_stream(
    batch_size: $batch_size,
    cursor: $cursor,
    where: $where
  ) {
    blockNumber
    data
    db_write_timestamp
    error
    fileType
    height
    id
    index
    method
    profile {
      ...ProfileFragment
    }
    profile_id
    src
    url
    verified
    width
  }
}
Variables
{
  "batch_size": 987,
  "cursor": [BackgroundImageURL_stream_cursor_input],
  "where": BackgroundImageURL_bool_exp
}
Response
{
  "data": {
    "BackgroundImageURL_stream": [
      {
        "blockNumber": 987,
        "data": "abc123",
        "db_write_timestamp": timestamp,
        "error": "abc123",
        "fileType": "xyz789",
        "height": 987,
        "id": "abc123",
        "index": 987,
        "method": "abc123",
        "profile": Profile,
        "profile_id": "abc123",
        "src": "abc123",
        "url": "xyz789",
        "verified": verificationstatus,
        "width": 987
      }
    ]
  }
}

Controller

Description

fetch data from the table: "Controller"

Response

Returns [Controller!]!

Arguments
Name Description
distinct_on - [Controller_select_column!] distinct select on columns
limit - Int limit the number of rows returned
offset - Int skip the first n rows. Use only with order_by
order_by - [Controller_order_by!] sort the rows by one or more columns
where - Controller_bool_exp filter the rows returned

Example

Query
subscription Controller(
  $distinct_on: [Controller_select_column!],
  $limit: Int,
  $offset: Int,
  $order_by: [Controller_order_by!],
  $where: Controller_bool_exp
) {
  Controller(
    distinct_on: $distinct_on,
    limit: $limit,
    offset: $offset,
    order_by: $order_by,
    where: $where
  ) {
    address
    blockNumber
    db_write_timestamp
    id
    permissions
    profile {
      ...ProfileFragment
    }
    profile_id
    tags
  }
}
Variables
{
  "distinct_on": ["address"],
  "limit": 123,
  "offset": 123,
  "order_by": [Controller_order_by],
  "where": Controller_bool_exp
}
Response
{
  "data": {
    "Controller": [
      {
        "address": "abc123",
        "blockNumber": 123,
        "db_write_timestamp": timestamp,
        "id": "abc123",
        "permissions": "abc123",
        "profile": Profile,
        "profile_id": "xyz789",
        "tags": [permissions]
      }
    ]
  }
}

Controller_aggregate

Description

fetch aggregated fields from the table: "Controller"

Response

Returns a Controller_aggregate!

Arguments
Name Description
distinct_on - [Controller_select_column!] distinct select on columns
limit - Int limit the number of rows returned
offset - Int skip the first n rows. Use only with order_by
order_by - [Controller_order_by!] sort the rows by one or more columns
where - Controller_bool_exp filter the rows returned

Example

Query
subscription Controller_aggregate(
  $distinct_on: [Controller_select_column!],
  $limit: Int,
  $offset: Int,
  $order_by: [Controller_order_by!],
  $where: Controller_bool_exp
) {
  Controller_aggregate(
    distinct_on: $distinct_on,
    limit: $limit,
    offset: $offset,
    order_by: $order_by,
    where: $where
  ) {
    aggregate {
      ...Controller_aggregate_fieldsFragment
    }
    nodes {
      ...ControllerFragment
    }
  }
}
Variables
{
  "distinct_on": ["address"],
  "limit": 987,
  "offset": 987,
  "order_by": [Controller_order_by],
  "where": Controller_bool_exp
}
Response
{
  "data": {
    "Controller_aggregate": {
      "aggregate": Controller_aggregate_fields,
      "nodes": [Controller]
    }
  }
}

Controller_by_pk

Description

fetch data from the table: "Controller" using primary key columns

Response

Returns a Controller

Arguments
Name Description
id - String!

Example

Query
subscription Controller_by_pk($id: String!) {
  Controller_by_pk(id: $id) {
    address
    blockNumber
    db_write_timestamp
    id
    permissions
    profile {
      ...ProfileFragment
    }
    profile_id
    tags
  }
}
Variables
{"id": "xyz789"}
Response
{
  "data": {
    "Controller_by_pk": {
      "address": "abc123",
      "blockNumber": 987,
      "db_write_timestamp": timestamp,
      "id": "abc123",
      "permissions": "xyz789",
      "profile": Profile,
      "profile_id": "xyz789",
      "tags": [permissions]
    }
  }
}

Controller_stream

Description

fetch data from the table in a streaming manner: "Controller"

Response

Returns [Controller!]!

Arguments
Name Description
batch_size - Int! maximum number of rows returned in a single batch
cursor - [Controller_stream_cursor_input]! cursor to stream the results returned by the query
where - Controller_bool_exp filter the rows returned

Example

Query
subscription Controller_stream(
  $batch_size: Int!,
  $cursor: [Controller_stream_cursor_input]!,
  $where: Controller_bool_exp
) {
  Controller_stream(
    batch_size: $batch_size,
    cursor: $cursor,
    where: $where
  ) {
    address
    blockNumber
    db_write_timestamp
    id
    permissions
    profile {
      ...ProfileFragment
    }
    profile_id
    tags
  }
}
Variables
{
  "batch_size": 123,
  "cursor": [Controller_stream_cursor_input],
  "where": Controller_bool_exp
}
Response
{
  "data": {
    "Controller_stream": [
      {
        "address": "abc123",
        "blockNumber": 987,
        "db_write_timestamp": timestamp,
        "id": "xyz789",
        "permissions": "abc123",
        "profile": Profile,
        "profile_id": "abc123",
        "tags": [permissions]
      }
    ]
  }
}

DataChanged

Description

fetch data from the table: "DataChanged"

Response

Returns [DataChanged!]!

Arguments
Name Description
distinct_on - [DataChanged_select_column!] distinct select on columns
limit - Int limit the number of rows returned
offset - Int skip the first n rows. Use only with order_by
order_by - [DataChanged_order_by!] sort the rows by one or more columns
where - DataChanged_bool_exp filter the rows returned

Example

Query
subscription DataChanged(
  $distinct_on: [DataChanged_select_column!],
  $limit: Int,
  $offset: Int,
  $order_by: [DataChanged_order_by!],
  $where: DataChanged_bool_exp
) {
  DataChanged(
    distinct_on: $distinct_on,
    limit: $limit,
    offset: $offset,
    order_by: $order_by,
    where: $where
  ) {
    address
    asset {
      ...AssetFragment
    }
    asset_id
    blockNumber
    db_write_timestamp
    id
    key
    logIndex
    profile {
      ...ProfileFragment
    }
    profile_id
    token {
      ...TokenFragment
    }
    token_id
    transactionHash
    value
  }
}
Variables
{
  "distinct_on": ["address"],
  "limit": 123,
  "offset": 987,
  "order_by": [DataChanged_order_by],
  "where": DataChanged_bool_exp
}
Response
{
  "data": {
    "DataChanged": [
      {
        "address": "xyz789",
        "asset": Asset,
        "asset_id": "abc123",
        "blockNumber": 987,
        "db_write_timestamp": timestamp,
        "id": "xyz789",
        "key": "abc123",
        "logIndex": 987,
        "profile": Profile,
        "profile_id": "abc123",
        "token": Token,
        "token_id": "abc123",
        "transactionHash": "xyz789",
        "value": "abc123"
      }
    ]
  }
}

DataChanged_aggregate

Description

fetch aggregated fields from the table: "DataChanged"

Response

Returns a DataChanged_aggregate!

Arguments
Name Description
distinct_on - [DataChanged_select_column!] distinct select on columns
limit - Int limit the number of rows returned
offset - Int skip the first n rows. Use only with order_by
order_by - [DataChanged_order_by!] sort the rows by one or more columns
where - DataChanged_bool_exp filter the rows returned

Example

Query
subscription DataChanged_aggregate(
  $distinct_on: [DataChanged_select_column!],
  $limit: Int,
  $offset: Int,
  $order_by: [DataChanged_order_by!],
  $where: DataChanged_bool_exp
) {
  DataChanged_aggregate(
    distinct_on: $distinct_on,
    limit: $limit,
    offset: $offset,
    order_by: $order_by,
    where: $where
  ) {
    aggregate {
      ...DataChanged_aggregate_fieldsFragment
    }
    nodes {
      ...DataChangedFragment
    }
  }
}
Variables
{
  "distinct_on": ["address"],
  "limit": 123,
  "offset": 987,
  "order_by": [DataChanged_order_by],
  "where": DataChanged_bool_exp
}
Response
{
  "data": {
    "DataChanged_aggregate": {
      "aggregate": DataChanged_aggregate_fields,
      "nodes": [DataChanged]
    }
  }
}

DataChanged_by_pk

Description

fetch data from the table: "DataChanged" using primary key columns

Response

Returns a DataChanged

Arguments
Name Description
id - String!

Example

Query
subscription DataChanged_by_pk($id: String!) {
  DataChanged_by_pk(id: $id) {
    address
    asset {
      ...AssetFragment
    }
    asset_id
    blockNumber
    db_write_timestamp
    id
    key
    logIndex
    profile {
      ...ProfileFragment
    }
    profile_id
    token {
      ...TokenFragment
    }
    token_id
    transactionHash
    value
  }
}
Variables
{"id": "xyz789"}
Response
{
  "data": {
    "DataChanged_by_pk": {
      "address": "abc123",
      "asset": Asset,
      "asset_id": "abc123",
      "blockNumber": 987,
      "db_write_timestamp": timestamp,
      "id": "xyz789",
      "key": "abc123",
      "logIndex": 123,
      "profile": Profile,
      "profile_id": "abc123",
      "token": Token,
      "token_id": "abc123",
      "transactionHash": "abc123",
      "value": "abc123"
    }
  }
}

DataChanged_stream

Description

fetch data from the table in a streaming manner: "DataChanged"

Response

Returns [DataChanged!]!

Arguments
Name Description
batch_size - Int! maximum number of rows returned in a single batch
cursor - [DataChanged_stream_cursor_input]! cursor to stream the results returned by the query
where - DataChanged_bool_exp filter the rows returned

Example

Query
subscription DataChanged_stream(
  $batch_size: Int!,
  $cursor: [DataChanged_stream_cursor_input]!,
  $where: DataChanged_bool_exp
) {
  DataChanged_stream(
    batch_size: $batch_size,
    cursor: $cursor,
    where: $where
  ) {
    address
    asset {
      ...AssetFragment
    }
    asset_id
    blockNumber
    db_write_timestamp
    id
    key
    logIndex
    profile {
      ...ProfileFragment
    }
    profile_id
    token {
      ...TokenFragment
    }
    token_id
    transactionHash
    value
  }
}
Variables
{
  "batch_size": 987,
  "cursor": [DataChanged_stream_cursor_input],
  "where": DataChanged_bool_exp
}
Response
{
  "data": {
    "DataChanged_stream": [
      {
        "address": "abc123",
        "asset": Asset,
        "asset_id": "abc123",
        "blockNumber": 987,
        "db_write_timestamp": timestamp,
        "id": "abc123",
        "key": "abc123",
        "logIndex": 987,
        "profile": Profile,
        "profile_id": "abc123",
        "token": Token,
        "token_id": "abc123",
        "transactionHash": "xyz789",
        "value": "xyz789"
      }
    ]
  }
}

Feed

Description

fetch data from the table: "Feed"

Response

Returns [Feed!]!

Arguments
Name Description
distinct_on - [Feed_select_column!] distinct select on columns
limit - Int limit the number of rows returned
offset - Int skip the first n rows. Use only with order_by
order_by - [Feed_order_by!] sort the rows by one or more columns
where - Feed_bool_exp filter the rows returned

Example

Query
subscription Feed(
  $distinct_on: [Feed_select_column!],
  $limit: Int,
  $offset: Int,
  $order_by: [Feed_order_by!],
  $where: Feed_bool_exp
) {
  Feed(
    distinct_on: $distinct_on,
    limit: $limit,
    offset: $offset,
    order_by: $order_by,
    where: $where
  ) {
    address
    assetArgs {
      ...FeedAssetArgFragment
    }
    assetArgs_aggregate {
      ...FeedAssetArg_aggregateFragment
    }
    blockNumber
    dataKey
    decoded
    eventType
    id
    logIndex
    profileArgs {
      ...FeedProfileArgFragment
    }
    profileArgs_aggregate {
      ...FeedProfileArg_aggregateFragment
    }
    profiles {
      ...FeedProfileFragment
    }
    profiles_aggregate {
      ...FeedProfile_aggregateFragment
    }
    timestamp
    tokenArgs {
      ...FeedTokenArgFragment
    }
    tokenArgs_aggregate {
      ...FeedTokenArg_aggregateFragment
    }
    transactionHash
    transactionIndex
  }
}
Variables
{
  "distinct_on": ["address"],
  "limit": 987,
  "offset": 123,
  "order_by": [Feed_order_by],
  "where": Feed_bool_exp
}
Response
{
  "data": {
    "Feed": [
      {
        "address": "abc123",
        "assetArgs": [FeedAssetArg],
        "assetArgs_aggregate": FeedAssetArg_aggregate,
        "blockNumber": 987,
        "dataKey": "abc123",
        "decoded": jsonb,
        "eventType": "xyz789",
        "id": "abc123",
        "logIndex": 123,
        "profileArgs": [FeedProfileArg],
        "profileArgs_aggregate": FeedProfileArg_aggregate,
        "profiles": [FeedProfile],
        "profiles_aggregate": FeedProfile_aggregate,
        "timestamp": 987,
        "tokenArgs": [FeedTokenArg],
        "tokenArgs_aggregate": FeedTokenArg_aggregate,
        "transactionHash": "xyz789",
        "transactionIndex": 123
      }
    ]
  }
}

FeedAssetArg

Description

fetch data from the table: "FeedAssetArg"

Response

Returns [FeedAssetArg!]!

Arguments
Name Description
distinct_on - [FeedAssetArg_select_column!] distinct select on columns
limit - Int limit the number of rows returned
offset - Int skip the first n rows. Use only with order_by
order_by - [FeedAssetArg_order_by!] sort the rows by one or more columns
where - FeedAssetArg_bool_exp filter the rows returned

Example

Query
subscription FeedAssetArg(
  $distinct_on: [FeedAssetArg_select_column!],
  $limit: Int,
  $offset: Int,
  $order_by: [FeedAssetArg_order_by!],
  $where: FeedAssetArg_bool_exp
) {
  FeedAssetArg(
    distinct_on: $distinct_on,
    limit: $limit,
    offset: $offset,
    order_by: $order_by,
    where: $where
  ) {
    asset {
      ...AssetFragment
    }
    asset_id
    feed {
      ...FeedFragment
    }
    feed_id
    id
  }
}
Variables
{
  "distinct_on": ["asset_id"],
  "limit": 987,
  "offset": 123,
  "order_by": [FeedAssetArg_order_by],
  "where": FeedAssetArg_bool_exp
}
Response
{
  "data": {
    "FeedAssetArg": [
      {
        "asset": Asset,
        "asset_id": "abc123",
        "feed": Feed,
        "feed_id": "xyz789",
        "id": "abc123"
      }
    ]
  }
}

FeedAssetArg_aggregate

Description

fetch aggregated fields from the table: "FeedAssetArg"

Response

Returns a FeedAssetArg_aggregate!

Arguments
Name Description
distinct_on - [FeedAssetArg_select_column!] distinct select on columns
limit - Int limit the number of rows returned
offset - Int skip the first n rows. Use only with order_by
order_by - [FeedAssetArg_order_by!] sort the rows by one or more columns
where - FeedAssetArg_bool_exp filter the rows returned

Example

Query
subscription FeedAssetArg_aggregate(
  $distinct_on: [FeedAssetArg_select_column!],
  $limit: Int,
  $offset: Int,
  $order_by: [FeedAssetArg_order_by!],
  $where: FeedAssetArg_bool_exp
) {
  FeedAssetArg_aggregate(
    distinct_on: $distinct_on,
    limit: $limit,
    offset: $offset,
    order_by: $order_by,
    where: $where
  ) {
    aggregate {
      ...FeedAssetArg_aggregate_fieldsFragment
    }
    nodes {
      ...FeedAssetArgFragment
    }
  }
}
Variables
{
  "distinct_on": ["asset_id"],
  "limit": 987,
  "offset": 987,
  "order_by": [FeedAssetArg_order_by],
  "where": FeedAssetArg_bool_exp
}
Response
{
  "data": {
    "FeedAssetArg_aggregate": {
      "aggregate": FeedAssetArg_aggregate_fields,
      "nodes": [FeedAssetArg]
    }
  }
}

FeedAssetArg_by_pk

Description

fetch data from the table: "FeedAssetArg" using primary key columns

Response

Returns a FeedAssetArg

Arguments
Name Description
id - String!

Example

Query
subscription FeedAssetArg_by_pk($id: String!) {
  FeedAssetArg_by_pk(id: $id) {
    asset {
      ...AssetFragment
    }
    asset_id
    feed {
      ...FeedFragment
    }
    feed_id
    id
  }
}
Variables
{"id": "xyz789"}
Response
{
  "data": {
    "FeedAssetArg_by_pk": {
      "asset": Asset,
      "asset_id": "xyz789",
      "feed": Feed,
      "feed_id": "abc123",
      "id": "abc123"
    }
  }
}

FeedAssetArg_stream

Description

fetch data from the table in a streaming manner: "FeedAssetArg"

Response

Returns [FeedAssetArg!]!

Arguments
Name Description
batch_size - Int! maximum number of rows returned in a single batch
cursor - [FeedAssetArg_stream_cursor_input]! cursor to stream the results returned by the query
where - FeedAssetArg_bool_exp filter the rows returned

Example

Query
subscription FeedAssetArg_stream(
  $batch_size: Int!,
  $cursor: [FeedAssetArg_stream_cursor_input]!,
  $where: FeedAssetArg_bool_exp
) {
  FeedAssetArg_stream(
    batch_size: $batch_size,
    cursor: $cursor,
    where: $where
  ) {
    asset {
      ...AssetFragment
    }
    asset_id
    feed {
      ...FeedFragment
    }
    feed_id
    id
  }
}
Variables
{
  "batch_size": 987,
  "cursor": [FeedAssetArg_stream_cursor_input],
  "where": FeedAssetArg_bool_exp
}
Response
{
  "data": {
    "FeedAssetArg_stream": [
      {
        "asset": Asset,
        "asset_id": "abc123",
        "feed": Feed,
        "feed_id": "abc123",
        "id": "xyz789"
      }
    ]
  }
}

FeedProfile

Description

fetch data from the table: "FeedProfile"

Response

Returns [FeedProfile!]!

Arguments
Name Description
distinct_on - [FeedProfile_select_column!] distinct select on columns
limit - Int limit the number of rows returned
offset - Int skip the first n rows. Use only with order_by
order_by - [FeedProfile_order_by!] sort the rows by one or more columns
where - FeedProfile_bool_exp filter the rows returned

Example

Query
subscription FeedProfile(
  $distinct_on: [FeedProfile_select_column!],
  $limit: Int,
  $offset: Int,
  $order_by: [FeedProfile_order_by!],
  $where: FeedProfile_bool_exp
) {
  FeedProfile(
    distinct_on: $distinct_on,
    limit: $limit,
    offset: $offset,
    order_by: $order_by,
    where: $where
  ) {
    feed {
      ...FeedFragment
    }
    feed_id
    id
    profile {
      ...ProfileFragment
    }
    profile_id
  }
}
Variables
{
  "distinct_on": ["feed_id"],
  "limit": 987,
  "offset": 987,
  "order_by": [FeedProfile_order_by],
  "where": FeedProfile_bool_exp
}
Response
{
  "data": {
    "FeedProfile": [
      {
        "feed": Feed,
        "feed_id": "abc123",
        "id": "abc123",
        "profile": Profile,
        "profile_id": "abc123"
      }
    ]
  }
}

FeedProfileArg

Description

fetch data from the table: "FeedProfileArg"

Response

Returns [FeedProfileArg!]!

Arguments
Name Description
distinct_on - [FeedProfileArg_select_column!] distinct select on columns
limit - Int limit the number of rows returned
offset - Int skip the first n rows. Use only with order_by
order_by - [FeedProfileArg_order_by!] sort the rows by one or more columns
where - FeedProfileArg_bool_exp filter the rows returned

Example

Query
subscription FeedProfileArg(
  $distinct_on: [FeedProfileArg_select_column!],
  $limit: Int,
  $offset: Int,
  $order_by: [FeedProfileArg_order_by!],
  $where: FeedProfileArg_bool_exp
) {
  FeedProfileArg(
    distinct_on: $distinct_on,
    limit: $limit,
    offset: $offset,
    order_by: $order_by,
    where: $where
  ) {
    feed {
      ...FeedFragment
    }
    feed_id
    id
    profile {
      ...ProfileFragment
    }
    profile_id
  }
}
Variables
{
  "distinct_on": ["feed_id"],
  "limit": 987,
  "offset": 123,
  "order_by": [FeedProfileArg_order_by],
  "where": FeedProfileArg_bool_exp
}
Response
{
  "data": {
    "FeedProfileArg": [
      {
        "feed": Feed,
        "feed_id": "xyz789",
        "id": "xyz789",
        "profile": Profile,
        "profile_id": "xyz789"
      }
    ]
  }
}

FeedProfileArg_aggregate

Description

fetch aggregated fields from the table: "FeedProfileArg"

Response

Returns a FeedProfileArg_aggregate!

Arguments
Name Description
distinct_on - [FeedProfileArg_select_column!] distinct select on columns
limit - Int limit the number of rows returned
offset - Int skip the first n rows. Use only with order_by
order_by - [FeedProfileArg_order_by!] sort the rows by one or more columns
where - FeedProfileArg_bool_exp filter the rows returned

Example

Query
subscription FeedProfileArg_aggregate(
  $distinct_on: [FeedProfileArg_select_column!],
  $limit: Int,
  $offset: Int,
  $order_by: [FeedProfileArg_order_by!],
  $where: FeedProfileArg_bool_exp
) {
  FeedProfileArg_aggregate(
    distinct_on: $distinct_on,
    limit: $limit,
    offset: $offset,
    order_by: $order_by,
    where: $where
  ) {
    aggregate {
      ...FeedProfileArg_aggregate_fieldsFragment
    }
    nodes {
      ...FeedProfileArgFragment
    }
  }
}
Variables
{
  "distinct_on": ["feed_id"],
  "limit": 123,
  "offset": 987,
  "order_by": [FeedProfileArg_order_by],
  "where": FeedProfileArg_bool_exp
}
Response
{
  "data": {
    "FeedProfileArg_aggregate": {
      "aggregate": FeedProfileArg_aggregate_fields,
      "nodes": [FeedProfileArg]
    }
  }
}

FeedProfileArg_by_pk

Description

fetch data from the table: "FeedProfileArg" using primary key columns

Response

Returns a FeedProfileArg

Arguments
Name Description
id - String!

Example

Query
subscription FeedProfileArg_by_pk($id: String!) {
  FeedProfileArg_by_pk(id: $id) {
    feed {
      ...FeedFragment
    }
    feed_id
    id
    profile {
      ...ProfileFragment
    }
    profile_id
  }
}
Variables
{"id": "abc123"}
Response
{
  "data": {
    "FeedProfileArg_by_pk": {
      "feed": Feed,
      "feed_id": "abc123",
      "id": "abc123",
      "profile": Profile,
      "profile_id": "xyz789"
    }
  }
}

FeedProfileArg_stream

Description

fetch data from the table in a streaming manner: "FeedProfileArg"

Response

Returns [FeedProfileArg!]!

Arguments
Name Description
batch_size - Int! maximum number of rows returned in a single batch
cursor - [FeedProfileArg_stream_cursor_input]! cursor to stream the results returned by the query
where - FeedProfileArg_bool_exp filter the rows returned

Example

Query
subscription FeedProfileArg_stream(
  $batch_size: Int!,
  $cursor: [FeedProfileArg_stream_cursor_input]!,
  $where: FeedProfileArg_bool_exp
) {
  FeedProfileArg_stream(
    batch_size: $batch_size,
    cursor: $cursor,
    where: $where
  ) {
    feed {
      ...FeedFragment
    }
    feed_id
    id
    profile {
      ...ProfileFragment
    }
    profile_id
  }
}
Variables
{
  "batch_size": 123,
  "cursor": [FeedProfileArg_stream_cursor_input],
  "where": FeedProfileArg_bool_exp
}
Response
{
  "data": {
    "FeedProfileArg_stream": [
      {
        "feed": Feed,
        "feed_id": "xyz789",
        "id": "xyz789",
        "profile": Profile,
        "profile_id": "xyz789"
      }
    ]
  }
}

FeedProfile_aggregate

Description

fetch aggregated fields from the table: "FeedProfile"

Response

Returns a FeedProfile_aggregate!

Arguments
Name Description
distinct_on - [FeedProfile_select_column!] distinct select on columns
limit - Int limit the number of rows returned
offset - Int skip the first n rows. Use only with order_by
order_by - [FeedProfile_order_by!] sort the rows by one or more columns
where - FeedProfile_bool_exp filter the rows returned

Example

Query
subscription FeedProfile_aggregate(
  $distinct_on: [FeedProfile_select_column!],
  $limit: Int,
  $offset: Int,
  $order_by: [FeedProfile_order_by!],
  $where: FeedProfile_bool_exp
) {
  FeedProfile_aggregate(
    distinct_on: $distinct_on,
    limit: $limit,
    offset: $offset,
    order_by: $order_by,
    where: $where
  ) {
    aggregate {
      ...FeedProfile_aggregate_fieldsFragment
    }
    nodes {
      ...FeedProfileFragment
    }
  }
}
Variables
{
  "distinct_on": ["feed_id"],
  "limit": 987,
  "offset": 123,
  "order_by": [FeedProfile_order_by],
  "where": FeedProfile_bool_exp
}
Response
{
  "data": {
    "FeedProfile_aggregate": {
      "aggregate": FeedProfile_aggregate_fields,
      "nodes": [FeedProfile]
    }
  }
}

FeedProfile_by_pk

Description

fetch data from the table: "FeedProfile" using primary key columns

Response

Returns a FeedProfile

Arguments
Name Description
id - String!

Example

Query
subscription FeedProfile_by_pk($id: String!) {
  FeedProfile_by_pk(id: $id) {
    feed {
      ...FeedFragment
    }
    feed_id
    id
    profile {
      ...ProfileFragment
    }
    profile_id
  }
}
Variables
{"id": "abc123"}
Response
{
  "data": {
    "FeedProfile_by_pk": {
      "feed": Feed,
      "feed_id": "xyz789",
      "id": "abc123",
      "profile": Profile,
      "profile_id": "abc123"
    }
  }
}

FeedProfile_stream

Description

fetch data from the table in a streaming manner: "FeedProfile"

Response

Returns [FeedProfile!]!

Arguments
Name Description
batch_size - Int! maximum number of rows returned in a single batch
cursor - [FeedProfile_stream_cursor_input]! cursor to stream the results returned by the query
where - FeedProfile_bool_exp filter the rows returned

Example

Query
subscription FeedProfile_stream(
  $batch_size: Int!,
  $cursor: [FeedProfile_stream_cursor_input]!,
  $where: FeedProfile_bool_exp
) {
  FeedProfile_stream(
    batch_size: $batch_size,
    cursor: $cursor,
    where: $where
  ) {
    feed {
      ...FeedFragment
    }
    feed_id
    id
    profile {
      ...ProfileFragment
    }
    profile_id
  }
}
Variables
{
  "batch_size": 123,
  "cursor": [FeedProfile_stream_cursor_input],
  "where": FeedProfile_bool_exp
}
Response
{
  "data": {
    "FeedProfile_stream": [
      {
        "feed": Feed,
        "feed_id": "xyz789",
        "id": "xyz789",
        "profile": Profile,
        "profile_id": "xyz789"
      }
    ]
  }
}

FeedTokenArg

Description

fetch data from the table: "FeedTokenArg"

Response

Returns [FeedTokenArg!]!

Arguments
Name Description
distinct_on - [FeedTokenArg_select_column!] distinct select on columns
limit - Int limit the number of rows returned
offset - Int skip the first n rows. Use only with order_by
order_by - [FeedTokenArg_order_by!] sort the rows by one or more columns
where - FeedTokenArg_bool_exp filter the rows returned

Example

Query
subscription FeedTokenArg(
  $distinct_on: [FeedTokenArg_select_column!],
  $limit: Int,
  $offset: Int,
  $order_by: [FeedTokenArg_order_by!],
  $where: FeedTokenArg_bool_exp
) {
  FeedTokenArg(
    distinct_on: $distinct_on,
    limit: $limit,
    offset: $offset,
    order_by: $order_by,
    where: $where
  ) {
    feed {
      ...FeedFragment
    }
    feed_id
    id
    token {
      ...TokenFragment
    }
    token_id
  }
}
Variables
{
  "distinct_on": ["feed_id"],
  "limit": 987,
  "offset": 123,
  "order_by": [FeedTokenArg_order_by],
  "where": FeedTokenArg_bool_exp
}
Response
{
  "data": {
    "FeedTokenArg": [
      {
        "feed": Feed,
        "feed_id": "abc123",
        "id": "abc123",
        "token": Token,
        "token_id": "abc123"
      }
    ]
  }
}

FeedTokenArg_aggregate

Description

fetch aggregated fields from the table: "FeedTokenArg"

Response

Returns a FeedTokenArg_aggregate!

Arguments
Name Description
distinct_on - [FeedTokenArg_select_column!] distinct select on columns
limit - Int limit the number of rows returned
offset - Int skip the first n rows. Use only with order_by
order_by - [FeedTokenArg_order_by!] sort the rows by one or more columns
where - FeedTokenArg_bool_exp filter the rows returned

Example

Query
subscription FeedTokenArg_aggregate(
  $distinct_on: [FeedTokenArg_select_column!],
  $limit: Int,
  $offset: Int,
  $order_by: [FeedTokenArg_order_by!],
  $where: FeedTokenArg_bool_exp
) {
  FeedTokenArg_aggregate(
    distinct_on: $distinct_on,
    limit: $limit,
    offset: $offset,
    order_by: $order_by,
    where: $where
  ) {
    aggregate {
      ...FeedTokenArg_aggregate_fieldsFragment
    }
    nodes {
      ...FeedTokenArgFragment
    }
  }
}
Variables
{
  "distinct_on": ["feed_id"],
  "limit": 987,
  "offset": 123,
  "order_by": [FeedTokenArg_order_by],
  "where": FeedTokenArg_bool_exp
}
Response
{
  "data": {
    "FeedTokenArg_aggregate": {
      "aggregate": FeedTokenArg_aggregate_fields,
      "nodes": [FeedTokenArg]
    }
  }
}

FeedTokenArg_by_pk

Description

fetch data from the table: "FeedTokenArg" using primary key columns

Response

Returns a FeedTokenArg

Arguments
Name Description
id - String!

Example

Query
subscription FeedTokenArg_by_pk($id: String!) {
  FeedTokenArg_by_pk(id: $id) {
    feed {
      ...FeedFragment
    }
    feed_id
    id
    token {
      ...TokenFragment
    }
    token_id
  }
}
Variables
{"id": "xyz789"}
Response
{
  "data": {
    "FeedTokenArg_by_pk": {
      "feed": Feed,
      "feed_id": "abc123",
      "id": "xyz789",
      "token": Token,
      "token_id": "xyz789"
    }
  }
}

FeedTokenArg_stream

Description

fetch data from the table in a streaming manner: "FeedTokenArg"

Response

Returns [FeedTokenArg!]!

Arguments
Name Description
batch_size - Int! maximum number of rows returned in a single batch
cursor - [FeedTokenArg_stream_cursor_input]! cursor to stream the results returned by the query
where - FeedTokenArg_bool_exp filter the rows returned

Example

Query
subscription FeedTokenArg_stream(
  $batch_size: Int!,
  $cursor: [FeedTokenArg_stream_cursor_input]!,
  $where: FeedTokenArg_bool_exp
) {
  FeedTokenArg_stream(
    batch_size: $batch_size,
    cursor: $cursor,
    where: $where
  ) {
    feed {
      ...FeedFragment
    }
    feed_id
    id
    token {
      ...TokenFragment
    }
    token_id
  }
}
Variables
{
  "batch_size": 987,
  "cursor": [FeedTokenArg_stream_cursor_input],
  "where": FeedTokenArg_bool_exp
}
Response
{
  "data": {
    "FeedTokenArg_stream": [
      {
        "feed": Feed,
        "feed_id": "abc123",
        "id": "xyz789",
        "token": Token,
        "token_id": "xyz789"
      }
    ]
  }
}

Feed_aggregate

Description

fetch aggregated fields from the table: "Feed"

Response

Returns a Feed_aggregate!

Arguments
Name Description
distinct_on - [Feed_select_column!] distinct select on columns
limit - Int limit the number of rows returned
offset - Int skip the first n rows. Use only with order_by
order_by - [Feed_order_by!] sort the rows by one or more columns
where - Feed_bool_exp filter the rows returned

Example

Query
subscription Feed_aggregate(
  $distinct_on: [Feed_select_column!],
  $limit: Int,
  $offset: Int,
  $order_by: [Feed_order_by!],
  $where: Feed_bool_exp
) {
  Feed_aggregate(
    distinct_on: $distinct_on,
    limit: $limit,
    offset: $offset,
    order_by: $order_by,
    where: $where
  ) {
    aggregate {
      ...Feed_aggregate_fieldsFragment
    }
    nodes {
      ...FeedFragment
    }
  }
}
Variables
{
  "distinct_on": ["address"],
  "limit": 123,
  "offset": 123,
  "order_by": [Feed_order_by],
  "where": Feed_bool_exp
}
Response
{
  "data": {
    "Feed_aggregate": {
      "aggregate": Feed_aggregate_fields,
      "nodes": [Feed]
    }
  }
}

Feed_by_pk

Description

fetch data from the table: "Feed" using primary key columns

Response

Returns a Feed

Arguments
Name Description
id - String!

Example

Query
subscription Feed_by_pk($id: String!) {
  Feed_by_pk(id: $id) {
    address
    assetArgs {
      ...FeedAssetArgFragment
    }
    assetArgs_aggregate {
      ...FeedAssetArg_aggregateFragment
    }
    blockNumber
    dataKey
    decoded
    eventType
    id
    logIndex
    profileArgs {
      ...FeedProfileArgFragment
    }
    profileArgs_aggregate {
      ...FeedProfileArg_aggregateFragment
    }
    profiles {
      ...FeedProfileFragment
    }
    profiles_aggregate {
      ...FeedProfile_aggregateFragment
    }
    timestamp
    tokenArgs {
      ...FeedTokenArgFragment
    }
    tokenArgs_aggregate {
      ...FeedTokenArg_aggregateFragment
    }
    transactionHash
    transactionIndex
  }
}
Variables
{"id": "xyz789"}
Response
{
  "data": {
    "Feed_by_pk": {
      "address": "abc123",
      "assetArgs": [FeedAssetArg],
      "assetArgs_aggregate": FeedAssetArg_aggregate,
      "blockNumber": 123,
      "dataKey": "xyz789",
      "decoded": jsonb,
      "eventType": "abc123",
      "id": "xyz789",
      "logIndex": 123,
      "profileArgs": [FeedProfileArg],
      "profileArgs_aggregate": FeedProfileArg_aggregate,
      "profiles": [FeedProfile],
      "profiles_aggregate": FeedProfile_aggregate,
      "timestamp": 987,
      "tokenArgs": [FeedTokenArg],
      "tokenArgs_aggregate": FeedTokenArg_aggregate,
      "transactionHash": "xyz789",
      "transactionIndex": 123
    }
  }
}

Feed_stream

Description

fetch data from the table in a streaming manner: "Feed"

Response

Returns [Feed!]!

Arguments
Name Description
batch_size - Int! maximum number of rows returned in a single batch
cursor - [Feed_stream_cursor_input]! cursor to stream the results returned by the query
where - Feed_bool_exp filter the rows returned

Example

Query
subscription Feed_stream(
  $batch_size: Int!,
  $cursor: [Feed_stream_cursor_input]!,
  $where: Feed_bool_exp
) {
  Feed_stream(
    batch_size: $batch_size,
    cursor: $cursor,
    where: $where
  ) {
    address
    assetArgs {
      ...FeedAssetArgFragment
    }
    assetArgs_aggregate {
      ...FeedAssetArg_aggregateFragment
    }
    blockNumber
    dataKey
    decoded
    eventType
    id
    logIndex
    profileArgs {
      ...FeedProfileArgFragment
    }
    profileArgs_aggregate {
      ...FeedProfileArg_aggregateFragment
    }
    profiles {
      ...FeedProfileFragment
    }
    profiles_aggregate {
      ...FeedProfile_aggregateFragment
    }
    timestamp
    tokenArgs {
      ...FeedTokenArgFragment
    }
    tokenArgs_aggregate {
      ...FeedTokenArg_aggregateFragment
    }
    transactionHash
    transactionIndex
  }
}
Variables
{
  "batch_size": 987,
  "cursor": [Feed_stream_cursor_input],
  "where": Feed_bool_exp
}
Response
{
  "data": {
    "Feed_stream": [
      {
        "address": "abc123",
        "assetArgs": [FeedAssetArg],
        "assetArgs_aggregate": FeedAssetArg_aggregate,
        "blockNumber": 123,
        "dataKey": "xyz789",
        "decoded": jsonb,
        "eventType": "abc123",
        "id": "xyz789",
        "logIndex": 123,
        "profileArgs": [FeedProfileArg],
        "profileArgs_aggregate": FeedProfileArg_aggregate,
        "profiles": [FeedProfile],
        "profiles_aggregate": FeedProfile_aggregate,
        "timestamp": 987,
        "tokenArgs": [FeedTokenArg],
        "tokenArgs_aggregate": FeedTokenArg_aggregate,
        "transactionHash": "xyz789",
        "transactionIndex": 123
      }
    ]
  }
}

Follow

Description

fetch data from the table: "Follow"

Response

Returns [Follow!]!

Arguments
Name Description
distinct_on - [Follow_select_column!] distinct select on columns
limit - Int limit the number of rows returned
offset - Int skip the first n rows. Use only with order_by
order_by - [Follow_order_by!] sort the rows by one or more columns
where - Follow_bool_exp filter the rows returned

Example

Query
subscription Follow(
  $distinct_on: [Follow_select_column!],
  $limit: Int,
  $offset: Int,
  $order_by: [Follow_order_by!],
  $where: Follow_bool_exp
) {
  Follow(
    distinct_on: $distinct_on,
    limit: $limit,
    offset: $offset,
    order_by: $order_by,
    where: $where
  ) {
    blockNumber
    createdBlockNumber
    createdTimestamp
    createdTransactionIndex
    db_write_timestamp
    followee {
      ...ProfileFragment
    }
    followee_id
    follower {
      ...ProfileFragment
    }
    follower_id
    id
    updatedBlockNumber
    updatedTimestamp
    updatedTransactionIndex
  }
}
Variables
{
  "distinct_on": ["blockNumber"],
  "limit": 123,
  "offset": 123,
  "order_by": [Follow_order_by],
  "where": Follow_bool_exp
}
Response
{
  "data": {
    "Follow": [
      {
        "blockNumber": 123,
        "createdBlockNumber": 123,
        "createdTimestamp": 987,
        "createdTransactionIndex": 987,
        "db_write_timestamp": timestamp,
        "followee": Profile,
        "followee_id": "xyz789",
        "follower": Profile,
        "follower_id": "xyz789",
        "id": "xyz789",
        "updatedBlockNumber": 987,
        "updatedTimestamp": 987,
        "updatedTransactionIndex": 987
      }
    ]
  }
}

Follow_aggregate

Description

fetch aggregated fields from the table: "Follow"

Response

Returns a Follow_aggregate!

Arguments
Name Description
distinct_on - [Follow_select_column!] distinct select on columns
limit - Int limit the number of rows returned
offset - Int skip the first n rows. Use only with order_by
order_by - [Follow_order_by!] sort the rows by one or more columns
where - Follow_bool_exp filter the rows returned

Example

Query
subscription Follow_aggregate(
  $distinct_on: [Follow_select_column!],
  $limit: Int,
  $offset: Int,
  $order_by: [Follow_order_by!],
  $where: Follow_bool_exp
) {
  Follow_aggregate(
    distinct_on: $distinct_on,
    limit: $limit,
    offset: $offset,
    order_by: $order_by,
    where: $where
  ) {
    aggregate {
      ...Follow_aggregate_fieldsFragment
    }
    nodes {
      ...FollowFragment
    }
  }
}
Variables
{
  "distinct_on": ["blockNumber"],
  "limit": 987,
  "offset": 123,
  "order_by": [Follow_order_by],
  "where": Follow_bool_exp
}
Response
{
  "data": {
    "Follow_aggregate": {
      "aggregate": Follow_aggregate_fields,
      "nodes": [Follow]
    }
  }
}

Follow_by_pk

Description

fetch data from the table: "Follow" using primary key columns

Response

Returns a Follow

Arguments
Name Description
id - String!

Example

Query
subscription Follow_by_pk($id: String!) {
  Follow_by_pk(id: $id) {
    blockNumber
    createdBlockNumber
    createdTimestamp
    createdTransactionIndex
    db_write_timestamp
    followee {
      ...ProfileFragment
    }
    followee_id
    follower {
      ...ProfileFragment
    }
    follower_id
    id
    updatedBlockNumber
    updatedTimestamp
    updatedTransactionIndex
  }
}
Variables
{"id": "xyz789"}
Response
{
  "data": {
    "Follow_by_pk": {
      "blockNumber": 123,
      "createdBlockNumber": 987,
      "createdTimestamp": 123,
      "createdTransactionIndex": 987,
      "db_write_timestamp": timestamp,
      "followee": Profile,
      "followee_id": "abc123",
      "follower": Profile,
      "follower_id": "abc123",
      "id": "abc123",
      "updatedBlockNumber": 987,
      "updatedTimestamp": 987,
      "updatedTransactionIndex": 123
    }
  }
}

Follow_stream

Description

fetch data from the table in a streaming manner: "Follow"

Response

Returns [Follow!]!

Arguments
Name Description
batch_size - Int! maximum number of rows returned in a single batch
cursor - [Follow_stream_cursor_input]! cursor to stream the results returned by the query
where - Follow_bool_exp filter the rows returned

Example

Query
subscription Follow_stream(
  $batch_size: Int!,
  $cursor: [Follow_stream_cursor_input]!,
  $where: Follow_bool_exp
) {
  Follow_stream(
    batch_size: $batch_size,
    cursor: $cursor,
    where: $where
  ) {
    blockNumber
    createdBlockNumber
    createdTimestamp
    createdTransactionIndex
    db_write_timestamp
    followee {
      ...ProfileFragment
    }
    followee_id
    follower {
      ...ProfileFragment
    }
    follower_id
    id
    updatedBlockNumber
    updatedTimestamp
    updatedTransactionIndex
  }
}
Variables
{
  "batch_size": 987,
  "cursor": [Follow_stream_cursor_input],
  "where": Follow_bool_exp
}
Response
{
  "data": {
    "Follow_stream": [
      {
        "blockNumber": 123,
        "createdBlockNumber": 123,
        "createdTimestamp": 987,
        "createdTransactionIndex": 123,
        "db_write_timestamp": timestamp,
        "followee": Profile,
        "followee_id": "abc123",
        "follower": Profile,
        "follower_id": "xyz789",
        "id": "abc123",
        "updatedBlockNumber": 123,
        "updatedTimestamp": 987,
        "updatedTransactionIndex": 987
      }
    ]
  }
}

Hold

Description

fetch data from the table: "Hold"

Response

Returns [Hold!]!

Arguments
Name Description
distinct_on - [Hold_select_column!] distinct select on columns
limit - Int limit the number of rows returned
offset - Int skip the first n rows. Use only with order_by
order_by - [Hold_order_by!] sort the rows by one or more columns
where - Hold_bool_exp filter the rows returned

Example

Query
subscription Hold(
  $distinct_on: [Hold_select_column!],
  $limit: Int,
  $offset: Int,
  $order_by: [Hold_order_by!],
  $where: Hold_bool_exp
) {
  Hold(
    distinct_on: $distinct_on,
    limit: $limit,
    offset: $offset,
    order_by: $order_by,
    where: $where
  ) {
    asset {
      ...AssetFragment
    }
    asset_id
    balance
    baseAsset {
      ...AssetFragment
    }
    baseAsset_id
    blockNumber
    createdBlockNumber
    createdTimestamp
    createdTransactionIndex
    db_write_timestamp
    id
    ownerEOA
    profile {
      ...ProfileFragment
    }
    profile_id
    timestamp
    token {
      ...TokenFragment
    }
    token_id
    transaction {
      ...TransactionFragment
    }
    transaction_id
    updatedBlockNumber
    updatedTimestamp
    updatedTransactionIndex
  }
}
Variables
{
  "distinct_on": ["asset_id"],
  "limit": 123,
  "offset": 987,
  "order_by": [Hold_order_by],
  "where": Hold_bool_exp
}
Response
{
  "data": {
    "Hold": [
      {
        "asset": Asset,
        "asset_id": "abc123",
        "balance": numeric,
        "baseAsset": Asset,
        "baseAsset_id": "abc123",
        "blockNumber": 987,
        "createdBlockNumber": 123,
        "createdTimestamp": 123,
        "createdTransactionIndex": 123,
        "db_write_timestamp": timestamp,
        "id": "abc123",
        "ownerEOA": false,
        "profile": Profile,
        "profile_id": "xyz789",
        "timestamp": 987,
        "token": Token,
        "token_id": "abc123",
        "transaction": Transaction,
        "transaction_id": "xyz789",
        "updatedBlockNumber": 123,
        "updatedTimestamp": 987,
        "updatedTransactionIndex": 987
      }
    ]
  }
}

Hold_aggregate

Description

fetch aggregated fields from the table: "Hold"

Response

Returns a Hold_aggregate!

Arguments
Name Description
distinct_on - [Hold_select_column!] distinct select on columns
limit - Int limit the number of rows returned
offset - Int skip the first n rows. Use only with order_by
order_by - [Hold_order_by!] sort the rows by one or more columns
where - Hold_bool_exp filter the rows returned

Example

Query
subscription Hold_aggregate(
  $distinct_on: [Hold_select_column!],
  $limit: Int,
  $offset: Int,
  $order_by: [Hold_order_by!],
  $where: Hold_bool_exp
) {
  Hold_aggregate(
    distinct_on: $distinct_on,
    limit: $limit,
    offset: $offset,
    order_by: $order_by,
    where: $where
  ) {
    aggregate {
      ...Hold_aggregate_fieldsFragment
    }
    nodes {
      ...HoldFragment
    }
  }
}
Variables
{
  "distinct_on": ["asset_id"],
  "limit": 987,
  "offset": 987,
  "order_by": [Hold_order_by],
  "where": Hold_bool_exp
}
Response
{
  "data": {
    "Hold_aggregate": {
      "aggregate": Hold_aggregate_fields,
      "nodes": [Hold]
    }
  }
}

Hold_by_pk

Description

fetch data from the table: "Hold" using primary key columns

Response

Returns a Hold

Arguments
Name Description
id - String!

Example

Query
subscription Hold_by_pk($id: String!) {
  Hold_by_pk(id: $id) {
    asset {
      ...AssetFragment
    }
    asset_id
    balance
    baseAsset {
      ...AssetFragment
    }
    baseAsset_id
    blockNumber
    createdBlockNumber
    createdTimestamp
    createdTransactionIndex
    db_write_timestamp
    id
    ownerEOA
    profile {
      ...ProfileFragment
    }
    profile_id
    timestamp
    token {
      ...TokenFragment
    }
    token_id
    transaction {
      ...TransactionFragment
    }
    transaction_id
    updatedBlockNumber
    updatedTimestamp
    updatedTransactionIndex
  }
}
Variables
{"id": "xyz789"}
Response
{
  "data": {
    "Hold_by_pk": {
      "asset": Asset,
      "asset_id": "abc123",
      "balance": numeric,
      "baseAsset": Asset,
      "baseAsset_id": "xyz789",
      "blockNumber": 987,
      "createdBlockNumber": 123,
      "createdTimestamp": 123,
      "createdTransactionIndex": 987,
      "db_write_timestamp": timestamp,
      "id": "xyz789",
      "ownerEOA": true,
      "profile": Profile,
      "profile_id": "xyz789",
      "timestamp": 123,
      "token": Token,
      "token_id": "xyz789",
      "transaction": Transaction,
      "transaction_id": "xyz789",
      "updatedBlockNumber": 987,
      "updatedTimestamp": 123,
      "updatedTransactionIndex": 123
    }
  }
}

Hold_stream

Description

fetch data from the table in a streaming manner: "Hold"

Response

Returns [Hold!]!

Arguments
Name Description
batch_size - Int! maximum number of rows returned in a single batch
cursor - [Hold_stream_cursor_input]! cursor to stream the results returned by the query
where - Hold_bool_exp filter the rows returned

Example

Query
subscription Hold_stream(
  $batch_size: Int!,
  $cursor: [Hold_stream_cursor_input]!,
  $where: Hold_bool_exp
) {
  Hold_stream(
    batch_size: $batch_size,
    cursor: $cursor,
    where: $where
  ) {
    asset {
      ...AssetFragment
    }
    asset_id
    balance
    baseAsset {
      ...AssetFragment
    }
    baseAsset_id
    blockNumber
    createdBlockNumber
    createdTimestamp
    createdTransactionIndex
    db_write_timestamp
    id
    ownerEOA
    profile {
      ...ProfileFragment
    }
    profile_id
    timestamp
    token {
      ...TokenFragment
    }
    token_id
    transaction {
      ...TransactionFragment
    }
    transaction_id
    updatedBlockNumber
    updatedTimestamp
    updatedTransactionIndex
  }
}
Variables
{
  "batch_size": 123,
  "cursor": [Hold_stream_cursor_input],
  "where": Hold_bool_exp
}
Response
{
  "data": {
    "Hold_stream": [
      {
        "asset": Asset,
        "asset_id": "xyz789",
        "balance": numeric,
        "baseAsset": Asset,
        "baseAsset_id": "abc123",
        "blockNumber": 123,
        "createdBlockNumber": 987,
        "createdTimestamp": 123,
        "createdTransactionIndex": 123,
        "db_write_timestamp": timestamp,
        "id": "xyz789",
        "ownerEOA": true,
        "profile": Profile,
        "profile_id": "xyz789",
        "timestamp": 123,
        "token": Token,
        "token_id": "abc123",
        "transaction": Transaction,
        "transaction_id": "abc123",
        "updatedBlockNumber": 987,
        "updatedTimestamp": 123,
        "updatedTransactionIndex": 987
      }
    ]
  }
}

Interaction

Description

fetch data from the table: "Interaction"

Response

Returns [Interaction!]!

Arguments
Name Description
distinct_on - [Interaction_select_column!] distinct select on columns
limit - Int limit the number of rows returned
offset - Int skip the first n rows. Use only with order_by
order_by - [Interaction_order_by!] sort the rows by one or more columns
where - Interaction_bool_exp filter the rows returned

Example

Query
subscription Interaction(
  $distinct_on: [Interaction_select_column!],
  $limit: Int,
  $offset: Int,
  $order_by: [Interaction_order_by!],
  $where: Interaction_bool_exp
) {
  Interaction(
    distinct_on: $distinct_on,
    limit: $limit,
    offset: $offset,
    order_by: $order_by,
    where: $where
  ) {
    blockNumber
    db_write_timestamp
    id
    interacted
    interactedAsset {
      ...AssetFragment
    }
    interactedAsset_id
    interactionType
    operationType
    profile {
      ...ProfileFragment
    }
    profile_id
    receivedData
    returnedValue
    timestamp
    transaction {
      ...TransactionFragment
    }
    transaction_id
    value
  }
}
Variables
{
  "distinct_on": ["blockNumber"],
  "limit": 987,
  "offset": 123,
  "order_by": [Interaction_order_by],
  "where": Interaction_bool_exp
}
Response
{
  "data": {
    "Interaction": [
      {
        "blockNumber": 987,
        "db_write_timestamp": timestamp,
        "id": "xyz789",
        "interacted": "abc123",
        "interactedAsset": Asset,
        "interactedAsset_id": "abc123",
        "interactionType": interactiontype,
        "operationType": numeric,
        "profile": Profile,
        "profile_id": "abc123",
        "receivedData": "abc123",
        "returnedValue": "xyz789",
        "timestamp": 987,
        "transaction": Transaction,
        "transaction_id": "xyz789",
        "value": numeric
      }
    ]
  }
}

Interaction_aggregate

Description

fetch aggregated fields from the table: "Interaction"

Response

Returns an Interaction_aggregate!

Arguments
Name Description
distinct_on - [Interaction_select_column!] distinct select on columns
limit - Int limit the number of rows returned
offset - Int skip the first n rows. Use only with order_by
order_by - [Interaction_order_by!] sort the rows by one or more columns
where - Interaction_bool_exp filter the rows returned

Example

Query
subscription Interaction_aggregate(
  $distinct_on: [Interaction_select_column!],
  $limit: Int,
  $offset: Int,
  $order_by: [Interaction_order_by!],
  $where: Interaction_bool_exp
) {
  Interaction_aggregate(
    distinct_on: $distinct_on,
    limit: $limit,
    offset: $offset,
    order_by: $order_by,
    where: $where
  ) {
    aggregate {
      ...Interaction_aggregate_fieldsFragment
    }
    nodes {
      ...InteractionFragment
    }
  }
}
Variables
{
  "distinct_on": ["blockNumber"],
  "limit": 987,
  "offset": 987,
  "order_by": [Interaction_order_by],
  "where": Interaction_bool_exp
}
Response
{
  "data": {
    "Interaction_aggregate": {
      "aggregate": Interaction_aggregate_fields,
      "nodes": [Interaction]
    }
  }
}

Interaction_by_pk

Description

fetch data from the table: "Interaction" using primary key columns

Response

Returns an Interaction

Arguments
Name Description
id - String!

Example

Query
subscription Interaction_by_pk($id: String!) {
  Interaction_by_pk(id: $id) {
    blockNumber
    db_write_timestamp
    id
    interacted
    interactedAsset {
      ...AssetFragment
    }
    interactedAsset_id
    interactionType
    operationType
    profile {
      ...ProfileFragment
    }
    profile_id
    receivedData
    returnedValue
    timestamp
    transaction {
      ...TransactionFragment
    }
    transaction_id
    value
  }
}
Variables
{"id": "abc123"}
Response
{
  "data": {
    "Interaction_by_pk": {
      "blockNumber": 987,
      "db_write_timestamp": timestamp,
      "id": "xyz789",
      "interacted": "abc123",
      "interactedAsset": Asset,
      "interactedAsset_id": "abc123",
      "interactionType": interactiontype,
      "operationType": numeric,
      "profile": Profile,
      "profile_id": "abc123",
      "receivedData": "abc123",
      "returnedValue": "abc123",
      "timestamp": 123,
      "transaction": Transaction,
      "transaction_id": "abc123",
      "value": numeric
    }
  }
}

Interaction_stream

Description

fetch data from the table in a streaming manner: "Interaction"

Response

Returns [Interaction!]!

Arguments
Name Description
batch_size - Int! maximum number of rows returned in a single batch
cursor - [Interaction_stream_cursor_input]! cursor to stream the results returned by the query
where - Interaction_bool_exp filter the rows returned

Example

Query
subscription Interaction_stream(
  $batch_size: Int!,
  $cursor: [Interaction_stream_cursor_input]!,
  $where: Interaction_bool_exp
) {
  Interaction_stream(
    batch_size: $batch_size,
    cursor: $cursor,
    where: $where
  ) {
    blockNumber
    db_write_timestamp
    id
    interacted
    interactedAsset {
      ...AssetFragment
    }
    interactedAsset_id
    interactionType
    operationType
    profile {
      ...ProfileFragment
    }
    profile_id
    receivedData
    returnedValue
    timestamp
    transaction {
      ...TransactionFragment
    }
    transaction_id
    value
  }
}
Variables
{
  "batch_size": 987,
  "cursor": [Interaction_stream_cursor_input],
  "where": Interaction_bool_exp
}
Response
{
  "data": {
    "Interaction_stream": [
      {
        "blockNumber": 987,
        "db_write_timestamp": timestamp,
        "id": "xyz789",
        "interacted": "abc123",
        "interactedAsset": Asset,
        "interactedAsset_id": "abc123",
        "interactionType": interactiontype,
        "operationType": numeric,
        "profile": Profile,
        "profile_id": "xyz789",
        "receivedData": "abc123",
        "returnedValue": "abc123",
        "timestamp": 987,
        "transaction": Transaction,
        "transaction_id": "abc123",
        "value": numeric
      }
    ]
  }
}

IssuedAsset

Description

fetch data from the table: "IssuedAsset"

Response

Returns [IssuedAsset!]!

Arguments
Name Description
distinct_on - [IssuedAsset_select_column!] distinct select on columns
limit - Int limit the number of rows returned
offset - Int skip the first n rows. Use only with order_by
order_by - [IssuedAsset_order_by!] sort the rows by one or more columns
where - IssuedAsset_bool_exp filter the rows returned

Example

Query
subscription IssuedAsset(
  $distinct_on: [IssuedAsset_select_column!],
  $limit: Int,
  $offset: Int,
  $order_by: [IssuedAsset_order_by!],
  $where: IssuedAsset_bool_exp
) {
  IssuedAsset(
    distinct_on: $distinct_on,
    limit: $limit,
    offset: $offset,
    order_by: $order_by,
    where: $where
  ) {
    asset {
      ...AssetFragment
    }
    asset_id
    blockNumber
    createdBlockNumber
    createdTimestamp
    createdTransactionIndex
    db_write_timestamp
    id
    index
    interfaceId
    profile {
      ...ProfileFragment
    }
    profile_id
    updatedBlockNumber
    updatedTimestamp
    updatedTransactionIndex
  }
}
Variables
{
  "distinct_on": ["asset_id"],
  "limit": 123,
  "offset": 123,
  "order_by": [IssuedAsset_order_by],
  "where": IssuedAsset_bool_exp
}
Response
{
  "data": {
    "IssuedAsset": [
      {
        "asset": Asset,
        "asset_id": "abc123",
        "blockNumber": 987,
        "createdBlockNumber": 123,
        "createdTimestamp": 987,
        "createdTransactionIndex": 987,
        "db_write_timestamp": timestamp,
        "id": "xyz789",
        "index": 123,
        "interfaceId": "abc123",
        "profile": Profile,
        "profile_id": "xyz789",
        "updatedBlockNumber": 123,
        "updatedTimestamp": 987,
        "updatedTransactionIndex": 123
      }
    ]
  }
}

IssuedAsset_aggregate

Description

fetch aggregated fields from the table: "IssuedAsset"

Response

Returns an IssuedAsset_aggregate!

Arguments
Name Description
distinct_on - [IssuedAsset_select_column!] distinct select on columns
limit - Int limit the number of rows returned
offset - Int skip the first n rows. Use only with order_by
order_by - [IssuedAsset_order_by!] sort the rows by one or more columns
where - IssuedAsset_bool_exp filter the rows returned

Example

Query
subscription IssuedAsset_aggregate(
  $distinct_on: [IssuedAsset_select_column!],
  $limit: Int,
  $offset: Int,
  $order_by: [IssuedAsset_order_by!],
  $where: IssuedAsset_bool_exp
) {
  IssuedAsset_aggregate(
    distinct_on: $distinct_on,
    limit: $limit,
    offset: $offset,
    order_by: $order_by,
    where: $where
  ) {
    aggregate {
      ...IssuedAsset_aggregate_fieldsFragment
    }
    nodes {
      ...IssuedAssetFragment
    }
  }
}
Variables
{
  "distinct_on": ["asset_id"],
  "limit": 987,
  "offset": 987,
  "order_by": [IssuedAsset_order_by],
  "where": IssuedAsset_bool_exp
}
Response
{
  "data": {
    "IssuedAsset_aggregate": {
      "aggregate": IssuedAsset_aggregate_fields,
      "nodes": [IssuedAsset]
    }
  }
}

IssuedAsset_by_pk

Description

fetch data from the table: "IssuedAsset" using primary key columns

Response

Returns an IssuedAsset

Arguments
Name Description
id - String!

Example

Query
subscription IssuedAsset_by_pk($id: String!) {
  IssuedAsset_by_pk(id: $id) {
    asset {
      ...AssetFragment
    }
    asset_id
    blockNumber
    createdBlockNumber
    createdTimestamp
    createdTransactionIndex
    db_write_timestamp
    id
    index
    interfaceId
    profile {
      ...ProfileFragment
    }
    profile_id
    updatedBlockNumber
    updatedTimestamp
    updatedTransactionIndex
  }
}
Variables
{"id": "abc123"}
Response
{
  "data": {
    "IssuedAsset_by_pk": {
      "asset": Asset,
      "asset_id": "xyz789",
      "blockNumber": 987,
      "createdBlockNumber": 987,
      "createdTimestamp": 987,
      "createdTransactionIndex": 987,
      "db_write_timestamp": timestamp,
      "id": "abc123",
      "index": 987,
      "interfaceId": "abc123",
      "profile": Profile,
      "profile_id": "abc123",
      "updatedBlockNumber": 987,
      "updatedTimestamp": 123,
      "updatedTransactionIndex": 987
    }
  }
}

IssuedAsset_stream

Description

fetch data from the table in a streaming manner: "IssuedAsset"

Response

Returns [IssuedAsset!]!

Arguments
Name Description
batch_size - Int! maximum number of rows returned in a single batch
cursor - [IssuedAsset_stream_cursor_input]! cursor to stream the results returned by the query
where - IssuedAsset_bool_exp filter the rows returned

Example

Query
subscription IssuedAsset_stream(
  $batch_size: Int!,
  $cursor: [IssuedAsset_stream_cursor_input]!,
  $where: IssuedAsset_bool_exp
) {
  IssuedAsset_stream(
    batch_size: $batch_size,
    cursor: $cursor,
    where: $where
  ) {
    asset {
      ...AssetFragment
    }
    asset_id
    blockNumber
    createdBlockNumber
    createdTimestamp
    createdTransactionIndex
    db_write_timestamp
    id
    index
    interfaceId
    profile {
      ...ProfileFragment
    }
    profile_id
    updatedBlockNumber
    updatedTimestamp
    updatedTransactionIndex
  }
}
Variables
{
  "batch_size": 987,
  "cursor": [IssuedAsset_stream_cursor_input],
  "where": IssuedAsset_bool_exp
}
Response
{
  "data": {
    "IssuedAsset_stream": [
      {
        "asset": Asset,
        "asset_id": "abc123",
        "blockNumber": 123,
        "createdBlockNumber": 123,
        "createdTimestamp": 987,
        "createdTransactionIndex": 987,
        "db_write_timestamp": timestamp,
        "id": "abc123",
        "index": 987,
        "interfaceId": "xyz789",
        "profile": Profile,
        "profile_id": "abc123",
        "updatedBlockNumber": 987,
        "updatedTimestamp": 987,
        "updatedTransactionIndex": 123
      }
    ]
  }
}

KeyManager

Description

fetch data from the table: "KeyManager"

Response

Returns [KeyManager!]!

Arguments
Name Description
distinct_on - [KeyManager_select_column!] distinct select on columns
limit - Int limit the number of rows returned
offset - Int skip the first n rows. Use only with order_by
order_by - [KeyManager_order_by!] sort the rows by one or more columns
where - KeyManager_bool_exp filter the rows returned

Example

Query
subscription KeyManager(
  $distinct_on: [KeyManager_select_column!],
  $limit: Int,
  $offset: Int,
  $order_by: [KeyManager_order_by!],
  $where: KeyManager_bool_exp
) {
  KeyManager(
    distinct_on: $distinct_on,
    limit: $limit,
    offset: $offset,
    order_by: $order_by,
    where: $where
  ) {
    blockNumber
    createdBlockNumber
    createdTimestamp
    createdTransactionIndex
    id
    profile {
      ...ProfileFragment
    }
    profile_id
    updatedBlockNumber
    updatedTimestamp
    updatedTransactionIndex
  }
}
Variables
{
  "distinct_on": ["blockNumber"],
  "limit": 987,
  "offset": 987,
  "order_by": [KeyManager_order_by],
  "where": KeyManager_bool_exp
}
Response
{
  "data": {
    "KeyManager": [
      {
        "blockNumber": 987,
        "createdBlockNumber": 123,
        "createdTimestamp": 123,
        "createdTransactionIndex": 987,
        "id": "xyz789",
        "profile": Profile,
        "profile_id": "abc123",
        "updatedBlockNumber": 987,
        "updatedTimestamp": 123,
        "updatedTransactionIndex": 987
      }
    ]
  }
}

KeyManager_aggregate

Description

fetch aggregated fields from the table: "KeyManager"

Response

Returns a KeyManager_aggregate!

Arguments
Name Description
distinct_on - [KeyManager_select_column!] distinct select on columns
limit - Int limit the number of rows returned
offset - Int skip the first n rows. Use only with order_by
order_by - [KeyManager_order_by!] sort the rows by one or more columns
where - KeyManager_bool_exp filter the rows returned

Example

Query
subscription KeyManager_aggregate(
  $distinct_on: [KeyManager_select_column!],
  $limit: Int,
  $offset: Int,
  $order_by: [KeyManager_order_by!],
  $where: KeyManager_bool_exp
) {
  KeyManager_aggregate(
    distinct_on: $distinct_on,
    limit: $limit,
    offset: $offset,
    order_by: $order_by,
    where: $where
  ) {
    aggregate {
      ...KeyManager_aggregate_fieldsFragment
    }
    nodes {
      ...KeyManagerFragment
    }
  }
}
Variables
{
  "distinct_on": ["blockNumber"],
  "limit": 987,
  "offset": 987,
  "order_by": [KeyManager_order_by],
  "where": KeyManager_bool_exp
}
Response
{
  "data": {
    "KeyManager_aggregate": {
      "aggregate": KeyManager_aggregate_fields,
      "nodes": [KeyManager]
    }
  }
}

KeyManager_by_pk

Description

fetch data from the table: "KeyManager" using primary key columns

Response

Returns a KeyManager

Arguments
Name Description
id - String!

Example

Query
subscription KeyManager_by_pk($id: String!) {
  KeyManager_by_pk(id: $id) {
    blockNumber
    createdBlockNumber
    createdTimestamp
    createdTransactionIndex
    id
    profile {
      ...ProfileFragment
    }
    profile_id
    updatedBlockNumber
    updatedTimestamp
    updatedTransactionIndex
  }
}
Variables
{"id": "xyz789"}
Response
{
  "data": {
    "KeyManager_by_pk": {
      "blockNumber": 987,
      "createdBlockNumber": 123,
      "createdTimestamp": 123,
      "createdTransactionIndex": 123,
      "id": "xyz789",
      "profile": Profile,
      "profile_id": "xyz789",
      "updatedBlockNumber": 987,
      "updatedTimestamp": 987,
      "updatedTransactionIndex": 987
    }
  }
}

KeyManager_stream

Description

fetch data from the table in a streaming manner: "KeyManager"

Response

Returns [KeyManager!]!

Arguments
Name Description
batch_size - Int! maximum number of rows returned in a single batch
cursor - [KeyManager_stream_cursor_input]! cursor to stream the results returned by the query
where - KeyManager_bool_exp filter the rows returned

Example

Query
subscription KeyManager_stream(
  $batch_size: Int!,
  $cursor: [KeyManager_stream_cursor_input]!,
  $where: KeyManager_bool_exp
) {
  KeyManager_stream(
    batch_size: $batch_size,
    cursor: $cursor,
    where: $where
  ) {
    blockNumber
    createdBlockNumber
    createdTimestamp
    createdTransactionIndex
    id
    profile {
      ...ProfileFragment
    }
    profile_id
    updatedBlockNumber
    updatedTimestamp
    updatedTransactionIndex
  }
}
Variables
{
  "batch_size": 123,
  "cursor": [KeyManager_stream_cursor_input],
  "where": KeyManager_bool_exp
}
Response
{
  "data": {
    "KeyManager_stream": [
      {
        "blockNumber": 123,
        "createdBlockNumber": 123,
        "createdTimestamp": 123,
        "createdTransactionIndex": 123,
        "id": "abc123",
        "profile": Profile,
        "profile_id": "abc123",
        "updatedBlockNumber": 987,
        "updatedTimestamp": 123,
        "updatedTransactionIndex": 123
      }
    ]
  }
}

LSP23Deployment

Description

fetch data from the table: "LSP23Deployment"

Response

Returns [LSP23Deployment!]!

Arguments
Name Description
distinct_on - [LSP23Deployment_select_column!] distinct select on columns
limit - Int limit the number of rows returned
offset - Int skip the first n rows. Use only with order_by
order_by - [LSP23Deployment_order_by!] sort the rows by one or more columns
where - LSP23Deployment_bool_exp filter the rows returned

Example

Query
subscription LSP23Deployment(
  $distinct_on: [LSP23Deployment_select_column!],
  $limit: Int,
  $offset: Int,
  $order_by: [LSP23Deployment_order_by!],
  $where: LSP23Deployment_bool_exp
) {
  LSP23Deployment(
    distinct_on: $distinct_on,
    limit: $limit,
    offset: $offset,
    order_by: $order_by,
    where: $where
  ) {
    blockNumber
    chainIds
    decoded
    factoryAddress
    id
    isProfile
    logIndex
    postDeploymentModule
    primaryContract
    profile {
      ...ProfileFragment
    }
    secondaryContract
    timestamp
    transactionHash
  }
}
Variables
{
  "distinct_on": ["blockNumber"],
  "limit": 123,
  "offset": 987,
  "order_by": [LSP23Deployment_order_by],
  "where": LSP23Deployment_bool_exp
}
Response
{
  "data": {
    "LSP23Deployment": [
      {
        "blockNumber": 987,
        "chainIds": [123],
        "decoded": jsonb,
        "factoryAddress": "abc123",
        "id": "xyz789",
        "isProfile": true,
        "logIndex": 987,
        "postDeploymentModule": "xyz789",
        "primaryContract": "xyz789",
        "profile": Profile,
        "secondaryContract": "xyz789",
        "timestamp": 123,
        "transactionHash": "xyz789"
      }
    ]
  }
}

LSP23Deployment_aggregate

Description

fetch aggregated fields from the table: "LSP23Deployment"

Response

Returns an LSP23Deployment_aggregate!

Arguments
Name Description
distinct_on - [LSP23Deployment_select_column!] distinct select on columns
limit - Int limit the number of rows returned
offset - Int skip the first n rows. Use only with order_by
order_by - [LSP23Deployment_order_by!] sort the rows by one or more columns
where - LSP23Deployment_bool_exp filter the rows returned

Example

Query
subscription LSP23Deployment_aggregate(
  $distinct_on: [LSP23Deployment_select_column!],
  $limit: Int,
  $offset: Int,
  $order_by: [LSP23Deployment_order_by!],
  $where: LSP23Deployment_bool_exp
) {
  LSP23Deployment_aggregate(
    distinct_on: $distinct_on,
    limit: $limit,
    offset: $offset,
    order_by: $order_by,
    where: $where
  ) {
    aggregate {
      ...LSP23Deployment_aggregate_fieldsFragment
    }
    nodes {
      ...LSP23DeploymentFragment
    }
  }
}
Variables
{
  "distinct_on": ["blockNumber"],
  "limit": 123,
  "offset": 987,
  "order_by": [LSP23Deployment_order_by],
  "where": LSP23Deployment_bool_exp
}
Response
{
  "data": {
    "LSP23Deployment_aggregate": {
      "aggregate": LSP23Deployment_aggregate_fields,
      "nodes": [LSP23Deployment]
    }
  }
}

LSP23Deployment_by_pk

Description

fetch data from the table: "LSP23Deployment" using primary key columns

Response

Returns an LSP23Deployment

Arguments
Name Description
id - String! Primary contract (Universal Profile) address

Example

Query
subscription LSP23Deployment_by_pk($id: String!) {
  LSP23Deployment_by_pk(id: $id) {
    blockNumber
    chainIds
    decoded
    factoryAddress
    id
    isProfile
    logIndex
    postDeploymentModule
    primaryContract
    profile {
      ...ProfileFragment
    }
    secondaryContract
    timestamp
    transactionHash
  }
}
Variables
{"id": "xyz789"}
Response
{
  "data": {
    "LSP23Deployment_by_pk": {
      "blockNumber": 987,
      "chainIds": [987],
      "decoded": jsonb,
      "factoryAddress": "abc123",
      "id": "xyz789",
      "isProfile": true,
      "logIndex": 987,
      "postDeploymentModule": "xyz789",
      "primaryContract": "xyz789",
      "profile": Profile,
      "secondaryContract": "abc123",
      "timestamp": 987,
      "transactionHash": "abc123"
    }
  }
}

LSP23Deployment_stream

Description

fetch data from the table in a streaming manner: "LSP23Deployment"

Response

Returns [LSP23Deployment!]!

Arguments
Name Description
batch_size - Int! maximum number of rows returned in a single batch
cursor - [LSP23Deployment_stream_cursor_input]! cursor to stream the results returned by the query
where - LSP23Deployment_bool_exp filter the rows returned

Example

Query
subscription LSP23Deployment_stream(
  $batch_size: Int!,
  $cursor: [LSP23Deployment_stream_cursor_input]!,
  $where: LSP23Deployment_bool_exp
) {
  LSP23Deployment_stream(
    batch_size: $batch_size,
    cursor: $cursor,
    where: $where
  ) {
    blockNumber
    chainIds
    decoded
    factoryAddress
    id
    isProfile
    logIndex
    postDeploymentModule
    primaryContract
    profile {
      ...ProfileFragment
    }
    secondaryContract
    timestamp
    transactionHash
  }
}
Variables
{
  "batch_size": 987,
  "cursor": [LSP23Deployment_stream_cursor_input],
  "where": LSP23Deployment_bool_exp
}
Response
{
  "data": {
    "LSP23Deployment_stream": [
      {
        "blockNumber": 123,
        "chainIds": [987],
        "decoded": jsonb,
        "factoryAddress": "xyz789",
        "id": "abc123",
        "isProfile": false,
        "logIndex": 987,
        "postDeploymentModule": "xyz789",
        "primaryContract": "xyz789",
        "profile": Profile,
        "secondaryContract": "abc123",
        "timestamp": 987,
        "transactionHash": "abc123"
      }
    ]
  }
}

Profile

Description

fetch data from the table: "Profile"

Response

Returns [Profile!]!

Arguments
Name Description
distinct_on - [Profile_select_column!] distinct select on columns
limit - Int limit the number of rows returned
offset - Int skip the first n rows. Use only with order_by
order_by - [Profile_order_by!] sort the rows by one or more columns
where - Profile_bool_exp filter the rows returned

Example

Query
subscription Profile(
  $distinct_on: [Profile_select_column!],
  $limit: Int,
  $offset: Int,
  $order_by: [Profile_order_by!],
  $where: Profile_bool_exp
) {
  Profile(
    distinct_on: $distinct_on,
    limit: $limit,
    offset: $offset,
    order_by: $order_by,
    where: $where
  ) {
    addressPermissions
    addressPermissions_
    app {
      ...AppFragment
    }
    appContributions {
      ...AppContributorFragment
    }
    appContributions_aggregate {
      ...AppContributor_aggregateFragment
    }
    appHistory {
      ...AppHistoryFragment
    }
    appHistory_aggregate {
      ...AppHistory_aggregateFragment
    }
    appInstalls {
      ...AppInstallFragment
    }
    appInstalls_aggregate {
      ...AppInstall_aggregateFragment
    }
    asset {
      ...AssetFragment
    }
    asset_id
    avatars {
      ...AvatarAssetURLFragment
    }
    avatars_
    avatars_aggregate {
      ...AvatarAssetURL_aggregateFragment
    }
    backgroundImages {
      ...ProfileBackgroundImageURLFragment
    }
    backgroundImages_
    backgroundImages_aggregate {
      ...ProfileBackgroundImageURL_aggregateFragment
    }
    blockNumber
    controllers {
      ...ControllerFragment
    }
    controllers_
    controllers_aggregate {
      ...Controller_aggregateFragment
    }
    createdBlockNumber
    createdTimestamp
    createdTransactionIndex
    data
    db_write_timestamp
    description
    error
    feed {
      ...FeedProfileArgFragment
    }
    feed_aggregate {
      ...FeedProfileArg_aggregateFragment
    }
    followed {
      ...FollowFragment
    }
    followed_aggregate {
      ...Follow_aggregateFragment
    }
    following {
      ...FollowFragment
    }
    following_aggregate {
      ...Follow_aggregateFragment
    }
    ft
    fts
    fullName
    holds {
      ...HoldFragment
    }
    holds_aggregate {
      ...Hold_aggregateFragment
    }
    id
    incoming_transfers {
      ...TransferFragment
    }
    incoming_transfers_aggregate {
      ...Transfer_aggregateFragment
    }
    interactions {
      ...InteractionFragment
    }
    interactions_aggregate {
      ...Interaction_aggregateFragment
    }
    interfaces
    isContract
    isEOA
    keyManagers {
      ...KeyManagerFragment
    }
    keyManagers_aggregate {
      ...KeyManager_aggregateFragment
    }
    lastMetadataUpdate
    lastNameUpdate
    links {
      ...ProfileLinkFragment
    }
    links_
    links_aggregate {
      ...ProfileLink_aggregateFragment
    }
    lsp12IssuedAssets {
      ...IssuedAssetFragment
    }
    lsp12IssuedAssets_
    lsp12IssuedAssets_aggregate {
      ...IssuedAsset_aggregateFragment
    }
    lsp1UniversalReceiverDelegate {
      ...ReceiverDelegateFragment
    }
    lsp1UniversalReceiverDelegate_aggregate {
      ...ReceiverDelegate_aggregateFragment
    }
    lsp23Deployment {
      ...LSP23DeploymentFragment
    }
    lsp5ReceivedAssets {
      ...ReceivedAssetFragment
    }
    lsp5ReceivedAssets_
    lsp5ReceivedAssets_aggregate {
      ...ReceivedAsset_aggregateFragment
    }
    method
    name
    outgoing_transfers {
      ...TransferFragment
    }
    outgoing_transfers_aggregate {
      ...Transfer_aggregateFragment
    }
    owner {
      ...ProfileFragment
    }
    owner_id
    profileImages {
      ...ProfileImageURLFragment
    }
    profileImages_
    profileImages_aggregate {
      ...ProfileImageURL_aggregateFragment
    }
    src
    standard
    supportedStandardsLsp3Profile
    tags
    transactions {
      ...TransactionFragment
    }
    transactions_aggregate {
      ...Transaction_aggregateFragment
    }
    updatedBlockNumber
    updatedTimestamp
    updatedTransactionIndex
    url
  }
}
Variables
{
  "distinct_on": ["addressPermissions"],
  "limit": 987,
  "offset": 123,
  "order_by": [Profile_order_by],
  "where": Profile_bool_exp
}
Response
{
  "data": {
    "Profile": [
      {
        "addressPermissions": ["xyz789"],
        "addressPermissions_": ["xyz789"],
        "app": App,
        "appContributions": [AppContributor],
        "appContributions_aggregate": AppContributor_aggregate,
        "appHistory": [AppHistory],
        "appHistory_aggregate": AppHistory_aggregate,
        "appInstalls": [AppInstall],
        "appInstalls_aggregate": AppInstall_aggregate,
        "asset": Asset,
        "asset_id": "xyz789",
        "avatars": [AvatarAssetURL],
        "avatars_": ["xyz789"],
        "avatars_aggregate": AvatarAssetURL_aggregate,
        "backgroundImages": [ProfileBackgroundImageURL],
        "backgroundImages_": ["xyz789"],
        "backgroundImages_aggregate": ProfileBackgroundImageURL_aggregate,
        "blockNumber": 123,
        "controllers": [Controller],
        "controllers_": ["xyz789"],
        "controllers_aggregate": Controller_aggregate,
        "createdBlockNumber": 123,
        "createdTimestamp": 123,
        "createdTransactionIndex": 987,
        "data": "xyz789",
        "db_write_timestamp": timestamp,
        "description": "abc123",
        "error": "xyz789",
        "feed": [FeedProfileArg],
        "feed_aggregate": FeedProfileArg_aggregate,
        "followed": [Follow],
        "followed_aggregate": Follow_aggregate,
        "following": [Follow],
        "following_aggregate": Follow_aggregate,
        "ft": "abc123",
        "fts": tsvector,
        "fullName": "xyz789",
        "holds": [Hold],
        "holds_aggregate": Hold_aggregate,
        "id": "xyz789",
        "incoming_transfers": [Transfer],
        "incoming_transfers_aggregate": Transfer_aggregate,
        "interactions": [Interaction],
        "interactions_aggregate": Interaction_aggregate,
        "interfaces": ["xyz789"],
        "isContract": false,
        "isEOA": true,
        "keyManagers": [KeyManager],
        "keyManagers_aggregate": KeyManager_aggregate,
        "lastMetadataUpdate": 123,
        "lastNameUpdate": 123,
        "links": [ProfileLink],
        "links_": ["abc123"],
        "links_aggregate": ProfileLink_aggregate,
        "lsp12IssuedAssets": [IssuedAsset],
        "lsp12IssuedAssets_": ["xyz789"],
        "lsp12IssuedAssets_aggregate": IssuedAsset_aggregate,
        "lsp1UniversalReceiverDelegate": [
          ReceiverDelegate
        ],
        "lsp1UniversalReceiverDelegate_aggregate": ReceiverDelegate_aggregate,
        "lsp23Deployment": LSP23Deployment,
        "lsp5ReceivedAssets": [ReceivedAsset],
        "lsp5ReceivedAssets_": ["xyz789"],
        "lsp5ReceivedAssets_aggregate": ReceivedAsset_aggregate,
        "method": "xyz789",
        "name": "abc123",
        "outgoing_transfers": [Transfer],
        "outgoing_transfers_aggregate": Transfer_aggregate,
        "owner": Profile,
        "owner_id": "xyz789",
        "profileImages": [ProfileImageURL],
        "profileImages_": ["abc123"],
        "profileImages_aggregate": ProfileImageURL_aggregate,
        "src": "abc123",
        "standard": standards,
        "supportedStandardsLsp3Profile": true,
        "tags": ["abc123"],
        "transactions": [Transaction],
        "transactions_aggregate": Transaction_aggregate,
        "updatedBlockNumber": 123,
        "updatedTimestamp": 987,
        "updatedTransactionIndex": 123,
        "url": "xyz789"
      }
    ]
  }
}

ProfileBackgroundImageURL

Description

fetch data from the table: "ProfileBackgroundImageURL"

Arguments
Name Description
distinct_on - [ProfileBackgroundImageURL_select_column!] distinct select on columns
limit - Int limit the number of rows returned
offset - Int skip the first n rows. Use only with order_by
order_by - [ProfileBackgroundImageURL_order_by!] sort the rows by one or more columns
where - ProfileBackgroundImageURL_bool_exp filter the rows returned

Example

Query
subscription ProfileBackgroundImageURL(
  $distinct_on: [ProfileBackgroundImageURL_select_column!],
  $limit: Int,
  $offset: Int,
  $order_by: [ProfileBackgroundImageURL_order_by!],
  $where: ProfileBackgroundImageURL_bool_exp
) {
  ProfileBackgroundImageURL(
    distinct_on: $distinct_on,
    limit: $limit,
    offset: $offset,
    order_by: $order_by,
    where: $where
  ) {
    blockNumber
    data
    db_write_timestamp
    error
    fileType
    height
    id
    index
    method
    profile {
      ...ProfileFragment
    }
    profile_id
    src
    url
    verified
    width
  }
}
Variables
{
  "distinct_on": ["blockNumber"],
  "limit": 987,
  "offset": 987,
  "order_by": [ProfileBackgroundImageURL_order_by],
  "where": ProfileBackgroundImageURL_bool_exp
}
Response
{
  "data": {
    "ProfileBackgroundImageURL": [
      {
        "blockNumber": 123,
        "data": "xyz789",
        "db_write_timestamp": timestamp,
        "error": "abc123",
        "fileType": "abc123",
        "height": 987,
        "id": "abc123",
        "index": 987,
        "method": "abc123",
        "profile": Profile,
        "profile_id": "xyz789",
        "src": "xyz789",
        "url": "xyz789",
        "verified": verificationstatus,
        "width": 987
      }
    ]
  }
}

ProfileBackgroundImageURL_aggregate

Description

fetch aggregated fields from the table: "ProfileBackgroundImageURL"

Arguments
Name Description
distinct_on - [ProfileBackgroundImageURL_select_column!] distinct select on columns
limit - Int limit the number of rows returned
offset - Int skip the first n rows. Use only with order_by
order_by - [ProfileBackgroundImageURL_order_by!] sort the rows by one or more columns
where - ProfileBackgroundImageURL_bool_exp filter the rows returned

Example

Query
subscription ProfileBackgroundImageURL_aggregate(
  $distinct_on: [ProfileBackgroundImageURL_select_column!],
  $limit: Int,
  $offset: Int,
  $order_by: [ProfileBackgroundImageURL_order_by!],
  $where: ProfileBackgroundImageURL_bool_exp
) {
  ProfileBackgroundImageURL_aggregate(
    distinct_on: $distinct_on,
    limit: $limit,
    offset: $offset,
    order_by: $order_by,
    where: $where
  ) {
    aggregate {
      ...ProfileBackgroundImageURL_aggregate_fieldsFragment
    }
    nodes {
      ...ProfileBackgroundImageURLFragment
    }
  }
}
Variables
{
  "distinct_on": ["blockNumber"],
  "limit": 123,
  "offset": 123,
  "order_by": [ProfileBackgroundImageURL_order_by],
  "where": ProfileBackgroundImageURL_bool_exp
}
Response
{
  "data": {
    "ProfileBackgroundImageURL_aggregate": {
      "aggregate": ProfileBackgroundImageURL_aggregate_fields,
      "nodes": [ProfileBackgroundImageURL]
    }
  }
}

ProfileBackgroundImageURL_by_pk

Description

fetch data from the table: "ProfileBackgroundImageURL" using primary key columns

Response

Returns an ProfileBackgroundImageURL

Arguments
Name Description
id - String!

Example

Query
subscription ProfileBackgroundImageURL_by_pk($id: String!) {
  ProfileBackgroundImageURL_by_pk(id: $id) {
    blockNumber
    data
    db_write_timestamp
    error
    fileType
    height
    id
    index
    method
    profile {
      ...ProfileFragment
    }
    profile_id
    src
    url
    verified
    width
  }
}
Variables
{"id": "abc123"}
Response
{
  "data": {
    "ProfileBackgroundImageURL_by_pk": {
      "blockNumber": 123,
      "data": "abc123",
      "db_write_timestamp": timestamp,
      "error": "xyz789",
      "fileType": "abc123",
      "height": 987,
      "id": "abc123",
      "index": 123,
      "method": "abc123",
      "profile": Profile,
      "profile_id": "xyz789",
      "src": "xyz789",
      "url": "xyz789",
      "verified": verificationstatus,
      "width": 987
    }
  }
}

ProfileBackgroundImageURL_stream

Description

fetch data from the table in a streaming manner: "ProfileBackgroundImageURL"

Arguments
Name Description
batch_size - Int! maximum number of rows returned in a single batch
cursor - [ProfileBackgroundImageURL_stream_cursor_input]! cursor to stream the results returned by the query
where - ProfileBackgroundImageURL_bool_exp filter the rows returned

Example

Query
subscription ProfileBackgroundImageURL_stream(
  $batch_size: Int!,
  $cursor: [ProfileBackgroundImageURL_stream_cursor_input]!,
  $where: ProfileBackgroundImageURL_bool_exp
) {
  ProfileBackgroundImageURL_stream(
    batch_size: $batch_size,
    cursor: $cursor,
    where: $where
  ) {
    blockNumber
    data
    db_write_timestamp
    error
    fileType
    height
    id
    index
    method
    profile {
      ...ProfileFragment
    }
    profile_id
    src
    url
    verified
    width
  }
}
Variables
{
  "batch_size": 123,
  "cursor": [
    ProfileBackgroundImageURL_stream_cursor_input
  ],
  "where": ProfileBackgroundImageURL_bool_exp
}
Response
{
  "data": {
    "ProfileBackgroundImageURL_stream": [
      {
        "blockNumber": 123,
        "data": "abc123",
        "db_write_timestamp": timestamp,
        "error": "xyz789",
        "fileType": "xyz789",
        "height": 987,
        "id": "abc123",
        "index": 123,
        "method": "xyz789",
        "profile": Profile,
        "profile_id": "abc123",
        "src": "abc123",
        "url": "abc123",
        "verified": verificationstatus,
        "width": 987
      }
    ]
  }
}

ProfileImageURL

Description

fetch data from the table: "ProfileImageURL"

Response

Returns [ProfileImageURL!]!

Arguments
Name Description
distinct_on - [ProfileImageURL_select_column!] distinct select on columns
limit - Int limit the number of rows returned
offset - Int skip the first n rows. Use only with order_by
order_by - [ProfileImageURL_order_by!] sort the rows by one or more columns
where - ProfileImageURL_bool_exp filter the rows returned

Example

Query
subscription ProfileImageURL(
  $distinct_on: [ProfileImageURL_select_column!],
  $limit: Int,
  $offset: Int,
  $order_by: [ProfileImageURL_order_by!],
  $where: ProfileImageURL_bool_exp
) {
  ProfileImageURL(
    distinct_on: $distinct_on,
    limit: $limit,
    offset: $offset,
    order_by: $order_by,
    where: $where
  ) {
    blockNumber
    data
    db_write_timestamp
    error
    fileType
    height
    id
    index
    method
    profile {
      ...ProfileFragment
    }
    profile_id
    src
    url
    verified
    width
  }
}
Variables
{
  "distinct_on": ["blockNumber"],
  "limit": 123,
  "offset": 987,
  "order_by": [ProfileImageURL_order_by],
  "where": ProfileImageURL_bool_exp
}
Response
{
  "data": {
    "ProfileImageURL": [
      {
        "blockNumber": 987,
        "data": "abc123",
        "db_write_timestamp": timestamp,
        "error": "abc123",
        "fileType": "abc123",
        "height": 987,
        "id": "xyz789",
        "index": 987,
        "method": "abc123",
        "profile": Profile,
        "profile_id": "abc123",
        "src": "abc123",
        "url": "xyz789",
        "verified": verificationstatus,
        "width": 987
      }
    ]
  }
}

ProfileImageURL_aggregate

Description

fetch aggregated fields from the table: "ProfileImageURL"

Response

Returns an ProfileImageURL_aggregate!

Arguments
Name Description
distinct_on - [ProfileImageURL_select_column!] distinct select on columns
limit - Int limit the number of rows returned
offset - Int skip the first n rows. Use only with order_by
order_by - [ProfileImageURL_order_by!] sort the rows by one or more columns
where - ProfileImageURL_bool_exp filter the rows returned

Example

Query
subscription ProfileImageURL_aggregate(
  $distinct_on: [ProfileImageURL_select_column!],
  $limit: Int,
  $offset: Int,
  $order_by: [ProfileImageURL_order_by!],
  $where: ProfileImageURL_bool_exp
) {
  ProfileImageURL_aggregate(
    distinct_on: $distinct_on,
    limit: $limit,
    offset: $offset,
    order_by: $order_by,
    where: $where
  ) {
    aggregate {
      ...ProfileImageURL_aggregate_fieldsFragment
    }
    nodes {
      ...ProfileImageURLFragment
    }
  }
}
Variables
{
  "distinct_on": ["blockNumber"],
  "limit": 987,
  "offset": 987,
  "order_by": [ProfileImageURL_order_by],
  "where": ProfileImageURL_bool_exp
}
Response
{
  "data": {
    "ProfileImageURL_aggregate": {
      "aggregate": ProfileImageURL_aggregate_fields,
      "nodes": [ProfileImageURL]
    }
  }
}

ProfileImageURL_by_pk

Description

fetch data from the table: "ProfileImageURL" using primary key columns

Response

Returns an ProfileImageURL

Arguments
Name Description
id - String!

Example

Query
subscription ProfileImageURL_by_pk($id: String!) {
  ProfileImageURL_by_pk(id: $id) {
    blockNumber
    data
    db_write_timestamp
    error
    fileType
    height
    id
    index
    method
    profile {
      ...ProfileFragment
    }
    profile_id
    src
    url
    verified
    width
  }
}
Variables
{"id": "abc123"}
Response
{
  "data": {
    "ProfileImageURL_by_pk": {
      "blockNumber": 123,
      "data": "xyz789",
      "db_write_timestamp": timestamp,
      "error": "xyz789",
      "fileType": "xyz789",
      "height": 987,
      "id": "abc123",
      "index": 123,
      "method": "abc123",
      "profile": Profile,
      "profile_id": "xyz789",
      "src": "xyz789",
      "url": "xyz789",
      "verified": verificationstatus,
      "width": 123
    }
  }
}

ProfileImageURL_stream

Description

fetch data from the table in a streaming manner: "ProfileImageURL"

Response

Returns [ProfileImageURL!]!

Arguments
Name Description
batch_size - Int! maximum number of rows returned in a single batch
cursor - [ProfileImageURL_stream_cursor_input]! cursor to stream the results returned by the query
where - ProfileImageURL_bool_exp filter the rows returned

Example

Query
subscription ProfileImageURL_stream(
  $batch_size: Int!,
  $cursor: [ProfileImageURL_stream_cursor_input]!,
  $where: ProfileImageURL_bool_exp
) {
  ProfileImageURL_stream(
    batch_size: $batch_size,
    cursor: $cursor,
    where: $where
  ) {
    blockNumber
    data
    db_write_timestamp
    error
    fileType
    height
    id
    index
    method
    profile {
      ...ProfileFragment
    }
    profile_id
    src
    url
    verified
    width
  }
}
Variables
{
  "batch_size": 987,
  "cursor": [ProfileImageURL_stream_cursor_input],
  "where": ProfileImageURL_bool_exp
}
Response
{
  "data": {
    "ProfileImageURL_stream": [
      {
        "blockNumber": 987,
        "data": "xyz789",
        "db_write_timestamp": timestamp,
        "error": "abc123",
        "fileType": "abc123",
        "height": 987,
        "id": "xyz789",
        "index": 987,
        "method": "xyz789",
        "profile": Profile,
        "profile_id": "abc123",
        "src": "abc123",
        "url": "xyz789",
        "verified": verificationstatus,
        "width": 123
      }
    ]
  }
}

Profile_aggregate

Description

fetch aggregated fields from the table: "Profile"

Response

Returns a Profile_aggregate!

Arguments
Name Description
distinct_on - [Profile_select_column!] distinct select on columns
limit - Int limit the number of rows returned
offset - Int skip the first n rows. Use only with order_by
order_by - [Profile_order_by!] sort the rows by one or more columns
where - Profile_bool_exp filter the rows returned

Example

Query
subscription Profile_aggregate(
  $distinct_on: [Profile_select_column!],
  $limit: Int,
  $offset: Int,
  $order_by: [Profile_order_by!],
  $where: Profile_bool_exp
) {
  Profile_aggregate(
    distinct_on: $distinct_on,
    limit: $limit,
    offset: $offset,
    order_by: $order_by,
    where: $where
  ) {
    aggregate {
      ...Profile_aggregate_fieldsFragment
    }
    nodes {
      ...ProfileFragment
    }
  }
}
Variables
{
  "distinct_on": ["addressPermissions"],
  "limit": 123,
  "offset": 987,
  "order_by": [Profile_order_by],
  "where": Profile_bool_exp
}
Response
{
  "data": {
    "Profile_aggregate": {
      "aggregate": Profile_aggregate_fields,
      "nodes": [Profile]
    }
  }
}

Profile_by_pk

Description

fetch data from the table: "Profile" using primary key columns

Response

Returns a Profile

Arguments
Name Description
id - String!

Example

Query
subscription Profile_by_pk($id: String!) {
  Profile_by_pk(id: $id) {
    addressPermissions
    addressPermissions_
    app {
      ...AppFragment
    }
    appContributions {
      ...AppContributorFragment
    }
    appContributions_aggregate {
      ...AppContributor_aggregateFragment
    }
    appHistory {
      ...AppHistoryFragment
    }
    appHistory_aggregate {
      ...AppHistory_aggregateFragment
    }
    appInstalls {
      ...AppInstallFragment
    }
    appInstalls_aggregate {
      ...AppInstall_aggregateFragment
    }
    asset {
      ...AssetFragment
    }
    asset_id
    avatars {
      ...AvatarAssetURLFragment
    }
    avatars_
    avatars_aggregate {
      ...AvatarAssetURL_aggregateFragment
    }
    backgroundImages {
      ...ProfileBackgroundImageURLFragment
    }
    backgroundImages_
    backgroundImages_aggregate {
      ...ProfileBackgroundImageURL_aggregateFragment
    }
    blockNumber
    controllers {
      ...ControllerFragment
    }
    controllers_
    controllers_aggregate {
      ...Controller_aggregateFragment
    }
    createdBlockNumber
    createdTimestamp
    createdTransactionIndex
    data
    db_write_timestamp
    description
    error
    feed {
      ...FeedProfileArgFragment
    }
    feed_aggregate {
      ...FeedProfileArg_aggregateFragment
    }
    followed {
      ...FollowFragment
    }
    followed_aggregate {
      ...Follow_aggregateFragment
    }
    following {
      ...FollowFragment
    }
    following_aggregate {
      ...Follow_aggregateFragment
    }
    ft
    fts
    fullName
    holds {
      ...HoldFragment
    }
    holds_aggregate {
      ...Hold_aggregateFragment
    }
    id
    incoming_transfers {
      ...TransferFragment
    }
    incoming_transfers_aggregate {
      ...Transfer_aggregateFragment
    }
    interactions {
      ...InteractionFragment
    }
    interactions_aggregate {
      ...Interaction_aggregateFragment
    }
    interfaces
    isContract
    isEOA
    keyManagers {
      ...KeyManagerFragment
    }
    keyManagers_aggregate {
      ...KeyManager_aggregateFragment
    }
    lastMetadataUpdate
    lastNameUpdate
    links {
      ...ProfileLinkFragment
    }
    links_
    links_aggregate {
      ...ProfileLink_aggregateFragment
    }
    lsp12IssuedAssets {
      ...IssuedAssetFragment
    }
    lsp12IssuedAssets_
    lsp12IssuedAssets_aggregate {
      ...IssuedAsset_aggregateFragment
    }
    lsp1UniversalReceiverDelegate {
      ...ReceiverDelegateFragment
    }
    lsp1UniversalReceiverDelegate_aggregate {
      ...ReceiverDelegate_aggregateFragment
    }
    lsp23Deployment {
      ...LSP23DeploymentFragment
    }
    lsp5ReceivedAssets {
      ...ReceivedAssetFragment
    }
    lsp5ReceivedAssets_
    lsp5ReceivedAssets_aggregate {
      ...ReceivedAsset_aggregateFragment
    }
    method
    name
    outgoing_transfers {
      ...TransferFragment
    }
    outgoing_transfers_aggregate {
      ...Transfer_aggregateFragment
    }
    owner {
      ...ProfileFragment
    }
    owner_id
    profileImages {
      ...ProfileImageURLFragment
    }
    profileImages_
    profileImages_aggregate {
      ...ProfileImageURL_aggregateFragment
    }
    src
    standard
    supportedStandardsLsp3Profile
    tags
    transactions {
      ...TransactionFragment
    }
    transactions_aggregate {
      ...Transaction_aggregateFragment
    }
    updatedBlockNumber
    updatedTimestamp
    updatedTransactionIndex
    url
  }
}
Variables
{"id": "xyz789"}
Response
{
  "data": {
    "Profile_by_pk": {
      "addressPermissions": ["xyz789"],
      "addressPermissions_": ["abc123"],
      "app": App,
      "appContributions": [AppContributor],
      "appContributions_aggregate": AppContributor_aggregate,
      "appHistory": [AppHistory],
      "appHistory_aggregate": AppHistory_aggregate,
      "appInstalls": [AppInstall],
      "appInstalls_aggregate": AppInstall_aggregate,
      "asset": Asset,
      "asset_id": "abc123",
      "avatars": [AvatarAssetURL],
      "avatars_": ["abc123"],
      "avatars_aggregate": AvatarAssetURL_aggregate,
      "backgroundImages": [ProfileBackgroundImageURL],
      "backgroundImages_": ["abc123"],
      "backgroundImages_aggregate": ProfileBackgroundImageURL_aggregate,
      "blockNumber": 123,
      "controllers": [Controller],
      "controllers_": ["xyz789"],
      "controllers_aggregate": Controller_aggregate,
      "createdBlockNumber": 987,
      "createdTimestamp": 123,
      "createdTransactionIndex": 987,
      "data": "xyz789",
      "db_write_timestamp": timestamp,
      "description": "xyz789",
      "error": "xyz789",
      "feed": [FeedProfileArg],
      "feed_aggregate": FeedProfileArg_aggregate,
      "followed": [Follow],
      "followed_aggregate": Follow_aggregate,
      "following": [Follow],
      "following_aggregate": Follow_aggregate,
      "ft": "abc123",
      "fts": tsvector,
      "fullName": "abc123",
      "holds": [Hold],
      "holds_aggregate": Hold_aggregate,
      "id": "abc123",
      "incoming_transfers": [Transfer],
      "incoming_transfers_aggregate": Transfer_aggregate,
      "interactions": [Interaction],
      "interactions_aggregate": Interaction_aggregate,
      "interfaces": ["abc123"],
      "isContract": true,
      "isEOA": false,
      "keyManagers": [KeyManager],
      "keyManagers_aggregate": KeyManager_aggregate,
      "lastMetadataUpdate": 123,
      "lastNameUpdate": 123,
      "links": [ProfileLink],
      "links_": ["abc123"],
      "links_aggregate": ProfileLink_aggregate,
      "lsp12IssuedAssets": [IssuedAsset],
      "lsp12IssuedAssets_": ["abc123"],
      "lsp12IssuedAssets_aggregate": IssuedAsset_aggregate,
      "lsp1UniversalReceiverDelegate": [ReceiverDelegate],
      "lsp1UniversalReceiverDelegate_aggregate": ReceiverDelegate_aggregate,
      "lsp23Deployment": LSP23Deployment,
      "lsp5ReceivedAssets": [ReceivedAsset],
      "lsp5ReceivedAssets_": ["abc123"],
      "lsp5ReceivedAssets_aggregate": ReceivedAsset_aggregate,
      "method": "abc123",
      "name": "xyz789",
      "outgoing_transfers": [Transfer],
      "outgoing_transfers_aggregate": Transfer_aggregate,
      "owner": Profile,
      "owner_id": "abc123",
      "profileImages": [ProfileImageURL],
      "profileImages_": ["xyz789"],
      "profileImages_aggregate": ProfileImageURL_aggregate,
      "src": "xyz789",
      "standard": standards,
      "supportedStandardsLsp3Profile": false,
      "tags": ["xyz789"],
      "transactions": [Transaction],
      "transactions_aggregate": Transaction_aggregate,
      "updatedBlockNumber": 123,
      "updatedTimestamp": 987,
      "updatedTransactionIndex": 987,
      "url": "xyz789"
    }
  }
}

Profile_stream

Description

fetch data from the table in a streaming manner: "Profile"

Response

Returns [Profile!]!

Arguments
Name Description
batch_size - Int! maximum number of rows returned in a single batch
cursor - [Profile_stream_cursor_input]! cursor to stream the results returned by the query
where - Profile_bool_exp filter the rows returned

Example

Query
subscription Profile_stream(
  $batch_size: Int!,
  $cursor: [Profile_stream_cursor_input]!,
  $where: Profile_bool_exp
) {
  Profile_stream(
    batch_size: $batch_size,
    cursor: $cursor,
    where: $where
  ) {
    addressPermissions
    addressPermissions_
    app {
      ...AppFragment
    }
    appContributions {
      ...AppContributorFragment
    }
    appContributions_aggregate {
      ...AppContributor_aggregateFragment
    }
    appHistory {
      ...AppHistoryFragment
    }
    appHistory_aggregate {
      ...AppHistory_aggregateFragment
    }
    appInstalls {
      ...AppInstallFragment
    }
    appInstalls_aggregate {
      ...AppInstall_aggregateFragment
    }
    asset {
      ...AssetFragment
    }
    asset_id
    avatars {
      ...AvatarAssetURLFragment
    }
    avatars_
    avatars_aggregate {
      ...AvatarAssetURL_aggregateFragment
    }
    backgroundImages {
      ...ProfileBackgroundImageURLFragment
    }
    backgroundImages_
    backgroundImages_aggregate {
      ...ProfileBackgroundImageURL_aggregateFragment
    }
    blockNumber
    controllers {
      ...ControllerFragment
    }
    controllers_
    controllers_aggregate {
      ...Controller_aggregateFragment
    }
    createdBlockNumber
    createdTimestamp
    createdTransactionIndex
    data
    db_write_timestamp
    description
    error
    feed {
      ...FeedProfileArgFragment
    }
    feed_aggregate {
      ...FeedProfileArg_aggregateFragment
    }
    followed {
      ...FollowFragment
    }
    followed_aggregate {
      ...Follow_aggregateFragment
    }
    following {
      ...FollowFragment
    }
    following_aggregate {
      ...Follow_aggregateFragment
    }
    ft
    fts
    fullName
    holds {
      ...HoldFragment
    }
    holds_aggregate {
      ...Hold_aggregateFragment
    }
    id
    incoming_transfers {
      ...TransferFragment
    }
    incoming_transfers_aggregate {
      ...Transfer_aggregateFragment
    }
    interactions {
      ...InteractionFragment
    }
    interactions_aggregate {
      ...Interaction_aggregateFragment
    }
    interfaces
    isContract
    isEOA
    keyManagers {
      ...KeyManagerFragment
    }
    keyManagers_aggregate {
      ...KeyManager_aggregateFragment
    }
    lastMetadataUpdate
    lastNameUpdate
    links {
      ...ProfileLinkFragment
    }
    links_
    links_aggregate {
      ...ProfileLink_aggregateFragment
    }
    lsp12IssuedAssets {
      ...IssuedAssetFragment
    }
    lsp12IssuedAssets_
    lsp12IssuedAssets_aggregate {
      ...IssuedAsset_aggregateFragment
    }
    lsp1UniversalReceiverDelegate {
      ...ReceiverDelegateFragment
    }
    lsp1UniversalReceiverDelegate_aggregate {
      ...ReceiverDelegate_aggregateFragment
    }
    lsp23Deployment {
      ...LSP23DeploymentFragment
    }
    lsp5ReceivedAssets {
      ...ReceivedAssetFragment
    }
    lsp5ReceivedAssets_
    lsp5ReceivedAssets_aggregate {
      ...ReceivedAsset_aggregateFragment
    }
    method
    name
    outgoing_transfers {
      ...TransferFragment
    }
    outgoing_transfers_aggregate {
      ...Transfer_aggregateFragment
    }
    owner {
      ...ProfileFragment
    }
    owner_id
    profileImages {
      ...ProfileImageURLFragment
    }
    profileImages_
    profileImages_aggregate {
      ...ProfileImageURL_aggregateFragment
    }
    src
    standard
    supportedStandardsLsp3Profile
    tags
    transactions {
      ...TransactionFragment
    }
    transactions_aggregate {
      ...Transaction_aggregateFragment
    }
    updatedBlockNumber
    updatedTimestamp
    updatedTransactionIndex
    url
  }
}
Variables
{
  "batch_size": 987,
  "cursor": [Profile_stream_cursor_input],
  "where": Profile_bool_exp
}
Response
{
  "data": {
    "Profile_stream": [
      {
        "addressPermissions": ["xyz789"],
        "addressPermissions_": ["abc123"],
        "app": App,
        "appContributions": [AppContributor],
        "appContributions_aggregate": AppContributor_aggregate,
        "appHistory": [AppHistory],
        "appHistory_aggregate": AppHistory_aggregate,
        "appInstalls": [AppInstall],
        "appInstalls_aggregate": AppInstall_aggregate,
        "asset": Asset,
        "asset_id": "xyz789",
        "avatars": [AvatarAssetURL],
        "avatars_": ["xyz789"],
        "avatars_aggregate": AvatarAssetURL_aggregate,
        "backgroundImages": [ProfileBackgroundImageURL],
        "backgroundImages_": ["abc123"],
        "backgroundImages_aggregate": ProfileBackgroundImageURL_aggregate,
        "blockNumber": 987,
        "controllers": [Controller],
        "controllers_": ["abc123"],
        "controllers_aggregate": Controller_aggregate,
        "createdBlockNumber": 123,
        "createdTimestamp": 123,
        "createdTransactionIndex": 987,
        "data": "abc123",
        "db_write_timestamp": timestamp,
        "description": "abc123",
        "error": "xyz789",
        "feed": [FeedProfileArg],
        "feed_aggregate": FeedProfileArg_aggregate,
        "followed": [Follow],
        "followed_aggregate": Follow_aggregate,
        "following": [Follow],
        "following_aggregate": Follow_aggregate,
        "ft": "xyz789",
        "fts": tsvector,
        "fullName": "abc123",
        "holds": [Hold],
        "holds_aggregate": Hold_aggregate,
        "id": "abc123",
        "incoming_transfers": [Transfer],
        "incoming_transfers_aggregate": Transfer_aggregate,
        "interactions": [Interaction],
        "interactions_aggregate": Interaction_aggregate,
        "interfaces": ["abc123"],
        "isContract": true,
        "isEOA": true,
        "keyManagers": [KeyManager],
        "keyManagers_aggregate": KeyManager_aggregate,
        "lastMetadataUpdate": 123,
        "lastNameUpdate": 987,
        "links": [ProfileLink],
        "links_": ["abc123"],
        "links_aggregate": ProfileLink_aggregate,
        "lsp12IssuedAssets": [IssuedAsset],
        "lsp12IssuedAssets_": ["abc123"],
        "lsp12IssuedAssets_aggregate": IssuedAsset_aggregate,
        "lsp1UniversalReceiverDelegate": [
          ReceiverDelegate
        ],
        "lsp1UniversalReceiverDelegate_aggregate": ReceiverDelegate_aggregate,
        "lsp23Deployment": LSP23Deployment,
        "lsp5ReceivedAssets": [ReceivedAsset],
        "lsp5ReceivedAssets_": ["abc123"],
        "lsp5ReceivedAssets_aggregate": ReceivedAsset_aggregate,
        "method": "xyz789",
        "name": "xyz789",
        "outgoing_transfers": [Transfer],
        "outgoing_transfers_aggregate": Transfer_aggregate,
        "owner": Profile,
        "owner_id": "abc123",
        "profileImages": [ProfileImageURL],
        "profileImages_": ["xyz789"],
        "profileImages_aggregate": ProfileImageURL_aggregate,
        "src": "abc123",
        "standard": standards,
        "supportedStandardsLsp3Profile": true,
        "tags": ["xyz789"],
        "transactions": [Transaction],
        "transactions_aggregate": Transaction_aggregate,
        "updatedBlockNumber": 987,
        "updatedTimestamp": 123,
        "updatedTransactionIndex": 987,
        "url": "xyz789"
      }
    ]
  }
}

ReceivedAsset

Description

fetch data from the table: "ReceivedAsset"

Response

Returns [ReceivedAsset!]!

Arguments
Name Description
distinct_on - [ReceivedAsset_select_column!] distinct select on columns
limit - Int limit the number of rows returned
offset - Int skip the first n rows. Use only with order_by
order_by - [ReceivedAsset_order_by!] sort the rows by one or more columns
where - ReceivedAsset_bool_exp filter the rows returned

Example

Query
subscription ReceivedAsset(
  $distinct_on: [ReceivedAsset_select_column!],
  $limit: Int,
  $offset: Int,
  $order_by: [ReceivedAsset_order_by!],
  $where: ReceivedAsset_bool_exp
) {
  ReceivedAsset(
    distinct_on: $distinct_on,
    limit: $limit,
    offset: $offset,
    order_by: $order_by,
    where: $where
  ) {
    asset {
      ...AssetFragment
    }
    asset_id
    blockNumber
    createdBlockNumber
    createdTimestamp
    createdTransactionIndex
    db_write_timestamp
    id
    index
    interfaceId
    profile {
      ...ProfileFragment
    }
    profile_id
    updatedBlockNumber
    updatedTimestamp
    updatedTransactionIndex
  }
}
Variables
{
  "distinct_on": ["asset_id"],
  "limit": 123,
  "offset": 987,
  "order_by": [ReceivedAsset_order_by],
  "where": ReceivedAsset_bool_exp
}
Response
{
  "data": {
    "ReceivedAsset": [
      {
        "asset": Asset,
        "asset_id": "abc123",
        "blockNumber": 123,
        "createdBlockNumber": 987,
        "createdTimestamp": 123,
        "createdTransactionIndex": 123,
        "db_write_timestamp": timestamp,
        "id": "abc123",
        "index": 987,
        "interfaceId": "abc123",
        "profile": Profile,
        "profile_id": "abc123",
        "updatedBlockNumber": 123,
        "updatedTimestamp": 123,
        "updatedTransactionIndex": 123
      }
    ]
  }
}

ReceivedAsset_aggregate

Description

fetch aggregated fields from the table: "ReceivedAsset"

Response

Returns a ReceivedAsset_aggregate!

Arguments
Name Description
distinct_on - [ReceivedAsset_select_column!] distinct select on columns
limit - Int limit the number of rows returned
offset - Int skip the first n rows. Use only with order_by
order_by - [ReceivedAsset_order_by!] sort the rows by one or more columns
where - ReceivedAsset_bool_exp filter the rows returned

Example

Query
subscription ReceivedAsset_aggregate(
  $distinct_on: [ReceivedAsset_select_column!],
  $limit: Int,
  $offset: Int,
  $order_by: [ReceivedAsset_order_by!],
  $where: ReceivedAsset_bool_exp
) {
  ReceivedAsset_aggregate(
    distinct_on: $distinct_on,
    limit: $limit,
    offset: $offset,
    order_by: $order_by,
    where: $where
  ) {
    aggregate {
      ...ReceivedAsset_aggregate_fieldsFragment
    }
    nodes {
      ...ReceivedAssetFragment
    }
  }
}
Variables
{
  "distinct_on": ["asset_id"],
  "limit": 123,
  "offset": 123,
  "order_by": [ReceivedAsset_order_by],
  "where": ReceivedAsset_bool_exp
}
Response
{
  "data": {
    "ReceivedAsset_aggregate": {
      "aggregate": ReceivedAsset_aggregate_fields,
      "nodes": [ReceivedAsset]
    }
  }
}

ReceivedAsset_by_pk

Description

fetch data from the table: "ReceivedAsset" using primary key columns

Response

Returns a ReceivedAsset

Arguments
Name Description
id - String!

Example

Query
subscription ReceivedAsset_by_pk($id: String!) {
  ReceivedAsset_by_pk(id: $id) {
    asset {
      ...AssetFragment
    }
    asset_id
    blockNumber
    createdBlockNumber
    createdTimestamp
    createdTransactionIndex
    db_write_timestamp
    id
    index
    interfaceId
    profile {
      ...ProfileFragment
    }
    profile_id
    updatedBlockNumber
    updatedTimestamp
    updatedTransactionIndex
  }
}
Variables
{"id": "xyz789"}
Response
{
  "data": {
    "ReceivedAsset_by_pk": {
      "asset": Asset,
      "asset_id": "xyz789",
      "blockNumber": 123,
      "createdBlockNumber": 123,
      "createdTimestamp": 987,
      "createdTransactionIndex": 123,
      "db_write_timestamp": timestamp,
      "id": "abc123",
      "index": 123,
      "interfaceId": "abc123",
      "profile": Profile,
      "profile_id": "abc123",
      "updatedBlockNumber": 987,
      "updatedTimestamp": 123,
      "updatedTransactionIndex": 123
    }
  }
}

ReceivedAsset_stream

Description

fetch data from the table in a streaming manner: "ReceivedAsset"

Response

Returns [ReceivedAsset!]!

Arguments
Name Description
batch_size - Int! maximum number of rows returned in a single batch
cursor - [ReceivedAsset_stream_cursor_input]! cursor to stream the results returned by the query
where - ReceivedAsset_bool_exp filter the rows returned

Example

Query
subscription ReceivedAsset_stream(
  $batch_size: Int!,
  $cursor: [ReceivedAsset_stream_cursor_input]!,
  $where: ReceivedAsset_bool_exp
) {
  ReceivedAsset_stream(
    batch_size: $batch_size,
    cursor: $cursor,
    where: $where
  ) {
    asset {
      ...AssetFragment
    }
    asset_id
    blockNumber
    createdBlockNumber
    createdTimestamp
    createdTransactionIndex
    db_write_timestamp
    id
    index
    interfaceId
    profile {
      ...ProfileFragment
    }
    profile_id
    updatedBlockNumber
    updatedTimestamp
    updatedTransactionIndex
  }
}
Variables
{
  "batch_size": 987,
  "cursor": [ReceivedAsset_stream_cursor_input],
  "where": ReceivedAsset_bool_exp
}
Response
{
  "data": {
    "ReceivedAsset_stream": [
      {
        "asset": Asset,
        "asset_id": "xyz789",
        "blockNumber": 987,
        "createdBlockNumber": 987,
        "createdTimestamp": 987,
        "createdTransactionIndex": 123,
        "db_write_timestamp": timestamp,
        "id": "xyz789",
        "index": 123,
        "interfaceId": "xyz789",
        "profile": Profile,
        "profile_id": "abc123",
        "updatedBlockNumber": 987,
        "updatedTimestamp": 987,
        "updatedTransactionIndex": 987
      }
    ]
  }
}

ReceiverDelegate

Description

fetch data from the table: "ReceiverDelegate"

Response

Returns [ReceiverDelegate!]!

Arguments
Name Description
distinct_on - [ReceiverDelegate_select_column!] distinct select on columns
limit - Int limit the number of rows returned
offset - Int skip the first n rows. Use only with order_by
order_by - [ReceiverDelegate_order_by!] sort the rows by one or more columns
where - ReceiverDelegate_bool_exp filter the rows returned

Example

Query
subscription ReceiverDelegate(
  $distinct_on: [ReceiverDelegate_select_column!],
  $limit: Int,
  $offset: Int,
  $order_by: [ReceiverDelegate_order_by!],
  $where: ReceiverDelegate_bool_exp
) {
  ReceiverDelegate(
    distinct_on: $distinct_on,
    limit: $limit,
    offset: $offset,
    order_by: $order_by,
    where: $where
  ) {
    blockNumber
    db_write_timestamp
    delegate
    id
    profile {
      ...ProfileFragment
    }
    profile_id
    typeId
  }
}
Variables
{
  "distinct_on": ["blockNumber"],
  "limit": 123,
  "offset": 987,
  "order_by": [ReceiverDelegate_order_by],
  "where": ReceiverDelegate_bool_exp
}
Response
{
  "data": {
    "ReceiverDelegate": [
      {
        "blockNumber": 987,
        "db_write_timestamp": timestamp,
        "delegate": "xyz789",
        "id": "abc123",
        "profile": Profile,
        "profile_id": "xyz789",
        "typeId": "abc123"
      }
    ]
  }
}

ReceiverDelegate_aggregate

Description

fetch aggregated fields from the table: "ReceiverDelegate"

Response

Returns a ReceiverDelegate_aggregate!

Arguments
Name Description
distinct_on - [ReceiverDelegate_select_column!] distinct select on columns
limit - Int limit the number of rows returned
offset - Int skip the first n rows. Use only with order_by
order_by - [ReceiverDelegate_order_by!] sort the rows by one or more columns
where - ReceiverDelegate_bool_exp filter the rows returned

Example

Query
subscription ReceiverDelegate_aggregate(
  $distinct_on: [ReceiverDelegate_select_column!],
  $limit: Int,
  $offset: Int,
  $order_by: [ReceiverDelegate_order_by!],
  $where: ReceiverDelegate_bool_exp
) {
  ReceiverDelegate_aggregate(
    distinct_on: $distinct_on,
    limit: $limit,
    offset: $offset,
    order_by: $order_by,
    where: $where
  ) {
    aggregate {
      ...ReceiverDelegate_aggregate_fieldsFragment
    }
    nodes {
      ...ReceiverDelegateFragment
    }
  }
}
Variables
{
  "distinct_on": ["blockNumber"],
  "limit": 987,
  "offset": 987,
  "order_by": [ReceiverDelegate_order_by],
  "where": ReceiverDelegate_bool_exp
}
Response
{
  "data": {
    "ReceiverDelegate_aggregate": {
      "aggregate": ReceiverDelegate_aggregate_fields,
      "nodes": [ReceiverDelegate]
    }
  }
}

ReceiverDelegate_by_pk

Description

fetch data from the table: "ReceiverDelegate" using primary key columns

Response

Returns a ReceiverDelegate

Arguments
Name Description
id - String!

Example

Query
subscription ReceiverDelegate_by_pk($id: String!) {
  ReceiverDelegate_by_pk(id: $id) {
    blockNumber
    db_write_timestamp
    delegate
    id
    profile {
      ...ProfileFragment
    }
    profile_id
    typeId
  }
}
Variables
{"id": "xyz789"}
Response
{
  "data": {
    "ReceiverDelegate_by_pk": {
      "blockNumber": 123,
      "db_write_timestamp": timestamp,
      "delegate": "xyz789",
      "id": "abc123",
      "profile": Profile,
      "profile_id": "abc123",
      "typeId": "xyz789"
    }
  }
}

ReceiverDelegate_stream

Description

fetch data from the table in a streaming manner: "ReceiverDelegate"

Response

Returns [ReceiverDelegate!]!

Arguments
Name Description
batch_size - Int! maximum number of rows returned in a single batch
cursor - [ReceiverDelegate_stream_cursor_input]! cursor to stream the results returned by the query
where - ReceiverDelegate_bool_exp filter the rows returned

Example

Query
subscription ReceiverDelegate_stream(
  $batch_size: Int!,
  $cursor: [ReceiverDelegate_stream_cursor_input]!,
  $where: ReceiverDelegate_bool_exp
) {
  ReceiverDelegate_stream(
    batch_size: $batch_size,
    cursor: $cursor,
    where: $where
  ) {
    blockNumber
    db_write_timestamp
    delegate
    id
    profile {
      ...ProfileFragment
    }
    profile_id
    typeId
  }
}
Variables
{
  "batch_size": 987,
  "cursor": [ReceiverDelegate_stream_cursor_input],
  "where": ReceiverDelegate_bool_exp
}
Response
{
  "data": {
    "ReceiverDelegate_stream": [
      {
        "blockNumber": 123,
        "db_write_timestamp": timestamp,
        "delegate": "abc123",
        "id": "abc123",
        "profile": Profile,
        "profile_id": "xyz789",
        "typeId": "abc123"
      }
    ]
  }
}

Token

Description

fetch data from the table: "Token"

Response

Returns [Token!]!

Arguments
Name Description
distinct_on - [Token_select_column!] distinct select on columns
limit - Int limit the number of rows returned
offset - Int skip the first n rows. Use only with order_by
order_by - [Token_order_by!] sort the rows by one or more columns
where - Token_bool_exp filter the rows returned

Example

Query
subscription Token(
  $distinct_on: [Token_select_column!],
  $limit: Int,
  $offset: Int,
  $order_by: [Token_order_by!],
  $where: Token_bool_exp
) {
  Token(
    distinct_on: $distinct_on,
    limit: $limit,
    offset: $offset,
    order_by: $order_by,
    where: $where
  ) {
    appHistory {
      ...AppHistoryFragment
    }
    appHistory_aggregate {
      ...AppHistory_aggregateFragment
    }
    appInstalls {
      ...AppInstallFragment
    }
    appInstalls_aggregate {
      ...AppInstall_aggregateFragment
    }
    asset {
      ...AssetFragment
    }
    asset_id
    assets {
      ...TokenAssetURLFragment
    }
    assets_
    assets_aggregate {
      ...TokenAssetURL_aggregateFragment
    }
    attributes {
      ...TokenAttributeFragment
    }
    attributes_
    attributes_aggregate {
      ...TokenAttribute_aggregateFragment
    }
    backgroundImages {
      ...TokenBackgroundImageURLFragment
    }
    backgroundImages_
    baseAsset {
      ...AssetFragment
    }
    baseAsset_id
    baseUriChanged
    blockNumber
    category
    createdBlockNumber
    createdTimestamp
    createdTransactionIndex
    data
    db_write_timestamp
    description
    error
    formattedTokenId
    holders {
      ...HoldFragment
    }
    holders_aggregate {
      ...Hold_aggregateFragment
    }
    icons {
      ...TokenIconURLFragment
    }
    icons_
    icons_aggregate {
      ...TokenIconURL_aggregateFragment
    }
    id
    images {
      ...TokenImageURLFragment
    }
    images_
    images_aggregate {
      ...TokenImageURL_aggregateFragment
    }
    links {
      ...TokenLinkFragment
    }
    links_
    links_aggregate {
      ...TokenLink_aggregateFragment
    }
    lsp4Creators {
      ...TokenCreatorsFragment
    }
    lsp4CreatorsMap {
      ...TokenCreatorsFragment
    }
    lsp4CreatorsMap_aggregate {
      ...TokenCreators_aggregateFragment
    }
    lsp4Creators_
    lsp4Creators_aggregate {
      ...TokenCreators_aggregateFragment
    }
    lsp4TokenName
    lsp4TokenSymbol
    lsp4TokenType
    lsp8ReferenceContract {
      ...AssetFragment
    }
    lsp8ReferenceContractSelf
    lsp8ReferenceContract_id
    lsp8TokenIdFormat
    method
    name
    src
    supportedStandardsLsp4DigitalAsset
    tokenId
    transfers {
      ...TransferFragment
    }
    transfers_aggregate {
      ...Transfer_aggregateFragment
    }
    updatedBlockNumber
    updatedTimestamp
    updatedTransactionIndex
    url
  }
}
Variables
{
  "distinct_on": ["asset_id"],
  "limit": 123,
  "offset": 987,
  "order_by": [Token_order_by],
  "where": Token_bool_exp
}
Response
{
  "data": {
    "Token": [
      {
        "appHistory": [AppHistory],
        "appHistory_aggregate": AppHistory_aggregate,
        "appInstalls": [AppInstall],
        "appInstalls_aggregate": AppInstall_aggregate,
        "asset": Asset,
        "asset_id": "xyz789",
        "assets": [TokenAssetURL],
        "assets_": ["abc123"],
        "assets_aggregate": TokenAssetURL_aggregate,
        "attributes": [TokenAttribute],
        "attributes_": ["xyz789"],
        "attributes_aggregate": TokenAttribute_aggregate,
        "backgroundImages": [TokenBackgroundImageURL],
        "backgroundImages_": ["xyz789"],
        "baseAsset": Asset,
        "baseAsset_id": "abc123",
        "baseUriChanged": false,
        "blockNumber": 987,
        "category": "abc123",
        "createdBlockNumber": 123,
        "createdTimestamp": 987,
        "createdTransactionIndex": 987,
        "data": "abc123",
        "db_write_timestamp": timestamp,
        "description": "xyz789",
        "error": "xyz789",
        "formattedTokenId": "abc123",
        "holders": [Hold],
        "holders_aggregate": Hold_aggregate,
        "icons": [TokenIconURL],
        "icons_": ["abc123"],
        "icons_aggregate": TokenIconURL_aggregate,
        "id": "xyz789",
        "images": [TokenImageURL],
        "images_": ["abc123"],
        "images_aggregate": TokenImageURL_aggregate,
        "links": [TokenLink],
        "links_": ["abc123"],
        "links_aggregate": TokenLink_aggregate,
        "lsp4Creators": [TokenCreators],
        "lsp4CreatorsMap": [TokenCreators],
        "lsp4CreatorsMap_aggregate": TokenCreators_aggregate,
        "lsp4Creators_": ["abc123"],
        "lsp4Creators_aggregate": TokenCreators_aggregate,
        "lsp4TokenName": "xyz789",
        "lsp4TokenSymbol": "abc123",
        "lsp4TokenType": 987,
        "lsp8ReferenceContract": Asset,
        "lsp8ReferenceContractSelf": "xyz789",
        "lsp8ReferenceContract_id": "xyz789",
        "lsp8TokenIdFormat": 987,
        "method": "abc123",
        "name": "abc123",
        "src": "abc123",
        "supportedStandardsLsp4DigitalAsset": false,
        "tokenId": "xyz789",
        "transfers": [Transfer],
        "transfers_aggregate": Transfer_aggregate,
        "updatedBlockNumber": 123,
        "updatedTimestamp": 123,
        "updatedTransactionIndex": 123,
        "url": "xyz789"
      }
    ]
  }
}

TokenAssetURL

Description

fetch data from the table: "TokenAssetURL"

Response

Returns [TokenAssetURL!]!

Arguments
Name Description
distinct_on - [TokenAssetURL_select_column!] distinct select on columns
limit - Int limit the number of rows returned
offset - Int skip the first n rows. Use only with order_by
order_by - [TokenAssetURL_order_by!] sort the rows by one or more columns
where - TokenAssetURL_bool_exp filter the rows returned

Example

Query
subscription TokenAssetURL(
  $distinct_on: [TokenAssetURL_select_column!],
  $limit: Int,
  $offset: Int,
  $order_by: [TokenAssetURL_order_by!],
  $where: TokenAssetURL_bool_exp
) {
  TokenAssetURL(
    distinct_on: $distinct_on,
    limit: $limit,
    offset: $offset,
    order_by: $order_by,
    where: $where
  ) {
    blockNumber
    contentAsset {
      ...AssetFragment
    }
    contentAsset_id
    contentToken {
      ...TokenFragment
    }
    contentToken_id
    data
    db_write_timestamp
    error
    fileType
    height
    id
    method
    src
    token {
      ...TokenFragment
    }
    token_id
    url
    verified
    width
  }
}
Variables
{
  "distinct_on": ["blockNumber"],
  "limit": 987,
  "offset": 987,
  "order_by": [TokenAssetURL_order_by],
  "where": TokenAssetURL_bool_exp
}
Response
{
  "data": {
    "TokenAssetURL": [
      {
        "blockNumber": 987,
        "contentAsset": Asset,
        "contentAsset_id": "xyz789",
        "contentToken": Token,
        "contentToken_id": "xyz789",
        "data": "xyz789",
        "db_write_timestamp": timestamp,
        "error": "abc123",
        "fileType": "xyz789",
        "height": 123,
        "id": "xyz789",
        "method": "abc123",
        "src": "abc123",
        "token": Token,
        "token_id": "xyz789",
        "url": "xyz789",
        "verified": verificationstatus,
        "width": 987
      }
    ]
  }
}

TokenAssetURL_aggregate

Description

fetch aggregated fields from the table: "TokenAssetURL"

Response

Returns an TokenAssetURL_aggregate!

Arguments
Name Description
distinct_on - [TokenAssetURL_select_column!] distinct select on columns
limit - Int limit the number of rows returned
offset - Int skip the first n rows. Use only with order_by
order_by - [TokenAssetURL_order_by!] sort the rows by one or more columns
where - TokenAssetURL_bool_exp filter the rows returned

Example

Query
subscription TokenAssetURL_aggregate(
  $distinct_on: [TokenAssetURL_select_column!],
  $limit: Int,
  $offset: Int,
  $order_by: [TokenAssetURL_order_by!],
  $where: TokenAssetURL_bool_exp
) {
  TokenAssetURL_aggregate(
    distinct_on: $distinct_on,
    limit: $limit,
    offset: $offset,
    order_by: $order_by,
    where: $where
  ) {
    aggregate {
      ...TokenAssetURL_aggregate_fieldsFragment
    }
    nodes {
      ...TokenAssetURLFragment
    }
  }
}
Variables
{
  "distinct_on": ["blockNumber"],
  "limit": 123,
  "offset": 123,
  "order_by": [TokenAssetURL_order_by],
  "where": TokenAssetURL_bool_exp
}
Response
{
  "data": {
    "TokenAssetURL_aggregate": {
      "aggregate": TokenAssetURL_aggregate_fields,
      "nodes": [TokenAssetURL]
    }
  }
}

TokenAssetURL_by_pk

Description

fetch data from the table: "TokenAssetURL" using primary key columns

Response

Returns an TokenAssetURL

Arguments
Name Description
id - String!

Example

Query
subscription TokenAssetURL_by_pk($id: String!) {
  TokenAssetURL_by_pk(id: $id) {
    blockNumber
    contentAsset {
      ...AssetFragment
    }
    contentAsset_id
    contentToken {
      ...TokenFragment
    }
    contentToken_id
    data
    db_write_timestamp
    error
    fileType
    height
    id
    method
    src
    token {
      ...TokenFragment
    }
    token_id
    url
    verified
    width
  }
}
Variables
{"id": "xyz789"}
Response
{
  "data": {
    "TokenAssetURL_by_pk": {
      "blockNumber": 987,
      "contentAsset": Asset,
      "contentAsset_id": "abc123",
      "contentToken": Token,
      "contentToken_id": "xyz789",
      "data": "abc123",
      "db_write_timestamp": timestamp,
      "error": "xyz789",
      "fileType": "xyz789",
      "height": 987,
      "id": "abc123",
      "method": "xyz789",
      "src": "abc123",
      "token": Token,
      "token_id": "abc123",
      "url": "abc123",
      "verified": verificationstatus,
      "width": 123
    }
  }
}

TokenAssetURL_stream

Description

fetch data from the table in a streaming manner: "TokenAssetURL"

Response

Returns [TokenAssetURL!]!

Arguments
Name Description
batch_size - Int! maximum number of rows returned in a single batch
cursor - [TokenAssetURL_stream_cursor_input]! cursor to stream the results returned by the query
where - TokenAssetURL_bool_exp filter the rows returned

Example

Query
subscription TokenAssetURL_stream(
  $batch_size: Int!,
  $cursor: [TokenAssetURL_stream_cursor_input]!,
  $where: TokenAssetURL_bool_exp
) {
  TokenAssetURL_stream(
    batch_size: $batch_size,
    cursor: $cursor,
    where: $where
  ) {
    blockNumber
    contentAsset {
      ...AssetFragment
    }
    contentAsset_id
    contentToken {
      ...TokenFragment
    }
    contentToken_id
    data
    db_write_timestamp
    error
    fileType
    height
    id
    method
    src
    token {
      ...TokenFragment
    }
    token_id
    url
    verified
    width
  }
}
Variables
{
  "batch_size": 123,
  "cursor": [TokenAssetURL_stream_cursor_input],
  "where": TokenAssetURL_bool_exp
}
Response
{
  "data": {
    "TokenAssetURL_stream": [
      {
        "blockNumber": 987,
        "contentAsset": Asset,
        "contentAsset_id": "xyz789",
        "contentToken": Token,
        "contentToken_id": "abc123",
        "data": "abc123",
        "db_write_timestamp": timestamp,
        "error": "abc123",
        "fileType": "xyz789",
        "height": 987,
        "id": "xyz789",
        "method": "xyz789",
        "src": "abc123",
        "token": Token,
        "token_id": "xyz789",
        "url": "xyz789",
        "verified": verificationstatus,
        "width": 123
      }
    ]
  }
}

TokenAttribute

Description

fetch data from the table: "TokenAttribute"

Response

Returns [TokenAttribute!]!

Arguments
Name Description
distinct_on - [TokenAttribute_select_column!] distinct select on columns
limit - Int limit the number of rows returned
offset - Int skip the first n rows. Use only with order_by
order_by - [TokenAttribute_order_by!] sort the rows by one or more columns
where - TokenAttribute_bool_exp filter the rows returned

Example

Query
subscription TokenAttribute(
  $distinct_on: [TokenAttribute_select_column!],
  $limit: Int,
  $offset: Int,
  $order_by: [TokenAttribute_order_by!],
  $where: TokenAttribute_bool_exp
) {
  TokenAttribute(
    distinct_on: $distinct_on,
    limit: $limit,
    offset: $offset,
    order_by: $order_by,
    where: $where
  ) {
    attributeType
    blockNumber
    db_write_timestamp
    id
    key
    token {
      ...TokenFragment
    }
    token_id
    value
  }
}
Variables
{
  "distinct_on": ["attributeType"],
  "limit": 123,
  "offset": 987,
  "order_by": [TokenAttribute_order_by],
  "where": TokenAttribute_bool_exp
}
Response
{
  "data": {
    "TokenAttribute": [
      {
        "attributeType": "abc123",
        "blockNumber": 987,
        "db_write_timestamp": timestamp,
        "id": "xyz789",
        "key": "xyz789",
        "token": Token,
        "token_id": "abc123",
        "value": "xyz789"
      }
    ]
  }
}

TokenAttribute_aggregate

Description

fetch aggregated fields from the table: "TokenAttribute"

Response

Returns a TokenAttribute_aggregate!

Arguments
Name Description
distinct_on - [TokenAttribute_select_column!] distinct select on columns
limit - Int limit the number of rows returned
offset - Int skip the first n rows. Use only with order_by
order_by - [TokenAttribute_order_by!] sort the rows by one or more columns
where - TokenAttribute_bool_exp filter the rows returned

Example

Query
subscription TokenAttribute_aggregate(
  $distinct_on: [TokenAttribute_select_column!],
  $limit: Int,
  $offset: Int,
  $order_by: [TokenAttribute_order_by!],
  $where: TokenAttribute_bool_exp
) {
  TokenAttribute_aggregate(
    distinct_on: $distinct_on,
    limit: $limit,
    offset: $offset,
    order_by: $order_by,
    where: $where
  ) {
    aggregate {
      ...TokenAttribute_aggregate_fieldsFragment
    }
    nodes {
      ...TokenAttributeFragment
    }
  }
}
Variables
{
  "distinct_on": ["attributeType"],
  "limit": 987,
  "offset": 987,
  "order_by": [TokenAttribute_order_by],
  "where": TokenAttribute_bool_exp
}
Response
{
  "data": {
    "TokenAttribute_aggregate": {
      "aggregate": TokenAttribute_aggregate_fields,
      "nodes": [TokenAttribute]
    }
  }
}

TokenAttribute_by_pk

Description

fetch data from the table: "TokenAttribute" using primary key columns

Response

Returns a TokenAttribute

Arguments
Name Description
id - String!

Example

Query
subscription TokenAttribute_by_pk($id: String!) {
  TokenAttribute_by_pk(id: $id) {
    attributeType
    blockNumber
    db_write_timestamp
    id
    key
    token {
      ...TokenFragment
    }
    token_id
    value
  }
}
Variables
{"id": "abc123"}
Response
{
  "data": {
    "TokenAttribute_by_pk": {
      "attributeType": "xyz789",
      "blockNumber": 123,
      "db_write_timestamp": timestamp,
      "id": "xyz789",
      "key": "xyz789",
      "token": Token,
      "token_id": "abc123",
      "value": "xyz789"
    }
  }
}

TokenAttribute_stream

Description

fetch data from the table in a streaming manner: "TokenAttribute"

Response

Returns [TokenAttribute!]!

Arguments
Name Description
batch_size - Int! maximum number of rows returned in a single batch
cursor - [TokenAttribute_stream_cursor_input]! cursor to stream the results returned by the query
where - TokenAttribute_bool_exp filter the rows returned

Example

Query
subscription TokenAttribute_stream(
  $batch_size: Int!,
  $cursor: [TokenAttribute_stream_cursor_input]!,
  $where: TokenAttribute_bool_exp
) {
  TokenAttribute_stream(
    batch_size: $batch_size,
    cursor: $cursor,
    where: $where
  ) {
    attributeType
    blockNumber
    db_write_timestamp
    id
    key
    token {
      ...TokenFragment
    }
    token_id
    value
  }
}
Variables
{
  "batch_size": 123,
  "cursor": [TokenAttribute_stream_cursor_input],
  "where": TokenAttribute_bool_exp
}
Response
{
  "data": {
    "TokenAttribute_stream": [
      {
        "attributeType": "abc123",
        "blockNumber": 123,
        "db_write_timestamp": timestamp,
        "id": "xyz789",
        "key": "xyz789",
        "token": Token,
        "token_id": "abc123",
        "value": "abc123"
      }
    ]
  }
}

TokenBackgroundImageURL

Description

fetch data from the table: "TokenBackgroundImageURL"

Response

Returns [TokenBackgroundImageURL!]!

Arguments
Name Description
distinct_on - [TokenBackgroundImageURL_select_column!] distinct select on columns
limit - Int limit the number of rows returned
offset - Int skip the first n rows. Use only with order_by
order_by - [TokenBackgroundImageURL_order_by!] sort the rows by one or more columns
where - TokenBackgroundImageURL_bool_exp filter the rows returned

Example

Query
subscription TokenBackgroundImageURL(
  $distinct_on: [TokenBackgroundImageURL_select_column!],
  $limit: Int,
  $offset: Int,
  $order_by: [TokenBackgroundImageURL_order_by!],
  $where: TokenBackgroundImageURL_bool_exp
) {
  TokenBackgroundImageURL(
    distinct_on: $distinct_on,
    limit: $limit,
    offset: $offset,
    order_by: $order_by,
    where: $where
  ) {
    blockNumber
    data
    db_write_timestamp
    error
    fileType
    height
    id
    index
    method
    src
    token_id
    url
    verified
    width
  }
}
Variables
{
  "distinct_on": ["blockNumber"],
  "limit": 123,
  "offset": 123,
  "order_by": [TokenBackgroundImageURL_order_by],
  "where": TokenBackgroundImageURL_bool_exp
}
Response
{
  "data": {
    "TokenBackgroundImageURL": [
      {
        "blockNumber": 123,
        "data": "xyz789",
        "db_write_timestamp": timestamp,
        "error": "abc123",
        "fileType": "abc123",
        "height": 123,
        "id": "abc123",
        "index": 123,
        "method": "abc123",
        "src": "xyz789",
        "token_id": "xyz789",
        "url": "xyz789",
        "verified": verificationstatus,
        "width": 123
      }
    ]
  }
}

TokenBackgroundImageURL_by_pk

Description

fetch data from the table: "TokenBackgroundImageURL" using primary key columns

Response

Returns an TokenBackgroundImageURL

Arguments
Name Description
id - String!

Example

Query
subscription TokenBackgroundImageURL_by_pk($id: String!) {
  TokenBackgroundImageURL_by_pk(id: $id) {
    blockNumber
    data
    db_write_timestamp
    error
    fileType
    height
    id
    index
    method
    src
    token_id
    url
    verified
    width
  }
}
Variables
{"id": "xyz789"}
Response
{
  "data": {
    "TokenBackgroundImageURL_by_pk": {
      "blockNumber": 123,
      "data": "xyz789",
      "db_write_timestamp": timestamp,
      "error": "abc123",
      "fileType": "xyz789",
      "height": 987,
      "id": "xyz789",
      "index": 123,
      "method": "xyz789",
      "src": "abc123",
      "token_id": "xyz789",
      "url": "abc123",
      "verified": verificationstatus,
      "width": 123
    }
  }
}

TokenBackgroundImageURL_stream

Description

fetch data from the table in a streaming manner: "TokenBackgroundImageURL"

Response

Returns [TokenBackgroundImageURL!]!

Arguments
Name Description
batch_size - Int! maximum number of rows returned in a single batch
cursor - [TokenBackgroundImageURL_stream_cursor_input]! cursor to stream the results returned by the query
where - TokenBackgroundImageURL_bool_exp filter the rows returned

Example

Query
subscription TokenBackgroundImageURL_stream(
  $batch_size: Int!,
  $cursor: [TokenBackgroundImageURL_stream_cursor_input]!,
  $where: TokenBackgroundImageURL_bool_exp
) {
  TokenBackgroundImageURL_stream(
    batch_size: $batch_size,
    cursor: $cursor,
    where: $where
  ) {
    blockNumber
    data
    db_write_timestamp
    error
    fileType
    height
    id
    index
    method
    src
    token_id
    url
    verified
    width
  }
}
Variables
{
  "batch_size": 987,
  "cursor": [TokenBackgroundImageURL_stream_cursor_input],
  "where": TokenBackgroundImageURL_bool_exp
}
Response
{
  "data": {
    "TokenBackgroundImageURL_stream": [
      {
        "blockNumber": 987,
        "data": "abc123",
        "db_write_timestamp": timestamp,
        "error": "abc123",
        "fileType": "xyz789",
        "height": 123,
        "id": "xyz789",
        "index": 123,
        "method": "xyz789",
        "src": "xyz789",
        "token_id": "xyz789",
        "url": "xyz789",
        "verified": verificationstatus,
        "width": 123
      }
    ]
  }
}

TokenCreators

Description

fetch data from the table: "TokenCreators"

Response

Returns [TokenCreators!]!

Arguments
Name Description
distinct_on - [TokenCreators_select_column!] distinct select on columns
limit - Int limit the number of rows returned
offset - Int skip the first n rows. Use only with order_by
order_by - [TokenCreators_order_by!] sort the rows by one or more columns
where - TokenCreators_bool_exp filter the rows returned

Example

Query
subscription TokenCreators(
  $distinct_on: [TokenCreators_select_column!],
  $limit: Int,
  $offset: Int,
  $order_by: [TokenCreators_order_by!],
  $where: TokenCreators_bool_exp
) {
  TokenCreators(
    distinct_on: $distinct_on,
    limit: $limit,
    offset: $offset,
    order_by: $order_by,
    where: $where
  ) {
    blockNumber
    db_write_timestamp
    id
    index
    interfaceId
    profile {
      ...ProfileFragment
    }
    profile_id
    token {
      ...TokenFragment
    }
    token_id
  }
}
Variables
{
  "distinct_on": ["blockNumber"],
  "limit": 987,
  "offset": 123,
  "order_by": [TokenCreators_order_by],
  "where": TokenCreators_bool_exp
}
Response
{
  "data": {
    "TokenCreators": [
      {
        "blockNumber": 987,
        "db_write_timestamp": timestamp,
        "id": "abc123",
        "index": 987,
        "interfaceId": "abc123",
        "profile": Profile,
        "profile_id": "abc123",
        "token": Token,
        "token_id": "xyz789"
      }
    ]
  }
}

TokenCreators_aggregate

Description

fetch aggregated fields from the table: "TokenCreators"

Response

Returns a TokenCreators_aggregate!

Arguments
Name Description
distinct_on - [TokenCreators_select_column!] distinct select on columns
limit - Int limit the number of rows returned
offset - Int skip the first n rows. Use only with order_by
order_by - [TokenCreators_order_by!] sort the rows by one or more columns
where - TokenCreators_bool_exp filter the rows returned

Example

Query
subscription TokenCreators_aggregate(
  $distinct_on: [TokenCreators_select_column!],
  $limit: Int,
  $offset: Int,
  $order_by: [TokenCreators_order_by!],
  $where: TokenCreators_bool_exp
) {
  TokenCreators_aggregate(
    distinct_on: $distinct_on,
    limit: $limit,
    offset: $offset,
    order_by: $order_by,
    where: $where
  ) {
    aggregate {
      ...TokenCreators_aggregate_fieldsFragment
    }
    nodes {
      ...TokenCreatorsFragment
    }
  }
}
Variables
{
  "distinct_on": ["blockNumber"],
  "limit": 123,
  "offset": 123,
  "order_by": [TokenCreators_order_by],
  "where": TokenCreators_bool_exp
}
Response
{
  "data": {
    "TokenCreators_aggregate": {
      "aggregate": TokenCreators_aggregate_fields,
      "nodes": [TokenCreators]
    }
  }
}

TokenCreators_by_pk

Description

fetch data from the table: "TokenCreators" using primary key columns

Response

Returns a TokenCreators

Arguments
Name Description
id - String!

Example

Query
subscription TokenCreators_by_pk($id: String!) {
  TokenCreators_by_pk(id: $id) {
    blockNumber
    db_write_timestamp
    id
    index
    interfaceId
    profile {
      ...ProfileFragment
    }
    profile_id
    token {
      ...TokenFragment
    }
    token_id
  }
}
Variables
{"id": "abc123"}
Response
{
  "data": {
    "TokenCreators_by_pk": {
      "blockNumber": 123,
      "db_write_timestamp": timestamp,
      "id": "abc123",
      "index": 987,
      "interfaceId": "xyz789",
      "profile": Profile,
      "profile_id": "abc123",
      "token": Token,
      "token_id": "abc123"
    }
  }
}

TokenCreators_stream

Description

fetch data from the table in a streaming manner: "TokenCreators"

Response

Returns [TokenCreators!]!

Arguments
Name Description
batch_size - Int! maximum number of rows returned in a single batch
cursor - [TokenCreators_stream_cursor_input]! cursor to stream the results returned by the query
where - TokenCreators_bool_exp filter the rows returned

Example

Query
subscription TokenCreators_stream(
  $batch_size: Int!,
  $cursor: [TokenCreators_stream_cursor_input]!,
  $where: TokenCreators_bool_exp
) {
  TokenCreators_stream(
    batch_size: $batch_size,
    cursor: $cursor,
    where: $where
  ) {
    blockNumber
    db_write_timestamp
    id
    index
    interfaceId
    profile {
      ...ProfileFragment
    }
    profile_id
    token {
      ...TokenFragment
    }
    token_id
  }
}
Variables
{
  "batch_size": 123,
  "cursor": [TokenCreators_stream_cursor_input],
  "where": TokenCreators_bool_exp
}
Response
{
  "data": {
    "TokenCreators_stream": [
      {
        "blockNumber": 987,
        "db_write_timestamp": timestamp,
        "id": "xyz789",
        "index": 987,
        "interfaceId": "xyz789",
        "profile": Profile,
        "profile_id": "abc123",
        "token": Token,
        "token_id": "xyz789"
      }
    ]
  }
}

TokenIconURL

Description

fetch data from the table: "TokenIconURL"

Response

Returns [TokenIconURL!]!

Arguments
Name Description
distinct_on - [TokenIconURL_select_column!] distinct select on columns
limit - Int limit the number of rows returned
offset - Int skip the first n rows. Use only with order_by
order_by - [TokenIconURL_order_by!] sort the rows by one or more columns
where - TokenIconURL_bool_exp filter the rows returned

Example

Query
subscription TokenIconURL(
  $distinct_on: [TokenIconURL_select_column!],
  $limit: Int,
  $offset: Int,
  $order_by: [TokenIconURL_order_by!],
  $where: TokenIconURL_bool_exp
) {
  TokenIconURL(
    distinct_on: $distinct_on,
    limit: $limit,
    offset: $offset,
    order_by: $order_by,
    where: $where
  ) {
    blockNumber
    data
    db_write_timestamp
    error
    fileType
    height
    id
    method
    src
    token {
      ...TokenFragment
    }
    token_id
    url
    verified
    width
  }
}
Variables
{
  "distinct_on": ["blockNumber"],
  "limit": 123,
  "offset": 987,
  "order_by": [TokenIconURL_order_by],
  "where": TokenIconURL_bool_exp
}
Response
{
  "data": {
    "TokenIconURL": [
      {
        "blockNumber": 123,
        "data": "xyz789",
        "db_write_timestamp": timestamp,
        "error": "xyz789",
        "fileType": "xyz789",
        "height": 123,
        "id": "abc123",
        "method": "xyz789",
        "src": "xyz789",
        "token": Token,
        "token_id": "abc123",
        "url": "xyz789",
        "verified": verificationstatus,
        "width": 123
      }
    ]
  }
}

TokenIconURL_aggregate

Description

fetch aggregated fields from the table: "TokenIconURL"

Response

Returns an TokenIconURL_aggregate!

Arguments
Name Description
distinct_on - [TokenIconURL_select_column!] distinct select on columns
limit - Int limit the number of rows returned
offset - Int skip the first n rows. Use only with order_by
order_by - [TokenIconURL_order_by!] sort the rows by one or more columns
where - TokenIconURL_bool_exp filter the rows returned

Example

Query
subscription TokenIconURL_aggregate(
  $distinct_on: [TokenIconURL_select_column!],
  $limit: Int,
  $offset: Int,
  $order_by: [TokenIconURL_order_by!],
  $where: TokenIconURL_bool_exp
) {
  TokenIconURL_aggregate(
    distinct_on: $distinct_on,
    limit: $limit,
    offset: $offset,
    order_by: $order_by,
    where: $where
  ) {
    aggregate {
      ...TokenIconURL_aggregate_fieldsFragment
    }
    nodes {
      ...TokenIconURLFragment
    }
  }
}
Variables
{
  "distinct_on": ["blockNumber"],
  "limit": 123,
  "offset": 987,
  "order_by": [TokenIconURL_order_by],
  "where": TokenIconURL_bool_exp
}
Response
{
  "data": {
    "TokenIconURL_aggregate": {
      "aggregate": TokenIconURL_aggregate_fields,
      "nodes": [TokenIconURL]
    }
  }
}

TokenIconURL_by_pk

Description

fetch data from the table: "TokenIconURL" using primary key columns

Response

Returns an TokenIconURL

Arguments
Name Description
id - String!

Example

Query
subscription TokenIconURL_by_pk($id: String!) {
  TokenIconURL_by_pk(id: $id) {
    blockNumber
    data
    db_write_timestamp
    error
    fileType
    height
    id
    method
    src
    token {
      ...TokenFragment
    }
    token_id
    url
    verified
    width
  }
}
Variables
{"id": "xyz789"}
Response
{
  "data": {
    "TokenIconURL_by_pk": {
      "blockNumber": 987,
      "data": "xyz789",
      "db_write_timestamp": timestamp,
      "error": "xyz789",
      "fileType": "xyz789",
      "height": 987,
      "id": "xyz789",
      "method": "abc123",
      "src": "abc123",
      "token": Token,
      "token_id": "abc123",
      "url": "xyz789",
      "verified": verificationstatus,
      "width": 123
    }
  }
}

TokenIconURL_stream

Description

fetch data from the table in a streaming manner: "TokenIconURL"

Response

Returns [TokenIconURL!]!

Arguments
Name Description
batch_size - Int! maximum number of rows returned in a single batch
cursor - [TokenIconURL_stream_cursor_input]! cursor to stream the results returned by the query
where - TokenIconURL_bool_exp filter the rows returned

Example

Query
subscription TokenIconURL_stream(
  $batch_size: Int!,
  $cursor: [TokenIconURL_stream_cursor_input]!,
  $where: TokenIconURL_bool_exp
) {
  TokenIconURL_stream(
    batch_size: $batch_size,
    cursor: $cursor,
    where: $where
  ) {
    blockNumber
    data
    db_write_timestamp
    error
    fileType
    height
    id
    method
    src
    token {
      ...TokenFragment
    }
    token_id
    url
    verified
    width
  }
}
Variables
{
  "batch_size": 987,
  "cursor": [TokenIconURL_stream_cursor_input],
  "where": TokenIconURL_bool_exp
}
Response
{
  "data": {
    "TokenIconURL_stream": [
      {
        "blockNumber": 123,
        "data": "abc123",
        "db_write_timestamp": timestamp,
        "error": "abc123",
        "fileType": "xyz789",
        "height": 987,
        "id": "abc123",
        "method": "xyz789",
        "src": "abc123",
        "token": Token,
        "token_id": "abc123",
        "url": "xyz789",
        "verified": verificationstatus,
        "width": 123
      }
    ]
  }
}

TokenImageURL

Description

fetch data from the table: "TokenImageURL"

Response

Returns [TokenImageURL!]!

Arguments
Name Description
distinct_on - [TokenImageURL_select_column!] distinct select on columns
limit - Int limit the number of rows returned
offset - Int skip the first n rows. Use only with order_by
order_by - [TokenImageURL_order_by!] sort the rows by one or more columns
where - TokenImageURL_bool_exp filter the rows returned

Example

Query
subscription TokenImageURL(
  $distinct_on: [TokenImageURL_select_column!],
  $limit: Int,
  $offset: Int,
  $order_by: [TokenImageURL_order_by!],
  $where: TokenImageURL_bool_exp
) {
  TokenImageURL(
    distinct_on: $distinct_on,
    limit: $limit,
    offset: $offset,
    order_by: $order_by,
    where: $where
  ) {
    blockNumber
    data
    db_write_timestamp
    error
    fileType
    height
    id
    index
    method
    src
    token {
      ...TokenFragment
    }
    token_id
    url
    verified
    width
  }
}
Variables
{
  "distinct_on": ["blockNumber"],
  "limit": 123,
  "offset": 987,
  "order_by": [TokenImageURL_order_by],
  "where": TokenImageURL_bool_exp
}
Response
{
  "data": {
    "TokenImageURL": [
      {
        "blockNumber": 123,
        "data": "xyz789",
        "db_write_timestamp": timestamp,
        "error": "abc123",
        "fileType": "xyz789",
        "height": 123,
        "id": "abc123",
        "index": 987,
        "method": "xyz789",
        "src": "abc123",
        "token": Token,
        "token_id": "abc123",
        "url": "xyz789",
        "verified": verificationstatus,
        "width": 987
      }
    ]
  }
}

TokenImageURL_aggregate

Description

fetch aggregated fields from the table: "TokenImageURL"

Response

Returns an TokenImageURL_aggregate!

Arguments
Name Description
distinct_on - [TokenImageURL_select_column!] distinct select on columns
limit - Int limit the number of rows returned
offset - Int skip the first n rows. Use only with order_by
order_by - [TokenImageURL_order_by!] sort the rows by one or more columns
where - TokenImageURL_bool_exp filter the rows returned

Example

Query
subscription TokenImageURL_aggregate(
  $distinct_on: [TokenImageURL_select_column!],
  $limit: Int,
  $offset: Int,
  $order_by: [TokenImageURL_order_by!],
  $where: TokenImageURL_bool_exp
) {
  TokenImageURL_aggregate(
    distinct_on: $distinct_on,
    limit: $limit,
    offset: $offset,
    order_by: $order_by,
    where: $where
  ) {
    aggregate {
      ...TokenImageURL_aggregate_fieldsFragment
    }
    nodes {
      ...TokenImageURLFragment
    }
  }
}
Variables
{
  "distinct_on": ["blockNumber"],
  "limit": 987,
  "offset": 987,
  "order_by": [TokenImageURL_order_by],
  "where": TokenImageURL_bool_exp
}
Response
{
  "data": {
    "TokenImageURL_aggregate": {
      "aggregate": TokenImageURL_aggregate_fields,
      "nodes": [TokenImageURL]
    }
  }
}

TokenImageURL_by_pk

Description

fetch data from the table: "TokenImageURL" using primary key columns

Response

Returns an TokenImageURL

Arguments
Name Description
id - String!

Example

Query
subscription TokenImageURL_by_pk($id: String!) {
  TokenImageURL_by_pk(id: $id) {
    blockNumber
    data
    db_write_timestamp
    error
    fileType
    height
    id
    index
    method
    src
    token {
      ...TokenFragment
    }
    token_id
    url
    verified
    width
  }
}
Variables
{"id": "abc123"}
Response
{
  "data": {
    "TokenImageURL_by_pk": {
      "blockNumber": 987,
      "data": "abc123",
      "db_write_timestamp": timestamp,
      "error": "xyz789",
      "fileType": "abc123",
      "height": 123,
      "id": "abc123",
      "index": 987,
      "method": "abc123",
      "src": "abc123",
      "token": Token,
      "token_id": "xyz789",
      "url": "abc123",
      "verified": verificationstatus,
      "width": 987
    }
  }
}

TokenImageURL_stream

Description

fetch data from the table in a streaming manner: "TokenImageURL"

Response

Returns [TokenImageURL!]!

Arguments
Name Description
batch_size - Int! maximum number of rows returned in a single batch
cursor - [TokenImageURL_stream_cursor_input]! cursor to stream the results returned by the query
where - TokenImageURL_bool_exp filter the rows returned

Example

Query
subscription TokenImageURL_stream(
  $batch_size: Int!,
  $cursor: [TokenImageURL_stream_cursor_input]!,
  $where: TokenImageURL_bool_exp
) {
  TokenImageURL_stream(
    batch_size: $batch_size,
    cursor: $cursor,
    where: $where
  ) {
    blockNumber
    data
    db_write_timestamp
    error
    fileType
    height
    id
    index
    method
    src
    token {
      ...TokenFragment
    }
    token_id
    url
    verified
    width
  }
}
Variables
{
  "batch_size": 987,
  "cursor": [TokenImageURL_stream_cursor_input],
  "where": TokenImageURL_bool_exp
}
Response
{
  "data": {
    "TokenImageURL_stream": [
      {
        "blockNumber": 987,
        "data": "abc123",
        "db_write_timestamp": timestamp,
        "error": "abc123",
        "fileType": "abc123",
        "height": 987,
        "id": "abc123",
        "index": 123,
        "method": "xyz789",
        "src": "abc123",
        "token": Token,
        "token_id": "xyz789",
        "url": "xyz789",
        "verified": verificationstatus,
        "width": 987
      }
    ]
  }
}

Token_aggregate

Description

fetch aggregated fields from the table: "Token"

Response

Returns a Token_aggregate!

Arguments
Name Description
distinct_on - [Token_select_column!] distinct select on columns
limit - Int limit the number of rows returned
offset - Int skip the first n rows. Use only with order_by
order_by - [Token_order_by!] sort the rows by one or more columns
where - Token_bool_exp filter the rows returned

Example

Query
subscription Token_aggregate(
  $distinct_on: [Token_select_column!],
  $limit: Int,
  $offset: Int,
  $order_by: [Token_order_by!],
  $where: Token_bool_exp
) {
  Token_aggregate(
    distinct_on: $distinct_on,
    limit: $limit,
    offset: $offset,
    order_by: $order_by,
    where: $where
  ) {
    aggregate {
      ...Token_aggregate_fieldsFragment
    }
    nodes {
      ...TokenFragment
    }
  }
}
Variables
{
  "distinct_on": ["asset_id"],
  "limit": 123,
  "offset": 987,
  "order_by": [Token_order_by],
  "where": Token_bool_exp
}
Response
{
  "data": {
    "Token_aggregate": {
      "aggregate": Token_aggregate_fields,
      "nodes": [Token]
    }
  }
}

Token_by_pk

Description

fetch data from the table: "Token" using primary key columns

Response

Returns a Token

Arguments
Name Description
id - String!

Example

Query
subscription Token_by_pk($id: String!) {
  Token_by_pk(id: $id) {
    appHistory {
      ...AppHistoryFragment
    }
    appHistory_aggregate {
      ...AppHistory_aggregateFragment
    }
    appInstalls {
      ...AppInstallFragment
    }
    appInstalls_aggregate {
      ...AppInstall_aggregateFragment
    }
    asset {
      ...AssetFragment
    }
    asset_id
    assets {
      ...TokenAssetURLFragment
    }
    assets_
    assets_aggregate {
      ...TokenAssetURL_aggregateFragment
    }
    attributes {
      ...TokenAttributeFragment
    }
    attributes_
    attributes_aggregate {
      ...TokenAttribute_aggregateFragment
    }
    backgroundImages {
      ...TokenBackgroundImageURLFragment
    }
    backgroundImages_
    baseAsset {
      ...AssetFragment
    }
    baseAsset_id
    baseUriChanged
    blockNumber
    category
    createdBlockNumber
    createdTimestamp
    createdTransactionIndex
    data
    db_write_timestamp
    description
    error
    formattedTokenId
    holders {
      ...HoldFragment
    }
    holders_aggregate {
      ...Hold_aggregateFragment
    }
    icons {
      ...TokenIconURLFragment
    }
    icons_
    icons_aggregate {
      ...TokenIconURL_aggregateFragment
    }
    id
    images {
      ...TokenImageURLFragment
    }
    images_
    images_aggregate {
      ...TokenImageURL_aggregateFragment
    }
    links {
      ...TokenLinkFragment
    }
    links_
    links_aggregate {
      ...TokenLink_aggregateFragment
    }
    lsp4Creators {
      ...TokenCreatorsFragment
    }
    lsp4CreatorsMap {
      ...TokenCreatorsFragment
    }
    lsp4CreatorsMap_aggregate {
      ...TokenCreators_aggregateFragment
    }
    lsp4Creators_
    lsp4Creators_aggregate {
      ...TokenCreators_aggregateFragment
    }
    lsp4TokenName
    lsp4TokenSymbol
    lsp4TokenType
    lsp8ReferenceContract {
      ...AssetFragment
    }
    lsp8ReferenceContractSelf
    lsp8ReferenceContract_id
    lsp8TokenIdFormat
    method
    name
    src
    supportedStandardsLsp4DigitalAsset
    tokenId
    transfers {
      ...TransferFragment
    }
    transfers_aggregate {
      ...Transfer_aggregateFragment
    }
    updatedBlockNumber
    updatedTimestamp
    updatedTransactionIndex
    url
  }
}
Variables
{"id": "abc123"}
Response
{
  "data": {
    "Token_by_pk": {
      "appHistory": [AppHistory],
      "appHistory_aggregate": AppHistory_aggregate,
      "appInstalls": [AppInstall],
      "appInstalls_aggregate": AppInstall_aggregate,
      "asset": Asset,
      "asset_id": "abc123",
      "assets": [TokenAssetURL],
      "assets_": ["abc123"],
      "assets_aggregate": TokenAssetURL_aggregate,
      "attributes": [TokenAttribute],
      "attributes_": ["abc123"],
      "attributes_aggregate": TokenAttribute_aggregate,
      "backgroundImages": [TokenBackgroundImageURL],
      "backgroundImages_": ["abc123"],
      "baseAsset": Asset,
      "baseAsset_id": "xyz789",
      "baseUriChanged": true,
      "blockNumber": 987,
      "category": "xyz789",
      "createdBlockNumber": 123,
      "createdTimestamp": 123,
      "createdTransactionIndex": 123,
      "data": "abc123",
      "db_write_timestamp": timestamp,
      "description": "xyz789",
      "error": "xyz789",
      "formattedTokenId": "xyz789",
      "holders": [Hold],
      "holders_aggregate": Hold_aggregate,
      "icons": [TokenIconURL],
      "icons_": ["xyz789"],
      "icons_aggregate": TokenIconURL_aggregate,
      "id": "abc123",
      "images": [TokenImageURL],
      "images_": ["abc123"],
      "images_aggregate": TokenImageURL_aggregate,
      "links": [TokenLink],
      "links_": ["xyz789"],
      "links_aggregate": TokenLink_aggregate,
      "lsp4Creators": [TokenCreators],
      "lsp4CreatorsMap": [TokenCreators],
      "lsp4CreatorsMap_aggregate": TokenCreators_aggregate,
      "lsp4Creators_": ["abc123"],
      "lsp4Creators_aggregate": TokenCreators_aggregate,
      "lsp4TokenName": "xyz789",
      "lsp4TokenSymbol": "abc123",
      "lsp4TokenType": 987,
      "lsp8ReferenceContract": Asset,
      "lsp8ReferenceContractSelf": "abc123",
      "lsp8ReferenceContract_id": "abc123",
      "lsp8TokenIdFormat": 987,
      "method": "xyz789",
      "name": "xyz789",
      "src": "xyz789",
      "supportedStandardsLsp4DigitalAsset": false,
      "tokenId": "xyz789",
      "transfers": [Transfer],
      "transfers_aggregate": Transfer_aggregate,
      "updatedBlockNumber": 987,
      "updatedTimestamp": 987,
      "updatedTransactionIndex": 123,
      "url": "abc123"
    }
  }
}

Token_stream

Description

fetch data from the table in a streaming manner: "Token"

Response

Returns [Token!]!

Arguments
Name Description
batch_size - Int! maximum number of rows returned in a single batch
cursor - [Token_stream_cursor_input]! cursor to stream the results returned by the query
where - Token_bool_exp filter the rows returned

Example

Query
subscription Token_stream(
  $batch_size: Int!,
  $cursor: [Token_stream_cursor_input]!,
  $where: Token_bool_exp
) {
  Token_stream(
    batch_size: $batch_size,
    cursor: $cursor,
    where: $where
  ) {
    appHistory {
      ...AppHistoryFragment
    }
    appHistory_aggregate {
      ...AppHistory_aggregateFragment
    }
    appInstalls {
      ...AppInstallFragment
    }
    appInstalls_aggregate {
      ...AppInstall_aggregateFragment
    }
    asset {
      ...AssetFragment
    }
    asset_id
    assets {
      ...TokenAssetURLFragment
    }
    assets_
    assets_aggregate {
      ...TokenAssetURL_aggregateFragment
    }
    attributes {
      ...TokenAttributeFragment
    }
    attributes_
    attributes_aggregate {
      ...TokenAttribute_aggregateFragment
    }
    backgroundImages {
      ...TokenBackgroundImageURLFragment
    }
    backgroundImages_
    baseAsset {
      ...AssetFragment
    }
    baseAsset_id
    baseUriChanged
    blockNumber
    category
    createdBlockNumber
    createdTimestamp
    createdTransactionIndex
    data
    db_write_timestamp
    description
    error
    formattedTokenId
    holders {
      ...HoldFragment
    }
    holders_aggregate {
      ...Hold_aggregateFragment
    }
    icons {
      ...TokenIconURLFragment
    }
    icons_
    icons_aggregate {
      ...TokenIconURL_aggregateFragment
    }
    id
    images {
      ...TokenImageURLFragment
    }
    images_
    images_aggregate {
      ...TokenImageURL_aggregateFragment
    }
    links {
      ...TokenLinkFragment
    }
    links_
    links_aggregate {
      ...TokenLink_aggregateFragment
    }
    lsp4Creators {
      ...TokenCreatorsFragment
    }
    lsp4CreatorsMap {
      ...TokenCreatorsFragment
    }
    lsp4CreatorsMap_aggregate {
      ...TokenCreators_aggregateFragment
    }
    lsp4Creators_
    lsp4Creators_aggregate {
      ...TokenCreators_aggregateFragment
    }
    lsp4TokenName
    lsp4TokenSymbol
    lsp4TokenType
    lsp8ReferenceContract {
      ...AssetFragment
    }
    lsp8ReferenceContractSelf
    lsp8ReferenceContract_id
    lsp8TokenIdFormat
    method
    name
    src
    supportedStandardsLsp4DigitalAsset
    tokenId
    transfers {
      ...TransferFragment
    }
    transfers_aggregate {
      ...Transfer_aggregateFragment
    }
    updatedBlockNumber
    updatedTimestamp
    updatedTransactionIndex
    url
  }
}
Variables
{
  "batch_size": 123,
  "cursor": [Token_stream_cursor_input],
  "where": Token_bool_exp
}
Response
{
  "data": {
    "Token_stream": [
      {
        "appHistory": [AppHistory],
        "appHistory_aggregate": AppHistory_aggregate,
        "appInstalls": [AppInstall],
        "appInstalls_aggregate": AppInstall_aggregate,
        "asset": Asset,
        "asset_id": "abc123",
        "assets": [TokenAssetURL],
        "assets_": ["abc123"],
        "assets_aggregate": TokenAssetURL_aggregate,
        "attributes": [TokenAttribute],
        "attributes_": ["abc123"],
        "attributes_aggregate": TokenAttribute_aggregate,
        "backgroundImages": [TokenBackgroundImageURL],
        "backgroundImages_": ["xyz789"],
        "baseAsset": Asset,
        "baseAsset_id": "abc123",
        "baseUriChanged": false,
        "blockNumber": 123,
        "category": "abc123",
        "createdBlockNumber": 123,
        "createdTimestamp": 123,
        "createdTransactionIndex": 123,
        "data": "xyz789",
        "db_write_timestamp": timestamp,
        "description": "abc123",
        "error": "xyz789",
        "formattedTokenId": "abc123",
        "holders": [Hold],
        "holders_aggregate": Hold_aggregate,
        "icons": [TokenIconURL],
        "icons_": ["abc123"],
        "icons_aggregate": TokenIconURL_aggregate,
        "id": "xyz789",
        "images": [TokenImageURL],
        "images_": ["xyz789"],
        "images_aggregate": TokenImageURL_aggregate,
        "links": [TokenLink],
        "links_": ["abc123"],
        "links_aggregate": TokenLink_aggregate,
        "lsp4Creators": [TokenCreators],
        "lsp4CreatorsMap": [TokenCreators],
        "lsp4CreatorsMap_aggregate": TokenCreators_aggregate,
        "lsp4Creators_": ["abc123"],
        "lsp4Creators_aggregate": TokenCreators_aggregate,
        "lsp4TokenName": "abc123",
        "lsp4TokenSymbol": "xyz789",
        "lsp4TokenType": 987,
        "lsp8ReferenceContract": Asset,
        "lsp8ReferenceContractSelf": "xyz789",
        "lsp8ReferenceContract_id": "xyz789",
        "lsp8TokenIdFormat": 987,
        "method": "abc123",
        "name": "abc123",
        "src": "abc123",
        "supportedStandardsLsp4DigitalAsset": true,
        "tokenId": "xyz789",
        "transfers": [Transfer],
        "transfers_aggregate": Transfer_aggregate,
        "updatedBlockNumber": 123,
        "updatedTimestamp": 123,
        "updatedTransactionIndex": 987,
        "url": "abc123"
      }
    ]
  }
}

Transaction

Description

fetch data from the table: "Transaction"

Response

Returns [Transaction!]!

Arguments
Name Description
distinct_on - [Transaction_select_column!] distinct select on columns
limit - Int limit the number of rows returned
offset - Int skip the first n rows. Use only with order_by
order_by - [Transaction_order_by!] sort the rows by one or more columns
where - Transaction_bool_exp filter the rows returned

Example

Query
subscription Transaction(
  $distinct_on: [Transaction_select_column!],
  $limit: Int,
  $offset: Int,
  $order_by: [Transaction_order_by!],
  $where: Transaction_bool_exp
) {
  Transaction(
    distinct_on: $distinct_on,
    limit: $limit,
    offset: $offset,
    order_by: $order_by,
    where: $where
  ) {
    blockNumber
    cumulativeGasUsed
    db_write_timestamp
    effectiveGasPrice
    from
    gas
    gasPrice
    gasUsed
    holds {
      ...HoldFragment
    }
    holds_aggregate {
      ...Hold_aggregateFragment
    }
    id
    input
    isRelayer
    maxFeePerGas
    maxPriorityFeePerGas
    profile {
      ...ProfileFragment
    }
    profile_id
    timestamp
    to
    transactionIndex
    transfers {
      ...TransferFragment
    }
    transfers_aggregate {
      ...Transfer_aggregateFragment
    }
    value
  }
}
Variables
{
  "distinct_on": ["blockNumber"],
  "limit": 987,
  "offset": 987,
  "order_by": [Transaction_order_by],
  "where": Transaction_bool_exp
}
Response
{
  "data": {
    "Transaction": [
      {
        "blockNumber": 987,
        "cumulativeGasUsed": numeric,
        "db_write_timestamp": timestamp,
        "effectiveGasPrice": numeric,
        "from": "abc123",
        "gas": numeric,
        "gasPrice": numeric,
        "gasUsed": numeric,
        "holds": [Hold],
        "holds_aggregate": Hold_aggregate,
        "id": "xyz789",
        "input": "xyz789",
        "isRelayer": false,
        "maxFeePerGas": numeric,
        "maxPriorityFeePerGas": numeric,
        "profile": Profile,
        "profile_id": "xyz789",
        "timestamp": 987,
        "to": "xyz789",
        "transactionIndex": 987,
        "transfers": [Transfer],
        "transfers_aggregate": Transfer_aggregate,
        "value": numeric
      }
    ]
  }
}

Transaction_aggregate

Description

fetch aggregated fields from the table: "Transaction"

Response

Returns a Transaction_aggregate!

Arguments
Name Description
distinct_on - [Transaction_select_column!] distinct select on columns
limit - Int limit the number of rows returned
offset - Int skip the first n rows. Use only with order_by
order_by - [Transaction_order_by!] sort the rows by one or more columns
where - Transaction_bool_exp filter the rows returned

Example

Query
subscription Transaction_aggregate(
  $distinct_on: [Transaction_select_column!],
  $limit: Int,
  $offset: Int,
  $order_by: [Transaction_order_by!],
  $where: Transaction_bool_exp
) {
  Transaction_aggregate(
    distinct_on: $distinct_on,
    limit: $limit,
    offset: $offset,
    order_by: $order_by,
    where: $where
  ) {
    aggregate {
      ...Transaction_aggregate_fieldsFragment
    }
    nodes {
      ...TransactionFragment
    }
  }
}
Variables
{
  "distinct_on": ["blockNumber"],
  "limit": 987,
  "offset": 123,
  "order_by": [Transaction_order_by],
  "where": Transaction_bool_exp
}
Response
{
  "data": {
    "Transaction_aggregate": {
      "aggregate": Transaction_aggregate_fields,
      "nodes": [Transaction]
    }
  }
}

Transaction_by_pk

Description

fetch data from the table: "Transaction" using primary key columns

Response

Returns a Transaction

Arguments
Name Description
id - String!

Example

Query
subscription Transaction_by_pk($id: String!) {
  Transaction_by_pk(id: $id) {
    blockNumber
    cumulativeGasUsed
    db_write_timestamp
    effectiveGasPrice
    from
    gas
    gasPrice
    gasUsed
    holds {
      ...HoldFragment
    }
    holds_aggregate {
      ...Hold_aggregateFragment
    }
    id
    input
    isRelayer
    maxFeePerGas
    maxPriorityFeePerGas
    profile {
      ...ProfileFragment
    }
    profile_id
    timestamp
    to
    transactionIndex
    transfers {
      ...TransferFragment
    }
    transfers_aggregate {
      ...Transfer_aggregateFragment
    }
    value
  }
}
Variables
{"id": "abc123"}
Response
{
  "data": {
    "Transaction_by_pk": {
      "blockNumber": 123,
      "cumulativeGasUsed": numeric,
      "db_write_timestamp": timestamp,
      "effectiveGasPrice": numeric,
      "from": "xyz789",
      "gas": numeric,
      "gasPrice": numeric,
      "gasUsed": numeric,
      "holds": [Hold],
      "holds_aggregate": Hold_aggregate,
      "id": "abc123",
      "input": "xyz789",
      "isRelayer": false,
      "maxFeePerGas": numeric,
      "maxPriorityFeePerGas": numeric,
      "profile": Profile,
      "profile_id": "xyz789",
      "timestamp": 987,
      "to": "abc123",
      "transactionIndex": 987,
      "transfers": [Transfer],
      "transfers_aggregate": Transfer_aggregate,
      "value": numeric
    }
  }
}

Transaction_stream

Description

fetch data from the table in a streaming manner: "Transaction"

Response

Returns [Transaction!]!

Arguments
Name Description
batch_size - Int! maximum number of rows returned in a single batch
cursor - [Transaction_stream_cursor_input]! cursor to stream the results returned by the query
where - Transaction_bool_exp filter the rows returned

Example

Query
subscription Transaction_stream(
  $batch_size: Int!,
  $cursor: [Transaction_stream_cursor_input]!,
  $where: Transaction_bool_exp
) {
  Transaction_stream(
    batch_size: $batch_size,
    cursor: $cursor,
    where: $where
  ) {
    blockNumber
    cumulativeGasUsed
    db_write_timestamp
    effectiveGasPrice
    from
    gas
    gasPrice
    gasUsed
    holds {
      ...HoldFragment
    }
    holds_aggregate {
      ...Hold_aggregateFragment
    }
    id
    input
    isRelayer
    maxFeePerGas
    maxPriorityFeePerGas
    profile {
      ...ProfileFragment
    }
    profile_id
    timestamp
    to
    transactionIndex
    transfers {
      ...TransferFragment
    }
    transfers_aggregate {
      ...Transfer_aggregateFragment
    }
    value
  }
}
Variables
{
  "batch_size": 987,
  "cursor": [Transaction_stream_cursor_input],
  "where": Transaction_bool_exp
}
Response
{
  "data": {
    "Transaction_stream": [
      {
        "blockNumber": 987,
        "cumulativeGasUsed": numeric,
        "db_write_timestamp": timestamp,
        "effectiveGasPrice": numeric,
        "from": "xyz789",
        "gas": numeric,
        "gasPrice": numeric,
        "gasUsed": numeric,
        "holds": [Hold],
        "holds_aggregate": Hold_aggregate,
        "id": "abc123",
        "input": "abc123",
        "isRelayer": true,
        "maxFeePerGas": numeric,
        "maxPriorityFeePerGas": numeric,
        "profile": Profile,
        "profile_id": "abc123",
        "timestamp": 123,
        "to": "abc123",
        "transactionIndex": 987,
        "transfers": [Transfer],
        "transfers_aggregate": Transfer_aggregate,
        "value": numeric
      }
    ]
  }
}

Transfer

Description

fetch data from the table: "Transfer"

Response

Returns [Transfer!]!

Arguments
Name Description
distinct_on - [Transfer_select_column!] distinct select on columns
limit - Int limit the number of rows returned
offset - Int skip the first n rows. Use only with order_by
order_by - [Transfer_order_by!] sort the rows by one or more columns
where - Transfer_bool_exp filter the rows returned

Example

Query
subscription Transfer(
  $distinct_on: [Transfer_select_column!],
  $limit: Int,
  $offset: Int,
  $order_by: [Transfer_order_by!],
  $where: Transfer_bool_exp
) {
  Transfer(
    distinct_on: $distinct_on,
    limit: $limit,
    offset: $offset,
    order_by: $order_by,
    where: $where
  ) {
    asset {
      ...AssetFragment
    }
    asset_id
    blockNumber
    db_write_timestamp
    from {
      ...ProfileFragment
    }
    from_id
    id
    timestamp
    to {
      ...ProfileFragment
    }
    to_id
    token {
      ...TokenFragment
    }
    token_id
    transaction {
      ...TransactionFragment
    }
    transaction_id
    value
  }
}
Variables
{
  "distinct_on": ["asset_id"],
  "limit": 123,
  "offset": 987,
  "order_by": [Transfer_order_by],
  "where": Transfer_bool_exp
}
Response
{
  "data": {
    "Transfer": [
      {
        "asset": Asset,
        "asset_id": "xyz789",
        "blockNumber": 123,
        "db_write_timestamp": timestamp,
        "from": Profile,
        "from_id": "abc123",
        "id": "abc123",
        "timestamp": 123,
        "to": Profile,
        "to_id": "xyz789",
        "token": Token,
        "token_id": "abc123",
        "transaction": Transaction,
        "transaction_id": "xyz789",
        "value": numeric
      }
    ]
  }
}

Transfer_aggregate

Description

fetch aggregated fields from the table: "Transfer"

Response

Returns a Transfer_aggregate!

Arguments
Name Description
distinct_on - [Transfer_select_column!] distinct select on columns
limit - Int limit the number of rows returned
offset - Int skip the first n rows. Use only with order_by
order_by - [Transfer_order_by!] sort the rows by one or more columns
where - Transfer_bool_exp filter the rows returned

Example

Query
subscription Transfer_aggregate(
  $distinct_on: [Transfer_select_column!],
  $limit: Int,
  $offset: Int,
  $order_by: [Transfer_order_by!],
  $where: Transfer_bool_exp
) {
  Transfer_aggregate(
    distinct_on: $distinct_on,
    limit: $limit,
    offset: $offset,
    order_by: $order_by,
    where: $where
  ) {
    aggregate {
      ...Transfer_aggregate_fieldsFragment
    }
    nodes {
      ...TransferFragment
    }
  }
}
Variables
{
  "distinct_on": ["asset_id"],
  "limit": 987,
  "offset": 987,
  "order_by": [Transfer_order_by],
  "where": Transfer_bool_exp
}
Response
{
  "data": {
    "Transfer_aggregate": {
      "aggregate": Transfer_aggregate_fields,
      "nodes": [Transfer]
    }
  }
}

Transfer_by_pk

Description

fetch data from the table: "Transfer" using primary key columns

Response

Returns a Transfer

Arguments
Name Description
id - String!

Example

Query
subscription Transfer_by_pk($id: String!) {
  Transfer_by_pk(id: $id) {
    asset {
      ...AssetFragment
    }
    asset_id
    blockNumber
    db_write_timestamp
    from {
      ...ProfileFragment
    }
    from_id
    id
    timestamp
    to {
      ...ProfileFragment
    }
    to_id
    token {
      ...TokenFragment
    }
    token_id
    transaction {
      ...TransactionFragment
    }
    transaction_id
    value
  }
}
Variables
{"id": "xyz789"}
Response
{
  "data": {
    "Transfer_by_pk": {
      "asset": Asset,
      "asset_id": "xyz789",
      "blockNumber": 987,
      "db_write_timestamp": timestamp,
      "from": Profile,
      "from_id": "abc123",
      "id": "xyz789",
      "timestamp": 123,
      "to": Profile,
      "to_id": "abc123",
      "token": Token,
      "token_id": "xyz789",
      "transaction": Transaction,
      "transaction_id": "xyz789",
      "value": numeric
    }
  }
}

Transfer_stream

Description

fetch data from the table in a streaming manner: "Transfer"

Response

Returns [Transfer!]!

Arguments
Name Description
batch_size - Int! maximum number of rows returned in a single batch
cursor - [Transfer_stream_cursor_input]! cursor to stream the results returned by the query
where - Transfer_bool_exp filter the rows returned

Example

Query
subscription Transfer_stream(
  $batch_size: Int!,
  $cursor: [Transfer_stream_cursor_input]!,
  $where: Transfer_bool_exp
) {
  Transfer_stream(
    batch_size: $batch_size,
    cursor: $cursor,
    where: $where
  ) {
    asset {
      ...AssetFragment
    }
    asset_id
    blockNumber
    db_write_timestamp
    from {
      ...ProfileFragment
    }
    from_id
    id
    timestamp
    to {
      ...ProfileFragment
    }
    to_id
    token {
      ...TokenFragment
    }
    token_id
    transaction {
      ...TransactionFragment
    }
    transaction_id
    value
  }
}
Variables
{
  "batch_size": 123,
  "cursor": [Transfer_stream_cursor_input],
  "where": Transfer_bool_exp
}
Response
{
  "data": {
    "Transfer_stream": [
      {
        "asset": Asset,
        "asset_id": "xyz789",
        "blockNumber": 987,
        "db_write_timestamp": timestamp,
        "from": Profile,
        "from_id": "abc123",
        "id": "abc123",
        "timestamp": 123,
        "to": Profile,
        "to_id": "xyz789",
        "token": Token,
        "token_id": "abc123",
        "transaction": Transaction,
        "transaction_id": "abc123",
        "value": numeric
      }
    ]
  }
}

asset_category_stats

Description

fetch data from the table: "asset_category_stats"

Response

Returns [asset_category_stats!]!

Arguments
Name Description
distinct_on - [asset_category_stats_select_column!] distinct select on columns
limit - Int limit the number of rows returned
offset - Int skip the first n rows. Use only with order_by
order_by - [asset_category_stats_order_by!] sort the rows by one or more columns
where - asset_category_stats_bool_exp filter the rows returned

Example

Query
subscription asset_category_stats(
  $distinct_on: [asset_category_stats_select_column!],
  $limit: Int,
  $offset: Int,
  $order_by: [asset_category_stats_order_by!],
  $where: asset_category_stats_bool_exp
) {
  asset_category_stats(
    distinct_on: $distinct_on,
    limit: $limit,
    offset: $offset,
    order_by: $order_by,
    where: $where
  ) {
    activity_score
    avg_hot_score
    category
    category_score
    is_active
    last_activity
    max_hot_score
    popularity_score
    total_assets
    total_holders
    transfer_count_3d
    transfer_count_7d
    trending_score
  }
}
Variables
{
  "distinct_on": ["activity_score"],
  "limit": 123,
  "offset": 123,
  "order_by": [asset_category_stats_order_by],
  "where": asset_category_stats_bool_exp
}
Response
{
  "data": {
    "asset_category_stats": [
      {
        "activity_score": numeric,
        "avg_hot_score": numeric,
        "category": "xyz789",
        "category_score": numeric,
        "is_active": true,
        "last_activity": 123,
        "max_hot_score": numeric,
        "popularity_score": numeric,
        "total_assets": 123,
        "total_holders": 123,
        "transfer_count_3d": 987,
        "transfer_count_7d": 123,
        "trending_score": numeric
      }
    ]
  }
}

asset_category_stats_aggregate

Description

fetch aggregated fields from the table: "asset_category_stats"

Response

Returns an asset_category_stats_aggregate!

Arguments
Name Description
distinct_on - [asset_category_stats_select_column!] distinct select on columns
limit - Int limit the number of rows returned
offset - Int skip the first n rows. Use only with order_by
order_by - [asset_category_stats_order_by!] sort the rows by one or more columns
where - asset_category_stats_bool_exp filter the rows returned

Example

Query
subscription asset_category_stats_aggregate(
  $distinct_on: [asset_category_stats_select_column!],
  $limit: Int,
  $offset: Int,
  $order_by: [asset_category_stats_order_by!],
  $where: asset_category_stats_bool_exp
) {
  asset_category_stats_aggregate(
    distinct_on: $distinct_on,
    limit: $limit,
    offset: $offset,
    order_by: $order_by,
    where: $where
  ) {
    aggregate {
      ...asset_category_stats_aggregate_fieldsFragment
    }
    nodes {
      ...asset_category_statsFragment
    }
  }
}
Variables
{
  "distinct_on": ["activity_score"],
  "limit": 123,
  "offset": 987,
  "order_by": [asset_category_stats_order_by],
  "where": asset_category_stats_bool_exp
}
Response
{
  "data": {
    "asset_category_stats_aggregate": {
      "aggregate": asset_category_stats_aggregate_fields,
      "nodes": [asset_category_stats]
    }
  }
}

asset_category_stats_stream

Description

fetch data from the table in a streaming manner: "asset_category_stats"

Response

Returns [asset_category_stats!]!

Arguments
Name Description
batch_size - Int! maximum number of rows returned in a single batch
cursor - [asset_category_stats_stream_cursor_input]! cursor to stream the results returned by the query
where - asset_category_stats_bool_exp filter the rows returned

Example

Query
subscription asset_category_stats_stream(
  $batch_size: Int!,
  $cursor: [asset_category_stats_stream_cursor_input]!,
  $where: asset_category_stats_bool_exp
) {
  asset_category_stats_stream(
    batch_size: $batch_size,
    cursor: $cursor,
    where: $where
  ) {
    activity_score
    avg_hot_score
    category
    category_score
    is_active
    last_activity
    max_hot_score
    popularity_score
    total_assets
    total_holders
    transfer_count_3d
    transfer_count_7d
    trending_score
  }
}
Variables
{
  "batch_size": 123,
  "cursor": [asset_category_stats_stream_cursor_input],
  "where": asset_category_stats_bool_exp
}
Response
{
  "data": {
    "asset_category_stats_stream": [
      {
        "activity_score": numeric,
        "avg_hot_score": numeric,
        "category": "xyz789",
        "category_score": numeric,
        "is_active": true,
        "last_activity": 123,
        "max_hot_score": numeric,
        "popularity_score": numeric,
        "total_assets": 987,
        "total_holders": 123,
        "transfer_count_3d": 987,
        "transfer_count_7d": 123,
        "trending_score": numeric
      }
    ]
  }
}

chain_metadata

Description

fetch data from the table: "chain_metadata"

Response

Returns [chain_metadata!]!

Arguments
Name Description
distinct_on - [chain_metadata_select_column!] distinct select on columns
limit - Int limit the number of rows returned
offset - Int skip the first n rows. Use only with order_by
order_by - [chain_metadata_order_by!] sort the rows by one or more columns
where - chain_metadata_bool_exp filter the rows returned

Example

Query
subscription chain_metadata(
  $distinct_on: [chain_metadata_select_column!],
  $limit: Int,
  $offset: Int,
  $order_by: [chain_metadata_order_by!],
  $where: chain_metadata_bool_exp
) {
  chain_metadata(
    distinct_on: $distinct_on,
    limit: $limit,
    offset: $offset,
    order_by: $order_by,
    where: $where
  ) {
    block_height
    chain_id
    end_block
    first_event_block_number
    is_hyper_sync
    latest_fetched_block_number
    latest_processed_block
    num_batches_fetched
    num_events_processed
    start_block
    timestamp_caught_up_to_head_or_endblock
  }
}
Variables
{
  "distinct_on": ["block_height"],
  "limit": 987,
  "offset": 987,
  "order_by": [chain_metadata_order_by],
  "where": chain_metadata_bool_exp
}
Response
{
  "data": {
    "chain_metadata": [
      {
        "block_height": 987,
        "chain_id": 123,
        "end_block": 987,
        "first_event_block_number": 987,
        "is_hyper_sync": false,
        "latest_fetched_block_number": 987,
        "latest_processed_block": 987,
        "num_batches_fetched": 987,
        "num_events_processed": 123,
        "start_block": 987,
        "timestamp_caught_up_to_head_or_endblock": timestamptz
      }
    ]
  }
}

chain_metadata_aggregate

Description

fetch aggregated fields from the table: "chain_metadata"

Response

Returns a chain_metadata_aggregate!

Arguments
Name Description
distinct_on - [chain_metadata_select_column!] distinct select on columns
limit - Int limit the number of rows returned
offset - Int skip the first n rows. Use only with order_by
order_by - [chain_metadata_order_by!] sort the rows by one or more columns
where - chain_metadata_bool_exp filter the rows returned

Example

Query
subscription chain_metadata_aggregate(
  $distinct_on: [chain_metadata_select_column!],
  $limit: Int,
  $offset: Int,
  $order_by: [chain_metadata_order_by!],
  $where: chain_metadata_bool_exp
) {
  chain_metadata_aggregate(
    distinct_on: $distinct_on,
    limit: $limit,
    offset: $offset,
    order_by: $order_by,
    where: $where
  ) {
    aggregate {
      ...chain_metadata_aggregate_fieldsFragment
    }
    nodes {
      ...chain_metadataFragment
    }
  }
}
Variables
{
  "distinct_on": ["block_height"],
  "limit": 987,
  "offset": 987,
  "order_by": [chain_metadata_order_by],
  "where": chain_metadata_bool_exp
}
Response
{
  "data": {
    "chain_metadata_aggregate": {
      "aggregate": chain_metadata_aggregate_fields,
      "nodes": [chain_metadata]
    }
  }
}

chain_metadata_by_pk

Description

fetch data from the table: "chain_metadata" using primary key columns

Response

Returns a chain_metadata

Arguments
Name Description
chain_id - Int!

Example

Query
subscription chain_metadata_by_pk($chain_id: Int!) {
  chain_metadata_by_pk(chain_id: $chain_id) {
    block_height
    chain_id
    end_block
    first_event_block_number
    is_hyper_sync
    latest_fetched_block_number
    latest_processed_block
    num_batches_fetched
    num_events_processed
    start_block
    timestamp_caught_up_to_head_or_endblock
  }
}
Variables
{"chain_id": 123}
Response
{
  "data": {
    "chain_metadata_by_pk": {
      "block_height": 123,
      "chain_id": 987,
      "end_block": 987,
      "first_event_block_number": 123,
      "is_hyper_sync": false,
      "latest_fetched_block_number": 987,
      "latest_processed_block": 123,
      "num_batches_fetched": 123,
      "num_events_processed": 123,
      "start_block": 987,
      "timestamp_caught_up_to_head_or_endblock": timestamptz
    }
  }
}

chain_metadata_stream

Description

fetch data from the table in a streaming manner: "chain_metadata"

Response

Returns [chain_metadata!]!

Arguments
Name Description
batch_size - Int! maximum number of rows returned in a single batch
cursor - [chain_metadata_stream_cursor_input]! cursor to stream the results returned by the query
where - chain_metadata_bool_exp filter the rows returned

Example

Query
subscription chain_metadata_stream(
  $batch_size: Int!,
  $cursor: [chain_metadata_stream_cursor_input]!,
  $where: chain_metadata_bool_exp
) {
  chain_metadata_stream(
    batch_size: $batch_size,
    cursor: $cursor,
    where: $where
  ) {
    block_height
    chain_id
    end_block
    first_event_block_number
    is_hyper_sync
    latest_fetched_block_number
    latest_processed_block
    num_batches_fetched
    num_events_processed
    start_block
    timestamp_caught_up_to_head_or_endblock
  }
}
Variables
{
  "batch_size": 987,
  "cursor": [chain_metadata_stream_cursor_input],
  "where": chain_metadata_bool_exp
}
Response
{
  "data": {
    "chain_metadata_stream": [
      {
        "block_height": 123,
        "chain_id": 987,
        "end_block": 123,
        "first_event_block_number": 123,
        "is_hyper_sync": false,
        "latest_fetched_block_number": 987,
        "latest_processed_block": 987,
        "num_batches_fetched": 987,
        "num_events_processed": 987,
        "start_block": 123,
        "timestamp_caught_up_to_head_or_endblock": timestamptz
      }
    ]
  }
}

dynamic_contract_registry

Description

fetch data from the table: "dynamic_contract_registry"

Arguments
Name Description
distinct_on - [dynamic_contract_registry_select_column!] distinct select on columns
limit - Int limit the number of rows returned
offset - Int skip the first n rows. Use only with order_by
order_by - [dynamic_contract_registry_order_by!] sort the rows by one or more columns
where - dynamic_contract_registry_bool_exp filter the rows returned

Example

Query
subscription dynamic_contract_registry(
  $distinct_on: [dynamic_contract_registry_select_column!],
  $limit: Int,
  $offset: Int,
  $order_by: [dynamic_contract_registry_order_by!],
  $where: dynamic_contract_registry_bool_exp
) {
  dynamic_contract_registry(
    distinct_on: $distinct_on,
    limit: $limit,
    offset: $offset,
    order_by: $order_by,
    where: $where
  ) {
    block_timestamp
    chain_id
    contract_address
    contract_type
    event_id
  }
}
Variables
{
  "distinct_on": ["block_timestamp"],
  "limit": 987,
  "offset": 123,
  "order_by": [dynamic_contract_registry_order_by],
  "where": dynamic_contract_registry_bool_exp
}
Response
{
  "data": {
    "dynamic_contract_registry": [
      {
        "block_timestamp": 123,
        "chain_id": 987,
        "contract_address": "abc123",
        "contract_type": contract_type,
        "event_id": numeric
      }
    ]
  }
}

dynamic_contract_registry_aggregate

Description

fetch aggregated fields from the table: "dynamic_contract_registry"

Arguments
Name Description
distinct_on - [dynamic_contract_registry_select_column!] distinct select on columns
limit - Int limit the number of rows returned
offset - Int skip the first n rows. Use only with order_by
order_by - [dynamic_contract_registry_order_by!] sort the rows by one or more columns
where - dynamic_contract_registry_bool_exp filter the rows returned

Example

Query
subscription dynamic_contract_registry_aggregate(
  $distinct_on: [dynamic_contract_registry_select_column!],
  $limit: Int,
  $offset: Int,
  $order_by: [dynamic_contract_registry_order_by!],
  $where: dynamic_contract_registry_bool_exp
) {
  dynamic_contract_registry_aggregate(
    distinct_on: $distinct_on,
    limit: $limit,
    offset: $offset,
    order_by: $order_by,
    where: $where
  ) {
    aggregate {
      ...dynamic_contract_registry_aggregate_fieldsFragment
    }
    nodes {
      ...dynamic_contract_registryFragment
    }
  }
}
Variables
{
  "distinct_on": ["block_timestamp"],
  "limit": 123,
  "offset": 987,
  "order_by": [dynamic_contract_registry_order_by],
  "where": dynamic_contract_registry_bool_exp
}
Response
{
  "data": {
    "dynamic_contract_registry_aggregate": {
      "aggregate": dynamic_contract_registry_aggregate_fields,
      "nodes": [dynamic_contract_registry]
    }
  }
}

dynamic_contract_registry_by_pk

Description

fetch data from the table: "dynamic_contract_registry" using primary key columns

Response

Returns a dynamic_contract_registry

Arguments
Name Description
chain_id - Int!
contract_address - String!

Example

Query
subscription dynamic_contract_registry_by_pk(
  $chain_id: Int!,
  $contract_address: String!
) {
  dynamic_contract_registry_by_pk(
    chain_id: $chain_id,
    contract_address: $contract_address
  ) {
    block_timestamp
    chain_id
    contract_address
    contract_type
    event_id
  }
}
Variables
{
  "chain_id": 987,
  "contract_address": "xyz789"
}
Response
{
  "data": {
    "dynamic_contract_registry_by_pk": {
      "block_timestamp": 123,
      "chain_id": 987,
      "contract_address": "xyz789",
      "contract_type": contract_type,
      "event_id": numeric
    }
  }
}

dynamic_contract_registry_stream

Description

fetch data from the table in a streaming manner: "dynamic_contract_registry"

Arguments
Name Description
batch_size - Int! maximum number of rows returned in a single batch
cursor - [dynamic_contract_registry_stream_cursor_input]! cursor to stream the results returned by the query
where - dynamic_contract_registry_bool_exp filter the rows returned

Example

Query
subscription dynamic_contract_registry_stream(
  $batch_size: Int!,
  $cursor: [dynamic_contract_registry_stream_cursor_input]!,
  $where: dynamic_contract_registry_bool_exp
) {
  dynamic_contract_registry_stream(
    batch_size: $batch_size,
    cursor: $cursor,
    where: $where
  ) {
    block_timestamp
    chain_id
    contract_address
    contract_type
    event_id
  }
}
Variables
{
  "batch_size": 123,
  "cursor": [
    dynamic_contract_registry_stream_cursor_input
  ],
  "where": dynamic_contract_registry_bool_exp
}
Response
{
  "data": {
    "dynamic_contract_registry_stream": [
      {
        "block_timestamp": 987,
        "chain_id": 987,
        "contract_address": "xyz789",
        "contract_type": contract_type,
        "event_id": numeric
      }
    ]
  }
}

entity_history

Description

fetch data from the table: "entity_history"

Response

Returns [entity_history!]!

Arguments
Name Description
distinct_on - [entity_history_select_column!] distinct select on columns
limit - Int limit the number of rows returned
offset - Int skip the first n rows. Use only with order_by
order_by - [entity_history_order_by!] sort the rows by one or more columns
where - entity_history_bool_exp filter the rows returned

Example

Query
subscription entity_history(
  $distinct_on: [entity_history_select_column!],
  $limit: Int,
  $offset: Int,
  $order_by: [entity_history_order_by!],
  $where: entity_history_bool_exp
) {
  entity_history(
    distinct_on: $distinct_on,
    limit: $limit,
    offset: $offset,
    order_by: $order_by,
    where: $where
  ) {
    block_number
    block_timestamp
    chain_id
    entity_id
    entity_type
    event {
      ...raw_eventsFragment
    }
    log_index
    params
    previous_block_number
    previous_block_timestamp
    previous_chain_id
    previous_log_index
  }
}
Variables
{
  "distinct_on": ["block_number"],
  "limit": 987,
  "offset": 123,
  "order_by": [entity_history_order_by],
  "where": entity_history_bool_exp
}
Response
{
  "data": {
    "entity_history": [
      {
        "block_number": 123,
        "block_timestamp": 123,
        "chain_id": 987,
        "entity_id": "abc123",
        "entity_type": entity_type,
        "event": raw_events,
        "log_index": 987,
        "params": json,
        "previous_block_number": 123,
        "previous_block_timestamp": 123,
        "previous_chain_id": 987,
        "previous_log_index": 123
      }
    ]
  }
}

entity_history_aggregate

Description

fetch aggregated fields from the table: "entity_history"

Response

Returns an entity_history_aggregate!

Arguments
Name Description
distinct_on - [entity_history_select_column!] distinct select on columns
limit - Int limit the number of rows returned
offset - Int skip the first n rows. Use only with order_by
order_by - [entity_history_order_by!] sort the rows by one or more columns
where - entity_history_bool_exp filter the rows returned

Example

Query
subscription entity_history_aggregate(
  $distinct_on: [entity_history_select_column!],
  $limit: Int,
  $offset: Int,
  $order_by: [entity_history_order_by!],
  $where: entity_history_bool_exp
) {
  entity_history_aggregate(
    distinct_on: $distinct_on,
    limit: $limit,
    offset: $offset,
    order_by: $order_by,
    where: $where
  ) {
    aggregate {
      ...entity_history_aggregate_fieldsFragment
    }
    nodes {
      ...entity_historyFragment
    }
  }
}
Variables
{
  "distinct_on": ["block_number"],
  "limit": 123,
  "offset": 123,
  "order_by": [entity_history_order_by],
  "where": entity_history_bool_exp
}
Response
{
  "data": {
    "entity_history_aggregate": {
      "aggregate": entity_history_aggregate_fields,
      "nodes": [entity_history]
    }
  }
}

entity_history_by_pk

Description

fetch data from the table: "entity_history" using primary key columns

Response

Returns an entity_history

Arguments
Name Description
block_number - Int!
block_timestamp - Int!
chain_id - Int!
entity_id - String!
entity_type - entity_type!
log_index - Int!

Example

Query
subscription entity_history_by_pk(
  $block_number: Int!,
  $block_timestamp: Int!,
  $chain_id: Int!,
  $entity_id: String!,
  $entity_type: entity_type!,
  $log_index: Int!
) {
  entity_history_by_pk(
    block_number: $block_number,
    block_timestamp: $block_timestamp,
    chain_id: $chain_id,
    entity_id: $entity_id,
    entity_type: $entity_type,
    log_index: $log_index
  ) {
    block_number
    block_timestamp
    chain_id
    entity_id
    entity_type
    event {
      ...raw_eventsFragment
    }
    log_index
    params
    previous_block_number
    previous_block_timestamp
    previous_chain_id
    previous_log_index
  }
}
Variables
{
  "block_number": 123,
  "block_timestamp": 123,
  "chain_id": 987,
  "entity_id": "xyz789",
  "entity_type": entity_type,
  "log_index": 123
}
Response
{
  "data": {
    "entity_history_by_pk": {
      "block_number": 987,
      "block_timestamp": 123,
      "chain_id": 987,
      "entity_id": "xyz789",
      "entity_type": entity_type,
      "event": raw_events,
      "log_index": 987,
      "params": json,
      "previous_block_number": 987,
      "previous_block_timestamp": 123,
      "previous_chain_id": 123,
      "previous_log_index": 987
    }
  }
}

entity_history_filter

Description

fetch data from the table: "entity_history_filter"

Response

Returns [entity_history_filter!]!

Arguments
Name Description
distinct_on - [entity_history_filter_select_column!] distinct select on columns
limit - Int limit the number of rows returned
offset - Int skip the first n rows. Use only with order_by
order_by - [entity_history_filter_order_by!] sort the rows by one or more columns
where - entity_history_filter_bool_exp filter the rows returned

Example

Query
subscription entity_history_filter(
  $distinct_on: [entity_history_filter_select_column!],
  $limit: Int,
  $offset: Int,
  $order_by: [entity_history_filter_order_by!],
  $where: entity_history_filter_bool_exp
) {
  entity_history_filter(
    distinct_on: $distinct_on,
    limit: $limit,
    offset: $offset,
    order_by: $order_by,
    where: $where
  ) {
    block_number
    block_timestamp
    chain_id
    entity_id
    entity_type
    event {
      ...raw_eventsFragment
    }
    log_index
    new_val
    old_val
    previous_block_number
    previous_log_index
  }
}
Variables
{
  "distinct_on": ["block_number"],
  "limit": 987,
  "offset": 123,
  "order_by": [entity_history_filter_order_by],
  "where": entity_history_filter_bool_exp
}
Response
{
  "data": {
    "entity_history_filter": [
      {
        "block_number": 123,
        "block_timestamp": 987,
        "chain_id": 987,
        "entity_id": "xyz789",
        "entity_type": entity_type,
        "event": raw_events,
        "log_index": 987,
        "new_val": json,
        "old_val": json,
        "previous_block_number": 987,
        "previous_log_index": 987
      }
    ]
  }
}

entity_history_filter_aggregate

Description

fetch aggregated fields from the table: "entity_history_filter"

Response

Returns an entity_history_filter_aggregate!

Arguments
Name Description
distinct_on - [entity_history_filter_select_column!] distinct select on columns
limit - Int limit the number of rows returned
offset - Int skip the first n rows. Use only with order_by
order_by - [entity_history_filter_order_by!] sort the rows by one or more columns
where - entity_history_filter_bool_exp filter the rows returned

Example

Query
subscription entity_history_filter_aggregate(
  $distinct_on: [entity_history_filter_select_column!],
  $limit: Int,
  $offset: Int,
  $order_by: [entity_history_filter_order_by!],
  $where: entity_history_filter_bool_exp
) {
  entity_history_filter_aggregate(
    distinct_on: $distinct_on,
    limit: $limit,
    offset: $offset,
    order_by: $order_by,
    where: $where
  ) {
    aggregate {
      ...entity_history_filter_aggregate_fieldsFragment
    }
    nodes {
      ...entity_history_filterFragment
    }
  }
}
Variables
{
  "distinct_on": ["block_number"],
  "limit": 987,
  "offset": 123,
  "order_by": [entity_history_filter_order_by],
  "where": entity_history_filter_bool_exp
}
Response
{
  "data": {
    "entity_history_filter_aggregate": {
      "aggregate": entity_history_filter_aggregate_fields,
      "nodes": [entity_history_filter]
    }
  }
}

entity_history_filter_by_pk

Description

fetch data from the table: "entity_history_filter" using primary key columns

Response

Returns an entity_history_filter

Arguments
Name Description
block_number - Int!
chain_id - Int!
entity_id - String!
log_index - Int!
previous_block_number - Int!
previous_log_index - Int!

Example

Query
subscription entity_history_filter_by_pk(
  $block_number: Int!,
  $chain_id: Int!,
  $entity_id: String!,
  $log_index: Int!,
  $previous_block_number: Int!,
  $previous_log_index: Int!
) {
  entity_history_filter_by_pk(
    block_number: $block_number,
    chain_id: $chain_id,
    entity_id: $entity_id,
    log_index: $log_index,
    previous_block_number: $previous_block_number,
    previous_log_index: $previous_log_index
  ) {
    block_number
    block_timestamp
    chain_id
    entity_id
    entity_type
    event {
      ...raw_eventsFragment
    }
    log_index
    new_val
    old_val
    previous_block_number
    previous_log_index
  }
}
Variables
{
  "block_number": 123,
  "chain_id": 123,
  "entity_id": "abc123",
  "log_index": 987,
  "previous_block_number": 123,
  "previous_log_index": 123
}
Response
{
  "data": {
    "entity_history_filter_by_pk": {
      "block_number": 987,
      "block_timestamp": 987,
      "chain_id": 987,
      "entity_id": "xyz789",
      "entity_type": entity_type,
      "event": raw_events,
      "log_index": 123,
      "new_val": json,
      "old_val": json,
      "previous_block_number": 123,
      "previous_log_index": 123
    }
  }
}

entity_history_filter_stream

Description

fetch data from the table in a streaming manner: "entity_history_filter"

Response

Returns [entity_history_filter!]!

Arguments
Name Description
batch_size - Int! maximum number of rows returned in a single batch
cursor - [entity_history_filter_stream_cursor_input]! cursor to stream the results returned by the query
where - entity_history_filter_bool_exp filter the rows returned

Example

Query
subscription entity_history_filter_stream(
  $batch_size: Int!,
  $cursor: [entity_history_filter_stream_cursor_input]!,
  $where: entity_history_filter_bool_exp
) {
  entity_history_filter_stream(
    batch_size: $batch_size,
    cursor: $cursor,
    where: $where
  ) {
    block_number
    block_timestamp
    chain_id
    entity_id
    entity_type
    event {
      ...raw_eventsFragment
    }
    log_index
    new_val
    old_val
    previous_block_number
    previous_log_index
  }
}
Variables
{
  "batch_size": 123,
  "cursor": [entity_history_filter_stream_cursor_input],
  "where": entity_history_filter_bool_exp
}
Response
{
  "data": {
    "entity_history_filter_stream": [
      {
        "block_number": 987,
        "block_timestamp": 987,
        "chain_id": 123,
        "entity_id": "xyz789",
        "entity_type": entity_type,
        "event": raw_events,
        "log_index": 987,
        "new_val": json,
        "old_val": json,
        "previous_block_number": 123,
        "previous_log_index": 987
      }
    ]
  }
}

entity_history_stream

Description

fetch data from the table in a streaming manner: "entity_history"

Response

Returns [entity_history!]!

Arguments
Name Description
batch_size - Int! maximum number of rows returned in a single batch
cursor - [entity_history_stream_cursor_input]! cursor to stream the results returned by the query
where - entity_history_bool_exp filter the rows returned

Example

Query
subscription entity_history_stream(
  $batch_size: Int!,
  $cursor: [entity_history_stream_cursor_input]!,
  $where: entity_history_bool_exp
) {
  entity_history_stream(
    batch_size: $batch_size,
    cursor: $cursor,
    where: $where
  ) {
    block_number
    block_timestamp
    chain_id
    entity_id
    entity_type
    event {
      ...raw_eventsFragment
    }
    log_index
    params
    previous_block_number
    previous_block_timestamp
    previous_chain_id
    previous_log_index
  }
}
Variables
{
  "batch_size": 987,
  "cursor": [entity_history_stream_cursor_input],
  "where": entity_history_bool_exp
}
Response
{
  "data": {
    "entity_history_stream": [
      {
        "block_number": 987,
        "block_timestamp": 987,
        "chain_id": 987,
        "entity_id": "abc123",
        "entity_type": entity_type,
        "event": raw_events,
        "log_index": 123,
        "params": json,
        "previous_block_number": 987,
        "previous_block_timestamp": 123,
        "previous_chain_id": 987,
        "previous_log_index": 987
      }
    ]
  }
}

event_sync_state

Description

fetch data from the table: "event_sync_state"

Response

Returns [event_sync_state!]!

Arguments
Name Description
distinct_on - [event_sync_state_select_column!] distinct select on columns
limit - Int limit the number of rows returned
offset - Int skip the first n rows. Use only with order_by
order_by - [event_sync_state_order_by!] sort the rows by one or more columns
where - event_sync_state_bool_exp filter the rows returned

Example

Query
subscription event_sync_state(
  $distinct_on: [event_sync_state_select_column!],
  $limit: Int,
  $offset: Int,
  $order_by: [event_sync_state_order_by!],
  $where: event_sync_state_bool_exp
) {
  event_sync_state(
    distinct_on: $distinct_on,
    limit: $limit,
    offset: $offset,
    order_by: $order_by,
    where: $where
  ) {
    block_number
    block_timestamp
    chain_id
    log_index
    transaction_index
  }
}
Variables
{
  "distinct_on": ["block_number"],
  "limit": 987,
  "offset": 123,
  "order_by": [event_sync_state_order_by],
  "where": event_sync_state_bool_exp
}
Response
{
  "data": {
    "event_sync_state": [
      {
        "block_number": 123,
        "block_timestamp": 123,
        "chain_id": 123,
        "log_index": 123,
        "transaction_index": 987
      }
    ]
  }
}

event_sync_state_aggregate

Description

fetch aggregated fields from the table: "event_sync_state"

Response

Returns an event_sync_state_aggregate!

Arguments
Name Description
distinct_on - [event_sync_state_select_column!] distinct select on columns
limit - Int limit the number of rows returned
offset - Int skip the first n rows. Use only with order_by
order_by - [event_sync_state_order_by!] sort the rows by one or more columns
where - event_sync_state_bool_exp filter the rows returned

Example

Query
subscription event_sync_state_aggregate(
  $distinct_on: [event_sync_state_select_column!],
  $limit: Int,
  $offset: Int,
  $order_by: [event_sync_state_order_by!],
  $where: event_sync_state_bool_exp
) {
  event_sync_state_aggregate(
    distinct_on: $distinct_on,
    limit: $limit,
    offset: $offset,
    order_by: $order_by,
    where: $where
  ) {
    aggregate {
      ...event_sync_state_aggregate_fieldsFragment
    }
    nodes {
      ...event_sync_stateFragment
    }
  }
}
Variables
{
  "distinct_on": ["block_number"],
  "limit": 123,
  "offset": 123,
  "order_by": [event_sync_state_order_by],
  "where": event_sync_state_bool_exp
}
Response
{
  "data": {
    "event_sync_state_aggregate": {
      "aggregate": event_sync_state_aggregate_fields,
      "nodes": [event_sync_state]
    }
  }
}

event_sync_state_by_pk

Description

fetch data from the table: "event_sync_state" using primary key columns

Response

Returns an event_sync_state

Arguments
Name Description
chain_id - Int!

Example

Query
subscription event_sync_state_by_pk($chain_id: Int!) {
  event_sync_state_by_pk(chain_id: $chain_id) {
    block_number
    block_timestamp
    chain_id
    log_index
    transaction_index
  }
}
Variables
{"chain_id": 987}
Response
{
  "data": {
    "event_sync_state_by_pk": {
      "block_number": 987,
      "block_timestamp": 123,
      "chain_id": 123,
      "log_index": 123,
      "transaction_index": 123
    }
  }
}

event_sync_state_stream

Description

fetch data from the table in a streaming manner: "event_sync_state"

Response

Returns [event_sync_state!]!

Arguments
Name Description
batch_size - Int! maximum number of rows returned in a single batch
cursor - [event_sync_state_stream_cursor_input]! cursor to stream the results returned by the query
where - event_sync_state_bool_exp filter the rows returned

Example

Query
subscription event_sync_state_stream(
  $batch_size: Int!,
  $cursor: [event_sync_state_stream_cursor_input]!,
  $where: event_sync_state_bool_exp
) {
  event_sync_state_stream(
    batch_size: $batch_size,
    cursor: $cursor,
    where: $where
  ) {
    block_number
    block_timestamp
    chain_id
    log_index
    transaction_index
  }
}
Variables
{
  "batch_size": 123,
  "cursor": [event_sync_state_stream_cursor_input],
  "where": event_sync_state_bool_exp
}
Response
{
  "data": {
    "event_sync_state_stream": [
      {
        "block_number": 987,
        "block_timestamp": 987,
        "chain_id": 987,
        "log_index": 123,
        "transaction_index": 987
      }
    ]
  }
}

get_entity_history_filter

Description

This function helps search for articles

Response

Returns [entity_history_filter!]!

Arguments
Name Description
args - get_entity_history_filter_args! input parameters for function "get_entity_history_filter"
distinct_on - [entity_history_filter_select_column!] distinct select on columns
limit - Int limit the number of rows returned
offset - Int skip the first n rows. Use only with order_by
order_by - [entity_history_filter_order_by!] sort the rows by one or more columns
where - entity_history_filter_bool_exp filter the rows returned

Example

Query
subscription get_entity_history_filter(
  $args: get_entity_history_filter_args!,
  $distinct_on: [entity_history_filter_select_column!],
  $limit: Int,
  $offset: Int,
  $order_by: [entity_history_filter_order_by!],
  $where: entity_history_filter_bool_exp
) {
  get_entity_history_filter(
    args: $args,
    distinct_on: $distinct_on,
    limit: $limit,
    offset: $offset,
    order_by: $order_by,
    where: $where
  ) {
    block_number
    block_timestamp
    chain_id
    entity_id
    entity_type
    event {
      ...raw_eventsFragment
    }
    log_index
    new_val
    old_val
    previous_block_number
    previous_log_index
  }
}
Variables
{
  "args": get_entity_history_filter_args,
  "distinct_on": ["block_number"],
  "limit": 123,
  "offset": 123,
  "order_by": [entity_history_filter_order_by],
  "where": entity_history_filter_bool_exp
}
Response
{
  "data": {
    "get_entity_history_filter": [
      {
        "block_number": 987,
        "block_timestamp": 123,
        "chain_id": 987,
        "entity_id": "abc123",
        "entity_type": entity_type,
        "event": raw_events,
        "log_index": 123,
        "new_val": json,
        "old_val": json,
        "previous_block_number": 987,
        "previous_log_index": 987
      }
    ]
  }
}

get_entity_history_filter_aggregate

Description

execute function "get_entity_history_filter" and query aggregates on result of table type "entity_history_filter"

Response

Returns an entity_history_filter_aggregate!

Arguments
Name Description
args - get_entity_history_filter_args! input parameters for function "get_entity_history_filter_aggregate"
distinct_on - [entity_history_filter_select_column!] distinct select on columns
limit - Int limit the number of rows returned
offset - Int skip the first n rows. Use only with order_by
order_by - [entity_history_filter_order_by!] sort the rows by one or more columns
where - entity_history_filter_bool_exp filter the rows returned

Example

Query
subscription get_entity_history_filter_aggregate(
  $args: get_entity_history_filter_args!,
  $distinct_on: [entity_history_filter_select_column!],
  $limit: Int,
  $offset: Int,
  $order_by: [entity_history_filter_order_by!],
  $where: entity_history_filter_bool_exp
) {
  get_entity_history_filter_aggregate(
    args: $args,
    distinct_on: $distinct_on,
    limit: $limit,
    offset: $offset,
    order_by: $order_by,
    where: $where
  ) {
    aggregate {
      ...entity_history_filter_aggregate_fieldsFragment
    }
    nodes {
      ...entity_history_filterFragment
    }
  }
}
Variables
{
  "args": get_entity_history_filter_args,
  "distinct_on": ["block_number"],
  "limit": 123,
  "offset": 123,
  "order_by": [entity_history_filter_order_by],
  "where": entity_history_filter_bool_exp
}
Response
{
  "data": {
    "get_entity_history_filter_aggregate": {
      "aggregate": entity_history_filter_aggregate_fields,
      "nodes": [entity_history_filter]
    }
  }
}

persisted_state

Description

fetch data from the table: "persisted_state"

Response

Returns [persisted_state!]!

Arguments
Name Description
distinct_on - [persisted_state_select_column!] distinct select on columns
limit - Int limit the number of rows returned
offset - Int skip the first n rows. Use only with order_by
order_by - [persisted_state_order_by!] sort the rows by one or more columns
where - persisted_state_bool_exp filter the rows returned

Example

Query
subscription persisted_state(
  $distinct_on: [persisted_state_select_column!],
  $limit: Int,
  $offset: Int,
  $order_by: [persisted_state_order_by!],
  $where: persisted_state_bool_exp
) {
  persisted_state(
    distinct_on: $distinct_on,
    limit: $limit,
    offset: $offset,
    order_by: $order_by,
    where: $where
  ) {
    abi_files_hash
    config_hash
    envio_version
    handler_files_hash
    id
    schema_hash
  }
}
Variables
{
  "distinct_on": ["abi_files_hash"],
  "limit": 123,
  "offset": 987,
  "order_by": [persisted_state_order_by],
  "where": persisted_state_bool_exp
}
Response
{
  "data": {
    "persisted_state": [
      {
        "abi_files_hash": "xyz789",
        "config_hash": "xyz789",
        "envio_version": "xyz789",
        "handler_files_hash": "xyz789",
        "id": 123,
        "schema_hash": "xyz789"
      }
    ]
  }
}

persisted_state_aggregate

Description

fetch aggregated fields from the table: "persisted_state"

Response

Returns a persisted_state_aggregate!

Arguments
Name Description
distinct_on - [persisted_state_select_column!] distinct select on columns
limit - Int limit the number of rows returned
offset - Int skip the first n rows. Use only with order_by
order_by - [persisted_state_order_by!] sort the rows by one or more columns
where - persisted_state_bool_exp filter the rows returned

Example

Query
subscription persisted_state_aggregate(
  $distinct_on: [persisted_state_select_column!],
  $limit: Int,
  $offset: Int,
  $order_by: [persisted_state_order_by!],
  $where: persisted_state_bool_exp
) {
  persisted_state_aggregate(
    distinct_on: $distinct_on,
    limit: $limit,
    offset: $offset,
    order_by: $order_by,
    where: $where
  ) {
    aggregate {
      ...persisted_state_aggregate_fieldsFragment
    }
    nodes {
      ...persisted_stateFragment
    }
  }
}
Variables
{
  "distinct_on": ["abi_files_hash"],
  "limit": 987,
  "offset": 123,
  "order_by": [persisted_state_order_by],
  "where": persisted_state_bool_exp
}
Response
{
  "data": {
    "persisted_state_aggregate": {
      "aggregate": persisted_state_aggregate_fields,
      "nodes": [persisted_state]
    }
  }
}

persisted_state_by_pk

Description

fetch data from the table: "persisted_state" using primary key columns

Response

Returns a persisted_state

Arguments
Name Description
id - Int!

Example

Query
subscription persisted_state_by_pk($id: Int!) {
  persisted_state_by_pk(id: $id) {
    abi_files_hash
    config_hash
    envio_version
    handler_files_hash
    id
    schema_hash
  }
}
Variables
{"id": 123}
Response
{
  "data": {
    "persisted_state_by_pk": {
      "abi_files_hash": "xyz789",
      "config_hash": "xyz789",
      "envio_version": "xyz789",
      "handler_files_hash": "xyz789",
      "id": 987,
      "schema_hash": "xyz789"
    }
  }
}

persisted_state_stream

Description

fetch data from the table in a streaming manner: "persisted_state"

Response

Returns [persisted_state!]!

Arguments
Name Description
batch_size - Int! maximum number of rows returned in a single batch
cursor - [persisted_state_stream_cursor_input]! cursor to stream the results returned by the query
where - persisted_state_bool_exp filter the rows returned

Example

Query
subscription persisted_state_stream(
  $batch_size: Int!,
  $cursor: [persisted_state_stream_cursor_input]!,
  $where: persisted_state_bool_exp
) {
  persisted_state_stream(
    batch_size: $batch_size,
    cursor: $cursor,
    where: $where
  ) {
    abi_files_hash
    config_hash
    envio_version
    handler_files_hash
    id
    schema_hash
  }
}
Variables
{
  "batch_size": 987,
  "cursor": [persisted_state_stream_cursor_input],
  "where": persisted_state_bool_exp
}
Response
{
  "data": {
    "persisted_state_stream": [
      {
        "abi_files_hash": "xyz789",
        "config_hash": "xyz789",
        "envio_version": "abc123",
        "handler_files_hash": "xyz789",
        "id": 123,
        "schema_hash": "xyz789"
      }
    ]
  }
}

raw_events

Description

fetch data from the table: "raw_events"

Response

Returns [raw_events!]!

Arguments
Name Description
distinct_on - [raw_events_select_column!] distinct select on columns
limit - Int limit the number of rows returned
offset - Int skip the first n rows. Use only with order_by
order_by - [raw_events_order_by!] sort the rows by one or more columns
where - raw_events_bool_exp filter the rows returned

Example

Query
subscription raw_events(
  $distinct_on: [raw_events_select_column!],
  $limit: Int,
  $offset: Int,
  $order_by: [raw_events_order_by!],
  $where: raw_events_bool_exp
) {
  raw_events(
    distinct_on: $distinct_on,
    limit: $limit,
    offset: $offset,
    order_by: $order_by,
    where: $where
  ) {
    block_hash
    block_number
    block_timestamp
    chain_id
    db_write_timestamp
    event_history {
      ...entity_historyFragment
    }
    event_history_aggregate {
      ...entity_history_aggregateFragment
    }
    event_id
    event_type
    log_index
    params
    src_address
    transaction_hash
    transaction_index
  }
}
Variables
{
  "distinct_on": ["block_hash"],
  "limit": 123,
  "offset": 123,
  "order_by": [raw_events_order_by],
  "where": raw_events_bool_exp
}
Response
{
  "data": {
    "raw_events": [
      {
        "block_hash": "abc123",
        "block_number": 123,
        "block_timestamp": 987,
        "chain_id": 987,
        "db_write_timestamp": timestamp,
        "event_history": [entity_history],
        "event_history_aggregate": entity_history_aggregate,
        "event_id": numeric,
        "event_type": event_type,
        "log_index": 987,
        "params": json,
        "src_address": "xyz789",
        "transaction_hash": "xyz789",
        "transaction_index": 987
      }
    ]
  }
}

raw_events_aggregate

Description

fetch aggregated fields from the table: "raw_events"

Response

Returns a raw_events_aggregate!

Arguments
Name Description
distinct_on - [raw_events_select_column!] distinct select on columns
limit - Int limit the number of rows returned
offset - Int skip the first n rows. Use only with order_by
order_by - [raw_events_order_by!] sort the rows by one or more columns
where - raw_events_bool_exp filter the rows returned

Example

Query
subscription raw_events_aggregate(
  $distinct_on: [raw_events_select_column!],
  $limit: Int,
  $offset: Int,
  $order_by: [raw_events_order_by!],
  $where: raw_events_bool_exp
) {
  raw_events_aggregate(
    distinct_on: $distinct_on,
    limit: $limit,
    offset: $offset,
    order_by: $order_by,
    where: $where
  ) {
    aggregate {
      ...raw_events_aggregate_fieldsFragment
    }
    nodes {
      ...raw_eventsFragment
    }
  }
}
Variables
{
  "distinct_on": ["block_hash"],
  "limit": 987,
  "offset": 123,
  "order_by": [raw_events_order_by],
  "where": raw_events_bool_exp
}
Response
{
  "data": {
    "raw_events_aggregate": {
      "aggregate": raw_events_aggregate_fields,
      "nodes": [raw_events]
    }
  }
}

raw_events_by_pk

Description

fetch data from the table: "raw_events" using primary key columns

Response

Returns a raw_events

Arguments
Name Description
chain_id - Int!
event_id - numeric!

Example

Query
subscription raw_events_by_pk(
  $chain_id: Int!,
  $event_id: numeric!
) {
  raw_events_by_pk(
    chain_id: $chain_id,
    event_id: $event_id
  ) {
    block_hash
    block_number
    block_timestamp
    chain_id
    db_write_timestamp
    event_history {
      ...entity_historyFragment
    }
    event_history_aggregate {
      ...entity_history_aggregateFragment
    }
    event_id
    event_type
    log_index
    params
    src_address
    transaction_hash
    transaction_index
  }
}
Variables
{"chain_id": 987, "event_id": numeric}
Response
{
  "data": {
    "raw_events_by_pk": {
      "block_hash": "xyz789",
      "block_number": 123,
      "block_timestamp": 987,
      "chain_id": 123,
      "db_write_timestamp": timestamp,
      "event_history": [entity_history],
      "event_history_aggregate": entity_history_aggregate,
      "event_id": numeric,
      "event_type": event_type,
      "log_index": 987,
      "params": json,
      "src_address": "abc123",
      "transaction_hash": "xyz789",
      "transaction_index": 123
    }
  }
}

raw_events_stream

Description

fetch data from the table in a streaming manner: "raw_events"

Response

Returns [raw_events!]!

Arguments
Name Description
batch_size - Int! maximum number of rows returned in a single batch
cursor - [raw_events_stream_cursor_input]! cursor to stream the results returned by the query
where - raw_events_bool_exp filter the rows returned

Example

Query
subscription raw_events_stream(
  $batch_size: Int!,
  $cursor: [raw_events_stream_cursor_input]!,
  $where: raw_events_bool_exp
) {
  raw_events_stream(
    batch_size: $batch_size,
    cursor: $cursor,
    where: $where
  ) {
    block_hash
    block_number
    block_timestamp
    chain_id
    db_write_timestamp
    event_history {
      ...entity_historyFragment
    }
    event_history_aggregate {
      ...entity_history_aggregateFragment
    }
    event_id
    event_type
    log_index
    params
    src_address
    transaction_hash
    transaction_index
  }
}
Variables
{
  "batch_size": 987,
  "cursor": [raw_events_stream_cursor_input],
  "where": raw_events_bool_exp
}
Response
{
  "data": {
    "raw_events_stream": [
      {
        "block_hash": "xyz789",
        "block_number": 123,
        "block_timestamp": 123,
        "chain_id": 123,
        "db_write_timestamp": timestamp,
        "event_history": [entity_history],
        "event_history_aggregate": entity_history_aggregate,
        "event_id": numeric,
        "event_type": event_type,
        "log_index": 987,
        "params": json,
        "src_address": "abc123",
        "transaction_hash": "xyz789",
        "transaction_index": 123
      }
    ]
  }
}

search_all

Description

execute function "search_all" which returns "search_all_result"

Response

Returns [search_all_result!]!

Arguments
Name Description
args - search_all_args! input parameters for function "search_all"
distinct_on - [search_all_result_select_column!] distinct select on columns
limit - Int limit the number of rows returned
offset - Int skip the first n rows. Use only with order_by
order_by - [search_all_result_order_by!] sort the rows by one or more columns
where - search_all_result_bool_exp filter the rows returned

Example

Query
subscription search_all(
  $args: search_all_args!,
  $distinct_on: [search_all_result_select_column!],
  $limit: Int,
  $offset: Int,
  $order_by: [search_all_result_order_by!],
  $where: search_all_result_bool_exp
) {
  search_all(
    args: $args,
    distinct_on: $distinct_on,
    limit: $limit,
    offset: $offset,
    order_by: $order_by,
    where: $where
  ) {
    asset {
      ...AssetFragment
    }
    asset_id
    description
    metadata
    name
    profile {
      ...ProfileFragment
    }
    profile_id
    result_type
    score
    token {
      ...TokenFragment
    }
    token_id
  }
}
Variables
{
  "args": search_all_args,
  "distinct_on": ["asset_id"],
  "limit": 987,
  "offset": 987,
  "order_by": [search_all_result_order_by],
  "where": search_all_result_bool_exp
}
Response
{
  "data": {
    "search_all": [
      {
        "asset": Asset,
        "asset_id": "abc123",
        "description": "xyz789",
        "metadata": jsonb,
        "name": "abc123",
        "profile": Profile,
        "profile_id": "xyz789",
        "result_type": "abc123",
        "score": numeric,
        "token": Token,
        "token_id": "xyz789"
      }
    ]
  }
}

search_all_result

Description

fetch data from the table: "search_all_result"

Response

Returns [search_all_result!]!

Arguments
Name Description
distinct_on - [search_all_result_select_column!] distinct select on columns
limit - Int limit the number of rows returned
offset - Int skip the first n rows. Use only with order_by
order_by - [search_all_result_order_by!] sort the rows by one or more columns
where - search_all_result_bool_exp filter the rows returned

Example

Query
subscription search_all_result(
  $distinct_on: [search_all_result_select_column!],
  $limit: Int,
  $offset: Int,
  $order_by: [search_all_result_order_by!],
  $where: search_all_result_bool_exp
) {
  search_all_result(
    distinct_on: $distinct_on,
    limit: $limit,
    offset: $offset,
    order_by: $order_by,
    where: $where
  ) {
    asset {
      ...AssetFragment
    }
    asset_id
    description
    metadata
    name
    profile {
      ...ProfileFragment
    }
    profile_id
    result_type
    score
    token {
      ...TokenFragment
    }
    token_id
  }
}
Variables
{
  "distinct_on": ["asset_id"],
  "limit": 123,
  "offset": 123,
  "order_by": [search_all_result_order_by],
  "where": search_all_result_bool_exp
}
Response
{
  "data": {
    "search_all_result": [
      {
        "asset": Asset,
        "asset_id": "abc123",
        "description": "abc123",
        "metadata": jsonb,
        "name": "xyz789",
        "profile": Profile,
        "profile_id": "xyz789",
        "result_type": "abc123",
        "score": numeric,
        "token": Token,
        "token_id": "abc123"
      }
    ]
  }
}

search_all_result_stream

Description

fetch data from the table in a streaming manner: "search_all_result"

Response

Returns [search_all_result!]!

Arguments
Name Description
batch_size - Int! maximum number of rows returned in a single batch
cursor - [search_all_result_stream_cursor_input]! cursor to stream the results returned by the query
where - search_all_result_bool_exp filter the rows returned

Example

Query
subscription search_all_result_stream(
  $batch_size: Int!,
  $cursor: [search_all_result_stream_cursor_input]!,
  $where: search_all_result_bool_exp
) {
  search_all_result_stream(
    batch_size: $batch_size,
    cursor: $cursor,
    where: $where
  ) {
    asset {
      ...AssetFragment
    }
    asset_id
    description
    metadata
    name
    profile {
      ...ProfileFragment
    }
    profile_id
    result_type
    score
    token {
      ...TokenFragment
    }
    token_id
  }
}
Variables
{
  "batch_size": 123,
  "cursor": [search_all_result_stream_cursor_input],
  "where": search_all_result_bool_exp
}
Response
{
  "data": {
    "search_all_result_stream": [
      {
        "asset": Asset,
        "asset_id": "abc123",
        "description": "xyz789",
        "metadata": jsonb,
        "name": "abc123",
        "profile": Profile,
        "profile_id": "abc123",
        "result_type": "abc123",
        "score": numeric,
        "token": Token,
        "token_id": "abc123"
      }
    ]
  }
}

search_assets

Description

execute function "search_assets" which returns "search_assets_result"

Response

Returns [search_assets_result!]!

Arguments
Name Description
args - search_assets_args input parameters for function "search_assets"
distinct_on - [search_assets_result_select_column!] distinct select on columns
limit - Int limit the number of rows returned
offset - Int skip the first n rows. Use only with order_by
order_by - [search_assets_result_order_by!] sort the rows by one or more columns
where - search_assets_result_bool_exp filter the rows returned

Example

Query
subscription search_assets(
  $args: search_assets_args,
  $distinct_on: [search_assets_result_select_column!],
  $limit: Int,
  $offset: Int,
  $order_by: [search_assets_result_order_by!],
  $where: search_assets_result_bool_exp
) {
  search_assets(
    args: $args,
    distinct_on: $distinct_on,
    limit: $limit,
    offset: $offset,
    order_by: $order_by,
    where: $where
  ) {
    active_holders_7d
    asset {
      ...AssetFragment
    }
    asset_id
    collectible_score
    concentration_ratio
    description
    holder_count
    hot_score
    is_lsp7
    last_transfer
    name
    symbol
    total_holdings
    total_supply
    transfer_count_3d
    transfer_count_7d
    unique_holders
  }
}
Variables
{
  "args": search_assets_args,
  "distinct_on": ["active_holders_7d"],
  "limit": 987,
  "offset": 987,
  "order_by": [search_assets_result_order_by],
  "where": search_assets_result_bool_exp
}
Response
{
  "data": {
    "search_assets": [
      {
        "active_holders_7d": 123,
        "asset": Asset,
        "asset_id": "xyz789",
        "collectible_score": numeric,
        "concentration_ratio": numeric,
        "description": "xyz789",
        "holder_count": 123,
        "hot_score": numeric,
        "is_lsp7": false,
        "last_transfer": 123,
        "name": "xyz789",
        "symbol": "xyz789",
        "total_holdings": 987,
        "total_supply": numeric,
        "transfer_count_3d": 987,
        "transfer_count_7d": 987,
        "unique_holders": 987
      }
    ]
  }
}

search_assets_result

Description

fetch data from the table: "search_assets_result"

Response

Returns [search_assets_result!]!

Arguments
Name Description
distinct_on - [search_assets_result_select_column!] distinct select on columns
limit - Int limit the number of rows returned
offset - Int skip the first n rows. Use only with order_by
order_by - [search_assets_result_order_by!] sort the rows by one or more columns
where - search_assets_result_bool_exp filter the rows returned

Example

Query
subscription search_assets_result(
  $distinct_on: [search_assets_result_select_column!],
  $limit: Int,
  $offset: Int,
  $order_by: [search_assets_result_order_by!],
  $where: search_assets_result_bool_exp
) {
  search_assets_result(
    distinct_on: $distinct_on,
    limit: $limit,
    offset: $offset,
    order_by: $order_by,
    where: $where
  ) {
    active_holders_7d
    asset {
      ...AssetFragment
    }
    asset_id
    collectible_score
    concentration_ratio
    description
    holder_count
    hot_score
    is_lsp7
    last_transfer
    name
    symbol
    total_holdings
    total_supply
    transfer_count_3d
    transfer_count_7d
    unique_holders
  }
}
Variables
{
  "distinct_on": ["active_holders_7d"],
  "limit": 987,
  "offset": 123,
  "order_by": [search_assets_result_order_by],
  "where": search_assets_result_bool_exp
}
Response
{
  "data": {
    "search_assets_result": [
      {
        "active_holders_7d": 123,
        "asset": Asset,
        "asset_id": "xyz789",
        "collectible_score": numeric,
        "concentration_ratio": numeric,
        "description": "abc123",
        "holder_count": 987,
        "hot_score": numeric,
        "is_lsp7": true,
        "last_transfer": 123,
        "name": "abc123",
        "symbol": "xyz789",
        "total_holdings": 987,
        "total_supply": numeric,
        "transfer_count_3d": 123,
        "transfer_count_7d": 987,
        "unique_holders": 987
      }
    ]
  }
}

search_assets_result_stream

Description

fetch data from the table in a streaming manner: "search_assets_result"

Response

Returns [search_assets_result!]!

Arguments
Name Description
batch_size - Int! maximum number of rows returned in a single batch
cursor - [search_assets_result_stream_cursor_input]! cursor to stream the results returned by the query
where - search_assets_result_bool_exp filter the rows returned

Example

Query
subscription search_assets_result_stream(
  $batch_size: Int!,
  $cursor: [search_assets_result_stream_cursor_input]!,
  $where: search_assets_result_bool_exp
) {
  search_assets_result_stream(
    batch_size: $batch_size,
    cursor: $cursor,
    where: $where
  ) {
    active_holders_7d
    asset {
      ...AssetFragment
    }
    asset_id
    collectible_score
    concentration_ratio
    description
    holder_count
    hot_score
    is_lsp7
    last_transfer
    name
    symbol
    total_holdings
    total_supply
    transfer_count_3d
    transfer_count_7d
    unique_holders
  }
}
Variables
{
  "batch_size": 123,
  "cursor": [search_assets_result_stream_cursor_input],
  "where": search_assets_result_bool_exp
}
Response
{
  "data": {
    "search_assets_result_stream": [
      {
        "active_holders_7d": 987,
        "asset": Asset,
        "asset_id": "abc123",
        "collectible_score": numeric,
        "concentration_ratio": numeric,
        "description": "xyz789",
        "holder_count": 123,
        "hot_score": numeric,
        "is_lsp7": true,
        "last_transfer": 123,
        "name": "xyz789",
        "symbol": "abc123",
        "total_holdings": 987,
        "total_supply": numeric,
        "transfer_count_3d": 123,
        "transfer_count_7d": 123,
        "unique_holders": 123
      }
    ]
  }
}

search_assets_v2

Description

execute function "search_assets_v2" which returns "search_assets_v2_result"

Response

Returns [search_assets_v2_result!]!

Arguments
Name Description
args - search_assets_v2_args input parameters for function "search_assets_v2"
distinct_on - [search_assets_v2_result_select_column!] distinct select on columns
limit - Int limit the number of rows returned
offset - Int skip the first n rows. Use only with order_by
order_by - [search_assets_v2_result_order_by!] sort the rows by one or more columns
where - search_assets_v2_result_bool_exp filter the rows returned

Example

Query
subscription search_assets_v2(
  $args: search_assets_v2_args,
  $distinct_on: [search_assets_v2_result_select_column!],
  $limit: Int,
  $offset: Int,
  $order_by: [search_assets_v2_result_order_by!],
  $where: search_assets_v2_result_bool_exp
) {
  search_assets_v2(
    args: $args,
    distinct_on: $distinct_on,
    limit: $limit,
    offset: $offset,
    order_by: $order_by,
    where: $where
  ) {
    active_holders_7d
    asset {
      ...AssetFragment
    }
    asset_id
    collectible_score
    concentration_ratio
    description
    holder_count
    hot_score
    is_collectible
    is_lsp7
    is_token
    last_transfer
    lsp4TokenType
    name
    symbol
    total_holdings
    total_supply
    transfer_count_3d
    transfer_count_7d
    unique_holders
  }
}
Variables
{
  "args": search_assets_v2_args,
  "distinct_on": ["active_holders_7d"],
  "limit": 123,
  "offset": 987,
  "order_by": [search_assets_v2_result_order_by],
  "where": search_assets_v2_result_bool_exp
}
Response
{
  "data": {
    "search_assets_v2": [
      {
        "active_holders_7d": 123,
        "asset": Asset,
        "asset_id": "xyz789",
        "collectible_score": numeric,
        "concentration_ratio": numeric,
        "description": "abc123",
        "holder_count": 987,
        "hot_score": numeric,
        "is_collectible": true,
        "is_lsp7": false,
        "is_token": false,
        "last_transfer": 987,
        "lsp4TokenType": 123,
        "name": "xyz789",
        "symbol": "xyz789",
        "total_holdings": 123,
        "total_supply": numeric,
        "transfer_count_3d": 987,
        "transfer_count_7d": 987,
        "unique_holders": 987
      }
    ]
  }
}

search_assets_v2_result

Description

fetch data from the table: "search_assets_v2_result"

Response

Returns [search_assets_v2_result!]!

Arguments
Name Description
distinct_on - [search_assets_v2_result_select_column!] distinct select on columns
limit - Int limit the number of rows returned
offset - Int skip the first n rows. Use only with order_by
order_by - [search_assets_v2_result_order_by!] sort the rows by one or more columns
where - search_assets_v2_result_bool_exp filter the rows returned

Example

Query
subscription search_assets_v2_result(
  $distinct_on: [search_assets_v2_result_select_column!],
  $limit: Int,
  $offset: Int,
  $order_by: [search_assets_v2_result_order_by!],
  $where: search_assets_v2_result_bool_exp
) {
  search_assets_v2_result(
    distinct_on: $distinct_on,
    limit: $limit,
    offset: $offset,
    order_by: $order_by,
    where: $where
  ) {
    active_holders_7d
    asset {
      ...AssetFragment
    }
    asset_id
    collectible_score
    concentration_ratio
    description
    holder_count
    hot_score
    is_collectible
    is_lsp7
    is_token
    last_transfer
    lsp4TokenType
    name
    symbol
    total_holdings
    total_supply
    transfer_count_3d
    transfer_count_7d
    unique_holders
  }
}
Variables
{
  "distinct_on": ["active_holders_7d"],
  "limit": 123,
  "offset": 123,
  "order_by": [search_assets_v2_result_order_by],
  "where": search_assets_v2_result_bool_exp
}
Response
{
  "data": {
    "search_assets_v2_result": [
      {
        "active_holders_7d": 987,
        "asset": Asset,
        "asset_id": "abc123",
        "collectible_score": numeric,
        "concentration_ratio": numeric,
        "description": "abc123",
        "holder_count": 123,
        "hot_score": numeric,
        "is_collectible": false,
        "is_lsp7": false,
        "is_token": true,
        "last_transfer": 123,
        "lsp4TokenType": 123,
        "name": "abc123",
        "symbol": "xyz789",
        "total_holdings": 987,
        "total_supply": numeric,
        "transfer_count_3d": 123,
        "transfer_count_7d": 987,
        "unique_holders": 987
      }
    ]
  }
}

search_assets_v2_result_stream

Description

fetch data from the table in a streaming manner: "search_assets_v2_result"

Response

Returns [search_assets_v2_result!]!

Arguments
Name Description
batch_size - Int! maximum number of rows returned in a single batch
cursor - [search_assets_v2_result_stream_cursor_input]! cursor to stream the results returned by the query
where - search_assets_v2_result_bool_exp filter the rows returned

Example

Query
subscription search_assets_v2_result_stream(
  $batch_size: Int!,
  $cursor: [search_assets_v2_result_stream_cursor_input]!,
  $where: search_assets_v2_result_bool_exp
) {
  search_assets_v2_result_stream(
    batch_size: $batch_size,
    cursor: $cursor,
    where: $where
  ) {
    active_holders_7d
    asset {
      ...AssetFragment
    }
    asset_id
    collectible_score
    concentration_ratio
    description
    holder_count
    hot_score
    is_collectible
    is_lsp7
    is_token
    last_transfer
    lsp4TokenType
    name
    symbol
    total_holdings
    total_supply
    transfer_count_3d
    transfer_count_7d
    unique_holders
  }
}
Variables
{
  "batch_size": 987,
  "cursor": [search_assets_v2_result_stream_cursor_input],
  "where": search_assets_v2_result_bool_exp
}
Response
{
  "data": {
    "search_assets_v2_result_stream": [
      {
        "active_holders_7d": 123,
        "asset": Asset,
        "asset_id": "abc123",
        "collectible_score": numeric,
        "concentration_ratio": numeric,
        "description": "xyz789",
        "holder_count": 987,
        "hot_score": numeric,
        "is_collectible": false,
        "is_lsp7": false,
        "is_token": true,
        "last_transfer": 987,
        "lsp4TokenType": 987,
        "name": "xyz789",
        "symbol": "xyz789",
        "total_holdings": 123,
        "total_supply": numeric,
        "transfer_count_3d": 987,
        "transfer_count_7d": 123,
        "unique_holders": 123
      }
    ]
  }
}

search_profiles

Description

execute function "search_profiles" which returns "Profile"

Response

Returns [Profile!]!

Arguments
Name Description
args - search_profiles_args! input parameters for function "search_profiles"
distinct_on - [Profile_select_column!] distinct select on columns
limit - Int limit the number of rows returned
offset - Int skip the first n rows. Use only with order_by
order_by - [Profile_order_by!] sort the rows by one or more columns
where - Profile_bool_exp filter the rows returned

Example

Query
subscription search_profiles(
  $args: search_profiles_args!,
  $distinct_on: [Profile_select_column!],
  $limit: Int,
  $offset: Int,
  $order_by: [Profile_order_by!],
  $where: Profile_bool_exp
) {
  search_profiles(
    args: $args,
    distinct_on: $distinct_on,
    limit: $limit,
    offset: $offset,
    order_by: $order_by,
    where: $where
  ) {
    addressPermissions
    addressPermissions_
    app {
      ...AppFragment
    }
    appContributions {
      ...AppContributorFragment
    }
    appContributions_aggregate {
      ...AppContributor_aggregateFragment
    }
    appHistory {
      ...AppHistoryFragment
    }
    appHistory_aggregate {
      ...AppHistory_aggregateFragment
    }
    appInstalls {
      ...AppInstallFragment
    }
    appInstalls_aggregate {
      ...AppInstall_aggregateFragment
    }
    asset {
      ...AssetFragment
    }
    asset_id
    avatars {
      ...AvatarAssetURLFragment
    }
    avatars_
    avatars_aggregate {
      ...AvatarAssetURL_aggregateFragment
    }
    backgroundImages {
      ...ProfileBackgroundImageURLFragment
    }
    backgroundImages_
    backgroundImages_aggregate {
      ...ProfileBackgroundImageURL_aggregateFragment
    }
    blockNumber
    controllers {
      ...ControllerFragment
    }
    controllers_
    controllers_aggregate {
      ...Controller_aggregateFragment
    }
    createdBlockNumber
    createdTimestamp
    createdTransactionIndex
    data
    db_write_timestamp
    description
    error
    feed {
      ...FeedProfileArgFragment
    }
    feed_aggregate {
      ...FeedProfileArg_aggregateFragment
    }
    followed {
      ...FollowFragment
    }
    followed_aggregate {
      ...Follow_aggregateFragment
    }
    following {
      ...FollowFragment
    }
    following_aggregate {
      ...Follow_aggregateFragment
    }
    ft
    fts
    fullName
    holds {
      ...HoldFragment
    }
    holds_aggregate {
      ...Hold_aggregateFragment
    }
    id
    incoming_transfers {
      ...TransferFragment
    }
    incoming_transfers_aggregate {
      ...Transfer_aggregateFragment
    }
    interactions {
      ...InteractionFragment
    }
    interactions_aggregate {
      ...Interaction_aggregateFragment
    }
    interfaces
    isContract
    isEOA
    keyManagers {
      ...KeyManagerFragment
    }
    keyManagers_aggregate {
      ...KeyManager_aggregateFragment
    }
    lastMetadataUpdate
    lastNameUpdate
    links {
      ...ProfileLinkFragment
    }
    links_
    links_aggregate {
      ...ProfileLink_aggregateFragment
    }
    lsp12IssuedAssets {
      ...IssuedAssetFragment
    }
    lsp12IssuedAssets_
    lsp12IssuedAssets_aggregate {
      ...IssuedAsset_aggregateFragment
    }
    lsp1UniversalReceiverDelegate {
      ...ReceiverDelegateFragment
    }
    lsp1UniversalReceiverDelegate_aggregate {
      ...ReceiverDelegate_aggregateFragment
    }
    lsp23Deployment {
      ...LSP23DeploymentFragment
    }
    lsp5ReceivedAssets {
      ...ReceivedAssetFragment
    }
    lsp5ReceivedAssets_
    lsp5ReceivedAssets_aggregate {
      ...ReceivedAsset_aggregateFragment
    }
    method
    name
    outgoing_transfers {
      ...TransferFragment
    }
    outgoing_transfers_aggregate {
      ...Transfer_aggregateFragment
    }
    owner {
      ...ProfileFragment
    }
    owner_id
    profileImages {
      ...ProfileImageURLFragment
    }
    profileImages_
    profileImages_aggregate {
      ...ProfileImageURL_aggregateFragment
    }
    src
    standard
    supportedStandardsLsp3Profile
    tags
    transactions {
      ...TransactionFragment
    }
    transactions_aggregate {
      ...Transaction_aggregateFragment
    }
    updatedBlockNumber
    updatedTimestamp
    updatedTransactionIndex
    url
  }
}
Variables
{
  "args": search_profiles_args,
  "distinct_on": ["addressPermissions"],
  "limit": 987,
  "offset": 123,
  "order_by": [Profile_order_by],
  "where": Profile_bool_exp
}
Response
{
  "data": {
    "search_profiles": [
      {
        "addressPermissions": ["abc123"],
        "addressPermissions_": ["xyz789"],
        "app": App,
        "appContributions": [AppContributor],
        "appContributions_aggregate": AppContributor_aggregate,
        "appHistory": [AppHistory],
        "appHistory_aggregate": AppHistory_aggregate,
        "appInstalls": [AppInstall],
        "appInstalls_aggregate": AppInstall_aggregate,
        "asset": Asset,
        "asset_id": "abc123",
        "avatars": [AvatarAssetURL],
        "avatars_": ["xyz789"],
        "avatars_aggregate": AvatarAssetURL_aggregate,
        "backgroundImages": [ProfileBackgroundImageURL],
        "backgroundImages_": ["abc123"],
        "backgroundImages_aggregate": ProfileBackgroundImageURL_aggregate,
        "blockNumber": 123,
        "controllers": [Controller],
        "controllers_": ["xyz789"],
        "controllers_aggregate": Controller_aggregate,
        "createdBlockNumber": 123,
        "createdTimestamp": 123,
        "createdTransactionIndex": 123,
        "data": "abc123",
        "db_write_timestamp": timestamp,
        "description": "xyz789",
        "error": "abc123",
        "feed": [FeedProfileArg],
        "feed_aggregate": FeedProfileArg_aggregate,
        "followed": [Follow],
        "followed_aggregate": Follow_aggregate,
        "following": [Follow],
        "following_aggregate": Follow_aggregate,
        "ft": "xyz789",
        "fts": tsvector,
        "fullName": "xyz789",
        "holds": [Hold],
        "holds_aggregate": Hold_aggregate,
        "id": "xyz789",
        "incoming_transfers": [Transfer],
        "incoming_transfers_aggregate": Transfer_aggregate,
        "interactions": [Interaction],
        "interactions_aggregate": Interaction_aggregate,
        "interfaces": ["xyz789"],
        "isContract": true,
        "isEOA": false,
        "keyManagers": [KeyManager],
        "keyManagers_aggregate": KeyManager_aggregate,
        "lastMetadataUpdate": 123,
        "lastNameUpdate": 123,
        "links": [ProfileLink],
        "links_": ["xyz789"],
        "links_aggregate": ProfileLink_aggregate,
        "lsp12IssuedAssets": [IssuedAsset],
        "lsp12IssuedAssets_": ["xyz789"],
        "lsp12IssuedAssets_aggregate": IssuedAsset_aggregate,
        "lsp1UniversalReceiverDelegate": [
          ReceiverDelegate
        ],
        "lsp1UniversalReceiverDelegate_aggregate": ReceiverDelegate_aggregate,
        "lsp23Deployment": LSP23Deployment,
        "lsp5ReceivedAssets": [ReceivedAsset],
        "lsp5ReceivedAssets_": ["abc123"],
        "lsp5ReceivedAssets_aggregate": ReceivedAsset_aggregate,
        "method": "xyz789",
        "name": "abc123",
        "outgoing_transfers": [Transfer],
        "outgoing_transfers_aggregate": Transfer_aggregate,
        "owner": Profile,
        "owner_id": "abc123",
        "profileImages": [ProfileImageURL],
        "profileImages_": ["abc123"],
        "profileImages_aggregate": ProfileImageURL_aggregate,
        "src": "abc123",
        "standard": standards,
        "supportedStandardsLsp3Profile": false,
        "tags": ["abc123"],
        "transactions": [Transaction],
        "transactions_aggregate": Transaction_aggregate,
        "updatedBlockNumber": 123,
        "updatedTimestamp": 987,
        "updatedTransactionIndex": 987,
        "url": "xyz789"
      }
    ]
  }
}

search_profiles_aggregate

Description

execute function "search_profiles" and query aggregates on result of table type "Profile"

Response

Returns a Profile_aggregate!

Arguments
Name Description
args - search_profiles_args! input parameters for function "search_profiles_aggregate"
distinct_on - [Profile_select_column!] distinct select on columns
limit - Int limit the number of rows returned
offset - Int skip the first n rows. Use only with order_by
order_by - [Profile_order_by!] sort the rows by one or more columns
where - Profile_bool_exp filter the rows returned

Example

Query
subscription search_profiles_aggregate(
  $args: search_profiles_args!,
  $distinct_on: [Profile_select_column!],
  $limit: Int,
  $offset: Int,
  $order_by: [Profile_order_by!],
  $where: Profile_bool_exp
) {
  search_profiles_aggregate(
    args: $args,
    distinct_on: $distinct_on,
    limit: $limit,
    offset: $offset,
    order_by: $order_by,
    where: $where
  ) {
    aggregate {
      ...Profile_aggregate_fieldsFragment
    }
    nodes {
      ...ProfileFragment
    }
  }
}
Variables
{
  "args": search_profiles_args,
  "distinct_on": ["addressPermissions"],
  "limit": 987,
  "offset": 123,
  "order_by": [Profile_order_by],
  "where": Profile_bool_exp
}
Response
{
  "data": {
    "search_profiles_aggregate": {
      "aggregate": Profile_aggregate_fields,
      "nodes": [Profile]
    }
  }
}

search_profiles_result

Description

fetch data from the table: "search_profiles_result"

Response

Returns [search_profiles_result!]!

Arguments
Name Description
distinct_on - [search_profiles_result_select_column!] distinct select on columns
limit - Int limit the number of rows returned
offset - Int skip the first n rows. Use only with order_by
order_by - [search_profiles_result_order_by!] sort the rows by one or more columns
where - search_profiles_result_bool_exp filter the rows returned

Example

Query
subscription search_profiles_result(
  $distinct_on: [search_profiles_result_select_column!],
  $limit: Int,
  $offset: Int,
  $order_by: [search_profiles_result_order_by!],
  $where: search_profiles_result_bool_exp
) {
  search_profiles_result(
    distinct_on: $distinct_on,
    limit: $limit,
    offset: $offset,
    order_by: $order_by,
    where: $where
  ) {
    activity_score
    combined_score
    description
    follower_count
    fullName
    id
    last_activity
    lsp7_collectible_count
    lsp7_token_count
    lsp8_nft_count
    name
    popularity_score
    profile {
      ...ProfileFragment
    }
    recently_acquired_count
    tags
    total_asset_value
    total_holds
    tx_count_3d
    tx_count_5d
    unique_assets_held
    unique_collections_held
    unique_tokens_held
  }
}
Variables
{
  "distinct_on": ["activity_score"],
  "limit": 123,
  "offset": 123,
  "order_by": [search_profiles_result_order_by],
  "where": search_profiles_result_bool_exp
}
Response
{
  "data": {
    "search_profiles_result": [
      {
        "activity_score": numeric,
        "combined_score": numeric,
        "description": "abc123",
        "follower_count": 123,
        "fullName": "xyz789",
        "id": "abc123",
        "last_activity": 987,
        "lsp7_collectible_count": 987,
        "lsp7_token_count": 987,
        "lsp8_nft_count": 987,
        "name": "abc123",
        "popularity_score": numeric,
        "profile": Profile,
        "recently_acquired_count": 987,
        "tags": ["xyz789"],
        "total_asset_value": numeric,
        "total_holds": 987,
        "tx_count_3d": 987,
        "tx_count_5d": 123,
        "unique_assets_held": 987,
        "unique_collections_held": 123,
        "unique_tokens_held": 987
      }
    ]
  }
}

search_profiles_result_stream

Description

fetch data from the table in a streaming manner: "search_profiles_result"

Response

Returns [search_profiles_result!]!

Arguments
Name Description
batch_size - Int! maximum number of rows returned in a single batch
cursor - [search_profiles_result_stream_cursor_input]! cursor to stream the results returned by the query
where - search_profiles_result_bool_exp filter the rows returned

Example

Query
subscription search_profiles_result_stream(
  $batch_size: Int!,
  $cursor: [search_profiles_result_stream_cursor_input]!,
  $where: search_profiles_result_bool_exp
) {
  search_profiles_result_stream(
    batch_size: $batch_size,
    cursor: $cursor,
    where: $where
  ) {
    activity_score
    combined_score
    description
    follower_count
    fullName
    id
    last_activity
    lsp7_collectible_count
    lsp7_token_count
    lsp8_nft_count
    name
    popularity_score
    profile {
      ...ProfileFragment
    }
    recently_acquired_count
    tags
    total_asset_value
    total_holds
    tx_count_3d
    tx_count_5d
    unique_assets_held
    unique_collections_held
    unique_tokens_held
  }
}
Variables
{
  "batch_size": 123,
  "cursor": [search_profiles_result_stream_cursor_input],
  "where": search_profiles_result_bool_exp
}
Response
{
  "data": {
    "search_profiles_result_stream": [
      {
        "activity_score": numeric,
        "combined_score": numeric,
        "description": "xyz789",
        "follower_count": 123,
        "fullName": "xyz789",
        "id": "abc123",
        "last_activity": 123,
        "lsp7_collectible_count": 123,
        "lsp7_token_count": 987,
        "lsp8_nft_count": 987,
        "name": "xyz789",
        "popularity_score": numeric,
        "profile": Profile,
        "recently_acquired_count": 987,
        "tags": ["abc123"],
        "total_asset_value": numeric,
        "total_holds": 987,
        "tx_count_3d": 987,
        "tx_count_5d": 123,
        "unique_assets_held": 987,
        "unique_collections_held": 987,
        "unique_tokens_held": 987
      }
    ]
  }
}

search_profiles_v2

Description

execute function "search_profiles_v2" which returns "search_profiles_result"

Response

Returns [search_profiles_result!]!

Arguments
Name Description
args - search_profiles_v2_args input parameters for function "search_profiles_v2"
distinct_on - [search_profiles_result_select_column!] distinct select on columns
limit - Int limit the number of rows returned
offset - Int skip the first n rows. Use only with order_by
order_by - [search_profiles_result_order_by!] sort the rows by one or more columns
where - search_profiles_result_bool_exp filter the rows returned

Example

Query
subscription search_profiles_v2(
  $args: search_profiles_v2_args,
  $distinct_on: [search_profiles_result_select_column!],
  $limit: Int,
  $offset: Int,
  $order_by: [search_profiles_result_order_by!],
  $where: search_profiles_result_bool_exp
) {
  search_profiles_v2(
    args: $args,
    distinct_on: $distinct_on,
    limit: $limit,
    offset: $offset,
    order_by: $order_by,
    where: $where
  ) {
    activity_score
    combined_score
    description
    follower_count
    fullName
    id
    last_activity
    lsp7_collectible_count
    lsp7_token_count
    lsp8_nft_count
    name
    popularity_score
    profile {
      ...ProfileFragment
    }
    recently_acquired_count
    tags
    total_asset_value
    total_holds
    tx_count_3d
    tx_count_5d
    unique_assets_held
    unique_collections_held
    unique_tokens_held
  }
}
Variables
{
  "args": search_profiles_v2_args,
  "distinct_on": ["activity_score"],
  "limit": 123,
  "offset": 987,
  "order_by": [search_profiles_result_order_by],
  "where": search_profiles_result_bool_exp
}
Response
{
  "data": {
    "search_profiles_v2": [
      {
        "activity_score": numeric,
        "combined_score": numeric,
        "description": "abc123",
        "follower_count": 987,
        "fullName": "abc123",
        "id": "abc123",
        "last_activity": 987,
        "lsp7_collectible_count": 987,
        "lsp7_token_count": 123,
        "lsp8_nft_count": 987,
        "name": "xyz789",
        "popularity_score": numeric,
        "profile": Profile,
        "recently_acquired_count": 987,
        "tags": ["xyz789"],
        "total_asset_value": numeric,
        "total_holds": 987,
        "tx_count_3d": 987,
        "tx_count_5d": 987,
        "unique_assets_held": 987,
        "unique_collections_held": 123,
        "unique_tokens_held": 987
      }
    ]
  }
}

search_tokens

Description

execute function "search_tokens" which returns "search_tokens_result"

Response

Returns [search_tokens_result!]!

Arguments
Name Description
args - search_tokens_args input parameters for function "search_tokens"
distinct_on - [search_tokens_result_select_column!] distinct select on columns
limit - Int limit the number of rows returned
offset - Int skip the first n rows. Use only with order_by
order_by - [search_tokens_result_order_by!] sort the rows by one or more columns
where - search_tokens_result_bool_exp filter the rows returned

Example

Query
subscription search_tokens(
  $args: search_tokens_args,
  $distinct_on: [search_tokens_result_select_column!],
  $limit: Int,
  $offset: Int,
  $order_by: [search_tokens_result_order_by!],
  $where: search_tokens_result_bool_exp
) {
  search_tokens(
    args: $args,
    distinct_on: $distinct_on,
    limit: $limit,
    offset: $offset,
    order_by: $order_by,
    where: $where
  ) {
    baseAsset {
      ...AssetFragment
    }
    baseAsset_id
    current_owner {
      ...ProfileFragment
    }
    current_owner_id
    description
    formattedTokenId
    hot_score
    last_transfer
    name
    symbol
    token {
      ...TokenFragment
    }
    tokenId
    token_id
    transfer_count_3d
    transfer_count_7d
  }
}
Variables
{
  "args": search_tokens_args,
  "distinct_on": ["baseAsset_id"],
  "limit": 123,
  "offset": 123,
  "order_by": [search_tokens_result_order_by],
  "where": search_tokens_result_bool_exp
}
Response
{
  "data": {
    "search_tokens": [
      {
        "baseAsset": Asset,
        "baseAsset_id": "xyz789",
        "current_owner": Profile,
        "current_owner_id": "abc123",
        "description": "abc123",
        "formattedTokenId": "abc123",
        "hot_score": numeric,
        "last_transfer": 987,
        "name": "abc123",
        "symbol": "xyz789",
        "token": Token,
        "tokenId": "xyz789",
        "token_id": "abc123",
        "transfer_count_3d": 123,
        "transfer_count_7d": 987
      }
    ]
  }
}

search_tokens_result

Description

fetch data from the table: "search_tokens_result"

Response

Returns [search_tokens_result!]!

Arguments
Name Description
distinct_on - [search_tokens_result_select_column!] distinct select on columns
limit - Int limit the number of rows returned
offset - Int skip the first n rows. Use only with order_by
order_by - [search_tokens_result_order_by!] sort the rows by one or more columns
where - search_tokens_result_bool_exp filter the rows returned

Example

Query
subscription search_tokens_result(
  $distinct_on: [search_tokens_result_select_column!],
  $limit: Int,
  $offset: Int,
  $order_by: [search_tokens_result_order_by!],
  $where: search_tokens_result_bool_exp
) {
  search_tokens_result(
    distinct_on: $distinct_on,
    limit: $limit,
    offset: $offset,
    order_by: $order_by,
    where: $where
  ) {
    baseAsset {
      ...AssetFragment
    }
    baseAsset_id
    current_owner {
      ...ProfileFragment
    }
    current_owner_id
    description
    formattedTokenId
    hot_score
    last_transfer
    name
    symbol
    token {
      ...TokenFragment
    }
    tokenId
    token_id
    transfer_count_3d
    transfer_count_7d
  }
}
Variables
{
  "distinct_on": ["baseAsset_id"],
  "limit": 123,
  "offset": 123,
  "order_by": [search_tokens_result_order_by],
  "where": search_tokens_result_bool_exp
}
Response
{
  "data": {
    "search_tokens_result": [
      {
        "baseAsset": Asset,
        "baseAsset_id": "abc123",
        "current_owner": Profile,
        "current_owner_id": "abc123",
        "description": "abc123",
        "formattedTokenId": "abc123",
        "hot_score": numeric,
        "last_transfer": 123,
        "name": "xyz789",
        "symbol": "abc123",
        "token": Token,
        "tokenId": "abc123",
        "token_id": "xyz789",
        "transfer_count_3d": 987,
        "transfer_count_7d": 987
      }
    ]
  }
}

search_tokens_result_stream

Description

fetch data from the table in a streaming manner: "search_tokens_result"

Response

Returns [search_tokens_result!]!

Arguments
Name Description
batch_size - Int! maximum number of rows returned in a single batch
cursor - [search_tokens_result_stream_cursor_input]! cursor to stream the results returned by the query
where - search_tokens_result_bool_exp filter the rows returned

Example

Query
subscription search_tokens_result_stream(
  $batch_size: Int!,
  $cursor: [search_tokens_result_stream_cursor_input]!,
  $where: search_tokens_result_bool_exp
) {
  search_tokens_result_stream(
    batch_size: $batch_size,
    cursor: $cursor,
    where: $where
  ) {
    baseAsset {
      ...AssetFragment
    }
    baseAsset_id
    current_owner {
      ...ProfileFragment
    }
    current_owner_id
    description
    formattedTokenId
    hot_score
    last_transfer
    name
    symbol
    token {
      ...TokenFragment
    }
    tokenId
    token_id
    transfer_count_3d
    transfer_count_7d
  }
}
Variables
{
  "batch_size": 123,
  "cursor": [search_tokens_result_stream_cursor_input],
  "where": search_tokens_result_bool_exp
}
Response
{
  "data": {
    "search_tokens_result_stream": [
      {
        "baseAsset": Asset,
        "baseAsset_id": "xyz789",
        "current_owner": Profile,
        "current_owner_id": "xyz789",
        "description": "xyz789",
        "formattedTokenId": "xyz789",
        "hot_score": numeric,
        "last_transfer": 987,
        "name": "xyz789",
        "symbol": "abc123",
        "token": Token,
        "tokenId": "abc123",
        "token_id": "abc123",
        "transfer_count_3d": 987,
        "transfer_count_7d": 123
      }
    ]
  }
}

Types

App

Description

A web application domain discovered from TheGrid widget installations. Use AppLeaderboard view for real-time popularity rankings.

Fields
Field Name Description
claimedAtBlock - Int
claimedAtTime - Int
contributors - [AppContributor!]! An array relationship
Arguments
distinct_on - [AppContributor_select_column!]

distinct select on columns

limit - Int

limit the number of rows returned

offset - Int

skip the first n rows. Use only with order_by

order_by - [AppContributor_order_by!]

sort the rows by one or more columns

where - AppContributor_bool_exp

filter the rows returned

contributors_aggregate - AppContributor_aggregate! An aggregate relationship
Arguments
distinct_on - [AppContributor_select_column!]

distinct select on columns

limit - Int

limit the number of rows returned

offset - Int

skip the first n rows. Use only with order_by

order_by - [AppContributor_order_by!]

sort the rows by one or more columns

where - AppContributor_bool_exp

filter the rows returned

events - [AppInstallEvent!]! An array relationship
Arguments
distinct_on - [AppInstallEvent_select_column!]

distinct select on columns

limit - Int

limit the number of rows returned

offset - Int

skip the first n rows. Use only with order_by

order_by - [AppInstallEvent_order_by!]

sort the rows by one or more columns

where - AppInstallEvent_bool_exp

filter the rows returned

events_aggregate - AppInstallEvent_aggregate! An aggregate relationship
Arguments
distinct_on - [AppInstallEvent_select_column!]

distinct select on columns

limit - Int

limit the number of rows returned

offset - Int

skip the first n rows. Use only with order_by

order_by - [AppInstallEvent_order_by!]

sort the rows by one or more columns

where - AppInstallEvent_bool_exp

filter the rows returned

firstSeen - Int! Unix timestamp when domain was first installed
history - [AppHistory!]! An array relationship
Arguments
distinct_on - [AppHistory_select_column!]

distinct select on columns

limit - Int

limit the number of rows returned

offset - Int

skip the first n rows. Use only with order_by

order_by - [AppHistory_order_by!]

sort the rows by one or more columns

where - AppHistory_bool_exp

filter the rows returned

history_aggregate - AppHistory_aggregate! An aggregate relationship
Arguments
distinct_on - [AppHistory_select_column!]

distinct select on columns

limit - Int

limit the number of rows returned

offset - Int

skip the first n rows. Use only with order_by

order_by - [AppHistory_order_by!]

sort the rows by one or more columns

where - AppHistory_bool_exp

filter the rows returned

id - String! Domain name (e.g. jup.ag, universalswaps.io)
installCount - Int! Number of distinct entities with this app currently installed
installs - [AppInstall!]! An array relationship
Arguments
distinct_on - [AppInstall_select_column!]

distinct select on columns

limit - Int

limit the number of rows returned

offset - Int

skip the first n rows. Use only with order_by

order_by - [AppInstall_order_by!]

sort the rows by one or more columns

where - AppInstall_bool_exp

filter the rows returned

installs_aggregate - AppInstall_aggregate! An aggregate relationship
Arguments
distinct_on - [AppInstall_select_column!]

distinct select on columns

limit - Int

limit the number of rows returned

offset - Int

skip the first n rows. Use only with order_by

order_by - [AppInstall_order_by!]

sort the rows by one or more columns

where - AppInstall_bool_exp

filter the rows returned

isVerified - Boolean! True if a SIWE-verified identity binding exists
lastSeen - Int! Unix timestamp of most recent installation
profile - Profile An object relationship
profile_id - String Bound Universal Profile address via LSP28MiniApp (NULL if unverified)
uuid - String bytes16(keccak256(domain)) — deterministic app identifier for LSP28MiniApp:Member mapping keys
verifiableUriHash - String Hash that was matched at verification (audit trail)
verifiableUriUrl - String URL of the well-known file matched at verification (audit trail)
verifiedAtBlock - Int
verifiedAtTime - Int
Example
{
  "claimedAtBlock": 987,
  "claimedAtTime": 123,
  "contributors": [AppContributor],
  "contributors_aggregate": AppContributor_aggregate,
  "events": [AppInstallEvent],
  "events_aggregate": AppInstallEvent_aggregate,
  "firstSeen": 987,
  "history": [AppHistory],
  "history_aggregate": AppHistory_aggregate,
  "id": "xyz789",
  "installCount": 123,
  "installs": [AppInstall],
  "installs_aggregate": AppInstall_aggregate,
  "isVerified": false,
  "lastSeen": 987,
  "profile": Profile,
  "profile_id": "xyz789",
  "uuid": "xyz789",
  "verifiableUriHash": "abc123",
  "verifiableUriUrl": "abc123",
  "verifiedAtBlock": 987,
  "verifiedAtTime": 123
}

AppContributor

Description

Mutual handshake roster for mini-app contributors. isConfirmed is true only when both the team (teamListed) and contributor (memberConsented) have published their respective ERC725Y keys.

Fields
Field Name Description
addedAtBlock - Int!
addedAtTime - Int!
app - App An object relationship
app_id - String
confirmedAtBlock - Int
confirmedAtTime - Int
id - String! {app_id}-{profile_id}, or pending-{teamProfile}-{profile_id} before binding
isConfirmed - Boolean! True iff teamListed AND memberConsented
memberConsented - Boolean! True if the contributor has written LSP28MiniApp:Member:
profile - Profile An object relationship
profile_id - String!
removedAtBlock - Int Set when either side clears their key (NULL if active)
removedAtTime - Int
teamListed - Boolean! True if the app team has written LSP28MiniApp:Contributor:
Example
{
  "addedAtBlock": 987,
  "addedAtTime": 987,
  "app": App,
  "app_id": "abc123",
  "confirmedAtBlock": 987,
  "confirmedAtTime": 987,
  "id": "abc123",
  "isConfirmed": false,
  "memberConsented": true,
  "profile": Profile,
  "profile_id": "abc123",
  "removedAtBlock": 987,
  "removedAtTime": 123,
  "teamListed": true
}

AppContributor_aggregate

Description

aggregated selection of "AppContributor"

Fields
Field Name Description
aggregate - AppContributor_aggregate_fields
nodes - [AppContributor!]!
Example
{
  "aggregate": AppContributor_aggregate_fields,
  "nodes": [AppContributor]
}

AppContributor_aggregate_bool_exp

Example
{
  "bool_and": AppContributor_aggregate_bool_exp_bool_and,
  "bool_or": AppContributor_aggregate_bool_exp_bool_or,
  "count": AppContributor_aggregate_bool_exp_count
}

AppContributor_aggregate_bool_exp_bool_and

Example
{
  "arguments": "isConfirmed",
  "distinct": true,
  "filter": AppContributor_bool_exp,
  "predicate": Boolean_comparison_exp
}

AppContributor_aggregate_bool_exp_bool_or

Example
{
  "arguments": "isConfirmed",
  "distinct": true,
  "filter": AppContributor_bool_exp,
  "predicate": Boolean_comparison_exp
}

AppContributor_aggregate_bool_exp_count

Fields
Input Field Description
arguments - [AppContributor_select_column!]
distinct - Boolean
filter - AppContributor_bool_exp
predicate - Int_comparison_exp!
Example
{
  "arguments": ["addedAtBlock"],
  "distinct": false,
  "filter": AppContributor_bool_exp,
  "predicate": Int_comparison_exp
}

AppContributor_aggregate_fields

Description

aggregate fields of "AppContributor"

Example
{
  "avg": AppContributor_avg_fields,
  "count": 987,
  "max": AppContributor_max_fields,
  "min": AppContributor_min_fields,
  "stddev": AppContributor_stddev_fields,
  "stddev_pop": AppContributor_stddev_pop_fields,
  "stddev_samp": AppContributor_stddev_samp_fields,
  "sum": AppContributor_sum_fields,
  "var_pop": AppContributor_var_pop_fields,
  "var_samp": AppContributor_var_samp_fields,
  "variance": AppContributor_variance_fields
}

AppContributor_aggregate_order_by

Description

order by aggregate values of table "AppContributor"

Example
{
  "avg": AppContributor_avg_order_by,
  "count": "asc",
  "max": AppContributor_max_order_by,
  "min": AppContributor_min_order_by,
  "stddev": AppContributor_stddev_order_by,
  "stddev_pop": AppContributor_stddev_pop_order_by,
  "stddev_samp": AppContributor_stddev_samp_order_by,
  "sum": AppContributor_sum_order_by,
  "var_pop": AppContributor_var_pop_order_by,
  "var_samp": AppContributor_var_samp_order_by,
  "variance": AppContributor_variance_order_by
}

AppContributor_avg_fields

Description

aggregate avg on columns

Fields
Field Name Description
addedAtBlock - Float
addedAtTime - Float
confirmedAtBlock - Float
confirmedAtTime - Float
removedAtBlock - Float Set when either side clears their key (NULL if active)
removedAtTime - Float
Example
{
  "addedAtBlock": 123.45,
  "addedAtTime": 123.45,
  "confirmedAtBlock": 987.65,
  "confirmedAtTime": 123.45,
  "removedAtBlock": 123.45,
  "removedAtTime": 123.45
}

AppContributor_avg_order_by

Description

order by avg() on columns of table "AppContributor"

Fields
Input Field Description
addedAtBlock - order_by
addedAtTime - order_by
confirmedAtBlock - order_by
confirmedAtTime - order_by
removedAtBlock - order_by Set when either side clears their key (NULL if active)
removedAtTime - order_by
Example
{
  "addedAtBlock": "asc",
  "addedAtTime": "asc",
  "confirmedAtBlock": "asc",
  "confirmedAtTime": "asc",
  "removedAtBlock": "asc",
  "removedAtTime": "asc"
}

AppContributor_bool_exp

Description

Boolean expression to filter rows from the table "AppContributor". All fields are combined with a logical 'AND'.

Fields
Input Field Description
_and - [AppContributor_bool_exp!]
_not - AppContributor_bool_exp
_or - [AppContributor_bool_exp!]
addedAtBlock - Int_comparison_exp
addedAtTime - Int_comparison_exp
app - App_bool_exp
app_id - String_comparison_exp
confirmedAtBlock - Int_comparison_exp
confirmedAtTime - Int_comparison_exp
id - String_comparison_exp
isConfirmed - Boolean_comparison_exp
memberConsented - Boolean_comparison_exp
profile - Profile_bool_exp
profile_id - String_comparison_exp
removedAtBlock - Int_comparison_exp
removedAtTime - Int_comparison_exp
teamListed - Boolean_comparison_exp
Example
{
  "_and": [AppContributor_bool_exp],
  "_not": AppContributor_bool_exp,
  "_or": [AppContributor_bool_exp],
  "addedAtBlock": Int_comparison_exp,
  "addedAtTime": Int_comparison_exp,
  "app": App_bool_exp,
  "app_id": String_comparison_exp,
  "confirmedAtBlock": Int_comparison_exp,
  "confirmedAtTime": Int_comparison_exp,
  "id": String_comparison_exp,
  "isConfirmed": Boolean_comparison_exp,
  "memberConsented": Boolean_comparison_exp,
  "profile": Profile_bool_exp,
  "profile_id": String_comparison_exp,
  "removedAtBlock": Int_comparison_exp,
  "removedAtTime": Int_comparison_exp,
  "teamListed": Boolean_comparison_exp
}

AppContributor_max_fields

Description

aggregate max on columns

Fields
Field Name Description
addedAtBlock - Int
addedAtTime - Int
app_id - String
confirmedAtBlock - Int
confirmedAtTime - Int
id - String {app_id}-{profile_id}, or pending-{teamProfile}-{profile_id} before binding
profile_id - String
removedAtBlock - Int Set when either side clears their key (NULL if active)
removedAtTime - Int
Example
{
  "addedAtBlock": 123,
  "addedAtTime": 987,
  "app_id": "xyz789",
  "confirmedAtBlock": 123,
  "confirmedAtTime": 123,
  "id": "abc123",
  "profile_id": "xyz789",
  "removedAtBlock": 987,
  "removedAtTime": 123
}

AppContributor_max_order_by

Description

order by max() on columns of table "AppContributor"

Fields
Input Field Description
addedAtBlock - order_by
addedAtTime - order_by
app_id - order_by
confirmedAtBlock - order_by
confirmedAtTime - order_by
id - order_by {app_id}-{profile_id}, or pending-{teamProfile}-{profile_id} before binding
profile_id - order_by
removedAtBlock - order_by Set when either side clears their key (NULL if active)
removedAtTime - order_by
Example
{
  "addedAtBlock": "asc",
  "addedAtTime": "asc",
  "app_id": "asc",
  "confirmedAtBlock": "asc",
  "confirmedAtTime": "asc",
  "id": "asc",
  "profile_id": "asc",
  "removedAtBlock": "asc",
  "removedAtTime": "asc"
}

AppContributor_min_fields

Description

aggregate min on columns

Fields
Field Name Description
addedAtBlock - Int
addedAtTime - Int
app_id - String
confirmedAtBlock - Int
confirmedAtTime - Int
id - String {app_id}-{profile_id}, or pending-{teamProfile}-{profile_id} before binding
profile_id - String
removedAtBlock - Int Set when either side clears their key (NULL if active)
removedAtTime - Int
Example
{
  "addedAtBlock": 987,
  "addedAtTime": 987,
  "app_id": "abc123",
  "confirmedAtBlock": 987,
  "confirmedAtTime": 123,
  "id": "abc123",
  "profile_id": "xyz789",
  "removedAtBlock": 987,
  "removedAtTime": 123
}

AppContributor_min_order_by

Description

order by min() on columns of table "AppContributor"

Fields
Input Field Description
addedAtBlock - order_by
addedAtTime - order_by
app_id - order_by
confirmedAtBlock - order_by
confirmedAtTime - order_by
id - order_by {app_id}-{profile_id}, or pending-{teamProfile}-{profile_id} before binding
profile_id - order_by
removedAtBlock - order_by Set when either side clears their key (NULL if active)
removedAtTime - order_by
Example
{
  "addedAtBlock": "asc",
  "addedAtTime": "asc",
  "app_id": "asc",
  "confirmedAtBlock": "asc",
  "confirmedAtTime": "asc",
  "id": "asc",
  "profile_id": "asc",
  "removedAtBlock": "asc",
  "removedAtTime": "asc"
}

AppContributor_order_by

Description

Ordering options when selecting data from "AppContributor".

Fields
Input Field Description
addedAtBlock - order_by
addedAtTime - order_by
app - App_order_by
app_id - order_by
confirmedAtBlock - order_by
confirmedAtTime - order_by
id - order_by
isConfirmed - order_by
memberConsented - order_by
profile - Profile_order_by
profile_id - order_by
removedAtBlock - order_by
removedAtTime - order_by
teamListed - order_by
Example
{
  "addedAtBlock": "asc",
  "addedAtTime": "asc",
  "app": App_order_by,
  "app_id": "asc",
  "confirmedAtBlock": "asc",
  "confirmedAtTime": "asc",
  "id": "asc",
  "isConfirmed": "asc",
  "memberConsented": "asc",
  "profile": Profile_order_by,
  "profile_id": "asc",
  "removedAtBlock": "asc",
  "removedAtTime": "asc",
  "teamListed": "asc"
}

AppContributor_select_column

Description

select columns of table "AppContributor"

Values
Enum Value Description

addedAtBlock

column name

addedAtTime

column name

app_id

column name

confirmedAtBlock

column name

confirmedAtTime

column name

id

column name

isConfirmed

column name

memberConsented

column name

profile_id

column name

removedAtBlock

column name

removedAtTime

column name

teamListed

column name
Example
"addedAtBlock"

AppContributor_select_column_AppContributor_aggregate_bool_exp_bool_and_arguments_columns

Description

select "AppContributor_aggregate_bool_exp_bool_and_arguments_columns" columns of table "AppContributor"

Values
Enum Value Description

isConfirmed

column name

memberConsented

column name

teamListed

column name
Example
"isConfirmed"

AppContributor_select_column_AppContributor_aggregate_bool_exp_bool_or_arguments_columns

Description

select "AppContributor_aggregate_bool_exp_bool_or_arguments_columns" columns of table "AppContributor"

Values
Enum Value Description

isConfirmed

column name

memberConsented

column name

teamListed

column name
Example
"isConfirmed"

AppContributor_stddev_fields

Description

aggregate stddev on columns

Fields
Field Name Description
addedAtBlock - Float
addedAtTime - Float
confirmedAtBlock - Float
confirmedAtTime - Float
removedAtBlock - Float Set when either side clears their key (NULL if active)
removedAtTime - Float
Example
{
  "addedAtBlock": 123.45,
  "addedAtTime": 123.45,
  "confirmedAtBlock": 123.45,
  "confirmedAtTime": 987.65,
  "removedAtBlock": 987.65,
  "removedAtTime": 987.65
}

AppContributor_stddev_order_by

Description

order by stddev() on columns of table "AppContributor"

Fields
Input Field Description
addedAtBlock - order_by
addedAtTime - order_by
confirmedAtBlock - order_by
confirmedAtTime - order_by
removedAtBlock - order_by Set when either side clears their key (NULL if active)
removedAtTime - order_by
Example
{
  "addedAtBlock": "asc",
  "addedAtTime": "asc",
  "confirmedAtBlock": "asc",
  "confirmedAtTime": "asc",
  "removedAtBlock": "asc",
  "removedAtTime": "asc"
}

AppContributor_stddev_pop_fields

Description

aggregate stddev_pop on columns

Fields
Field Name Description
addedAtBlock - Float
addedAtTime - Float
confirmedAtBlock - Float
confirmedAtTime - Float
removedAtBlock - Float Set when either side clears their key (NULL if active)
removedAtTime - Float
Example
{
  "addedAtBlock": 987.65,
  "addedAtTime": 123.45,
  "confirmedAtBlock": 987.65,
  "confirmedAtTime": 123.45,
  "removedAtBlock": 123.45,
  "removedAtTime": 123.45
}

AppContributor_stddev_pop_order_by

Description

order by stddev_pop() on columns of table "AppContributor"

Fields
Input Field Description
addedAtBlock - order_by
addedAtTime - order_by
confirmedAtBlock - order_by
confirmedAtTime - order_by
removedAtBlock - order_by Set when either side clears their key (NULL if active)
removedAtTime - order_by
Example
{
  "addedAtBlock": "asc",
  "addedAtTime": "asc",
  "confirmedAtBlock": "asc",
  "confirmedAtTime": "asc",
  "removedAtBlock": "asc",
  "removedAtTime": "asc"
}

AppContributor_stddev_samp_fields

Description

aggregate stddev_samp on columns

Fields
Field Name Description
addedAtBlock - Float
addedAtTime - Float
confirmedAtBlock - Float
confirmedAtTime - Float
removedAtBlock - Float Set when either side clears their key (NULL if active)
removedAtTime - Float
Example
{
  "addedAtBlock": 123.45,
  "addedAtTime": 987.65,
  "confirmedAtBlock": 987.65,
  "confirmedAtTime": 987.65,
  "removedAtBlock": 987.65,
  "removedAtTime": 123.45
}

AppContributor_stddev_samp_order_by

Description

order by stddev_samp() on columns of table "AppContributor"

Fields
Input Field Description
addedAtBlock - order_by
addedAtTime - order_by
confirmedAtBlock - order_by
confirmedAtTime - order_by
removedAtBlock - order_by Set when either side clears their key (NULL if active)
removedAtTime - order_by
Example
{
  "addedAtBlock": "asc",
  "addedAtTime": "asc",
  "confirmedAtBlock": "asc",
  "confirmedAtTime": "asc",
  "removedAtBlock": "asc",
  "removedAtTime": "asc"
}

AppContributor_stream_cursor_input

Description

Streaming cursor of the table "AppContributor"

Fields
Input Field Description
initial_value - AppContributor_stream_cursor_value_input! Stream column input with initial value
ordering - cursor_ordering cursor ordering
Example
{
  "initial_value": AppContributor_stream_cursor_value_input,
  "ordering": "ASC"
}

AppContributor_stream_cursor_value_input

Description

Initial value of the column from where the streaming should start

Fields
Input Field Description
addedAtBlock - Int
addedAtTime - Int
app_id - String
confirmedAtBlock - Int
confirmedAtTime - Int
id - String {app_id}-{profile_id}, or pending-{teamProfile}-{profile_id} before binding
isConfirmed - Boolean True iff teamListed AND memberConsented
memberConsented - Boolean True if the contributor has written LSP28MiniApp:Member:
profile_id - String
removedAtBlock - Int Set when either side clears their key (NULL if active)
removedAtTime - Int
teamListed - Boolean True if the app team has written LSP28MiniApp:Contributor:
Example
{
  "addedAtBlock": 123,
  "addedAtTime": 123,
  "app_id": "abc123",
  "confirmedAtBlock": 123,
  "confirmedAtTime": 123,
  "id": "xyz789",
  "isConfirmed": false,
  "memberConsented": false,
  "profile_id": "abc123",
  "removedAtBlock": 123,
  "removedAtTime": 123,
  "teamListed": false
}

AppContributor_sum_fields

Description

aggregate sum on columns

Fields
Field Name Description
addedAtBlock - Int
addedAtTime - Int
confirmedAtBlock - Int
confirmedAtTime - Int
removedAtBlock - Int Set when either side clears their key (NULL if active)
removedAtTime - Int
Example
{
  "addedAtBlock": 987,
  "addedAtTime": 987,
  "confirmedAtBlock": 123,
  "confirmedAtTime": 123,
  "removedAtBlock": 123,
  "removedAtTime": 123
}

AppContributor_sum_order_by

Description

order by sum() on columns of table "AppContributor"

Fields
Input Field Description
addedAtBlock - order_by
addedAtTime - order_by
confirmedAtBlock - order_by
confirmedAtTime - order_by
removedAtBlock - order_by Set when either side clears their key (NULL if active)
removedAtTime - order_by
Example
{
  "addedAtBlock": "asc",
  "addedAtTime": "asc",
  "confirmedAtBlock": "asc",
  "confirmedAtTime": "asc",
  "removedAtBlock": "asc",
  "removedAtTime": "asc"
}

AppContributor_var_pop_fields

Description

aggregate var_pop on columns

Fields
Field Name Description
addedAtBlock - Float
addedAtTime - Float
confirmedAtBlock - Float
confirmedAtTime - Float
removedAtBlock - Float Set when either side clears their key (NULL if active)
removedAtTime - Float
Example
{
  "addedAtBlock": 123.45,
  "addedAtTime": 987.65,
  "confirmedAtBlock": 123.45,
  "confirmedAtTime": 987.65,
  "removedAtBlock": 987.65,
  "removedAtTime": 123.45
}

AppContributor_var_pop_order_by

Description

order by var_pop() on columns of table "AppContributor"

Fields
Input Field Description
addedAtBlock - order_by
addedAtTime - order_by
confirmedAtBlock - order_by
confirmedAtTime - order_by
removedAtBlock - order_by Set when either side clears their key (NULL if active)
removedAtTime - order_by
Example
{
  "addedAtBlock": "asc",
  "addedAtTime": "asc",
  "confirmedAtBlock": "asc",
  "confirmedAtTime": "asc",
  "removedAtBlock": "asc",
  "removedAtTime": "asc"
}

AppContributor_var_samp_fields

Description

aggregate var_samp on columns

Fields
Field Name Description
addedAtBlock - Float
addedAtTime - Float
confirmedAtBlock - Float
confirmedAtTime - Float
removedAtBlock - Float Set when either side clears their key (NULL if active)
removedAtTime - Float
Example
{
  "addedAtBlock": 987.65,
  "addedAtTime": 987.65,
  "confirmedAtBlock": 123.45,
  "confirmedAtTime": 987.65,
  "removedAtBlock": 987.65,
  "removedAtTime": 123.45
}

AppContributor_var_samp_order_by

Description

order by var_samp() on columns of table "AppContributor"

Fields
Input Field Description
addedAtBlock - order_by
addedAtTime - order_by
confirmedAtBlock - order_by
confirmedAtTime - order_by
removedAtBlock - order_by Set when either side clears their key (NULL if active)
removedAtTime - order_by
Example
{
  "addedAtBlock": "asc",
  "addedAtTime": "asc",
  "confirmedAtBlock": "asc",
  "confirmedAtTime": "asc",
  "removedAtBlock": "asc",
  "removedAtTime": "asc"
}

AppContributor_variance_fields

Description

aggregate variance on columns

Fields
Field Name Description
addedAtBlock - Float
addedAtTime - Float
confirmedAtBlock - Float
confirmedAtTime - Float
removedAtBlock - Float Set when either side clears their key (NULL if active)
removedAtTime - Float
Example
{
  "addedAtBlock": 987.65,
  "addedAtTime": 123.45,
  "confirmedAtBlock": 987.65,
  "confirmedAtTime": 987.65,
  "removedAtBlock": 123.45,
  "removedAtTime": 123.45
}

AppContributor_variance_order_by

Description

order by variance() on columns of table "AppContributor"

Fields
Input Field Description
addedAtBlock - order_by
addedAtTime - order_by
confirmedAtBlock - order_by
confirmedAtTime - order_by
removedAtBlock - order_by Set when either side clears their key (NULL if active)
removedAtTime - order_by
Example
{
  "addedAtBlock": "asc",
  "addedAtTime": "asc",
  "confirmedAtBlock": "asc",
  "confirmedAtTime": "asc",
  "removedAtBlock": "asc",
  "removedAtTime": "asc"
}

AppHistory

Description

Per-(entity, app) lifetime accumulator. One row per pair, ever. Updated only on pair-level install/uninstall transitions (adding a second widget for the same app is a no-op).

Fields
Field Name Description
app - App An object relationship
app_id - String!
asset - Asset An object relationship
asset_id - String
firstInstalledAtBlock - Int! Block of first-ever install, never changes
firstInstalledAtTime - Int!
id - String! {entity}-{app_id}
installCount - Int! Number of install transitions (re-engagement signal)
isCurrentlyInstalled - Boolean! True if the pair is currently in the active state
lastInstallAtBlock - Int! Block of most recent install transition
lastInstallAtTime - Int!
lastUninstallAtBlock - Int Block of most recent uninstall (NULL if currently installed)
lastUninstallAtTime - Int
profile - Profile An object relationship
profile_id - String
token - Token An object relationship
token_id - String
totalInstalledBlocks - bigint! Sum of closed install intervals only (excludes ongoing — use AppLeaderboard.totalEngagementBlocks for live totals)
Example
{
  "app": App,
  "app_id": "xyz789",
  "asset": Asset,
  "asset_id": "abc123",
  "firstInstalledAtBlock": 987,
  "firstInstalledAtTime": 987,
  "id": "xyz789",
  "installCount": 123,
  "isCurrentlyInstalled": true,
  "lastInstallAtBlock": 987,
  "lastInstallAtTime": 987,
  "lastUninstallAtBlock": 123,
  "lastUninstallAtTime": 987,
  "profile": Profile,
  "profile_id": "xyz789",
  "token": Token,
  "token_id": "xyz789",
  "totalInstalledBlocks": bigint
}

AppHistory_aggregate

Description

aggregated selection of "AppHistory"

Fields
Field Name Description
aggregate - AppHistory_aggregate_fields
nodes - [AppHistory!]!
Example
{
  "aggregate": AppHistory_aggregate_fields,
  "nodes": [AppHistory]
}

AppHistory_aggregate_bool_exp

Example
{
  "bool_and": AppHistory_aggregate_bool_exp_bool_and,
  "bool_or": AppHistory_aggregate_bool_exp_bool_or,
  "count": AppHistory_aggregate_bool_exp_count
}

AppHistory_aggregate_bool_exp_bool_and

Example
{
  "arguments": "isCurrentlyInstalled",
  "distinct": false,
  "filter": AppHistory_bool_exp,
  "predicate": Boolean_comparison_exp
}

AppHistory_aggregate_bool_exp_bool_or

Example
{
  "arguments": "isCurrentlyInstalled",
  "distinct": true,
  "filter": AppHistory_bool_exp,
  "predicate": Boolean_comparison_exp
}

AppHistory_aggregate_bool_exp_count

Fields
Input Field Description
arguments - [AppHistory_select_column!]
distinct - Boolean
filter - AppHistory_bool_exp
predicate - Int_comparison_exp!
Example
{
  "arguments": ["app_id"],
  "distinct": true,
  "filter": AppHistory_bool_exp,
  "predicate": Int_comparison_exp
}

AppHistory_aggregate_fields

Description

aggregate fields of "AppHistory"

Example
{
  "avg": AppHistory_avg_fields,
  "count": 987,
  "max": AppHistory_max_fields,
  "min": AppHistory_min_fields,
  "stddev": AppHistory_stddev_fields,
  "stddev_pop": AppHistory_stddev_pop_fields,
  "stddev_samp": AppHistory_stddev_samp_fields,
  "sum": AppHistory_sum_fields,
  "var_pop": AppHistory_var_pop_fields,
  "var_samp": AppHistory_var_samp_fields,
  "variance": AppHistory_variance_fields
}

AppHistory_aggregate_order_by

Description

order by aggregate values of table "AppHistory"

Example
{
  "avg": AppHistory_avg_order_by,
  "count": "asc",
  "max": AppHistory_max_order_by,
  "min": AppHistory_min_order_by,
  "stddev": AppHistory_stddev_order_by,
  "stddev_pop": AppHistory_stddev_pop_order_by,
  "stddev_samp": AppHistory_stddev_samp_order_by,
  "sum": AppHistory_sum_order_by,
  "var_pop": AppHistory_var_pop_order_by,
  "var_samp": AppHistory_var_samp_order_by,
  "variance": AppHistory_variance_order_by
}

AppHistory_avg_fields

Description

aggregate avg on columns

Fields
Field Name Description
firstInstalledAtBlock - Float Block of first-ever install, never changes
firstInstalledAtTime - Float
installCount - Float Number of install transitions (re-engagement signal)
lastInstallAtBlock - Float Block of most recent install transition
lastInstallAtTime - Float
lastUninstallAtBlock - Float Block of most recent uninstall (NULL if currently installed)
lastUninstallAtTime - Float
totalInstalledBlocks - Float Sum of closed install intervals only (excludes ongoing — use AppLeaderboard.totalEngagementBlocks for live totals)
Example
{
  "firstInstalledAtBlock": 123.45,
  "firstInstalledAtTime": 123.45,
  "installCount": 987.65,
  "lastInstallAtBlock": 987.65,
  "lastInstallAtTime": 123.45,
  "lastUninstallAtBlock": 987.65,
  "lastUninstallAtTime": 987.65,
  "totalInstalledBlocks": 987.65
}

AppHistory_avg_order_by

Description

order by avg() on columns of table "AppHistory"

Fields
Input Field Description
firstInstalledAtBlock - order_by Block of first-ever install, never changes
firstInstalledAtTime - order_by
installCount - order_by Number of install transitions (re-engagement signal)
lastInstallAtBlock - order_by Block of most recent install transition
lastInstallAtTime - order_by
lastUninstallAtBlock - order_by Block of most recent uninstall (NULL if currently installed)
lastUninstallAtTime - order_by
totalInstalledBlocks - order_by Sum of closed install intervals only (excludes ongoing — use AppLeaderboard.totalEngagementBlocks for live totals)
Example
{
  "firstInstalledAtBlock": "asc",
  "firstInstalledAtTime": "asc",
  "installCount": "asc",
  "lastInstallAtBlock": "asc",
  "lastInstallAtTime": "asc",
  "lastUninstallAtBlock": "asc",
  "lastUninstallAtTime": "asc",
  "totalInstalledBlocks": "asc"
}

AppHistory_bool_exp

Description

Boolean expression to filter rows from the table "AppHistory". All fields are combined with a logical 'AND'.

Fields
Input Field Description
_and - [AppHistory_bool_exp!]
_not - AppHistory_bool_exp
_or - [AppHistory_bool_exp!]
app - App_bool_exp
app_id - String_comparison_exp
asset - Asset_bool_exp
asset_id - String_comparison_exp
firstInstalledAtBlock - Int_comparison_exp
firstInstalledAtTime - Int_comparison_exp
id - String_comparison_exp
installCount - Int_comparison_exp
isCurrentlyInstalled - Boolean_comparison_exp
lastInstallAtBlock - Int_comparison_exp
lastInstallAtTime - Int_comparison_exp
lastUninstallAtBlock - Int_comparison_exp
lastUninstallAtTime - Int_comparison_exp
profile - Profile_bool_exp
profile_id - String_comparison_exp
token - Token_bool_exp
token_id - String_comparison_exp
totalInstalledBlocks - bigint_comparison_exp
Example
{
  "_and": [AppHistory_bool_exp],
  "_not": AppHistory_bool_exp,
  "_or": [AppHistory_bool_exp],
  "app": App_bool_exp,
  "app_id": String_comparison_exp,
  "asset": Asset_bool_exp,
  "asset_id": String_comparison_exp,
  "firstInstalledAtBlock": Int_comparison_exp,
  "firstInstalledAtTime": Int_comparison_exp,
  "id": String_comparison_exp,
  "installCount": Int_comparison_exp,
  "isCurrentlyInstalled": Boolean_comparison_exp,
  "lastInstallAtBlock": Int_comparison_exp,
  "lastInstallAtTime": Int_comparison_exp,
  "lastUninstallAtBlock": Int_comparison_exp,
  "lastUninstallAtTime": Int_comparison_exp,
  "profile": Profile_bool_exp,
  "profile_id": String_comparison_exp,
  "token": Token_bool_exp,
  "token_id": String_comparison_exp,
  "totalInstalledBlocks": bigint_comparison_exp
}

AppHistory_max_fields

Description

aggregate max on columns

Fields
Field Name Description
app_id - String
asset_id - String
firstInstalledAtBlock - Int Block of first-ever install, never changes
firstInstalledAtTime - Int
id - String {entity}-{app_id}
installCount - Int Number of install transitions (re-engagement signal)
lastInstallAtBlock - Int Block of most recent install transition
lastInstallAtTime - Int
lastUninstallAtBlock - Int Block of most recent uninstall (NULL if currently installed)
lastUninstallAtTime - Int
profile_id - String
token_id - String
totalInstalledBlocks - bigint Sum of closed install intervals only (excludes ongoing — use AppLeaderboard.totalEngagementBlocks for live totals)
Example
{
  "app_id": "xyz789",
  "asset_id": "abc123",
  "firstInstalledAtBlock": 123,
  "firstInstalledAtTime": 123,
  "id": "xyz789",
  "installCount": 987,
  "lastInstallAtBlock": 123,
  "lastInstallAtTime": 123,
  "lastUninstallAtBlock": 123,
  "lastUninstallAtTime": 987,
  "profile_id": "abc123",
  "token_id": "abc123",
  "totalInstalledBlocks": bigint
}

AppHistory_max_order_by

Description

order by max() on columns of table "AppHistory"

Fields
Input Field Description
app_id - order_by
asset_id - order_by
firstInstalledAtBlock - order_by Block of first-ever install, never changes
firstInstalledAtTime - order_by
id - order_by {entity}-{app_id}
installCount - order_by Number of install transitions (re-engagement signal)
lastInstallAtBlock - order_by Block of most recent install transition
lastInstallAtTime - order_by
lastUninstallAtBlock - order_by Block of most recent uninstall (NULL if currently installed)
lastUninstallAtTime - order_by
profile_id - order_by
token_id - order_by
totalInstalledBlocks - order_by Sum of closed install intervals only (excludes ongoing — use AppLeaderboard.totalEngagementBlocks for live totals)
Example
{
  "app_id": "asc",
  "asset_id": "asc",
  "firstInstalledAtBlock": "asc",
  "firstInstalledAtTime": "asc",
  "id": "asc",
  "installCount": "asc",
  "lastInstallAtBlock": "asc",
  "lastInstallAtTime": "asc",
  "lastUninstallAtBlock": "asc",
  "lastUninstallAtTime": "asc",
  "profile_id": "asc",
  "token_id": "asc",
  "totalInstalledBlocks": "asc"
}

AppHistory_min_fields

Description

aggregate min on columns

Fields
Field Name Description
app_id - String
asset_id - String
firstInstalledAtBlock - Int Block of first-ever install, never changes
firstInstalledAtTime - Int
id - String {entity}-{app_id}
installCount - Int Number of install transitions (re-engagement signal)
lastInstallAtBlock - Int Block of most recent install transition
lastInstallAtTime - Int
lastUninstallAtBlock - Int Block of most recent uninstall (NULL if currently installed)
lastUninstallAtTime - Int
profile_id - String
token_id - String
totalInstalledBlocks - bigint Sum of closed install intervals only (excludes ongoing — use AppLeaderboard.totalEngagementBlocks for live totals)
Example
{
  "app_id": "abc123",
  "asset_id": "abc123",
  "firstInstalledAtBlock": 123,
  "firstInstalledAtTime": 987,
  "id": "abc123",
  "installCount": 987,
  "lastInstallAtBlock": 123,
  "lastInstallAtTime": 987,
  "lastUninstallAtBlock": 987,
  "lastUninstallAtTime": 123,
  "profile_id": "xyz789",
  "token_id": "abc123",
  "totalInstalledBlocks": bigint
}

AppHistory_min_order_by

Description

order by min() on columns of table "AppHistory"

Fields
Input Field Description
app_id - order_by
asset_id - order_by
firstInstalledAtBlock - order_by Block of first-ever install, never changes
firstInstalledAtTime - order_by
id - order_by {entity}-{app_id}
installCount - order_by Number of install transitions (re-engagement signal)
lastInstallAtBlock - order_by Block of most recent install transition
lastInstallAtTime - order_by
lastUninstallAtBlock - order_by Block of most recent uninstall (NULL if currently installed)
lastUninstallAtTime - order_by
profile_id - order_by
token_id - order_by
totalInstalledBlocks - order_by Sum of closed install intervals only (excludes ongoing — use AppLeaderboard.totalEngagementBlocks for live totals)
Example
{
  "app_id": "asc",
  "asset_id": "asc",
  "firstInstalledAtBlock": "asc",
  "firstInstalledAtTime": "asc",
  "id": "asc",
  "installCount": "asc",
  "lastInstallAtBlock": "asc",
  "lastInstallAtTime": "asc",
  "lastUninstallAtBlock": "asc",
  "lastUninstallAtTime": "asc",
  "profile_id": "asc",
  "token_id": "asc",
  "totalInstalledBlocks": "asc"
}

AppHistory_order_by

Description

Ordering options when selecting data from "AppHistory".

Fields
Input Field Description
app - App_order_by
app_id - order_by
asset - Asset_order_by
asset_id - order_by
firstInstalledAtBlock - order_by
firstInstalledAtTime - order_by
id - order_by
installCount - order_by
isCurrentlyInstalled - order_by
lastInstallAtBlock - order_by
lastInstallAtTime - order_by
lastUninstallAtBlock - order_by
lastUninstallAtTime - order_by
profile - Profile_order_by
profile_id - order_by
token - Token_order_by
token_id - order_by
totalInstalledBlocks - order_by
Example
{
  "app": App_order_by,
  "app_id": "asc",
  "asset": Asset_order_by,
  "asset_id": "asc",
  "firstInstalledAtBlock": "asc",
  "firstInstalledAtTime": "asc",
  "id": "asc",
  "installCount": "asc",
  "isCurrentlyInstalled": "asc",
  "lastInstallAtBlock": "asc",
  "lastInstallAtTime": "asc",
  "lastUninstallAtBlock": "asc",
  "lastUninstallAtTime": "asc",
  "profile": Profile_order_by,
  "profile_id": "asc",
  "token": Token_order_by,
  "token_id": "asc",
  "totalInstalledBlocks": "asc"
}

AppHistory_select_column

Description

select columns of table "AppHistory"

Values
Enum Value Description

app_id

column name

asset_id

column name

firstInstalledAtBlock

column name

firstInstalledAtTime

column name

id

column name

installCount

column name

isCurrentlyInstalled

column name

lastInstallAtBlock

column name

lastInstallAtTime

column name

lastUninstallAtBlock

column name

lastUninstallAtTime

column name

profile_id

column name

token_id

column name

totalInstalledBlocks

column name
Example
"app_id"

AppHistory_select_column_AppHistory_aggregate_bool_exp_bool_and_arguments_columns

Description

select "AppHistory_aggregate_bool_exp_bool_and_arguments_columns" columns of table "AppHistory"

Values
Enum Value Description

isCurrentlyInstalled

column name
Example
"isCurrentlyInstalled"

AppHistory_select_column_AppHistory_aggregate_bool_exp_bool_or_arguments_columns

Description

select "AppHistory_aggregate_bool_exp_bool_or_arguments_columns" columns of table "AppHistory"

Values
Enum Value Description

isCurrentlyInstalled

column name
Example
"isCurrentlyInstalled"

AppHistory_stddev_fields

Description

aggregate stddev on columns

Fields
Field Name Description
firstInstalledAtBlock - Float Block of first-ever install, never changes
firstInstalledAtTime - Float
installCount - Float Number of install transitions (re-engagement signal)
lastInstallAtBlock - Float Block of most recent install transition
lastInstallAtTime - Float
lastUninstallAtBlock - Float Block of most recent uninstall (NULL if currently installed)
lastUninstallAtTime - Float
totalInstalledBlocks - Float Sum of closed install intervals only (excludes ongoing — use AppLeaderboard.totalEngagementBlocks for live totals)
Example
{
  "firstInstalledAtBlock": 987.65,
  "firstInstalledAtTime": 123.45,
  "installCount": 123.45,
  "lastInstallAtBlock": 123.45,
  "lastInstallAtTime": 123.45,
  "lastUninstallAtBlock": 987.65,
  "lastUninstallAtTime": 123.45,
  "totalInstalledBlocks": 987.65
}

AppHistory_stddev_order_by

Description

order by stddev() on columns of table "AppHistory"

Fields
Input Field Description
firstInstalledAtBlock - order_by Block of first-ever install, never changes
firstInstalledAtTime - order_by
installCount - order_by Number of install transitions (re-engagement signal)
lastInstallAtBlock - order_by Block of most recent install transition
lastInstallAtTime - order_by
lastUninstallAtBlock - order_by Block of most recent uninstall (NULL if currently installed)
lastUninstallAtTime - order_by
totalInstalledBlocks - order_by Sum of closed install intervals only (excludes ongoing — use AppLeaderboard.totalEngagementBlocks for live totals)
Example
{
  "firstInstalledAtBlock": "asc",
  "firstInstalledAtTime": "asc",
  "installCount": "asc",
  "lastInstallAtBlock": "asc",
  "lastInstallAtTime": "asc",
  "lastUninstallAtBlock": "asc",
  "lastUninstallAtTime": "asc",
  "totalInstalledBlocks": "asc"
}

AppHistory_stddev_pop_fields

Description

aggregate stddev_pop on columns

Fields
Field Name Description
firstInstalledAtBlock - Float Block of first-ever install, never changes
firstInstalledAtTime - Float
installCount - Float Number of install transitions (re-engagement signal)
lastInstallAtBlock - Float Block of most recent install transition
lastInstallAtTime - Float
lastUninstallAtBlock - Float Block of most recent uninstall (NULL if currently installed)
lastUninstallAtTime - Float
totalInstalledBlocks - Float Sum of closed install intervals only (excludes ongoing — use AppLeaderboard.totalEngagementBlocks for live totals)
Example
{
  "firstInstalledAtBlock": 987.65,
  "firstInstalledAtTime": 987.65,
  "installCount": 987.65,
  "lastInstallAtBlock": 987.65,
  "lastInstallAtTime": 123.45,
  "lastUninstallAtBlock": 123.45,
  "lastUninstallAtTime": 987.65,
  "totalInstalledBlocks": 987.65
}

AppHistory_stddev_pop_order_by

Description

order by stddev_pop() on columns of table "AppHistory"

Fields
Input Field Description
firstInstalledAtBlock - order_by Block of first-ever install, never changes
firstInstalledAtTime - order_by
installCount - order_by Number of install transitions (re-engagement signal)
lastInstallAtBlock - order_by Block of most recent install transition
lastInstallAtTime - order_by
lastUninstallAtBlock - order_by Block of most recent uninstall (NULL if currently installed)
lastUninstallAtTime - order_by
totalInstalledBlocks - order_by Sum of closed install intervals only (excludes ongoing — use AppLeaderboard.totalEngagementBlocks for live totals)
Example
{
  "firstInstalledAtBlock": "asc",
  "firstInstalledAtTime": "asc",
  "installCount": "asc",
  "lastInstallAtBlock": "asc",
  "lastInstallAtTime": "asc",
  "lastUninstallAtBlock": "asc",
  "lastUninstallAtTime": "asc",
  "totalInstalledBlocks": "asc"
}

AppHistory_stddev_samp_fields

Description

aggregate stddev_samp on columns

Fields
Field Name Description
firstInstalledAtBlock - Float Block of first-ever install, never changes
firstInstalledAtTime - Float
installCount - Float Number of install transitions (re-engagement signal)
lastInstallAtBlock - Float Block of most recent install transition
lastInstallAtTime - Float
lastUninstallAtBlock - Float Block of most recent uninstall (NULL if currently installed)
lastUninstallAtTime - Float
totalInstalledBlocks - Float Sum of closed install intervals only (excludes ongoing — use AppLeaderboard.totalEngagementBlocks for live totals)
Example
{
  "firstInstalledAtBlock": 123.45,
  "firstInstalledAtTime": 123.45,
  "installCount": 123.45,
  "lastInstallAtBlock": 987.65,
  "lastInstallAtTime": 123.45,
  "lastUninstallAtBlock": 987.65,
  "lastUninstallAtTime": 123.45,
  "totalInstalledBlocks": 987.65
}

AppHistory_stddev_samp_order_by

Description

order by stddev_samp() on columns of table "AppHistory"

Fields
Input Field Description
firstInstalledAtBlock - order_by Block of first-ever install, never changes
firstInstalledAtTime - order_by
installCount - order_by Number of install transitions (re-engagement signal)
lastInstallAtBlock - order_by Block of most recent install transition
lastInstallAtTime - order_by
lastUninstallAtBlock - order_by Block of most recent uninstall (NULL if currently installed)
lastUninstallAtTime - order_by
totalInstalledBlocks - order_by Sum of closed install intervals only (excludes ongoing — use AppLeaderboard.totalEngagementBlocks for live totals)
Example
{
  "firstInstalledAtBlock": "asc",
  "firstInstalledAtTime": "asc",
  "installCount": "asc",
  "lastInstallAtBlock": "asc",
  "lastInstallAtTime": "asc",
  "lastUninstallAtBlock": "asc",
  "lastUninstallAtTime": "asc",
  "totalInstalledBlocks": "asc"
}

AppHistory_stream_cursor_input

Description

Streaming cursor of the table "AppHistory"

Fields
Input Field Description
initial_value - AppHistory_stream_cursor_value_input! Stream column input with initial value
ordering - cursor_ordering cursor ordering
Example
{
  "initial_value": AppHistory_stream_cursor_value_input,
  "ordering": "ASC"
}

AppHistory_stream_cursor_value_input

Description

Initial value of the column from where the streaming should start

Fields
Input Field Description
app_id - String
asset_id - String
firstInstalledAtBlock - Int Block of first-ever install, never changes
firstInstalledAtTime - Int
id - String {entity}-{app_id}
installCount - Int Number of install transitions (re-engagement signal)
isCurrentlyInstalled - Boolean True if the pair is currently in the active state
lastInstallAtBlock - Int Block of most recent install transition
lastInstallAtTime - Int
lastUninstallAtBlock - Int Block of most recent uninstall (NULL if currently installed)
lastUninstallAtTime - Int
profile_id - String
token_id - String
totalInstalledBlocks - bigint Sum of closed install intervals only (excludes ongoing — use AppLeaderboard.totalEngagementBlocks for live totals)
Example
{
  "app_id": "abc123",
  "asset_id": "abc123",
  "firstInstalledAtBlock": 123,
  "firstInstalledAtTime": 123,
  "id": "abc123",
  "installCount": 123,
  "isCurrentlyInstalled": true,
  "lastInstallAtBlock": 123,
  "lastInstallAtTime": 987,
  "lastUninstallAtBlock": 987,
  "lastUninstallAtTime": 123,
  "profile_id": "xyz789",
  "token_id": "xyz789",
  "totalInstalledBlocks": bigint
}

AppHistory_sum_fields

Description

aggregate sum on columns

Fields
Field Name Description
firstInstalledAtBlock - Int Block of first-ever install, never changes
firstInstalledAtTime - Int
installCount - Int Number of install transitions (re-engagement signal)
lastInstallAtBlock - Int Block of most recent install transition
lastInstallAtTime - Int
lastUninstallAtBlock - Int Block of most recent uninstall (NULL if currently installed)
lastUninstallAtTime - Int
totalInstalledBlocks - bigint Sum of closed install intervals only (excludes ongoing — use AppLeaderboard.totalEngagementBlocks for live totals)
Example
{
  "firstInstalledAtBlock": 123,
  "firstInstalledAtTime": 123,
  "installCount": 123,
  "lastInstallAtBlock": 987,
  "lastInstallAtTime": 123,
  "lastUninstallAtBlock": 123,
  "lastUninstallAtTime": 123,
  "totalInstalledBlocks": bigint
}

AppHistory_sum_order_by

Description

order by sum() on columns of table "AppHistory"

Fields
Input Field Description
firstInstalledAtBlock - order_by Block of first-ever install, never changes
firstInstalledAtTime - order_by
installCount - order_by Number of install transitions (re-engagement signal)
lastInstallAtBlock - order_by Block of most recent install transition
lastInstallAtTime - order_by
lastUninstallAtBlock - order_by Block of most recent uninstall (NULL if currently installed)
lastUninstallAtTime - order_by
totalInstalledBlocks - order_by Sum of closed install intervals only (excludes ongoing — use AppLeaderboard.totalEngagementBlocks for live totals)
Example
{
  "firstInstalledAtBlock": "asc",
  "firstInstalledAtTime": "asc",
  "installCount": "asc",
  "lastInstallAtBlock": "asc",
  "lastInstallAtTime": "asc",
  "lastUninstallAtBlock": "asc",
  "lastUninstallAtTime": "asc",
  "totalInstalledBlocks": "asc"
}

AppHistory_var_pop_fields

Description

aggregate var_pop on columns

Fields
Field Name Description
firstInstalledAtBlock - Float Block of first-ever install, never changes
firstInstalledAtTime - Float
installCount - Float Number of install transitions (re-engagement signal)
lastInstallAtBlock - Float Block of most recent install transition
lastInstallAtTime - Float
lastUninstallAtBlock - Float Block of most recent uninstall (NULL if currently installed)
lastUninstallAtTime - Float
totalInstalledBlocks - Float Sum of closed install intervals only (excludes ongoing — use AppLeaderboard.totalEngagementBlocks for live totals)
Example
{
  "firstInstalledAtBlock": 987.65,
  "firstInstalledAtTime": 123.45,
  "installCount": 123.45,
  "lastInstallAtBlock": 987.65,
  "lastInstallAtTime": 987.65,
  "lastUninstallAtBlock": 123.45,
  "lastUninstallAtTime": 123.45,
  "totalInstalledBlocks": 123.45
}

AppHistory_var_pop_order_by

Description

order by var_pop() on columns of table "AppHistory"

Fields
Input Field Description
firstInstalledAtBlock - order_by Block of first-ever install, never changes
firstInstalledAtTime - order_by
installCount - order_by Number of install transitions (re-engagement signal)
lastInstallAtBlock - order_by Block of most recent install transition
lastInstallAtTime - order_by
lastUninstallAtBlock - order_by Block of most recent uninstall (NULL if currently installed)
lastUninstallAtTime - order_by
totalInstalledBlocks - order_by Sum of closed install intervals only (excludes ongoing — use AppLeaderboard.totalEngagementBlocks for live totals)
Example
{
  "firstInstalledAtBlock": "asc",
  "firstInstalledAtTime": "asc",
  "installCount": "asc",
  "lastInstallAtBlock": "asc",
  "lastInstallAtTime": "asc",
  "lastUninstallAtBlock": "asc",
  "lastUninstallAtTime": "asc",
  "totalInstalledBlocks": "asc"
}

AppHistory_var_samp_fields

Description

aggregate var_samp on columns

Fields
Field Name Description
firstInstalledAtBlock - Float Block of first-ever install, never changes
firstInstalledAtTime - Float
installCount - Float Number of install transitions (re-engagement signal)
lastInstallAtBlock - Float Block of most recent install transition
lastInstallAtTime - Float
lastUninstallAtBlock - Float Block of most recent uninstall (NULL if currently installed)
lastUninstallAtTime - Float
totalInstalledBlocks - Float Sum of closed install intervals only (excludes ongoing — use AppLeaderboard.totalEngagementBlocks for live totals)
Example
{
  "firstInstalledAtBlock": 987.65,
  "firstInstalledAtTime": 987.65,
  "installCount": 123.45,
  "lastInstallAtBlock": 123.45,
  "lastInstallAtTime": 987.65,
  "lastUninstallAtBlock": 123.45,
  "lastUninstallAtTime": 987.65,
  "totalInstalledBlocks": 123.45
}

AppHistory_var_samp_order_by

Description

order by var_samp() on columns of table "AppHistory"

Fields
Input Field Description
firstInstalledAtBlock - order_by Block of first-ever install, never changes
firstInstalledAtTime - order_by
installCount - order_by Number of install transitions (re-engagement signal)
lastInstallAtBlock - order_by Block of most recent install transition
lastInstallAtTime - order_by
lastUninstallAtBlock - order_by Block of most recent uninstall (NULL if currently installed)
lastUninstallAtTime - order_by
totalInstalledBlocks - order_by Sum of closed install intervals only (excludes ongoing — use AppLeaderboard.totalEngagementBlocks for live totals)
Example
{
  "firstInstalledAtBlock": "asc",
  "firstInstalledAtTime": "asc",
  "installCount": "asc",
  "lastInstallAtBlock": "asc",
  "lastInstallAtTime": "asc",
  "lastUninstallAtBlock": "asc",
  "lastUninstallAtTime": "asc",
  "totalInstalledBlocks": "asc"
}

AppHistory_variance_fields

Description

aggregate variance on columns

Fields
Field Name Description
firstInstalledAtBlock - Float Block of first-ever install, never changes
firstInstalledAtTime - Float
installCount - Float Number of install transitions (re-engagement signal)
lastInstallAtBlock - Float Block of most recent install transition
lastInstallAtTime - Float
lastUninstallAtBlock - Float Block of most recent uninstall (NULL if currently installed)
lastUninstallAtTime - Float
totalInstalledBlocks - Float Sum of closed install intervals only (excludes ongoing — use AppLeaderboard.totalEngagementBlocks for live totals)
Example
{
  "firstInstalledAtBlock": 987.65,
  "firstInstalledAtTime": 123.45,
  "installCount": 123.45,
  "lastInstallAtBlock": 987.65,
  "lastInstallAtTime": 123.45,
  "lastUninstallAtBlock": 123.45,
  "lastUninstallAtTime": 123.45,
  "totalInstalledBlocks": 123.45
}

AppHistory_variance_order_by

Description

order by variance() on columns of table "AppHistory"

Fields
Input Field Description
firstInstalledAtBlock - order_by Block of first-ever install, never changes
firstInstalledAtTime - order_by
installCount - order_by Number of install transitions (re-engagement signal)
lastInstallAtBlock - order_by Block of most recent install transition
lastInstallAtTime - order_by
lastUninstallAtBlock - order_by Block of most recent uninstall (NULL if currently installed)
lastUninstallAtTime - order_by
totalInstalledBlocks - order_by Sum of closed install intervals only (excludes ongoing — use AppLeaderboard.totalEngagementBlocks for live totals)
Example
{
  "firstInstalledAtBlock": "asc",
  "firstInstalledAtTime": "asc",
  "installCount": "asc",
  "lastInstallAtBlock": "asc",
  "lastInstallAtTime": "asc",
  "lastUninstallAtBlock": "asc",
  "lastUninstallAtTime": "asc",
  "totalInstalledBlocks": "asc"
}

AppInstall

Description

A single widget placement within a profile's TheGrid. Pure current-state cache — deleted and rewritten on every grid update. For history, use AppHistory or AppInstallEvent.

Fields
Field Name Description
app - App An object relationship
app_id - String
asset - Asset An object relationship
asset_id - String
blockNumber - Int!
element - jsonb! Full widget JSON (type, width, height, properties)
Arguments
path - String

JSON select path

gridColumns - Int! Number of grid columns for the tab (typically 4)
id - String! {address}-{tabIndex}-{widgetIndex}
profile - Profile An object relationship
profile_id - String
tab - String Tab title
tabIndex - Int! Tab position (0-based)
timestamp - Int!
token - Token An object relationship
token_id - String
visibility - String! public or private
widgetIndex - Int! Widget position within the tab (0-based)
Example
{
  "app": App,
  "app_id": "xyz789",
  "asset": Asset,
  "asset_id": "xyz789",
  "blockNumber": 987,
  "element": jsonb,
  "gridColumns": 123,
  "id": "xyz789",
  "profile": Profile,
  "profile_id": "xyz789",
  "tab": "xyz789",
  "tabIndex": 123,
  "timestamp": 987,
  "token": Token,
  "token_id": "abc123",
  "visibility": "xyz789",
  "widgetIndex": 123
}

AppInstallEvent

Description

Append-only interval log. One row per install-to-uninstall cycle. Use the liveDuration computed field (not durationBlocks) in aggregates to include currently-open intervals.

Fields
Field Name Description
app - App An object relationship
app_id - String!
asset - Asset An object relationship
asset_id - String
durationBlocks - Int Closed-interval duration in blocks (NULL while open — use liveDuration computed field instead)
id - String! {entity}-{app_id}-{installedAtBlock}
installedAtBlock - Int! Block when the interval opened
installedAtTime - Int!
profile - Profile An object relationship
profile_id - String
token - Token An object relationship
token_id - String
uninstalledAtBlock - Int Block when it closed (NULL = currently installed)
uninstalledAtTime - Int
Example
{
  "app": App,
  "app_id": "xyz789",
  "asset": Asset,
  "asset_id": "abc123",
  "durationBlocks": 987,
  "id": "xyz789",
  "installedAtBlock": 987,
  "installedAtTime": 123,
  "profile": Profile,
  "profile_id": "xyz789",
  "token": Token,
  "token_id": "xyz789",
  "uninstalledAtBlock": 123,
  "uninstalledAtTime": 123
}

AppInstallEvent_aggregate

Description

aggregated selection of "AppInstallEvent"

Fields
Field Name Description
aggregate - AppInstallEvent_aggregate_fields
nodes - [AppInstallEvent!]!
Example
{
  "aggregate": AppInstallEvent_aggregate_fields,
  "nodes": [AppInstallEvent]
}

AppInstallEvent_aggregate_bool_exp

Fields
Input Field Description
count - AppInstallEvent_aggregate_bool_exp_count
Example
{"count": AppInstallEvent_aggregate_bool_exp_count}

AppInstallEvent_aggregate_bool_exp_count

Fields
Input Field Description
arguments - [AppInstallEvent_select_column!]
distinct - Boolean
filter - AppInstallEvent_bool_exp
predicate - Int_comparison_exp!
Example
{
  "arguments": ["app_id"],
  "distinct": false,
  "filter": AppInstallEvent_bool_exp,
  "predicate": Int_comparison_exp
}

AppInstallEvent_aggregate_fields

Description

aggregate fields of "AppInstallEvent"

Example
{
  "avg": AppInstallEvent_avg_fields,
  "count": 123,
  "max": AppInstallEvent_max_fields,
  "min": AppInstallEvent_min_fields,
  "stddev": AppInstallEvent_stddev_fields,
  "stddev_pop": AppInstallEvent_stddev_pop_fields,
  "stddev_samp": AppInstallEvent_stddev_samp_fields,
  "sum": AppInstallEvent_sum_fields,
  "var_pop": AppInstallEvent_var_pop_fields,
  "var_samp": AppInstallEvent_var_samp_fields,
  "variance": AppInstallEvent_variance_fields
}

AppInstallEvent_aggregate_order_by

Example
{
  "avg": AppInstallEvent_avg_order_by,
  "count": "asc",
  "max": AppInstallEvent_max_order_by,
  "min": AppInstallEvent_min_order_by,
  "stddev": AppInstallEvent_stddev_order_by,
  "stddev_pop": AppInstallEvent_stddev_pop_order_by,
  "stddev_samp": AppInstallEvent_stddev_samp_order_by,
  "sum": AppInstallEvent_sum_order_by,
  "var_pop": AppInstallEvent_var_pop_order_by,
  "var_samp": AppInstallEvent_var_samp_order_by,
  "variance": AppInstallEvent_variance_order_by
}

AppInstallEvent_avg_fields

Description

aggregate avg on columns

Fields
Field Name Description
durationBlocks - Float Closed-interval duration in blocks (NULL while open — use liveDuration computed field instead)
installedAtBlock - Float Block when the interval opened
installedAtTime - Float
uninstalledAtBlock - Float Block when it closed (NULL = currently installed)
uninstalledAtTime - Float
Example
{
  "durationBlocks": 123.45,
  "installedAtBlock": 123.45,
  "installedAtTime": 987.65,
  "uninstalledAtBlock": 987.65,
  "uninstalledAtTime": 987.65
}

AppInstallEvent_avg_order_by

Description

order by avg() on columns of table "AppInstallEvent"

Fields
Input Field Description
durationBlocks - order_by Closed-interval duration in blocks (NULL while open — use liveDuration computed field instead)
installedAtBlock - order_by Block when the interval opened
installedAtTime - order_by
uninstalledAtBlock - order_by Block when it closed (NULL = currently installed)
uninstalledAtTime - order_by
Example
{
  "durationBlocks": "asc",
  "installedAtBlock": "asc",
  "installedAtTime": "asc",
  "uninstalledAtBlock": "asc",
  "uninstalledAtTime": "asc"
}

AppInstallEvent_bool_exp

Description

Boolean expression to filter rows from the table "AppInstallEvent". All fields are combined with a logical 'AND'.

Fields
Input Field Description
_and - [AppInstallEvent_bool_exp!]
_not - AppInstallEvent_bool_exp
_or - [AppInstallEvent_bool_exp!]
app - App_bool_exp
app_id - String_comparison_exp
asset - Asset_bool_exp
asset_id - String_comparison_exp
durationBlocks - Int_comparison_exp
id - String_comparison_exp
installedAtBlock - Int_comparison_exp
installedAtTime - Int_comparison_exp
profile - Profile_bool_exp
profile_id - String_comparison_exp
token - Token_bool_exp
token_id - String_comparison_exp
uninstalledAtBlock - Int_comparison_exp
uninstalledAtTime - Int_comparison_exp
Example
{
  "_and": [AppInstallEvent_bool_exp],
  "_not": AppInstallEvent_bool_exp,
  "_or": [AppInstallEvent_bool_exp],
  "app": App_bool_exp,
  "app_id": String_comparison_exp,
  "asset": Asset_bool_exp,
  "asset_id": String_comparison_exp,
  "durationBlocks": Int_comparison_exp,
  "id": String_comparison_exp,
  "installedAtBlock": Int_comparison_exp,
  "installedAtTime": Int_comparison_exp,
  "profile": Profile_bool_exp,
  "profile_id": String_comparison_exp,
  "token": Token_bool_exp,
  "token_id": String_comparison_exp,
  "uninstalledAtBlock": Int_comparison_exp,
  "uninstalledAtTime": Int_comparison_exp
}

AppInstallEvent_max_fields

Description

aggregate max on columns

Fields
Field Name Description
app_id - String
asset_id - String
durationBlocks - Int Closed-interval duration in blocks (NULL while open — use liveDuration computed field instead)
id - String {entity}-{app_id}-{installedAtBlock}
installedAtBlock - Int Block when the interval opened
installedAtTime - Int
profile_id - String
token_id - String
uninstalledAtBlock - Int Block when it closed (NULL = currently installed)
uninstalledAtTime - Int
Example
{
  "app_id": "xyz789",
  "asset_id": "xyz789",
  "durationBlocks": 123,
  "id": "abc123",
  "installedAtBlock": 123,
  "installedAtTime": 123,
  "profile_id": "abc123",
  "token_id": "xyz789",
  "uninstalledAtBlock": 987,
  "uninstalledAtTime": 123
}

AppInstallEvent_max_order_by

Description

order by max() on columns of table "AppInstallEvent"

Fields
Input Field Description
app_id - order_by
asset_id - order_by
durationBlocks - order_by Closed-interval duration in blocks (NULL while open — use liveDuration computed field instead)
id - order_by {entity}-{app_id}-{installedAtBlock}
installedAtBlock - order_by Block when the interval opened
installedAtTime - order_by
profile_id - order_by
token_id - order_by
uninstalledAtBlock - order_by Block when it closed (NULL = currently installed)
uninstalledAtTime - order_by
Example
{
  "app_id": "asc",
  "asset_id": "asc",
  "durationBlocks": "asc",
  "id": "asc",
  "installedAtBlock": "asc",
  "installedAtTime": "asc",
  "profile_id": "asc",
  "token_id": "asc",
  "uninstalledAtBlock": "asc",
  "uninstalledAtTime": "asc"
}

AppInstallEvent_min_fields

Description

aggregate min on columns

Fields
Field Name Description
app_id - String
asset_id - String
durationBlocks - Int Closed-interval duration in blocks (NULL while open — use liveDuration computed field instead)
id - String {entity}-{app_id}-{installedAtBlock}
installedAtBlock - Int Block when the interval opened
installedAtTime - Int
profile_id - String
token_id - String
uninstalledAtBlock - Int Block when it closed (NULL = currently installed)
uninstalledAtTime - Int
Example
{
  "app_id": "xyz789",
  "asset_id": "abc123",
  "durationBlocks": 123,
  "id": "xyz789",
  "installedAtBlock": 987,
  "installedAtTime": 123,
  "profile_id": "abc123",
  "token_id": "xyz789",
  "uninstalledAtBlock": 123,
  "uninstalledAtTime": 123
}

AppInstallEvent_min_order_by

Description

order by min() on columns of table "AppInstallEvent"

Fields
Input Field Description
app_id - order_by
asset_id - order_by
durationBlocks - order_by Closed-interval duration in blocks (NULL while open — use liveDuration computed field instead)
id - order_by {entity}-{app_id}-{installedAtBlock}
installedAtBlock - order_by Block when the interval opened
installedAtTime - order_by
profile_id - order_by
token_id - order_by
uninstalledAtBlock - order_by Block when it closed (NULL = currently installed)
uninstalledAtTime - order_by
Example
{
  "app_id": "asc",
  "asset_id": "asc",
  "durationBlocks": "asc",
  "id": "asc",
  "installedAtBlock": "asc",
  "installedAtTime": "asc",
  "profile_id": "asc",
  "token_id": "asc",
  "uninstalledAtBlock": "asc",
  "uninstalledAtTime": "asc"
}

AppInstallEvent_order_by

Description

Ordering options when selecting data from "AppInstallEvent".

Fields
Input Field Description
app - App_order_by
app_id - order_by
asset - Asset_order_by
asset_id - order_by
durationBlocks - order_by
id - order_by
installedAtBlock - order_by
installedAtTime - order_by
profile - Profile_order_by
profile_id - order_by
token - Token_order_by
token_id - order_by
uninstalledAtBlock - order_by
uninstalledAtTime - order_by
Example
{
  "app": App_order_by,
  "app_id": "asc",
  "asset": Asset_order_by,
  "asset_id": "asc",
  "durationBlocks": "asc",
  "id": "asc",
  "installedAtBlock": "asc",
  "installedAtTime": "asc",
  "profile": Profile_order_by,
  "profile_id": "asc",
  "token": Token_order_by,
  "token_id": "asc",
  "uninstalledAtBlock": "asc",
  "uninstalledAtTime": "asc"
}

AppInstallEvent_select_column

Description

select columns of table "AppInstallEvent"

Values
Enum Value Description

app_id

column name

asset_id

column name

durationBlocks

column name

id

column name

installedAtBlock

column name

installedAtTime

column name

profile_id

column name

token_id

column name

uninstalledAtBlock

column name

uninstalledAtTime

column name
Example
"app_id"

AppInstallEvent_stddev_fields

Description

aggregate stddev on columns

Fields
Field Name Description
durationBlocks - Float Closed-interval duration in blocks (NULL while open — use liveDuration computed field instead)
installedAtBlock - Float Block when the interval opened
installedAtTime - Float
uninstalledAtBlock - Float Block when it closed (NULL = currently installed)
uninstalledAtTime - Float
Example
{
  "durationBlocks": 987.65,
  "installedAtBlock": 987.65,
  "installedAtTime": 987.65,
  "uninstalledAtBlock": 123.45,
  "uninstalledAtTime": 987.65
}

AppInstallEvent_stddev_order_by

Description

order by stddev() on columns of table "AppInstallEvent"

Fields
Input Field Description
durationBlocks - order_by Closed-interval duration in blocks (NULL while open — use liveDuration computed field instead)
installedAtBlock - order_by Block when the interval opened
installedAtTime - order_by
uninstalledAtBlock - order_by Block when it closed (NULL = currently installed)
uninstalledAtTime - order_by
Example
{
  "durationBlocks": "asc",
  "installedAtBlock": "asc",
  "installedAtTime": "asc",
  "uninstalledAtBlock": "asc",
  "uninstalledAtTime": "asc"
}

AppInstallEvent_stddev_pop_fields

Description

aggregate stddev_pop on columns

Fields
Field Name Description
durationBlocks - Float Closed-interval duration in blocks (NULL while open — use liveDuration computed field instead)
installedAtBlock - Float Block when the interval opened
installedAtTime - Float
uninstalledAtBlock - Float Block when it closed (NULL = currently installed)
uninstalledAtTime - Float
Example
{
  "durationBlocks": 987.65,
  "installedAtBlock": 987.65,
  "installedAtTime": 123.45,
  "uninstalledAtBlock": 987.65,
  "uninstalledAtTime": 123.45
}

AppInstallEvent_stddev_pop_order_by

Description

order by stddev_pop() on columns of table "AppInstallEvent"

Fields
Input Field Description
durationBlocks - order_by Closed-interval duration in blocks (NULL while open — use liveDuration computed field instead)
installedAtBlock - order_by Block when the interval opened
installedAtTime - order_by
uninstalledAtBlock - order_by Block when it closed (NULL = currently installed)
uninstalledAtTime - order_by
Example
{
  "durationBlocks": "asc",
  "installedAtBlock": "asc",
  "installedAtTime": "asc",
  "uninstalledAtBlock": "asc",
  "uninstalledAtTime": "asc"
}

AppInstallEvent_stddev_samp_fields

Description

aggregate stddev_samp on columns

Fields
Field Name Description
durationBlocks - Float Closed-interval duration in blocks (NULL while open — use liveDuration computed field instead)
installedAtBlock - Float Block when the interval opened
installedAtTime - Float
uninstalledAtBlock - Float Block when it closed (NULL = currently installed)
uninstalledAtTime - Float
Example
{
  "durationBlocks": 123.45,
  "installedAtBlock": 123.45,
  "installedAtTime": 987.65,
  "uninstalledAtBlock": 987.65,
  "uninstalledAtTime": 123.45
}

AppInstallEvent_stddev_samp_order_by

Description

order by stddev_samp() on columns of table "AppInstallEvent"

Fields
Input Field Description
durationBlocks - order_by Closed-interval duration in blocks (NULL while open — use liveDuration computed field instead)
installedAtBlock - order_by Block when the interval opened
installedAtTime - order_by
uninstalledAtBlock - order_by Block when it closed (NULL = currently installed)
uninstalledAtTime - order_by
Example
{
  "durationBlocks": "asc",
  "installedAtBlock": "asc",
  "installedAtTime": "asc",
  "uninstalledAtBlock": "asc",
  "uninstalledAtTime": "asc"
}

AppInstallEvent_stream_cursor_input

Description

Streaming cursor of the table "AppInstallEvent"

Fields
Input Field Description
initial_value - AppInstallEvent_stream_cursor_value_input! Stream column input with initial value
ordering - cursor_ordering cursor ordering
Example
{
  "initial_value": AppInstallEvent_stream_cursor_value_input,
  "ordering": "ASC"
}

AppInstallEvent_stream_cursor_value_input

Description

Initial value of the column from where the streaming should start

Fields
Input Field Description
app_id - String
asset_id - String
durationBlocks - Int Closed-interval duration in blocks (NULL while open — use liveDuration computed field instead)
id - String {entity}-{app_id}-{installedAtBlock}
installedAtBlock - Int Block when the interval opened
installedAtTime - Int
profile_id - String
token_id - String
uninstalledAtBlock - Int Block when it closed (NULL = currently installed)
uninstalledAtTime - Int
Example
{
  "app_id": "xyz789",
  "asset_id": "xyz789",
  "durationBlocks": 987,
  "id": "xyz789",
  "installedAtBlock": 123,
  "installedAtTime": 123,
  "profile_id": "xyz789",
  "token_id": "abc123",
  "uninstalledAtBlock": 987,
  "uninstalledAtTime": 987
}

AppInstallEvent_sum_fields

Description

aggregate sum on columns

Fields
Field Name Description
durationBlocks - Int Closed-interval duration in blocks (NULL while open — use liveDuration computed field instead)
installedAtBlock - Int Block when the interval opened
installedAtTime - Int
uninstalledAtBlock - Int Block when it closed (NULL = currently installed)
uninstalledAtTime - Int
Example
{
  "durationBlocks": 123,
  "installedAtBlock": 123,
  "installedAtTime": 987,
  "uninstalledAtBlock": 987,
  "uninstalledAtTime": 987
}

AppInstallEvent_sum_order_by

Description

order by sum() on columns of table "AppInstallEvent"

Fields
Input Field Description
durationBlocks - order_by Closed-interval duration in blocks (NULL while open — use liveDuration computed field instead)
installedAtBlock - order_by Block when the interval opened
installedAtTime - order_by
uninstalledAtBlock - order_by Block when it closed (NULL = currently installed)
uninstalledAtTime - order_by
Example
{
  "durationBlocks": "asc",
  "installedAtBlock": "asc",
  "installedAtTime": "asc",
  "uninstalledAtBlock": "asc",
  "uninstalledAtTime": "asc"
}

AppInstallEvent_var_pop_fields

Description

aggregate var_pop on columns

Fields
Field Name Description
durationBlocks - Float Closed-interval duration in blocks (NULL while open — use liveDuration computed field instead)
installedAtBlock - Float Block when the interval opened
installedAtTime - Float
uninstalledAtBlock - Float Block when it closed (NULL = currently installed)
uninstalledAtTime - Float
Example
{
  "durationBlocks": 987.65,
  "installedAtBlock": 123.45,
  "installedAtTime": 987.65,
  "uninstalledAtBlock": 987.65,
  "uninstalledAtTime": 123.45
}

AppInstallEvent_var_pop_order_by

Description

order by var_pop() on columns of table "AppInstallEvent"

Fields
Input Field Description
durationBlocks - order_by Closed-interval duration in blocks (NULL while open — use liveDuration computed field instead)
installedAtBlock - order_by Block when the interval opened
installedAtTime - order_by
uninstalledAtBlock - order_by Block when it closed (NULL = currently installed)
uninstalledAtTime - order_by
Example
{
  "durationBlocks": "asc",
  "installedAtBlock": "asc",
  "installedAtTime": "asc",
  "uninstalledAtBlock": "asc",
  "uninstalledAtTime": "asc"
}

AppInstallEvent_var_samp_fields

Description

aggregate var_samp on columns

Fields
Field Name Description
durationBlocks - Float Closed-interval duration in blocks (NULL while open — use liveDuration computed field instead)
installedAtBlock - Float Block when the interval opened
installedAtTime - Float
uninstalledAtBlock - Float Block when it closed (NULL = currently installed)
uninstalledAtTime - Float
Example
{
  "durationBlocks": 987.65,
  "installedAtBlock": 987.65,
  "installedAtTime": 123.45,
  "uninstalledAtBlock": 123.45,
  "uninstalledAtTime": 123.45
}

AppInstallEvent_var_samp_order_by

Description

order by var_samp() on columns of table "AppInstallEvent"

Fields
Input Field Description
durationBlocks - order_by Closed-interval duration in blocks (NULL while open — use liveDuration computed field instead)
installedAtBlock - order_by Block when the interval opened
installedAtTime - order_by
uninstalledAtBlock - order_by Block when it closed (NULL = currently installed)
uninstalledAtTime - order_by
Example
{
  "durationBlocks": "asc",
  "installedAtBlock": "asc",
  "installedAtTime": "asc",
  "uninstalledAtBlock": "asc",
  "uninstalledAtTime": "asc"
}

AppInstallEvent_variance_fields

Description

aggregate variance on columns

Fields
Field Name Description
durationBlocks - Float Closed-interval duration in blocks (NULL while open — use liveDuration computed field instead)
installedAtBlock - Float Block when the interval opened
installedAtTime - Float
uninstalledAtBlock - Float Block when it closed (NULL = currently installed)
uninstalledAtTime - Float
Example
{
  "durationBlocks": 987.65,
  "installedAtBlock": 123.45,
  "installedAtTime": 123.45,
  "uninstalledAtBlock": 987.65,
  "uninstalledAtTime": 123.45
}

AppInstallEvent_variance_order_by

Description

order by variance() on columns of table "AppInstallEvent"

Fields
Input Field Description
durationBlocks - order_by Closed-interval duration in blocks (NULL while open — use liveDuration computed field instead)
installedAtBlock - order_by Block when the interval opened
installedAtTime - order_by
uninstalledAtBlock - order_by Block when it closed (NULL = currently installed)
uninstalledAtTime - order_by
Example
{
  "durationBlocks": "asc",
  "installedAtBlock": "asc",
  "installedAtTime": "asc",
  "uninstalledAtBlock": "asc",
  "uninstalledAtTime": "asc"
}

AppInstall_aggregate

Description

aggregated selection of "AppInstall"

Fields
Field Name Description
aggregate - AppInstall_aggregate_fields
nodes - [AppInstall!]!
Example
{
  "aggregate": AppInstall_aggregate_fields,
  "nodes": [AppInstall]
}

AppInstall_aggregate_bool_exp

Fields
Input Field Description
count - AppInstall_aggregate_bool_exp_count
Example
{"count": AppInstall_aggregate_bool_exp_count}

AppInstall_aggregate_bool_exp_count

Fields
Input Field Description
arguments - [AppInstall_select_column!]
distinct - Boolean
filter - AppInstall_bool_exp
predicate - Int_comparison_exp!
Example
{
  "arguments": ["app_id"],
  "distinct": false,
  "filter": AppInstall_bool_exp,
  "predicate": Int_comparison_exp
}

AppInstall_aggregate_fields

Description

aggregate fields of "AppInstall"

Example
{
  "avg": AppInstall_avg_fields,
  "count": 123,
  "max": AppInstall_max_fields,
  "min": AppInstall_min_fields,
  "stddev": AppInstall_stddev_fields,
  "stddev_pop": AppInstall_stddev_pop_fields,
  "stddev_samp": AppInstall_stddev_samp_fields,
  "sum": AppInstall_sum_fields,
  "var_pop": AppInstall_var_pop_fields,
  "var_samp": AppInstall_var_samp_fields,
  "variance": AppInstall_variance_fields
}

AppInstall_aggregate_order_by

Description

order by aggregate values of table "AppInstall"

Example
{
  "avg": AppInstall_avg_order_by,
  "count": "asc",
  "max": AppInstall_max_order_by,
  "min": AppInstall_min_order_by,
  "stddev": AppInstall_stddev_order_by,
  "stddev_pop": AppInstall_stddev_pop_order_by,
  "stddev_samp": AppInstall_stddev_samp_order_by,
  "sum": AppInstall_sum_order_by,
  "var_pop": AppInstall_var_pop_order_by,
  "var_samp": AppInstall_var_samp_order_by,
  "variance": AppInstall_variance_order_by
}

AppInstall_avg_fields

Description

aggregate avg on columns

Fields
Field Name Description
blockNumber - Float
gridColumns - Float Number of grid columns for the tab (typically 4)
tabIndex - Float Tab position (0-based)
timestamp - Float
widgetIndex - Float Widget position within the tab (0-based)
Example
{
  "blockNumber": 987.65,
  "gridColumns": 987.65,
  "tabIndex": 987.65,
  "timestamp": 123.45,
  "widgetIndex": 123.45
}

AppInstall_avg_order_by

Description

order by avg() on columns of table "AppInstall"

Fields
Input Field Description
blockNumber - order_by
gridColumns - order_by Number of grid columns for the tab (typically 4)
tabIndex - order_by Tab position (0-based)
timestamp - order_by
widgetIndex - order_by Widget position within the tab (0-based)
Example
{
  "blockNumber": "asc",
  "gridColumns": "asc",
  "tabIndex": "asc",
  "timestamp": "asc",
  "widgetIndex": "asc"
}

AppInstall_bool_exp

Description

Boolean expression to filter rows from the table "AppInstall". All fields are combined with a logical 'AND'.

Example
{
  "_and": [AppInstall_bool_exp],
  "_not": AppInstall_bool_exp,
  "_or": [AppInstall_bool_exp],
  "app": App_bool_exp,
  "app_id": String_comparison_exp,
  "asset": Asset_bool_exp,
  "asset_id": String_comparison_exp,
  "blockNumber": Int_comparison_exp,
  "element": jsonb_comparison_exp,
  "gridColumns": Int_comparison_exp,
  "id": String_comparison_exp,
  "profile": Profile_bool_exp,
  "profile_id": String_comparison_exp,
  "tab": String_comparison_exp,
  "tabIndex": Int_comparison_exp,
  "timestamp": Int_comparison_exp,
  "token": Token_bool_exp,
  "token_id": String_comparison_exp,
  "visibility": String_comparison_exp,
  "widgetIndex": Int_comparison_exp
}

AppInstall_max_fields

Description

aggregate max on columns

Fields
Field Name Description
app_id - String
asset_id - String
blockNumber - Int
gridColumns - Int Number of grid columns for the tab (typically 4)
id - String {address}-{tabIndex}-{widgetIndex}
profile_id - String
tab - String Tab title
tabIndex - Int Tab position (0-based)
timestamp - Int
token_id - String
visibility - String public or private
widgetIndex - Int Widget position within the tab (0-based)
Example
{
  "app_id": "abc123",
  "asset_id": "xyz789",
  "blockNumber": 123,
  "gridColumns": 987,
  "id": "xyz789",
  "profile_id": "abc123",
  "tab": "abc123",
  "tabIndex": 987,
  "timestamp": 123,
  "token_id": "abc123",
  "visibility": "xyz789",
  "widgetIndex": 987
}

AppInstall_max_order_by

Description

order by max() on columns of table "AppInstall"

Fields
Input Field Description
app_id - order_by
asset_id - order_by
blockNumber - order_by
gridColumns - order_by Number of grid columns for the tab (typically 4)
id - order_by {address}-{tabIndex}-{widgetIndex}
profile_id - order_by
tab - order_by Tab title
tabIndex - order_by Tab position (0-based)
timestamp - order_by
token_id - order_by
visibility - order_by public or private
widgetIndex - order_by Widget position within the tab (0-based)
Example
{
  "app_id": "asc",
  "asset_id": "asc",
  "blockNumber": "asc",
  "gridColumns": "asc",
  "id": "asc",
  "profile_id": "asc",
  "tab": "asc",
  "tabIndex": "asc",
  "timestamp": "asc",
  "token_id": "asc",
  "visibility": "asc",
  "widgetIndex": "asc"
}

AppInstall_min_fields

Description

aggregate min on columns

Fields
Field Name Description
app_id - String
asset_id - String
blockNumber - Int
gridColumns - Int Number of grid columns for the tab (typically 4)
id - String {address}-{tabIndex}-{widgetIndex}
profile_id - String
tab - String Tab title
tabIndex - Int Tab position (0-based)
timestamp - Int
token_id - String
visibility - String public or private
widgetIndex - Int Widget position within the tab (0-based)
Example
{
  "app_id": "abc123",
  "asset_id": "xyz789",
  "blockNumber": 123,
  "gridColumns": 123,
  "id": "abc123",
  "profile_id": "xyz789",
  "tab": "xyz789",
  "tabIndex": 987,
  "timestamp": 987,
  "token_id": "xyz789",
  "visibility": "abc123",
  "widgetIndex": 123
}

AppInstall_min_order_by

Description

order by min() on columns of table "AppInstall"

Fields
Input Field Description
app_id - order_by
asset_id - order_by
blockNumber - order_by
gridColumns - order_by Number of grid columns for the tab (typically 4)
id - order_by {address}-{tabIndex}-{widgetIndex}
profile_id - order_by
tab - order_by Tab title
tabIndex - order_by Tab position (0-based)
timestamp - order_by
token_id - order_by
visibility - order_by public or private
widgetIndex - order_by Widget position within the tab (0-based)
Example
{
  "app_id": "asc",
  "asset_id": "asc",
  "blockNumber": "asc",
  "gridColumns": "asc",
  "id": "asc",
  "profile_id": "asc",
  "tab": "asc",
  "tabIndex": "asc",
  "timestamp": "asc",
  "token_id": "asc",
  "visibility": "asc",
  "widgetIndex": "asc"
}

AppInstall_order_by

Description

Ordering options when selecting data from "AppInstall".

Fields
Input Field Description
app - App_order_by
app_id - order_by
asset - Asset_order_by
asset_id - order_by
blockNumber - order_by
element - order_by
gridColumns - order_by
id - order_by
profile - Profile_order_by
profile_id - order_by
tab - order_by
tabIndex - order_by
timestamp - order_by
token - Token_order_by
token_id - order_by
visibility - order_by
widgetIndex - order_by
Example
{
  "app": App_order_by,
  "app_id": "asc",
  "asset": Asset_order_by,
  "asset_id": "asc",
  "blockNumber": "asc",
  "element": "asc",
  "gridColumns": "asc",
  "id": "asc",
  "profile": Profile_order_by,
  "profile_id": "asc",
  "tab": "asc",
  "tabIndex": "asc",
  "timestamp": "asc",
  "token": Token_order_by,
  "token_id": "asc",
  "visibility": "asc",
  "widgetIndex": "asc"
}

AppInstall_select_column

Description

select columns of table "AppInstall"

Values
Enum Value Description

app_id

column name

asset_id

column name

blockNumber

column name

element

column name

gridColumns

column name

id

column name

profile_id

column name

tab

column name

tabIndex

column name

timestamp

column name

token_id

column name

visibility

column name

widgetIndex

column name
Example
"app_id"

AppInstall_stddev_fields

Description

aggregate stddev on columns

Fields
Field Name Description
blockNumber - Float
gridColumns - Float Number of grid columns for the tab (typically 4)
tabIndex - Float Tab position (0-based)
timestamp - Float
widgetIndex - Float Widget position within the tab (0-based)
Example
{
  "blockNumber": 987.65,
  "gridColumns": 123.45,
  "tabIndex": 123.45,
  "timestamp": 987.65,
  "widgetIndex": 123.45
}

AppInstall_stddev_order_by

Description

order by stddev() on columns of table "AppInstall"

Fields
Input Field Description
blockNumber - order_by
gridColumns - order_by Number of grid columns for the tab (typically 4)
tabIndex - order_by Tab position (0-based)
timestamp - order_by
widgetIndex - order_by Widget position within the tab (0-based)
Example
{
  "blockNumber": "asc",
  "gridColumns": "asc",
  "tabIndex": "asc",
  "timestamp": "asc",
  "widgetIndex": "asc"
}

AppInstall_stddev_pop_fields

Description

aggregate stddev_pop on columns

Fields
Field Name Description
blockNumber - Float
gridColumns - Float Number of grid columns for the tab (typically 4)
tabIndex - Float Tab position (0-based)
timestamp - Float
widgetIndex - Float Widget position within the tab (0-based)
Example
{
  "blockNumber": 987.65,
  "gridColumns": 987.65,
  "tabIndex": 987.65,
  "timestamp": 987.65,
  "widgetIndex": 987.65
}

AppInstall_stddev_pop_order_by

Description

order by stddev_pop() on columns of table "AppInstall"

Fields
Input Field Description
blockNumber - order_by
gridColumns - order_by Number of grid columns for the tab (typically 4)
tabIndex - order_by Tab position (0-based)
timestamp - order_by
widgetIndex - order_by Widget position within the tab (0-based)
Example
{
  "blockNumber": "asc",
  "gridColumns": "asc",
  "tabIndex": "asc",
  "timestamp": "asc",
  "widgetIndex": "asc"
}

AppInstall_stddev_samp_fields

Description

aggregate stddev_samp on columns

Fields
Field Name Description
blockNumber - Float
gridColumns - Float Number of grid columns for the tab (typically 4)
tabIndex - Float Tab position (0-based)
timestamp - Float
widgetIndex - Float Widget position within the tab (0-based)
Example
{
  "blockNumber": 123.45,
  "gridColumns": 987.65,
  "tabIndex": 123.45,
  "timestamp": 123.45,
  "widgetIndex": 987.65
}

AppInstall_stddev_samp_order_by

Description

order by stddev_samp() on columns of table "AppInstall"

Fields
Input Field Description
blockNumber - order_by
gridColumns - order_by Number of grid columns for the tab (typically 4)
tabIndex - order_by Tab position (0-based)
timestamp - order_by
widgetIndex - order_by Widget position within the tab (0-based)
Example
{
  "blockNumber": "asc",
  "gridColumns": "asc",
  "tabIndex": "asc",
  "timestamp": "asc",
  "widgetIndex": "asc"
}

AppInstall_stream_cursor_input

Description

Streaming cursor of the table "AppInstall"

Fields
Input Field Description
initial_value - AppInstall_stream_cursor_value_input! Stream column input with initial value
ordering - cursor_ordering cursor ordering
Example
{
  "initial_value": AppInstall_stream_cursor_value_input,
  "ordering": "ASC"
}

AppInstall_stream_cursor_value_input

Description

Initial value of the column from where the streaming should start

Fields
Input Field Description
app_id - String
asset_id - String
blockNumber - Int
element - jsonb Full widget JSON (type, width, height, properties)
gridColumns - Int Number of grid columns for the tab (typically 4)
id - String {address}-{tabIndex}-{widgetIndex}
profile_id - String
tab - String Tab title
tabIndex - Int Tab position (0-based)
timestamp - Int
token_id - String
visibility - String public or private
widgetIndex - Int Widget position within the tab (0-based)
Example
{
  "app_id": "abc123",
  "asset_id": "abc123",
  "blockNumber": 123,
  "element": jsonb,
  "gridColumns": 123,
  "id": "xyz789",
  "profile_id": "abc123",
  "tab": "xyz789",
  "tabIndex": 123,
  "timestamp": 987,
  "token_id": "abc123",
  "visibility": "xyz789",
  "widgetIndex": 123
}

AppInstall_sum_fields

Description

aggregate sum on columns

Fields
Field Name Description
blockNumber - Int
gridColumns - Int Number of grid columns for the tab (typically 4)
tabIndex - Int Tab position (0-based)
timestamp - Int
widgetIndex - Int Widget position within the tab (0-based)
Example
{
  "blockNumber": 123,
  "gridColumns": 123,
  "tabIndex": 123,
  "timestamp": 987,
  "widgetIndex": 123
}

AppInstall_sum_order_by

Description

order by sum() on columns of table "AppInstall"

Fields
Input Field Description
blockNumber - order_by
gridColumns - order_by Number of grid columns for the tab (typically 4)
tabIndex - order_by Tab position (0-based)
timestamp - order_by
widgetIndex - order_by Widget position within the tab (0-based)
Example
{
  "blockNumber": "asc",
  "gridColumns": "asc",
  "tabIndex": "asc",
  "timestamp": "asc",
  "widgetIndex": "asc"
}

AppInstall_var_pop_fields

Description

aggregate var_pop on columns

Fields
Field Name Description
blockNumber - Float
gridColumns - Float Number of grid columns for the tab (typically 4)
tabIndex - Float Tab position (0-based)
timestamp - Float
widgetIndex - Float Widget position within the tab (0-based)
Example
{
  "blockNumber": 987.65,
  "gridColumns": 987.65,
  "tabIndex": 987.65,
  "timestamp": 987.65,
  "widgetIndex": 987.65
}

AppInstall_var_pop_order_by

Description

order by var_pop() on columns of table "AppInstall"

Fields
Input Field Description
blockNumber - order_by
gridColumns - order_by Number of grid columns for the tab (typically 4)
tabIndex - order_by Tab position (0-based)
timestamp - order_by
widgetIndex - order_by Widget position within the tab (0-based)
Example
{
  "blockNumber": "asc",
  "gridColumns": "asc",
  "tabIndex": "asc",
  "timestamp": "asc",
  "widgetIndex": "asc"
}

AppInstall_var_samp_fields

Description

aggregate var_samp on columns

Fields
Field Name Description
blockNumber - Float
gridColumns - Float Number of grid columns for the tab (typically 4)
tabIndex - Float Tab position (0-based)
timestamp - Float
widgetIndex - Float Widget position within the tab (0-based)
Example
{
  "blockNumber": 123.45,
  "gridColumns": 123.45,
  "tabIndex": 123.45,
  "timestamp": 987.65,
  "widgetIndex": 987.65
}

AppInstall_var_samp_order_by

Description

order by var_samp() on columns of table "AppInstall"

Fields
Input Field Description
blockNumber - order_by
gridColumns - order_by Number of grid columns for the tab (typically 4)
tabIndex - order_by Tab position (0-based)
timestamp - order_by
widgetIndex - order_by Widget position within the tab (0-based)
Example
{
  "blockNumber": "asc",
  "gridColumns": "asc",
  "tabIndex": "asc",
  "timestamp": "asc",
  "widgetIndex": "asc"
}

AppInstall_variance_fields

Description

aggregate variance on columns

Fields
Field Name Description
blockNumber - Float
gridColumns - Float Number of grid columns for the tab (typically 4)
tabIndex - Float Tab position (0-based)
timestamp - Float
widgetIndex - Float Widget position within the tab (0-based)
Example
{
  "blockNumber": 987.65,
  "gridColumns": 987.65,
  "tabIndex": 987.65,
  "timestamp": 987.65,
  "widgetIndex": 987.65
}

AppInstall_variance_order_by

Description

order by variance() on columns of table "AppInstall"

Fields
Input Field Description
blockNumber - order_by
gridColumns - order_by Number of grid columns for the tab (typically 4)
tabIndex - order_by Tab position (0-based)
timestamp - order_by
widgetIndex - order_by Widget position within the tab (0-based)
Example
{
  "blockNumber": "asc",
  "gridColumns": "asc",
  "tabIndex": "asc",
  "timestamp": "asc",
  "widgetIndex": "asc"
}

AppLeaderboard

Description

Real-time app popularity ranking. Sort by liveInstalls desc for a leaderboard. Includes open intervals in totalEngagementBlocks.

Fields
Field Name Description
firstSeen - Int
id - String
isVerified - Boolean
lastSeen - Int
liveInstalls - bigint Distinct entities with a currently-open install interval
liveProfiles - bigint Distinct profiles with a currently-open install interval
profile - Profile An object relationship
profile_id - String
totalEngagementBlocks - bigint Sum of all interval durations, including open intervals computed from the latest indexed block
uuid - String
Example
{
  "firstSeen": 987,
  "id": "abc123",
  "isVerified": false,
  "lastSeen": 987,
  "liveInstalls": bigint,
  "liveProfiles": bigint,
  "profile": Profile,
  "profile_id": "xyz789",
  "totalEngagementBlocks": bigint,
  "uuid": "xyz789"
}

AppLeaderboard_aggregate

Description

aggregated selection of "AppLeaderboard"

Fields
Field Name Description
aggregate - AppLeaderboard_aggregate_fields
nodes - [AppLeaderboard!]!
Example
{
  "aggregate": AppLeaderboard_aggregate_fields,
  "nodes": [AppLeaderboard]
}

AppLeaderboard_aggregate_fields

Description

aggregate fields of "AppLeaderboard"

Example
{
  "avg": AppLeaderboard_avg_fields,
  "count": 123,
  "max": AppLeaderboard_max_fields,
  "min": AppLeaderboard_min_fields,
  "stddev": AppLeaderboard_stddev_fields,
  "stddev_pop": AppLeaderboard_stddev_pop_fields,
  "stddev_samp": AppLeaderboard_stddev_samp_fields,
  "sum": AppLeaderboard_sum_fields,
  "var_pop": AppLeaderboard_var_pop_fields,
  "var_samp": AppLeaderboard_var_samp_fields,
  "variance": AppLeaderboard_variance_fields
}

AppLeaderboard_avg_fields

Description

aggregate avg on columns

Fields
Field Name Description
firstSeen - Float
lastSeen - Float
liveInstalls - Float Distinct entities with a currently-open install interval
liveProfiles - Float Distinct profiles with a currently-open install interval
totalEngagementBlocks - Float Sum of all interval durations, including open intervals computed from the latest indexed block
Example
{
  "firstSeen": 123.45,
  "lastSeen": 987.65,
  "liveInstalls": 123.45,
  "liveProfiles": 123.45,
  "totalEngagementBlocks": 987.65
}

AppLeaderboard_bool_exp

Description

Boolean expression to filter rows from the table "AppLeaderboard". All fields are combined with a logical 'AND'.

Fields
Input Field Description
_and - [AppLeaderboard_bool_exp!]
_not - AppLeaderboard_bool_exp
_or - [AppLeaderboard_bool_exp!]
firstSeen - Int_comparison_exp
id - String_comparison_exp
isVerified - Boolean_comparison_exp
lastSeen - Int_comparison_exp
liveInstalls - bigint_comparison_exp
liveProfiles - bigint_comparison_exp
profile - Profile_bool_exp
profile_id - String_comparison_exp
totalEngagementBlocks - bigint_comparison_exp
uuid - String_comparison_exp
Example
{
  "_and": [AppLeaderboard_bool_exp],
  "_not": AppLeaderboard_bool_exp,
  "_or": [AppLeaderboard_bool_exp],
  "firstSeen": Int_comparison_exp,
  "id": String_comparison_exp,
  "isVerified": Boolean_comparison_exp,
  "lastSeen": Int_comparison_exp,
  "liveInstalls": bigint_comparison_exp,
  "liveProfiles": bigint_comparison_exp,
  "profile": Profile_bool_exp,
  "profile_id": String_comparison_exp,
  "totalEngagementBlocks": bigint_comparison_exp,
  "uuid": String_comparison_exp
}

AppLeaderboard_max_fields

Description

aggregate max on columns

Fields
Field Name Description
firstSeen - Int
id - String
lastSeen - Int
liveInstalls - bigint Distinct entities with a currently-open install interval
liveProfiles - bigint Distinct profiles with a currently-open install interval
profile_id - String
totalEngagementBlocks - bigint Sum of all interval durations, including open intervals computed from the latest indexed block
uuid - String
Example
{
  "firstSeen": 987,
  "id": "xyz789",
  "lastSeen": 987,
  "liveInstalls": bigint,
  "liveProfiles": bigint,
  "profile_id": "xyz789",
  "totalEngagementBlocks": bigint,
  "uuid": "abc123"
}

AppLeaderboard_min_fields

Description

aggregate min on columns

Fields
Field Name Description
firstSeen - Int
id - String
lastSeen - Int
liveInstalls - bigint Distinct entities with a currently-open install interval
liveProfiles - bigint Distinct profiles with a currently-open install interval
profile_id - String
totalEngagementBlocks - bigint Sum of all interval durations, including open intervals computed from the latest indexed block
uuid - String
Example
{
  "firstSeen": 987,
  "id": "xyz789",
  "lastSeen": 123,
  "liveInstalls": bigint,
  "liveProfiles": bigint,
  "profile_id": "abc123",
  "totalEngagementBlocks": bigint,
  "uuid": "xyz789"
}

AppLeaderboard_order_by

Description

Ordering options when selecting data from "AppLeaderboard".

Fields
Input Field Description
firstSeen - order_by
id - order_by
isVerified - order_by
lastSeen - order_by
liveInstalls - order_by
liveProfiles - order_by
profile - Profile_order_by
profile_id - order_by
totalEngagementBlocks - order_by
uuid - order_by
Example
{
  "firstSeen": "asc",
  "id": "asc",
  "isVerified": "asc",
  "lastSeen": "asc",
  "liveInstalls": "asc",
  "liveProfiles": "asc",
  "profile": Profile_order_by,
  "profile_id": "asc",
  "totalEngagementBlocks": "asc",
  "uuid": "asc"
}

AppLeaderboard_select_column

Description

select columns of table "AppLeaderboard"

Values
Enum Value Description

firstSeen

column name

id

column name

isVerified

column name

lastSeen

column name

liveInstalls

column name

liveProfiles

column name

profile_id

column name

totalEngagementBlocks

column name

uuid

column name
Example
"firstSeen"

AppLeaderboard_stddev_fields

Description

aggregate stddev on columns

Fields
Field Name Description
firstSeen - Float
lastSeen - Float
liveInstalls - Float Distinct entities with a currently-open install interval
liveProfiles - Float Distinct profiles with a currently-open install interval
totalEngagementBlocks - Float Sum of all interval durations, including open intervals computed from the latest indexed block
Example
{
  "firstSeen": 987.65,
  "lastSeen": 987.65,
  "liveInstalls": 123.45,
  "liveProfiles": 123.45,
  "totalEngagementBlocks": 123.45
}

AppLeaderboard_stddev_pop_fields

Description

aggregate stddev_pop on columns

Fields
Field Name Description
firstSeen - Float
lastSeen - Float
liveInstalls - Float Distinct entities with a currently-open install interval
liveProfiles - Float Distinct profiles with a currently-open install interval
totalEngagementBlocks - Float Sum of all interval durations, including open intervals computed from the latest indexed block
Example
{
  "firstSeen": 987.65,
  "lastSeen": 987.65,
  "liveInstalls": 123.45,
  "liveProfiles": 123.45,
  "totalEngagementBlocks": 123.45
}

AppLeaderboard_stddev_samp_fields

Description

aggregate stddev_samp on columns

Fields
Field Name Description
firstSeen - Float
lastSeen - Float
liveInstalls - Float Distinct entities with a currently-open install interval
liveProfiles - Float Distinct profiles with a currently-open install interval
totalEngagementBlocks - Float Sum of all interval durations, including open intervals computed from the latest indexed block
Example
{
  "firstSeen": 123.45,
  "lastSeen": 123.45,
  "liveInstalls": 987.65,
  "liveProfiles": 987.65,
  "totalEngagementBlocks": 987.65
}

AppLeaderboard_stream_cursor_input

Description

Streaming cursor of the table "AppLeaderboard"

Fields
Input Field Description
initial_value - AppLeaderboard_stream_cursor_value_input! Stream column input with initial value
ordering - cursor_ordering cursor ordering
Example
{
  "initial_value": AppLeaderboard_stream_cursor_value_input,
  "ordering": "ASC"
}

AppLeaderboard_stream_cursor_value_input

Description

Initial value of the column from where the streaming should start

Fields
Input Field Description
firstSeen - Int
id - String
isVerified - Boolean
lastSeen - Int
liveInstalls - bigint Distinct entities with a currently-open install interval
liveProfiles - bigint Distinct profiles with a currently-open install interval
profile_id - String
totalEngagementBlocks - bigint Sum of all interval durations, including open intervals computed from the latest indexed block
uuid - String
Example
{
  "firstSeen": 987,
  "id": "abc123",
  "isVerified": false,
  "lastSeen": 987,
  "liveInstalls": bigint,
  "liveProfiles": bigint,
  "profile_id": "xyz789",
  "totalEngagementBlocks": bigint,
  "uuid": "abc123"
}

AppLeaderboard_sum_fields

Description

aggregate sum on columns

Fields
Field Name Description
firstSeen - Int
lastSeen - Int
liveInstalls - bigint Distinct entities with a currently-open install interval
liveProfiles - bigint Distinct profiles with a currently-open install interval
totalEngagementBlocks - bigint Sum of all interval durations, including open intervals computed from the latest indexed block
Example
{
  "firstSeen": 987,
  "lastSeen": 123,
  "liveInstalls": bigint,
  "liveProfiles": bigint,
  "totalEngagementBlocks": bigint
}

AppLeaderboard_var_pop_fields

Description

aggregate var_pop on columns

Fields
Field Name Description
firstSeen - Float
lastSeen - Float
liveInstalls - Float Distinct entities with a currently-open install interval
liveProfiles - Float Distinct profiles with a currently-open install interval
totalEngagementBlocks - Float Sum of all interval durations, including open intervals computed from the latest indexed block
Example
{
  "firstSeen": 987.65,
  "lastSeen": 987.65,
  "liveInstalls": 987.65,
  "liveProfiles": 987.65,
  "totalEngagementBlocks": 123.45
}

AppLeaderboard_var_samp_fields

Description

aggregate var_samp on columns

Fields
Field Name Description
firstSeen - Float
lastSeen - Float
liveInstalls - Float Distinct entities with a currently-open install interval
liveProfiles - Float Distinct profiles with a currently-open install interval
totalEngagementBlocks - Float Sum of all interval durations, including open intervals computed from the latest indexed block
Example
{
  "firstSeen": 123.45,
  "lastSeen": 123.45,
  "liveInstalls": 987.65,
  "liveProfiles": 123.45,
  "totalEngagementBlocks": 123.45
}

AppLeaderboard_variance_fields

Description

aggregate variance on columns

Fields
Field Name Description
firstSeen - Float
lastSeen - Float
liveInstalls - Float Distinct entities with a currently-open install interval
liveProfiles - Float Distinct profiles with a currently-open install interval
totalEngagementBlocks - Float Sum of all interval durations, including open intervals computed from the latest indexed block
Example
{
  "firstSeen": 123.45,
  "lastSeen": 987.65,
  "liveInstalls": 987.65,
  "liveProfiles": 123.45,
  "totalEngagementBlocks": 123.45
}

App_aggregate

Description

aggregated selection of "App"

Fields
Field Name Description
aggregate - App_aggregate_fields
nodes - [App!]!
Example
{
  "aggregate": App_aggregate_fields,
  "nodes": [App]
}

App_aggregate_fields

Description

aggregate fields of "App"

Fields
Field Name Description
avg - App_avg_fields
count - Int!
Arguments
distinct - Boolean
max - App_max_fields
min - App_min_fields
stddev - App_stddev_fields
stddev_pop - App_stddev_pop_fields
stddev_samp - App_stddev_samp_fields
sum - App_sum_fields
var_pop - App_var_pop_fields
var_samp - App_var_samp_fields
variance - App_variance_fields
Example
{
  "avg": App_avg_fields,
  "count": 987,
  "max": App_max_fields,
  "min": App_min_fields,
  "stddev": App_stddev_fields,
  "stddev_pop": App_stddev_pop_fields,
  "stddev_samp": App_stddev_samp_fields,
  "sum": App_sum_fields,
  "var_pop": App_var_pop_fields,
  "var_samp": App_var_samp_fields,
  "variance": App_variance_fields
}

App_avg_fields

Description

aggregate avg on columns

Fields
Field Name Description
claimedAtBlock - Float
claimedAtTime - Float
firstSeen - Float Unix timestamp when domain was first installed
installCount - Float Number of distinct entities with this app currently installed
lastSeen - Float Unix timestamp of most recent installation
verifiedAtBlock - Float
verifiedAtTime - Float
Example
{
  "claimedAtBlock": 123.45,
  "claimedAtTime": 987.65,
  "firstSeen": 987.65,
  "installCount": 987.65,
  "lastSeen": 987.65,
  "verifiedAtBlock": 987.65,
  "verifiedAtTime": 123.45
}

App_bool_exp

Description

Boolean expression to filter rows from the table "App". All fields are combined with a logical 'AND'.

Fields
Input Field Description
_and - [App_bool_exp!]
_not - App_bool_exp
_or - [App_bool_exp!]
claimedAtBlock - Int_comparison_exp
claimedAtTime - Int_comparison_exp
contributors - AppContributor_bool_exp
contributors_aggregate - AppContributor_aggregate_bool_exp
events - AppInstallEvent_bool_exp
events_aggregate - AppInstallEvent_aggregate_bool_exp
firstSeen - Int_comparison_exp
history - AppHistory_bool_exp
history_aggregate - AppHistory_aggregate_bool_exp
id - String_comparison_exp
installCount - Int_comparison_exp
installs - AppInstall_bool_exp
installs_aggregate - AppInstall_aggregate_bool_exp
isVerified - Boolean_comparison_exp
lastSeen - Int_comparison_exp
profile - Profile_bool_exp
profile_id - String_comparison_exp
uuid - String_comparison_exp
verifiableUriHash - String_comparison_exp
verifiableUriUrl - String_comparison_exp
verifiedAtBlock - Int_comparison_exp
verifiedAtTime - Int_comparison_exp
Example
{
  "_and": [App_bool_exp],
  "_not": App_bool_exp,
  "_or": [App_bool_exp],
  "claimedAtBlock": Int_comparison_exp,
  "claimedAtTime": Int_comparison_exp,
  "contributors": AppContributor_bool_exp,
  "contributors_aggregate": AppContributor_aggregate_bool_exp,
  "events": AppInstallEvent_bool_exp,
  "events_aggregate": AppInstallEvent_aggregate_bool_exp,
  "firstSeen": Int_comparison_exp,
  "history": AppHistory_bool_exp,
  "history_aggregate": AppHistory_aggregate_bool_exp,
  "id": String_comparison_exp,
  "installCount": Int_comparison_exp,
  "installs": AppInstall_bool_exp,
  "installs_aggregate": AppInstall_aggregate_bool_exp,
  "isVerified": Boolean_comparison_exp,
  "lastSeen": Int_comparison_exp,
  "profile": Profile_bool_exp,
  "profile_id": String_comparison_exp,
  "uuid": String_comparison_exp,
  "verifiableUriHash": String_comparison_exp,
  "verifiableUriUrl": String_comparison_exp,
  "verifiedAtBlock": Int_comparison_exp,
  "verifiedAtTime": Int_comparison_exp
}

App_max_fields

Description

aggregate max on columns

Fields
Field Name Description
claimedAtBlock - Int
claimedAtTime - Int
firstSeen - Int Unix timestamp when domain was first installed
id - String Domain name (e.g. jup.ag, universalswaps.io)
installCount - Int Number of distinct entities with this app currently installed
lastSeen - Int Unix timestamp of most recent installation
profile_id - String Bound Universal Profile address via LSP28MiniApp (NULL if unverified)
uuid - String bytes16(keccak256(domain)) — deterministic app identifier for LSP28MiniApp:Member mapping keys
verifiableUriHash - String Hash that was matched at verification (audit trail)
verifiableUriUrl - String URL of the well-known file matched at verification (audit trail)
verifiedAtBlock - Int
verifiedAtTime - Int
Example
{
  "claimedAtBlock": 987,
  "claimedAtTime": 123,
  "firstSeen": 123,
  "id": "xyz789",
  "installCount": 123,
  "lastSeen": 987,
  "profile_id": "xyz789",
  "uuid": "xyz789",
  "verifiableUriHash": "xyz789",
  "verifiableUriUrl": "abc123",
  "verifiedAtBlock": 123,
  "verifiedAtTime": 987
}

App_min_fields

Description

aggregate min on columns

Fields
Field Name Description
claimedAtBlock - Int
claimedAtTime - Int
firstSeen - Int Unix timestamp when domain was first installed
id - String Domain name (e.g. jup.ag, universalswaps.io)
installCount - Int Number of distinct entities with this app currently installed
lastSeen - Int Unix timestamp of most recent installation
profile_id - String Bound Universal Profile address via LSP28MiniApp (NULL if unverified)
uuid - String bytes16(keccak256(domain)) — deterministic app identifier for LSP28MiniApp:Member mapping keys
verifiableUriHash - String Hash that was matched at verification (audit trail)
verifiableUriUrl - String URL of the well-known file matched at verification (audit trail)
verifiedAtBlock - Int
verifiedAtTime - Int
Example
{
  "claimedAtBlock": 987,
  "claimedAtTime": 123,
  "firstSeen": 123,
  "id": "xyz789",
  "installCount": 123,
  "lastSeen": 987,
  "profile_id": "abc123",
  "uuid": "xyz789",
  "verifiableUriHash": "xyz789",
  "verifiableUriUrl": "xyz789",
  "verifiedAtBlock": 987,
  "verifiedAtTime": 123
}

App_order_by

Description

Ordering options when selecting data from "App".

Fields
Input Field Description
claimedAtBlock - order_by
claimedAtTime - order_by
contributors_aggregate - AppContributor_aggregate_order_by
events_aggregate - AppInstallEvent_aggregate_order_by
firstSeen - order_by
history_aggregate - AppHistory_aggregate_order_by
id - order_by
installCount - order_by
installs_aggregate - AppInstall_aggregate_order_by
isVerified - order_by
lastSeen - order_by
profile - Profile_order_by
profile_id - order_by
uuid - order_by
verifiableUriHash - order_by
verifiableUriUrl - order_by
verifiedAtBlock - order_by
verifiedAtTime - order_by
Example
{
  "claimedAtBlock": "asc",
  "claimedAtTime": "asc",
  "contributors_aggregate": AppContributor_aggregate_order_by,
  "events_aggregate": AppInstallEvent_aggregate_order_by,
  "firstSeen": "asc",
  "history_aggregate": AppHistory_aggregate_order_by,
  "id": "asc",
  "installCount": "asc",
  "installs_aggregate": AppInstall_aggregate_order_by,
  "isVerified": "asc",
  "lastSeen": "asc",
  "profile": Profile_order_by,
  "profile_id": "asc",
  "uuid": "asc",
  "verifiableUriHash": "asc",
  "verifiableUriUrl": "asc",
  "verifiedAtBlock": "asc",
  "verifiedAtTime": "asc"
}

App_select_column

Description

select columns of table "App"

Values
Enum Value Description

claimedAtBlock

column name

claimedAtTime

column name

firstSeen

column name

id

column name

installCount

column name

isVerified

column name

lastSeen

column name

profile_id

column name

uuid

column name

verifiableUriHash

column name

verifiableUriUrl

column name

verifiedAtBlock

column name

verifiedAtTime

column name
Example
"claimedAtBlock"

App_stddev_fields

Description

aggregate stddev on columns

Fields
Field Name Description
claimedAtBlock - Float
claimedAtTime - Float
firstSeen - Float Unix timestamp when domain was first installed
installCount - Float Number of distinct entities with this app currently installed
lastSeen - Float Unix timestamp of most recent installation
verifiedAtBlock - Float
verifiedAtTime - Float
Example
{
  "claimedAtBlock": 987.65,
  "claimedAtTime": 987.65,
  "firstSeen": 123.45,
  "installCount": 987.65,
  "lastSeen": 987.65,
  "verifiedAtBlock": 987.65,
  "verifiedAtTime": 987.65
}

App_stddev_pop_fields

Description

aggregate stddev_pop on columns

Fields
Field Name Description
claimedAtBlock - Float
claimedAtTime - Float
firstSeen - Float Unix timestamp when domain was first installed
installCount - Float Number of distinct entities with this app currently installed
lastSeen - Float Unix timestamp of most recent installation
verifiedAtBlock - Float
verifiedAtTime - Float
Example
{
  "claimedAtBlock": 987.65,
  "claimedAtTime": 123.45,
  "firstSeen": 123.45,
  "installCount": 123.45,
  "lastSeen": 123.45,
  "verifiedAtBlock": 987.65,
  "verifiedAtTime": 123.45
}

App_stddev_samp_fields

Description

aggregate stddev_samp on columns

Fields
Field Name Description
claimedAtBlock - Float
claimedAtTime - Float
firstSeen - Float Unix timestamp when domain was first installed
installCount - Float Number of distinct entities with this app currently installed
lastSeen - Float Unix timestamp of most recent installation
verifiedAtBlock - Float
verifiedAtTime - Float
Example
{
  "claimedAtBlock": 123.45,
  "claimedAtTime": 123.45,
  "firstSeen": 123.45,
  "installCount": 123.45,
  "lastSeen": 123.45,
  "verifiedAtBlock": 123.45,
  "verifiedAtTime": 123.45
}

App_stream_cursor_input

Description

Streaming cursor of the table "App"

Fields
Input Field Description
initial_value - App_stream_cursor_value_input! Stream column input with initial value
ordering - cursor_ordering cursor ordering
Example
{
  "initial_value": App_stream_cursor_value_input,
  "ordering": "ASC"
}

App_stream_cursor_value_input

Description

Initial value of the column from where the streaming should start

Fields
Input Field Description
claimedAtBlock - Int
claimedAtTime - Int
firstSeen - Int Unix timestamp when domain was first installed
id - String Domain name (e.g. jup.ag, universalswaps.io)
installCount - Int Number of distinct entities with this app currently installed
isVerified - Boolean True if a SIWE-verified identity binding exists
lastSeen - Int Unix timestamp of most recent installation
profile_id - String Bound Universal Profile address via LSP28MiniApp (NULL if unverified)
uuid - String bytes16(keccak256(domain)) — deterministic app identifier for LSP28MiniApp:Member mapping keys
verifiableUriHash - String Hash that was matched at verification (audit trail)
verifiableUriUrl - String URL of the well-known file matched at verification (audit trail)
verifiedAtBlock - Int
verifiedAtTime - Int
Example
{
  "claimedAtBlock": 987,
  "claimedAtTime": 123,
  "firstSeen": 987,
  "id": "xyz789",
  "installCount": 123,
  "isVerified": true,
  "lastSeen": 123,
  "profile_id": "abc123",
  "uuid": "xyz789",
  "verifiableUriHash": "xyz789",
  "verifiableUriUrl": "xyz789",
  "verifiedAtBlock": 987,
  "verifiedAtTime": 123
}

App_sum_fields

Description

aggregate sum on columns

Fields
Field Name Description
claimedAtBlock - Int
claimedAtTime - Int
firstSeen - Int Unix timestamp when domain was first installed
installCount - Int Number of distinct entities with this app currently installed
lastSeen - Int Unix timestamp of most recent installation
verifiedAtBlock - Int
verifiedAtTime - Int
Example
{
  "claimedAtBlock": 987,
  "claimedAtTime": 987,
  "firstSeen": 123,
  "installCount": 123,
  "lastSeen": 987,
  "verifiedAtBlock": 987,
  "verifiedAtTime": 123
}

App_var_pop_fields

Description

aggregate var_pop on columns

Fields
Field Name Description
claimedAtBlock - Float
claimedAtTime - Float
firstSeen - Float Unix timestamp when domain was first installed
installCount - Float Number of distinct entities with this app currently installed
lastSeen - Float Unix timestamp of most recent installation
verifiedAtBlock - Float
verifiedAtTime - Float
Example
{
  "claimedAtBlock": 987.65,
  "claimedAtTime": 987.65,
  "firstSeen": 987.65,
  "installCount": 123.45,
  "lastSeen": 987.65,
  "verifiedAtBlock": 123.45,
  "verifiedAtTime": 123.45
}

App_var_samp_fields

Description

aggregate var_samp on columns

Fields
Field Name Description
claimedAtBlock - Float
claimedAtTime - Float
firstSeen - Float Unix timestamp when domain was first installed
installCount - Float Number of distinct entities with this app currently installed
lastSeen - Float Unix timestamp of most recent installation
verifiedAtBlock - Float
verifiedAtTime - Float
Example
{
  "claimedAtBlock": 123.45,
  "claimedAtTime": 987.65,
  "firstSeen": 987.65,
  "installCount": 123.45,
  "lastSeen": 987.65,
  "verifiedAtBlock": 123.45,
  "verifiedAtTime": 123.45
}

App_variance_fields

Description

aggregate variance on columns

Fields
Field Name Description
claimedAtBlock - Float
claimedAtTime - Float
firstSeen - Float Unix timestamp when domain was first installed
installCount - Float Number of distinct entities with this app currently installed
lastSeen - Float Unix timestamp of most recent installation
verifiedAtBlock - Float
verifiedAtTime - Float
Example
{
  "claimedAtBlock": 123.45,
  "claimedAtTime": 123.45,
  "firstSeen": 123.45,
  "installCount": 123.45,
  "lastSeen": 987.65,
  "verifiedAtBlock": 123.45,
  "verifiedAtTime": 987.65
}

Asset

Description

columns and relationships of "Asset"

Fields
Field Name Description
appHistory - [AppHistory!]! An array relationship
Arguments
distinct_on - [AppHistory_select_column!]

distinct select on columns

limit - Int

limit the number of rows returned

offset - Int

skip the first n rows. Use only with order_by

order_by - [AppHistory_order_by!]

sort the rows by one or more columns

where - AppHistory_bool_exp

filter the rows returned

appHistory_aggregate - AppHistory_aggregate! An aggregate relationship
Arguments
distinct_on - [AppHistory_select_column!]

distinct select on columns

limit - Int

limit the number of rows returned

offset - Int

skip the first n rows. Use only with order_by

order_by - [AppHistory_order_by!]

sort the rows by one or more columns

where - AppHistory_bool_exp

filter the rows returned

appInstalls - [AppInstall!]! An array relationship
Arguments
distinct_on - [AppInstall_select_column!]

distinct select on columns

limit - Int

limit the number of rows returned

offset - Int

skip the first n rows. Use only with order_by

order_by - [AppInstall_order_by!]

sort the rows by one or more columns

where - AppInstall_bool_exp

filter the rows returned

appInstalls_aggregate - AppInstall_aggregate! An aggregate relationship
Arguments
distinct_on - [AppInstall_select_column!]

distinct select on columns

limit - Int

limit the number of rows returned

offset - Int

skip the first n rows. Use only with order_by

order_by - [AppInstall_order_by!]

sort the rows by one or more columns

where - AppInstall_bool_exp

filter the rows returned

assets - [AssetAssetURL!]! An array relationship
Arguments
distinct_on - [AssetAssetURL_select_column!]

distinct select on columns

limit - Int

limit the number of rows returned

offset - Int

skip the first n rows. Use only with order_by

order_by - [AssetAssetURL_order_by!]

sort the rows by one or more columns

where - AssetAssetURL_bool_exp

filter the rows returned

assets_ - [String!]
assets_aggregate - AssetAssetURL_aggregate! An aggregate relationship
Arguments
distinct_on - [AssetAssetURL_select_column!]

distinct select on columns

limit - Int

limit the number of rows returned

offset - Int

skip the first n rows. Use only with order_by

order_by - [AssetAssetURL_order_by!]

sort the rows by one or more columns

where - AssetAssetURL_bool_exp

filter the rows returned

attributes - [AssetAttribute!]! An array relationship
Arguments
distinct_on - [AssetAttribute_select_column!]

distinct select on columns

limit - Int

limit the number of rows returned

offset - Int

skip the first n rows. Use only with order_by

order_by - [AssetAttribute_order_by!]

sort the rows by one or more columns

where - AssetAttribute_bool_exp

filter the rows returned

attributes_ - [String!]
attributes_aggregate - AssetAttribute_aggregate! An aggregate relationship
Arguments
distinct_on - [AssetAttribute_select_column!]

distinct select on columns

limit - Int

limit the number of rows returned

offset - Int

skip the first n rows. Use only with order_by

order_by - [AssetAttribute_order_by!]

sort the rows by one or more columns

where - AssetAttribute_bool_exp

filter the rows returned

backgroundImages - [AssetBackgroundImageURL!]! An array relationship
Arguments
distinct_on - [AssetBackgroundImageURL_select_column!]

distinct select on columns

limit - Int

limit the number of rows returned

offset - Int

skip the first n rows. Use only with order_by

order_by - [AssetBackgroundImageURL_order_by!]

sort the rows by one or more columns

where - AssetBackgroundImageURL_bool_exp

filter the rows returned

backgroundImages_ - [String!]
baseHolders - [Hold!]! An array relationship
Arguments
distinct_on - [Hold_select_column!]

distinct select on columns

limit - Int

limit the number of rows returned

offset - Int

skip the first n rows. Use only with order_by

order_by - [Hold_order_by!]

sort the rows by one or more columns

where - Hold_bool_exp

filter the rows returned

baseHolders_aggregate - Hold_aggregate! An aggregate relationship
Arguments
distinct_on - [Hold_select_column!]

distinct select on columns

limit - Int

limit the number of rows returned

offset - Int

skip the first n rows. Use only with order_by

order_by - [Hold_order_by!]

sort the rows by one or more columns

where - Hold_bool_exp

filter the rows returned

blockNumber - Int!
category - String
createdBlockNumber - Int!
createdTimestamp - Int!
createdTransactionIndex - Int!
data - String
db_write_timestamp - timestamp
decimals - Int
description - String
error - String
holders - [Hold!]! An array relationship
Arguments
distinct_on - [Hold_select_column!]

distinct select on columns

limit - Int

limit the number of rows returned

offset - Int

skip the first n rows. Use only with order_by

order_by - [Hold_order_by!]

sort the rows by one or more columns

where - Hold_bool_exp

filter the rows returned

holders_aggregate - Hold_aggregate! An aggregate relationship
Arguments
distinct_on - [Hold_select_column!]

distinct select on columns

limit - Int

limit the number of rows returned

offset - Int

skip the first n rows. Use only with order_by

order_by - [Hold_order_by!]

sort the rows by one or more columns

where - Hold_bool_exp

filter the rows returned

icons - [AssetIconURL!]! An array relationship
Arguments
distinct_on - [AssetIconURL_select_column!]

distinct select on columns

limit - Int

limit the number of rows returned

offset - Int

skip the first n rows. Use only with order_by

order_by - [AssetIconURL_order_by!]

sort the rows by one or more columns

where - AssetIconURL_bool_exp

filter the rows returned

icons_ - [String!]
icons_aggregate - AssetIconURL_aggregate! An aggregate relationship
Arguments
distinct_on - [AssetIconURL_select_column!]

distinct select on columns

limit - Int

limit the number of rows returned

offset - Int

skip the first n rows. Use only with order_by

order_by - [AssetIconURL_order_by!]

sort the rows by one or more columns

where - AssetIconURL_bool_exp

filter the rows returned

id - String!
images - [AssetImageURL!]! An array relationship
Arguments
distinct_on - [AssetImageURL_select_column!]

distinct select on columns

limit - Int

limit the number of rows returned

offset - Int

skip the first n rows. Use only with order_by

order_by - [AssetImageURL_order_by!]

sort the rows by one or more columns

where - AssetImageURL_bool_exp

filter the rows returned

images_ - [String!]
images_aggregate - AssetImageURL_aggregate! An aggregate relationship
Arguments
distinct_on - [AssetImageURL_select_column!]

distinct select on columns

limit - Int

limit the number of rows returned

offset - Int

skip the first n rows. Use only with order_by

order_by - [AssetImageURL_order_by!]

sort the rows by one or more columns

where - AssetImageURL_bool_exp

filter the rows returned

interfaces - [String!]
isCollection - Boolean
isLSP7 - Boolean
isUnknown - Boolean
links - [AssetLink!]! An array relationship
Arguments
distinct_on - [AssetLink_select_column!]

distinct select on columns

limit - Int

limit the number of rows returned

offset - Int

skip the first n rows. Use only with order_by

order_by - [AssetLink_order_by!]

sort the rows by one or more columns

where - AssetLink_bool_exp

filter the rows returned

links_ - [String!]
links_aggregate - AssetLink_aggregate! An aggregate relationship
Arguments
distinct_on - [AssetLink_select_column!]

distinct select on columns

limit - Int

limit the number of rows returned

offset - Int

skip the first n rows. Use only with order_by

order_by - [AssetLink_order_by!]

sort the rows by one or more columns

where - AssetLink_bool_exp

filter the rows returned

lsp4Creators - [AssetCreators!]! An array relationship
Arguments
distinct_on - [AssetCreators_select_column!]

distinct select on columns

limit - Int

limit the number of rows returned

offset - Int

skip the first n rows. Use only with order_by

order_by - [AssetCreators_order_by!]

sort the rows by one or more columns

where - AssetCreators_bool_exp

filter the rows returned

lsp4CreatorsMap - [AssetCreators!]! An array relationship
Arguments
distinct_on - [AssetCreators_select_column!]

distinct select on columns

limit - Int

limit the number of rows returned

offset - Int

skip the first n rows. Use only with order_by

order_by - [AssetCreators_order_by!]

sort the rows by one or more columns

where - AssetCreators_bool_exp

filter the rows returned

lsp4CreatorsMap_aggregate - AssetCreators_aggregate! An aggregate relationship
Arguments
distinct_on - [AssetCreators_select_column!]

distinct select on columns

limit - Int

limit the number of rows returned

offset - Int

skip the first n rows. Use only with order_by

order_by - [AssetCreators_order_by!]

sort the rows by one or more columns

where - AssetCreators_bool_exp

filter the rows returned

lsp4Creators_ - [String!]
lsp4Creators_aggregate - AssetCreators_aggregate! An aggregate relationship
Arguments
distinct_on - [AssetCreators_select_column!]

distinct select on columns

limit - Int

limit the number of rows returned

offset - Int

skip the first n rows. Use only with order_by

order_by - [AssetCreators_order_by!]

sort the rows by one or more columns

where - AssetCreators_bool_exp

filter the rows returned

lsp4TokenName - String
lsp4TokenSymbol - String
lsp4TokenType - Int
lsp8ReferenceContract - Asset An object relationship
lsp8ReferenceContractSelf - String
lsp8ReferenceContract_id - String
lsp8TokenIdFormat - Int
lsp8TokenMetadataBaseUri - String
method - String
name - String
owner - Profile An object relationship
owner_id - String
src - String
standard - standards!
supportedStandardsLsp4DigitalAsset - Boolean
tokens - [Token!]! An array relationship
Arguments
distinct_on - [Token_select_column!]

distinct select on columns

limit - Int

limit the number of rows returned

offset - Int

skip the first n rows. Use only with order_by

order_by - [Token_order_by!]

sort the rows by one or more columns

where - Token_bool_exp

filter the rows returned

tokens_aggregate - Token_aggregate! An aggregate relationship
Arguments
distinct_on - [Token_select_column!]

distinct select on columns

limit - Int

limit the number of rows returned

offset - Int

skip the first n rows. Use only with order_by

order_by - [Token_order_by!]

sort the rows by one or more columns

where - Token_bool_exp

filter the rows returned

totalSupply - numeric
transfers - [Transfer!]! An array relationship
Arguments
distinct_on - [Transfer_select_column!]

distinct select on columns

limit - Int

limit the number of rows returned

offset - Int

skip the first n rows. Use only with order_by

order_by - [Transfer_order_by!]

sort the rows by one or more columns

where - Transfer_bool_exp

filter the rows returned

transfers_aggregate - Transfer_aggregate! An aggregate relationship
Arguments
distinct_on - [Transfer_select_column!]

distinct select on columns

limit - Int

limit the number of rows returned

offset - Int

skip the first n rows. Use only with order_by

order_by - [Transfer_order_by!]

sort the rows by one or more columns

where - Transfer_bool_exp

filter the rows returned

updatedBlockNumber - Int
updatedTimestamp - Int
updatedTransactionIndex - Int
url - String
Example
{
  "appHistory": [AppHistory],
  "appHistory_aggregate": AppHistory_aggregate,
  "appInstalls": [AppInstall],
  "appInstalls_aggregate": AppInstall_aggregate,
  "assets": [AssetAssetURL],
  "assets_": ["abc123"],
  "assets_aggregate": AssetAssetURL_aggregate,
  "attributes": [AssetAttribute],
  "attributes_": ["xyz789"],
  "attributes_aggregate": AssetAttribute_aggregate,
  "backgroundImages": [AssetBackgroundImageURL],
  "backgroundImages_": ["xyz789"],
  "baseHolders": [Hold],
  "baseHolders_aggregate": Hold_aggregate,
  "blockNumber": 123,
  "category": "xyz789",
  "createdBlockNumber": 987,
  "createdTimestamp": 987,
  "createdTransactionIndex": 987,
  "data": "abc123",
  "db_write_timestamp": timestamp,
  "decimals": 987,
  "description": "abc123",
  "error": "abc123",
  "holders": [Hold],
  "holders_aggregate": Hold_aggregate,
  "icons": [AssetIconURL],
  "icons_": ["xyz789"],
  "icons_aggregate": AssetIconURL_aggregate,
  "id": "xyz789",
  "images": [AssetImageURL],
  "images_": ["xyz789"],
  "images_aggregate": AssetImageURL_aggregate,
  "interfaces": ["abc123"],
  "isCollection": false,
  "isLSP7": false,
  "isUnknown": false,
  "links": [AssetLink],
  "links_": ["abc123"],
  "links_aggregate": AssetLink_aggregate,
  "lsp4Creators": [AssetCreators],
  "lsp4CreatorsMap": [AssetCreators],
  "lsp4CreatorsMap_aggregate": AssetCreators_aggregate,
  "lsp4Creators_": ["xyz789"],
  "lsp4Creators_aggregate": AssetCreators_aggregate,
  "lsp4TokenName": "abc123",
  "lsp4TokenSymbol": "xyz789",
  "lsp4TokenType": 987,
  "lsp8ReferenceContract": Asset,
  "lsp8ReferenceContractSelf": "abc123",
  "lsp8ReferenceContract_id": "abc123",
  "lsp8TokenIdFormat": 123,
  "lsp8TokenMetadataBaseUri": "abc123",
  "method": "abc123",
  "name": "abc123",
  "owner": Profile,
  "owner_id": "abc123",
  "src": "abc123",
  "standard": standards,
  "supportedStandardsLsp4DigitalAsset": false,
  "tokens": [Token],
  "tokens_aggregate": Token_aggregate,
  "totalSupply": numeric,
  "transfers": [Transfer],
  "transfers_aggregate": Transfer_aggregate,
  "updatedBlockNumber": 123,
  "updatedTimestamp": 123,
  "updatedTransactionIndex": 987,
  "url": "xyz789"
}

AssetAssetURL

Description

columns and relationships of "AssetAssetURL"

Fields
Field Name Description
asset - Asset An object relationship
asset_id - String!
blockNumber - Int!
contentAsset - Asset An object relationship
contentAsset_id - String
contentToken - Token An object relationship
contentToken_id - String
data - String
db_write_timestamp - timestamp
error - String
fileType - String
height - Int
id - String!
method - String
src - String
url - String
verified - verificationstatus!
width - Int
Example
{
  "asset": Asset,
  "asset_id": "xyz789",
  "blockNumber": 987,
  "contentAsset": Asset,
  "contentAsset_id": "abc123",
  "contentToken": Token,
  "contentToken_id": "xyz789",
  "data": "xyz789",
  "db_write_timestamp": timestamp,
  "error": "xyz789",
  "fileType": "abc123",
  "height": 987,
  "id": "abc123",
  "method": "abc123",
  "src": "xyz789",
  "url": "xyz789",
  "verified": verificationstatus,
  "width": 987
}

AssetAssetURL_aggregate

Description

aggregated selection of "AssetAssetURL"

Fields
Field Name Description
aggregate - AssetAssetURL_aggregate_fields
nodes - [AssetAssetURL!]!
Example
{
  "aggregate": AssetAssetURL_aggregate_fields,
  "nodes": [AssetAssetURL]
}

AssetAssetURL_aggregate_bool_exp

Fields
Input Field Description
count - AssetAssetURL_aggregate_bool_exp_count
Example
{"count": AssetAssetURL_aggregate_bool_exp_count}

AssetAssetURL_aggregate_bool_exp_count

Fields
Input Field Description
arguments - [AssetAssetURL_select_column!]
distinct - Boolean
filter - AssetAssetURL_bool_exp
predicate - Int_comparison_exp!
Example
{
  "arguments": ["asset_id"],
  "distinct": true,
  "filter": AssetAssetURL_bool_exp,
  "predicate": Int_comparison_exp
}

AssetAssetURL_aggregate_fields

Description

aggregate fields of "AssetAssetURL"

Example
{
  "avg": AssetAssetURL_avg_fields,
  "count": 987,
  "max": AssetAssetURL_max_fields,
  "min": AssetAssetURL_min_fields,
  "stddev": AssetAssetURL_stddev_fields,
  "stddev_pop": AssetAssetURL_stddev_pop_fields,
  "stddev_samp": AssetAssetURL_stddev_samp_fields,
  "sum": AssetAssetURL_sum_fields,
  "var_pop": AssetAssetURL_var_pop_fields,
  "var_samp": AssetAssetURL_var_samp_fields,
  "variance": AssetAssetURL_variance_fields
}

AssetAssetURL_aggregate_order_by

Description

order by aggregate values of table "AssetAssetURL"

Example
{
  "avg": AssetAssetURL_avg_order_by,
  "count": "asc",
  "max": AssetAssetURL_max_order_by,
  "min": AssetAssetURL_min_order_by,
  "stddev": AssetAssetURL_stddev_order_by,
  "stddev_pop": AssetAssetURL_stddev_pop_order_by,
  "stddev_samp": AssetAssetURL_stddev_samp_order_by,
  "sum": AssetAssetURL_sum_order_by,
  "var_pop": AssetAssetURL_var_pop_order_by,
  "var_samp": AssetAssetURL_var_samp_order_by,
  "variance": AssetAssetURL_variance_order_by
}

AssetAssetURL_avg_fields

Description

aggregate avg on columns

Fields
Field Name Description
blockNumber - Float
height - Float
width - Float
Example
{"blockNumber": 123.45, "height": 987.65, "width": 123.45}

AssetAssetURL_avg_order_by

Description

order by avg() on columns of table "AssetAssetURL"

Fields
Input Field Description
blockNumber - order_by
height - order_by
width - order_by
Example
{"blockNumber": "asc", "height": "asc", "width": "asc"}

AssetAssetURL_bool_exp

Description

Boolean expression to filter rows from the table "AssetAssetURL". All fields are combined with a logical 'AND'.

Example
{
  "_and": [AssetAssetURL_bool_exp],
  "_not": AssetAssetURL_bool_exp,
  "_or": [AssetAssetURL_bool_exp],
  "asset": Asset_bool_exp,
  "asset_id": String_comparison_exp,
  "blockNumber": Int_comparison_exp,
  "contentAsset": Asset_bool_exp,
  "contentAsset_id": String_comparison_exp,
  "contentToken": Token_bool_exp,
  "contentToken_id": String_comparison_exp,
  "data": String_comparison_exp,
  "db_write_timestamp": timestamp_comparison_exp,
  "error": String_comparison_exp,
  "fileType": String_comparison_exp,
  "height": Int_comparison_exp,
  "id": String_comparison_exp,
  "method": String_comparison_exp,
  "src": String_comparison_exp,
  "url": String_comparison_exp,
  "verified": verificationstatus_comparison_exp,
  "width": Int_comparison_exp
}

AssetAssetURL_max_fields

Description

aggregate max on columns

Fields
Field Name Description
asset_id - String
blockNumber - Int
contentAsset_id - String
contentToken_id - String
data - String
db_write_timestamp - timestamp
error - String
fileType - String
height - Int
id - String
method - String
src - String
url - String
verified - verificationstatus
width - Int
Example
{
  "asset_id": "abc123",
  "blockNumber": 123,
  "contentAsset_id": "abc123",
  "contentToken_id": "abc123",
  "data": "abc123",
  "db_write_timestamp": timestamp,
  "error": "abc123",
  "fileType": "abc123",
  "height": 987,
  "id": "abc123",
  "method": "abc123",
  "src": "xyz789",
  "url": "xyz789",
  "verified": verificationstatus,
  "width": 987
}

AssetAssetURL_max_order_by

Description

order by max() on columns of table "AssetAssetURL"

Fields
Input Field Description
asset_id - order_by
blockNumber - order_by
contentAsset_id - order_by
contentToken_id - order_by
data - order_by
db_write_timestamp - order_by
error - order_by
fileType - order_by
height - order_by
id - order_by
method - order_by
src - order_by
url - order_by
verified - order_by
width - order_by
Example
{
  "asset_id": "asc",
  "blockNumber": "asc",
  "contentAsset_id": "asc",
  "contentToken_id": "asc",
  "data": "asc",
  "db_write_timestamp": "asc",
  "error": "asc",
  "fileType": "asc",
  "height": "asc",
  "id": "asc",
  "method": "asc",
  "src": "asc",
  "url": "asc",
  "verified": "asc",
  "width": "asc"
}

AssetAssetURL_min_fields

Description

aggregate min on columns

Fields
Field Name Description
asset_id - String
blockNumber - Int
contentAsset_id - String
contentToken_id - String
data - String
db_write_timestamp - timestamp
error - String
fileType - String
height - Int
id - String
method - String
src - String
url - String
verified - verificationstatus
width - Int
Example
{
  "asset_id": "xyz789",
  "blockNumber": 123,
  "contentAsset_id": "abc123",
  "contentToken_id": "xyz789",
  "data": "xyz789",
  "db_write_timestamp": timestamp,
  "error": "xyz789",
  "fileType": "xyz789",
  "height": 987,
  "id": "abc123",
  "method": "abc123",
  "src": "xyz789",
  "url": "xyz789",
  "verified": verificationstatus,
  "width": 987
}

AssetAssetURL_min_order_by

Description

order by min() on columns of table "AssetAssetURL"

Fields
Input Field Description
asset_id - order_by
blockNumber - order_by
contentAsset_id - order_by
contentToken_id - order_by
data - order_by
db_write_timestamp - order_by
error - order_by
fileType - order_by
height - order_by
id - order_by
method - order_by
src - order_by
url - order_by
verified - order_by
width - order_by
Example
{
  "asset_id": "asc",
  "blockNumber": "asc",
  "contentAsset_id": "asc",
  "contentToken_id": "asc",
  "data": "asc",
  "db_write_timestamp": "asc",
  "error": "asc",
  "fileType": "asc",
  "height": "asc",
  "id": "asc",
  "method": "asc",
  "src": "asc",
  "url": "asc",
  "verified": "asc",
  "width": "asc"
}

AssetAssetURL_order_by

Description

Ordering options when selecting data from "AssetAssetURL".

Fields
Input Field Description
asset - Asset_order_by
asset_id - order_by
blockNumber - order_by
contentAsset - Asset_order_by
contentAsset_id - order_by
contentToken - Token_order_by
contentToken_id - order_by
data - order_by
db_write_timestamp - order_by
error - order_by
fileType - order_by
height - order_by
id - order_by
method - order_by
src - order_by
url - order_by
verified - order_by
width - order_by
Example
{
  "asset": Asset_order_by,
  "asset_id": "asc",
  "blockNumber": "asc",
  "contentAsset": Asset_order_by,
  "contentAsset_id": "asc",
  "contentToken": Token_order_by,
  "contentToken_id": "asc",
  "data": "asc",
  "db_write_timestamp": "asc",
  "error": "asc",
  "fileType": "asc",
  "height": "asc",
  "id": "asc",
  "method": "asc",
  "src": "asc",
  "url": "asc",
  "verified": "asc",
  "width": "asc"
}

AssetAssetURL_select_column

Description

select columns of table "AssetAssetURL"

Values
Enum Value Description

asset_id

column name

blockNumber

column name

contentAsset_id

column name

contentToken_id

column name

data

column name

db_write_timestamp

column name

error

column name

fileType

column name

height

column name

id

column name

method

column name

src

column name

url

column name

verified

column name

width

column name
Example
"asset_id"

AssetAssetURL_stddev_fields

Description

aggregate stddev on columns

Fields
Field Name Description
blockNumber - Float
height - Float
width - Float
Example
{"blockNumber": 123.45, "height": 987.65, "width": 123.45}

AssetAssetURL_stddev_order_by

Description

order by stddev() on columns of table "AssetAssetURL"

Fields
Input Field Description
blockNumber - order_by
height - order_by
width - order_by
Example
{"blockNumber": "asc", "height": "asc", "width": "asc"}

AssetAssetURL_stddev_pop_fields

Description

aggregate stddev_pop on columns

Fields
Field Name Description
blockNumber - Float
height - Float
width - Float
Example
{"blockNumber": 987.65, "height": 987.65, "width": 123.45}

AssetAssetURL_stddev_pop_order_by

Description

order by stddev_pop() on columns of table "AssetAssetURL"

Fields
Input Field Description
blockNumber - order_by
height - order_by
width - order_by
Example
{"blockNumber": "asc", "height": "asc", "width": "asc"}

AssetAssetURL_stddev_samp_fields

Description

aggregate stddev_samp on columns

Fields
Field Name Description
blockNumber - Float
height - Float
width - Float
Example
{"blockNumber": 123.45, "height": 123.45, "width": 123.45}

AssetAssetURL_stddev_samp_order_by

Description

order by stddev_samp() on columns of table "AssetAssetURL"

Fields
Input Field Description
blockNumber - order_by
height - order_by
width - order_by
Example
{"blockNumber": "asc", "height": "asc", "width": "asc"}

AssetAssetURL_stream_cursor_input

Description

Streaming cursor of the table "AssetAssetURL"

Fields
Input Field Description
initial_value - AssetAssetURL_stream_cursor_value_input! Stream column input with initial value
ordering - cursor_ordering cursor ordering
Example
{
  "initial_value": AssetAssetURL_stream_cursor_value_input,
  "ordering": "ASC"
}

AssetAssetURL_stream_cursor_value_input

Description

Initial value of the column from where the streaming should start

Fields
Input Field Description
asset_id - String
blockNumber - Int
contentAsset_id - String
contentToken_id - String
data - String
db_write_timestamp - timestamp
error - String
fileType - String
height - Int
id - String
method - String
src - String
url - String
verified - verificationstatus
width - Int
Example
{
  "asset_id": "abc123",
  "blockNumber": 123,
  "contentAsset_id": "abc123",
  "contentToken_id": "xyz789",
  "data": "xyz789",
  "db_write_timestamp": timestamp,
  "error": "xyz789",
  "fileType": "xyz789",
  "height": 987,
  "id": "xyz789",
  "method": "abc123",
  "src": "abc123",
  "url": "xyz789",
  "verified": verificationstatus,
  "width": 123
}

AssetAssetURL_sum_fields

Description

aggregate sum on columns

Fields
Field Name Description
blockNumber - Int
height - Int
width - Int
Example
{"blockNumber": 123, "height": 987, "width": 987}

AssetAssetURL_sum_order_by

Description

order by sum() on columns of table "AssetAssetURL"

Fields
Input Field Description
blockNumber - order_by
height - order_by
width - order_by
Example
{"blockNumber": "asc", "height": "asc", "width": "asc"}

AssetAssetURL_var_pop_fields

Description

aggregate var_pop on columns

Fields
Field Name Description
blockNumber - Float
height - Float
width - Float
Example
{"blockNumber": 123.45, "height": 123.45, "width": 123.45}

AssetAssetURL_var_pop_order_by

Description

order by var_pop() on columns of table "AssetAssetURL"

Fields
Input Field Description
blockNumber - order_by
height - order_by
width - order_by
Example
{"blockNumber": "asc", "height": "asc", "width": "asc"}

AssetAssetURL_var_samp_fields

Description

aggregate var_samp on columns

Fields
Field Name Description
blockNumber - Float
height - Float
width - Float
Example
{"blockNumber": 987.65, "height": 987.65, "width": 123.45}

AssetAssetURL_var_samp_order_by

Description

order by var_samp() on columns of table "AssetAssetURL"

Fields
Input Field Description
blockNumber - order_by
height - order_by
width - order_by
Example
{"blockNumber": "asc", "height": "asc", "width": "asc"}

AssetAssetURL_variance_fields

Description

aggregate variance on columns

Fields
Field Name Description
blockNumber - Float
height - Float
width - Float
Example
{"blockNumber": 123.45, "height": 987.65, "width": 123.45}

AssetAssetURL_variance_order_by

Description

order by variance() on columns of table "AssetAssetURL"

Fields
Input Field Description
blockNumber - order_by
height - order_by
width - order_by
Example
{"blockNumber": "asc", "height": "asc", "width": "asc"}

AssetAttribute

Description

columns and relationships of "AssetAttribute"

Fields
Field Name Description
asset - Asset An object relationship
asset_id - String!
attributeType - String
blockNumber - Int!
db_write_timestamp - timestamp
id - String!
key - String
value - String
Example
{
  "asset": Asset,
  "asset_id": "xyz789",
  "attributeType": "abc123",
  "blockNumber": 987,
  "db_write_timestamp": timestamp,
  "id": "xyz789",
  "key": "xyz789",
  "value": "xyz789"
}

AssetAttribute_aggregate

Description

aggregated selection of "AssetAttribute"

Fields
Field Name Description
aggregate - AssetAttribute_aggregate_fields
nodes - [AssetAttribute!]!
Example
{
  "aggregate": AssetAttribute_aggregate_fields,
  "nodes": [AssetAttribute]
}

AssetAttribute_aggregate_bool_exp

Fields
Input Field Description
count - AssetAttribute_aggregate_bool_exp_count
Example
{"count": AssetAttribute_aggregate_bool_exp_count}

AssetAttribute_aggregate_bool_exp_count

Fields
Input Field Description
arguments - [AssetAttribute_select_column!]
distinct - Boolean
filter - AssetAttribute_bool_exp
predicate - Int_comparison_exp!
Example
{
  "arguments": ["asset_id"],
  "distinct": true,
  "filter": AssetAttribute_bool_exp,
  "predicate": Int_comparison_exp
}

AssetAttribute_aggregate_fields

Description

aggregate fields of "AssetAttribute"

Example
{
  "avg": AssetAttribute_avg_fields,
  "count": 987,
  "max": AssetAttribute_max_fields,
  "min": AssetAttribute_min_fields,
  "stddev": AssetAttribute_stddev_fields,
  "stddev_pop": AssetAttribute_stddev_pop_fields,
  "stddev_samp": AssetAttribute_stddev_samp_fields,
  "sum": AssetAttribute_sum_fields,
  "var_pop": AssetAttribute_var_pop_fields,
  "var_samp": AssetAttribute_var_samp_fields,
  "variance": AssetAttribute_variance_fields
}

AssetAttribute_aggregate_order_by

Description

order by aggregate values of table "AssetAttribute"

Example
{
  "avg": AssetAttribute_avg_order_by,
  "count": "asc",
  "max": AssetAttribute_max_order_by,
  "min": AssetAttribute_min_order_by,
  "stddev": AssetAttribute_stddev_order_by,
  "stddev_pop": AssetAttribute_stddev_pop_order_by,
  "stddev_samp": AssetAttribute_stddev_samp_order_by,
  "sum": AssetAttribute_sum_order_by,
  "var_pop": AssetAttribute_var_pop_order_by,
  "var_samp": AssetAttribute_var_samp_order_by,
  "variance": AssetAttribute_variance_order_by
}

AssetAttribute_avg_fields

Description

aggregate avg on columns

Fields
Field Name Description
blockNumber - Float
Example
{"blockNumber": 123.45}

AssetAttribute_avg_order_by

Description

order by avg() on columns of table "AssetAttribute"

Fields
Input Field Description
blockNumber - order_by
Example
{"blockNumber": "asc"}

AssetAttribute_bool_exp

Description

Boolean expression to filter rows from the table "AssetAttribute". All fields are combined with a logical 'AND'.

Example
{
  "_and": [AssetAttribute_bool_exp],
  "_not": AssetAttribute_bool_exp,
  "_or": [AssetAttribute_bool_exp],
  "asset": Asset_bool_exp,
  "asset_id": String_comparison_exp,
  "attributeType": String_comparison_exp,
  "blockNumber": Int_comparison_exp,
  "db_write_timestamp": timestamp_comparison_exp,
  "id": String_comparison_exp,
  "key": String_comparison_exp,
  "value": String_comparison_exp
}

AssetAttribute_max_fields

Description

aggregate max on columns

Fields
Field Name Description
asset_id - String
attributeType - String
blockNumber - Int
db_write_timestamp - timestamp
id - String
key - String
value - String
Example
{
  "asset_id": "abc123",
  "attributeType": "abc123",
  "blockNumber": 123,
  "db_write_timestamp": timestamp,
  "id": "xyz789",
  "key": "xyz789",
  "value": "abc123"
}

AssetAttribute_max_order_by

Description

order by max() on columns of table "AssetAttribute"

Fields
Input Field Description
asset_id - order_by
attributeType - order_by
blockNumber - order_by
db_write_timestamp - order_by
id - order_by
key - order_by
value - order_by
Example
{
  "asset_id": "asc",
  "attributeType": "asc",
  "blockNumber": "asc",
  "db_write_timestamp": "asc",
  "id": "asc",
  "key": "asc",
  "value": "asc"
}

AssetAttribute_min_fields

Description

aggregate min on columns

Fields
Field Name Description
asset_id - String
attributeType - String
blockNumber - Int
db_write_timestamp - timestamp
id - String
key - String
value - String
Example
{
  "asset_id": "xyz789",
  "attributeType": "abc123",
  "blockNumber": 123,
  "db_write_timestamp": timestamp,
  "id": "abc123",
  "key": "abc123",
  "value": "xyz789"
}

AssetAttribute_min_order_by

Description

order by min() on columns of table "AssetAttribute"

Fields
Input Field Description
asset_id - order_by
attributeType - order_by
blockNumber - order_by
db_write_timestamp - order_by
id - order_by
key - order_by
value - order_by
Example
{
  "asset_id": "asc",
  "attributeType": "asc",
  "blockNumber": "asc",
  "db_write_timestamp": "asc",
  "id": "asc",
  "key": "asc",
  "value": "asc"
}

AssetAttribute_order_by

Description

Ordering options when selecting data from "AssetAttribute".

Fields
Input Field Description
asset - Asset_order_by
asset_id - order_by
attributeType - order_by
blockNumber - order_by
db_write_timestamp - order_by
id - order_by
key - order_by
value - order_by
Example
{
  "asset": Asset_order_by,
  "asset_id": "asc",
  "attributeType": "asc",
  "blockNumber": "asc",
  "db_write_timestamp": "asc",
  "id": "asc",
  "key": "asc",
  "value": "asc"
}

AssetAttribute_select_column

Description

select columns of table "AssetAttribute"

Values
Enum Value Description

asset_id

column name

attributeType

column name

blockNumber

column name

db_write_timestamp

column name

id

column name

key

column name

value

column name
Example
"asset_id"

AssetAttribute_stddev_fields

Description

aggregate stddev on columns

Fields
Field Name Description
blockNumber - Float
Example
{"blockNumber": 123.45}

AssetAttribute_stddev_order_by

Description

order by stddev() on columns of table "AssetAttribute"

Fields
Input Field Description
blockNumber - order_by
Example
{"blockNumber": "asc"}

AssetAttribute_stddev_pop_fields

Description

aggregate stddev_pop on columns

Fields
Field Name Description
blockNumber - Float
Example
{"blockNumber": 987.65}

AssetAttribute_stddev_pop_order_by

Description

order by stddev_pop() on columns of table "AssetAttribute"

Fields
Input Field Description
blockNumber - order_by
Example
{"blockNumber": "asc"}

AssetAttribute_stddev_samp_fields

Description

aggregate stddev_samp on columns

Fields
Field Name Description
blockNumber - Float
Example
{"blockNumber": 123.45}

AssetAttribute_stddev_samp_order_by

Description

order by stddev_samp() on columns of table "AssetAttribute"

Fields
Input Field Description
blockNumber - order_by
Example
{"blockNumber": "asc"}

AssetAttribute_stream_cursor_input

Description

Streaming cursor of the table "AssetAttribute"

Fields
Input Field Description
initial_value - AssetAttribute_stream_cursor_value_input! Stream column input with initial value
ordering - cursor_ordering cursor ordering
Example
{
  "initial_value": AssetAttribute_stream_cursor_value_input,
  "ordering": "ASC"
}

AssetAttribute_stream_cursor_value_input

Description

Initial value of the column from where the streaming should start

Fields
Input Field Description
asset_id - String
attributeType - String
blockNumber - Int
db_write_timestamp - timestamp
id - String
key - String
value - String
Example
{
  "asset_id": "abc123",
  "attributeType": "abc123",
  "blockNumber": 123,
  "db_write_timestamp": timestamp,
  "id": "abc123",
  "key": "xyz789",
  "value": "xyz789"
}

AssetAttribute_sum_fields

Description

aggregate sum on columns

Fields
Field Name Description
blockNumber - Int
Example
{"blockNumber": 123}

AssetAttribute_sum_order_by

Description

order by sum() on columns of table "AssetAttribute"

Fields
Input Field Description
blockNumber - order_by
Example
{"blockNumber": "asc"}

AssetAttribute_var_pop_fields

Description

aggregate var_pop on columns

Fields
Field Name Description
blockNumber - Float
Example
{"blockNumber": 987.65}

AssetAttribute_var_pop_order_by

Description

order by var_pop() on columns of table "AssetAttribute"

Fields
Input Field Description
blockNumber - order_by
Example
{"blockNumber": "asc"}

AssetAttribute_var_samp_fields

Description

aggregate var_samp on columns

Fields
Field Name Description
blockNumber - Float
Example
{"blockNumber": 123.45}

AssetAttribute_var_samp_order_by

Description

order by var_samp() on columns of table "AssetAttribute"

Fields
Input Field Description
blockNumber - order_by
Example
{"blockNumber": "asc"}

AssetAttribute_variance_fields

Description

aggregate variance on columns

Fields
Field Name Description
blockNumber - Float
Example
{"blockNumber": 987.65}

AssetAttribute_variance_order_by

Description

order by variance() on columns of table "AssetAttribute"

Fields
Input Field Description
blockNumber - order_by
Example
{"blockNumber": "asc"}

AssetBackgroundImageURL

Description

columns and relationships of "AssetBackgroundImageURL"

Fields
Field Name Description
asset_id - String!
blockNumber - Int!
data - String
db_write_timestamp - timestamp
error - String
fileType - String
height - Int
id - String!
index - Int
method - String
src - String
url - String
verified - verificationstatus!
width - Int
Example
{
  "asset_id": "abc123",
  "blockNumber": 123,
  "data": "xyz789",
  "db_write_timestamp": timestamp,
  "error": "abc123",
  "fileType": "xyz789",
  "height": 987,
  "id": "xyz789",
  "index": 123,
  "method": "xyz789",
  "src": "xyz789",
  "url": "abc123",
  "verified": verificationstatus,
  "width": 123
}

AssetBackgroundImageURL_aggregate_order_by

Example
{
  "avg": AssetBackgroundImageURL_avg_order_by,
  "count": "asc",
  "max": AssetBackgroundImageURL_max_order_by,
  "min": AssetBackgroundImageURL_min_order_by,
  "stddev": AssetBackgroundImageURL_stddev_order_by,
  "stddev_pop": AssetBackgroundImageURL_stddev_pop_order_by,
  "stddev_samp": AssetBackgroundImageURL_stddev_samp_order_by,
  "sum": AssetBackgroundImageURL_sum_order_by,
  "var_pop": AssetBackgroundImageURL_var_pop_order_by,
  "var_samp": AssetBackgroundImageURL_var_samp_order_by,
  "variance": AssetBackgroundImageURL_variance_order_by
}

AssetBackgroundImageURL_avg_order_by

Description

order by avg() on columns of table "AssetBackgroundImageURL"

Fields
Input Field Description
blockNumber - order_by
height - order_by
index - order_by
width - order_by
Example
{"blockNumber": "asc", "height": "asc", "index": "asc", "width": "asc"}

AssetBackgroundImageURL_bool_exp

Description

Boolean expression to filter rows from the table "AssetBackgroundImageURL". All fields are combined with a logical 'AND'.

Example
{
  "_and": [AssetBackgroundImageURL_bool_exp],
  "_not": AssetBackgroundImageURL_bool_exp,
  "_or": [AssetBackgroundImageURL_bool_exp],
  "asset_id": String_comparison_exp,
  "blockNumber": Int_comparison_exp,
  "data": String_comparison_exp,
  "db_write_timestamp": timestamp_comparison_exp,
  "error": String_comparison_exp,
  "fileType": String_comparison_exp,
  "height": Int_comparison_exp,
  "id": String_comparison_exp,
  "index": Int_comparison_exp,
  "method": String_comparison_exp,
  "src": String_comparison_exp,
  "url": String_comparison_exp,
  "verified": verificationstatus_comparison_exp,
  "width": Int_comparison_exp
}

AssetBackgroundImageURL_max_order_by

Description

order by max() on columns of table "AssetBackgroundImageURL"

Fields
Input Field Description
asset_id - order_by
blockNumber - order_by
data - order_by
db_write_timestamp - order_by
error - order_by
fileType - order_by
height - order_by
id - order_by
index - order_by
method - order_by
src - order_by
url - order_by
verified - order_by
width - order_by
Example
{
  "asset_id": "asc",
  "blockNumber": "asc",
  "data": "asc",
  "db_write_timestamp": "asc",
  "error": "asc",
  "fileType": "asc",
  "height": "asc",
  "id": "asc",
  "index": "asc",
  "method": "asc",
  "src": "asc",
  "url": "asc",
  "verified": "asc",
  "width": "asc"
}

AssetBackgroundImageURL_min_order_by

Description

order by min() on columns of table "AssetBackgroundImageURL"

Fields
Input Field Description
asset_id - order_by
blockNumber - order_by
data - order_by
db_write_timestamp - order_by
error - order_by
fileType - order_by
height - order_by
id - order_by
index - order_by
method - order_by
src - order_by
url - order_by
verified - order_by
width - order_by
Example
{
  "asset_id": "asc",
  "blockNumber": "asc",
  "data": "asc",
  "db_write_timestamp": "asc",
  "error": "asc",
  "fileType": "asc",
  "height": "asc",
  "id": "asc",
  "index": "asc",
  "method": "asc",
  "src": "asc",
  "url": "asc",
  "verified": "asc",
  "width": "asc"
}

AssetBackgroundImageURL_order_by

Description

Ordering options when selecting data from "AssetBackgroundImageURL".

Fields
Input Field Description
asset_id - order_by
blockNumber - order_by
data - order_by
db_write_timestamp - order_by
error - order_by
fileType - order_by
height - order_by
id - order_by
index - order_by
method - order_by
src - order_by
url - order_by
verified - order_by
width - order_by
Example
{
  "asset_id": "asc",
  "blockNumber": "asc",
  "data": "asc",
  "db_write_timestamp": "asc",
  "error": "asc",
  "fileType": "asc",
  "height": "asc",
  "id": "asc",
  "index": "asc",
  "method": "asc",
  "src": "asc",
  "url": "asc",
  "verified": "asc",
  "width": "asc"
}

AssetBackgroundImageURL_select_column

Description

select columns of table "AssetBackgroundImageURL"

Values
Enum Value Description

asset_id

column name

blockNumber

column name

data

column name

db_write_timestamp

column name

error

column name

fileType

column name

height

column name

id

column name

index

column name

method

column name

src

column name

url

column name

verified

column name

width

column name
Example
"asset_id"

AssetBackgroundImageURL_stddev_order_by

Description

order by stddev() on columns of table "AssetBackgroundImageURL"

Fields
Input Field Description
blockNumber - order_by
height - order_by
index - order_by
width - order_by
Example
{"blockNumber": "asc", "height": "asc", "index": "asc", "width": "asc"}

AssetBackgroundImageURL_stddev_pop_order_by

Description

order by stddev_pop() on columns of table "AssetBackgroundImageURL"

Fields
Input Field Description
blockNumber - order_by
height - order_by
index - order_by
width - order_by
Example
{"blockNumber": "asc", "height": "asc", "index": "asc", "width": "asc"}

AssetBackgroundImageURL_stddev_samp_order_by

Description

order by stddev_samp() on columns of table "AssetBackgroundImageURL"

Fields
Input Field Description
blockNumber - order_by
height - order_by
index - order_by
width - order_by
Example
{"blockNumber": "asc", "height": "asc", "index": "asc", "width": "asc"}

AssetBackgroundImageURL_stream_cursor_input

Description

Streaming cursor of the table "AssetBackgroundImageURL"

Fields
Input Field Description
initial_value - AssetBackgroundImageURL_stream_cursor_value_input! Stream column input with initial value
ordering - cursor_ordering cursor ordering
Example
{
  "initial_value": AssetBackgroundImageURL_stream_cursor_value_input,
  "ordering": "ASC"
}

AssetBackgroundImageURL_stream_cursor_value_input

Description

Initial value of the column from where the streaming should start

Fields
Input Field Description
asset_id - String
blockNumber - Int
data - String
db_write_timestamp - timestamp
error - String
fileType - String
height - Int
id - String
index - Int
method - String
src - String
url - String
verified - verificationstatus
width - Int
Example
{
  "asset_id": "abc123",
  "blockNumber": 123,
  "data": "xyz789",
  "db_write_timestamp": timestamp,
  "error": "xyz789",
  "fileType": "abc123",
  "height": 123,
  "id": "abc123",
  "index": 987,
  "method": "abc123",
  "src": "abc123",
  "url": "xyz789",
  "verified": verificationstatus,
  "width": 987
}

AssetBackgroundImageURL_sum_order_by

Description

order by sum() on columns of table "AssetBackgroundImageURL"

Fields
Input Field Description
blockNumber - order_by
height - order_by
index - order_by
width - order_by
Example
{"blockNumber": "asc", "height": "asc", "index": "asc", "width": "asc"}

AssetBackgroundImageURL_var_pop_order_by

Description

order by var_pop() on columns of table "AssetBackgroundImageURL"

Fields
Input Field Description
blockNumber - order_by
height - order_by
index - order_by
width - order_by
Example
{"blockNumber": "asc", "height": "asc", "index": "asc", "width": "asc"}

AssetBackgroundImageURL_var_samp_order_by

Description

order by var_samp() on columns of table "AssetBackgroundImageURL"

Fields
Input Field Description
blockNumber - order_by
height - order_by
index - order_by
width - order_by
Example
{"blockNumber": "asc", "height": "asc", "index": "asc", "width": "asc"}

AssetBackgroundImageURL_variance_order_by

Description

order by variance() on columns of table "AssetBackgroundImageURL"

Fields
Input Field Description
blockNumber - order_by
height - order_by
index - order_by
width - order_by
Example
{"blockNumber": "asc", "height": "asc", "index": "asc", "width": "asc"}

AssetCreators

Description

columns and relationships of "AssetCreators"

Fields
Field Name Description
asset - Asset An object relationship
asset_id - String!
blockNumber - Int!
db_write_timestamp - timestamp
id - String!
index - Int
interfaceId - String
profile - Profile An object relationship
profile_id - String
Example
{
  "asset": Asset,
  "asset_id": "abc123",
  "blockNumber": 123,
  "db_write_timestamp": timestamp,
  "id": "xyz789",
  "index": 987,
  "interfaceId": "xyz789",
  "profile": Profile,
  "profile_id": "xyz789"
}

AssetCreators_aggregate

Description

aggregated selection of "AssetCreators"

Fields
Field Name Description
aggregate - AssetCreators_aggregate_fields
nodes - [AssetCreators!]!
Example
{
  "aggregate": AssetCreators_aggregate_fields,
  "nodes": [AssetCreators]
}

AssetCreators_aggregate_bool_exp

Fields
Input Field Description
count - AssetCreators_aggregate_bool_exp_count
Example
{"count": AssetCreators_aggregate_bool_exp_count}

AssetCreators_aggregate_bool_exp_count

Fields
Input Field Description
arguments - [AssetCreators_select_column!]
distinct - Boolean
filter - AssetCreators_bool_exp
predicate - Int_comparison_exp!
Example
{
  "arguments": ["asset_id"],
  "distinct": true,
  "filter": AssetCreators_bool_exp,
  "predicate": Int_comparison_exp
}

AssetCreators_aggregate_fields

Description

aggregate fields of "AssetCreators"

Example
{
  "avg": AssetCreators_avg_fields,
  "count": 123,
  "max": AssetCreators_max_fields,
  "min": AssetCreators_min_fields,
  "stddev": AssetCreators_stddev_fields,
  "stddev_pop": AssetCreators_stddev_pop_fields,
  "stddev_samp": AssetCreators_stddev_samp_fields,
  "sum": AssetCreators_sum_fields,
  "var_pop": AssetCreators_var_pop_fields,
  "var_samp": AssetCreators_var_samp_fields,
  "variance": AssetCreators_variance_fields
}

AssetCreators_aggregate_order_by

Description

order by aggregate values of table "AssetCreators"

Example
{
  "avg": AssetCreators_avg_order_by,
  "count": "asc",
  "max": AssetCreators_max_order_by,
  "min": AssetCreators_min_order_by,
  "stddev": AssetCreators_stddev_order_by,
  "stddev_pop": AssetCreators_stddev_pop_order_by,
  "stddev_samp": AssetCreators_stddev_samp_order_by,
  "sum": AssetCreators_sum_order_by,
  "var_pop": AssetCreators_var_pop_order_by,
  "var_samp": AssetCreators_var_samp_order_by,
  "variance": AssetCreators_variance_order_by
}

AssetCreators_avg_fields

Description

aggregate avg on columns

Fields
Field Name Description
blockNumber - Float
index - Float
Example
{"blockNumber": 123.45, "index": 123.45}

AssetCreators_avg_order_by

Description

order by avg() on columns of table "AssetCreators"

Fields
Input Field Description
blockNumber - order_by
index - order_by
Example
{"blockNumber": "asc", "index": "asc"}

AssetCreators_bool_exp

Description

Boolean expression to filter rows from the table "AssetCreators". All fields are combined with a logical 'AND'.

Fields
Input Field Description
_and - [AssetCreators_bool_exp!]
_not - AssetCreators_bool_exp
_or - [AssetCreators_bool_exp!]
asset - Asset_bool_exp
asset_id - String_comparison_exp
blockNumber - Int_comparison_exp
db_write_timestamp - timestamp_comparison_exp
id - String_comparison_exp
index - Int_comparison_exp
interfaceId - String_comparison_exp
profile - Profile_bool_exp
profile_id - String_comparison_exp
Example
{
  "_and": [AssetCreators_bool_exp],
  "_not": AssetCreators_bool_exp,
  "_or": [AssetCreators_bool_exp],
  "asset": Asset_bool_exp,
  "asset_id": String_comparison_exp,
  "blockNumber": Int_comparison_exp,
  "db_write_timestamp": timestamp_comparison_exp,
  "id": String_comparison_exp,
  "index": Int_comparison_exp,
  "interfaceId": String_comparison_exp,
  "profile": Profile_bool_exp,
  "profile_id": String_comparison_exp
}

AssetCreators_max_fields

Description

aggregate max on columns

Fields
Field Name Description
asset_id - String
blockNumber - Int
db_write_timestamp - timestamp
id - String
index - Int
interfaceId - String
profile_id - String
Example
{
  "asset_id": "xyz789",
  "blockNumber": 123,
  "db_write_timestamp": timestamp,
  "id": "xyz789",
  "index": 987,
  "interfaceId": "xyz789",
  "profile_id": "abc123"
}

AssetCreators_max_order_by

Description

order by max() on columns of table "AssetCreators"

Fields
Input Field Description
asset_id - order_by
blockNumber - order_by
db_write_timestamp - order_by
id - order_by
index - order_by
interfaceId - order_by
profile_id - order_by
Example
{
  "asset_id": "asc",
  "blockNumber": "asc",
  "db_write_timestamp": "asc",
  "id": "asc",
  "index": "asc",
  "interfaceId": "asc",
  "profile_id": "asc"
}

AssetCreators_min_fields

Description

aggregate min on columns

Fields
Field Name Description
asset_id - String
blockNumber - Int
db_write_timestamp - timestamp
id - String
index - Int
interfaceId - String
profile_id - String
Example
{
  "asset_id": "abc123",
  "blockNumber": 123,
  "db_write_timestamp": timestamp,
  "id": "abc123",
  "index": 123,
  "interfaceId": "abc123",
  "profile_id": "abc123"
}

AssetCreators_min_order_by

Description

order by min() on columns of table "AssetCreators"

Fields
Input Field Description
asset_id - order_by
blockNumber - order_by
db_write_timestamp - order_by
id - order_by
index - order_by
interfaceId - order_by
profile_id - order_by
Example
{
  "asset_id": "asc",
  "blockNumber": "asc",
  "db_write_timestamp": "asc",
  "id": "asc",
  "index": "asc",
  "interfaceId": "asc",
  "profile_id": "asc"
}

AssetCreators_order_by

Description

Ordering options when selecting data from "AssetCreators".

Fields
Input Field Description
asset - Asset_order_by
asset_id - order_by
blockNumber - order_by
db_write_timestamp - order_by
id - order_by
index - order_by
interfaceId - order_by
profile - Profile_order_by
profile_id - order_by
Example
{
  "asset": Asset_order_by,
  "asset_id": "asc",
  "blockNumber": "asc",
  "db_write_timestamp": "asc",
  "id": "asc",
  "index": "asc",
  "interfaceId": "asc",
  "profile": Profile_order_by,
  "profile_id": "asc"
}

AssetCreators_select_column

Description

select columns of table "AssetCreators"

Values
Enum Value Description

asset_id

column name

blockNumber

column name

db_write_timestamp

column name

id

column name

index

column name

interfaceId

column name

profile_id

column name
Example
"asset_id"

AssetCreators_stddev_fields

Description

aggregate stddev on columns

Fields
Field Name Description
blockNumber - Float
index - Float
Example
{"blockNumber": 987.65, "index": 987.65}

AssetCreators_stddev_order_by

Description

order by stddev() on columns of table "AssetCreators"

Fields
Input Field Description
blockNumber - order_by
index - order_by
Example
{"blockNumber": "asc", "index": "asc"}

AssetCreators_stddev_pop_fields

Description

aggregate stddev_pop on columns

Fields
Field Name Description
blockNumber - Float
index - Float
Example
{"blockNumber": 123.45, "index": 987.65}

AssetCreators_stddev_pop_order_by

Description

order by stddev_pop() on columns of table "AssetCreators"

Fields
Input Field Description
blockNumber - order_by
index - order_by
Example
{"blockNumber": "asc", "index": "asc"}

AssetCreators_stddev_samp_fields

Description

aggregate stddev_samp on columns

Fields
Field Name Description
blockNumber - Float
index - Float
Example
{"blockNumber": 987.65, "index": 987.65}

AssetCreators_stddev_samp_order_by

Description

order by stddev_samp() on columns of table "AssetCreators"

Fields
Input Field Description
blockNumber - order_by
index - order_by
Example
{"blockNumber": "asc", "index": "asc"}

AssetCreators_stream_cursor_input

Description

Streaming cursor of the table "AssetCreators"

Fields
Input Field Description
initial_value - AssetCreators_stream_cursor_value_input! Stream column input with initial value
ordering - cursor_ordering cursor ordering
Example
{
  "initial_value": AssetCreators_stream_cursor_value_input,
  "ordering": "ASC"
}

AssetCreators_stream_cursor_value_input

Description

Initial value of the column from where the streaming should start

Fields
Input Field Description
asset_id - String
blockNumber - Int
db_write_timestamp - timestamp
id - String
index - Int
interfaceId - String
profile_id - String
Example
{
  "asset_id": "abc123",
  "blockNumber": 123,
  "db_write_timestamp": timestamp,
  "id": "abc123",
  "index": 987,
  "interfaceId": "abc123",
  "profile_id": "xyz789"
}

AssetCreators_sum_fields

Description

aggregate sum on columns

Fields
Field Name Description
blockNumber - Int
index - Int
Example
{"blockNumber": 123, "index": 123}

AssetCreators_sum_order_by

Description

order by sum() on columns of table "AssetCreators"

Fields
Input Field Description
blockNumber - order_by
index - order_by
Example
{"blockNumber": "asc", "index": "asc"}

AssetCreators_var_pop_fields

Description

aggregate var_pop on columns

Fields
Field Name Description
blockNumber - Float
index - Float
Example
{"blockNumber": 987.65, "index": 123.45}

AssetCreators_var_pop_order_by

Description

order by var_pop() on columns of table "AssetCreators"

Fields
Input Field Description
blockNumber - order_by
index - order_by
Example
{"blockNumber": "asc", "index": "asc"}

AssetCreators_var_samp_fields

Description

aggregate var_samp on columns

Fields
Field Name Description
blockNumber - Float
index - Float
Example
{"blockNumber": 123.45, "index": 987.65}

AssetCreators_var_samp_order_by

Description

order by var_samp() on columns of table "AssetCreators"

Fields
Input Field Description
blockNumber - order_by
index - order_by
Example
{"blockNumber": "asc", "index": "asc"}

AssetCreators_variance_fields

Description

aggregate variance on columns

Fields
Field Name Description
blockNumber - Float
index - Float
Example
{"blockNumber": 987.65, "index": 123.45}

AssetCreators_variance_order_by

Description

order by variance() on columns of table "AssetCreators"

Fields
Input Field Description
blockNumber - order_by
index - order_by
Example
{"blockNumber": "asc", "index": "asc"}

AssetIconURL

Description

columns and relationships of "AssetIconURL"

Fields
Field Name Description
asset - Asset An object relationship
asset_id - String!
blockNumber - Int!
data - String
db_write_timestamp - timestamp
error - String
fileType - String
height - Int
id - String!
method - String
src - String
url - String
verified - verificationstatus!
width - Int
Example
{
  "asset": Asset,
  "asset_id": "xyz789",
  "blockNumber": 987,
  "data": "xyz789",
  "db_write_timestamp": timestamp,
  "error": "xyz789",
  "fileType": "xyz789",
  "height": 987,
  "id": "xyz789",
  "method": "abc123",
  "src": "abc123",
  "url": "abc123",
  "verified": verificationstatus,
  "width": 987
}

AssetIconURL_aggregate

Description

aggregated selection of "AssetIconURL"

Fields
Field Name Description
aggregate - AssetIconURL_aggregate_fields
nodes - [AssetIconURL!]!
Example
{
  "aggregate": AssetIconURL_aggregate_fields,
  "nodes": [AssetIconURL]
}

AssetIconURL_aggregate_bool_exp

Fields
Input Field Description
count - AssetIconURL_aggregate_bool_exp_count
Example
{"count": AssetIconURL_aggregate_bool_exp_count}

AssetIconURL_aggregate_bool_exp_count

Fields
Input Field Description
arguments - [AssetIconURL_select_column!]
distinct - Boolean
filter - AssetIconURL_bool_exp
predicate - Int_comparison_exp!
Example
{
  "arguments": ["asset_id"],
  "distinct": false,
  "filter": AssetIconURL_bool_exp,
  "predicate": Int_comparison_exp
}

AssetIconURL_aggregate_fields

Description

aggregate fields of "AssetIconURL"

Example
{
  "avg": AssetIconURL_avg_fields,
  "count": 123,
  "max": AssetIconURL_max_fields,
  "min": AssetIconURL_min_fields,
  "stddev": AssetIconURL_stddev_fields,
  "stddev_pop": AssetIconURL_stddev_pop_fields,
  "stddev_samp": AssetIconURL_stddev_samp_fields,
  "sum": AssetIconURL_sum_fields,
  "var_pop": AssetIconURL_var_pop_fields,
  "var_samp": AssetIconURL_var_samp_fields,
  "variance": AssetIconURL_variance_fields
}

AssetIconURL_aggregate_order_by

Description

order by aggregate values of table "AssetIconURL"

Example
{
  "avg": AssetIconURL_avg_order_by,
  "count": "asc",
  "max": AssetIconURL_max_order_by,
  "min": AssetIconURL_min_order_by,
  "stddev": AssetIconURL_stddev_order_by,
  "stddev_pop": AssetIconURL_stddev_pop_order_by,
  "stddev_samp": AssetIconURL_stddev_samp_order_by,
  "sum": AssetIconURL_sum_order_by,
  "var_pop": AssetIconURL_var_pop_order_by,
  "var_samp": AssetIconURL_var_samp_order_by,
  "variance": AssetIconURL_variance_order_by
}

AssetIconURL_avg_fields

Description

aggregate avg on columns

Fields
Field Name Description
blockNumber - Float
height - Float
width - Float
Example
{"blockNumber": 987.65, "height": 123.45, "width": 123.45}

AssetIconURL_avg_order_by

Description

order by avg() on columns of table "AssetIconURL"

Fields
Input Field Description
blockNumber - order_by
height - order_by
width - order_by
Example
{"blockNumber": "asc", "height": "asc", "width": "asc"}

AssetIconURL_bool_exp

Description

Boolean expression to filter rows from the table "AssetIconURL". All fields are combined with a logical 'AND'.

Example
{
  "_and": [AssetIconURL_bool_exp],
  "_not": AssetIconURL_bool_exp,
  "_or": [AssetIconURL_bool_exp],
  "asset": Asset_bool_exp,
  "asset_id": String_comparison_exp,
  "blockNumber": Int_comparison_exp,
  "data": String_comparison_exp,
  "db_write_timestamp": timestamp_comparison_exp,
  "error": String_comparison_exp,
  "fileType": String_comparison_exp,
  "height": Int_comparison_exp,
  "id": String_comparison_exp,
  "method": String_comparison_exp,
  "src": String_comparison_exp,
  "url": String_comparison_exp,
  "verified": verificationstatus_comparison_exp,
  "width": Int_comparison_exp
}

AssetIconURL_max_fields

Description

aggregate max on columns

Fields
Field Name Description
asset_id - String
blockNumber - Int
data - String
db_write_timestamp - timestamp
error - String
fileType - String
height - Int
id - String
method - String
src - String
url - String
verified - verificationstatus
width - Int
Example
{
  "asset_id": "xyz789",
  "blockNumber": 123,
  "data": "abc123",
  "db_write_timestamp": timestamp,
  "error": "abc123",
  "fileType": "abc123",
  "height": 987,
  "id": "abc123",
  "method": "abc123",
  "src": "abc123",
  "url": "xyz789",
  "verified": verificationstatus,
  "width": 987
}

AssetIconURL_max_order_by

Description

order by max() on columns of table "AssetIconURL"

Fields
Input Field Description
asset_id - order_by
blockNumber - order_by
data - order_by
db_write_timestamp - order_by
error - order_by
fileType - order_by
height - order_by
id - order_by
method - order_by
src - order_by
url - order_by
verified - order_by
width - order_by
Example
{
  "asset_id": "asc",
  "blockNumber": "asc",
  "data": "asc",
  "db_write_timestamp": "asc",
  "error": "asc",
  "fileType": "asc",
  "height": "asc",
  "id": "asc",
  "method": "asc",
  "src": "asc",
  "url": "asc",
  "verified": "asc",
  "width": "asc"
}

AssetIconURL_min_fields

Description

aggregate min on columns

Fields
Field Name Description
asset_id - String
blockNumber - Int
data - String
db_write_timestamp - timestamp
error - String
fileType - String
height - Int
id - String
method - String
src - String
url - String
verified - verificationstatus
width - Int
Example
{
  "asset_id": "abc123",
  "blockNumber": 987,
  "data": "abc123",
  "db_write_timestamp": timestamp,
  "error": "abc123",
  "fileType": "xyz789",
  "height": 123,
  "id": "xyz789",
  "method": "abc123",
  "src": "xyz789",
  "url": "abc123",
  "verified": verificationstatus,
  "width": 123
}

AssetIconURL_min_order_by

Description

order by min() on columns of table "AssetIconURL"

Fields
Input Field Description
asset_id - order_by
blockNumber - order_by
data - order_by
db_write_timestamp - order_by
error - order_by
fileType - order_by
height - order_by
id - order_by
method - order_by
src - order_by
url - order_by
verified - order_by
width - order_by
Example
{
  "asset_id": "asc",
  "blockNumber": "asc",
  "data": "asc",
  "db_write_timestamp": "asc",
  "error": "asc",
  "fileType": "asc",
  "height": "asc",
  "id": "asc",
  "method": "asc",
  "src": "asc",
  "url": "asc",
  "verified": "asc",
  "width": "asc"
}

AssetIconURL_order_by

Description

Ordering options when selecting data from "AssetIconURL".

Fields
Input Field Description
asset - Asset_order_by
asset_id - order_by
blockNumber - order_by
data - order_by
db_write_timestamp - order_by
error - order_by
fileType - order_by
height - order_by
id - order_by
method - order_by
src - order_by
url - order_by
verified - order_by
width - order_by
Example
{
  "asset": Asset_order_by,
  "asset_id": "asc",
  "blockNumber": "asc",
  "data": "asc",
  "db_write_timestamp": "asc",
  "error": "asc",
  "fileType": "asc",
  "height": "asc",
  "id": "asc",
  "method": "asc",
  "src": "asc",
  "url": "asc",
  "verified": "asc",
  "width": "asc"
}

AssetIconURL_select_column

Description

select columns of table "AssetIconURL"

Values
Enum Value Description

asset_id

column name

blockNumber

column name

data

column name

db_write_timestamp

column name

error

column name

fileType

column name

height

column name

id

column name

method

column name

src

column name

url

column name

verified

column name

width

column name
Example
"asset_id"

AssetIconURL_stddev_fields

Description

aggregate stddev on columns

Fields
Field Name Description
blockNumber - Float
height - Float
width - Float
Example
{"blockNumber": 123.45, "height": 987.65, "width": 123.45}

AssetIconURL_stddev_order_by

Description

order by stddev() on columns of table "AssetIconURL"

Fields
Input Field Description
blockNumber - order_by
height - order_by
width - order_by
Example
{"blockNumber": "asc", "height": "asc", "width": "asc"}

AssetIconURL_stddev_pop_fields

Description

aggregate stddev_pop on columns

Fields
Field Name Description
blockNumber - Float
height - Float
width - Float
Example
{"blockNumber": 123.45, "height": 987.65, "width": 123.45}

AssetIconURL_stddev_pop_order_by

Description

order by stddev_pop() on columns of table "AssetIconURL"

Fields
Input Field Description
blockNumber - order_by
height - order_by
width - order_by
Example
{"blockNumber": "asc", "height": "asc", "width": "asc"}

AssetIconURL_stddev_samp_fields

Description

aggregate stddev_samp on columns

Fields
Field Name Description
blockNumber - Float
height - Float
width - Float
Example
{"blockNumber": 987.65, "height": 123.45, "width": 987.65}

AssetIconURL_stddev_samp_order_by

Description

order by stddev_samp() on columns of table "AssetIconURL"

Fields
Input Field Description
blockNumber - order_by
height - order_by
width - order_by
Example
{"blockNumber": "asc", "height": "asc", "width": "asc"}

AssetIconURL_stream_cursor_input

Description

Streaming cursor of the table "AssetIconURL"

Fields
Input Field Description
initial_value - AssetIconURL_stream_cursor_value_input! Stream column input with initial value
ordering - cursor_ordering cursor ordering
Example
{
  "initial_value": AssetIconURL_stream_cursor_value_input,
  "ordering": "ASC"
}

AssetIconURL_stream_cursor_value_input

Description

Initial value of the column from where the streaming should start

Fields
Input Field Description
asset_id - String
blockNumber - Int
data - String
db_write_timestamp - timestamp
error - String
fileType - String
height - Int
id - String
method - String
src - String
url - String
verified - verificationstatus
width - Int
Example
{
  "asset_id": "xyz789",
  "blockNumber": 987,
  "data": "abc123",
  "db_write_timestamp": timestamp,
  "error": "xyz789",
  "fileType": "xyz789",
  "height": 987,
  "id": "xyz789",
  "method": "abc123",
  "src": "xyz789",
  "url": "abc123",
  "verified": verificationstatus,
  "width": 123
}

AssetIconURL_sum_fields

Description

aggregate sum on columns

Fields
Field Name Description
blockNumber - Int
height - Int
width - Int
Example
{"blockNumber": 123, "height": 123, "width": 123}

AssetIconURL_sum_order_by

Description

order by sum() on columns of table "AssetIconURL"

Fields
Input Field Description
blockNumber - order_by
height - order_by
width - order_by
Example
{"blockNumber": "asc", "height": "asc", "width": "asc"}

AssetIconURL_var_pop_fields

Description

aggregate var_pop on columns

Fields
Field Name Description
blockNumber - Float
height - Float
width - Float
Example
{"blockNumber": 123.45, "height": 987.65, "width": 987.65}

AssetIconURL_var_pop_order_by

Description

order by var_pop() on columns of table "AssetIconURL"

Fields
Input Field Description
blockNumber - order_by
height - order_by
width - order_by
Example
{"blockNumber": "asc", "height": "asc", "width": "asc"}

AssetIconURL_var_samp_fields

Description

aggregate var_samp on columns

Fields
Field Name Description
blockNumber - Float
height - Float
width - Float
Example
{"blockNumber": 987.65, "height": 987.65, "width": 987.65}

AssetIconURL_var_samp_order_by

Description

order by var_samp() on columns of table "AssetIconURL"

Fields
Input Field Description
blockNumber - order_by
height - order_by
width - order_by
Example
{"blockNumber": "asc", "height": "asc", "width": "asc"}

AssetIconURL_variance_fields

Description

aggregate variance on columns

Fields
Field Name Description
blockNumber - Float
height - Float
width - Float
Example
{"blockNumber": 123.45, "height": 987.65, "width": 123.45}

AssetIconURL_variance_order_by

Description

order by variance() on columns of table "AssetIconURL"

Fields
Input Field Description
blockNumber - order_by
height - order_by
width - order_by
Example
{"blockNumber": "asc", "height": "asc", "width": "asc"}

AssetImageURL

Description

columns and relationships of "AssetImageURL"

Fields
Field Name Description
asset - Asset An object relationship
asset_id - String!
blockNumber - Int!
data - String
db_write_timestamp - timestamp
error - String
fileType - String
height - Int
id - String!
index - Int
method - String
src - String
url - String
verified - verificationstatus!
width - Int
Example
{
  "asset": Asset,
  "asset_id": "xyz789",
  "blockNumber": 123,
  "data": "abc123",
  "db_write_timestamp": timestamp,
  "error": "xyz789",
  "fileType": "xyz789",
  "height": 123,
  "id": "abc123",
  "index": 123,
  "method": "abc123",
  "src": "xyz789",
  "url": "abc123",
  "verified": verificationstatus,
  "width": 987
}

AssetImageURL_aggregate

Description

aggregated selection of "AssetImageURL"

Fields
Field Name Description
aggregate - AssetImageURL_aggregate_fields
nodes - [AssetImageURL!]!
Example
{
  "aggregate": AssetImageURL_aggregate_fields,
  "nodes": [AssetImageURL]
}

AssetImageURL_aggregate_bool_exp

Fields
Input Field Description
count - AssetImageURL_aggregate_bool_exp_count
Example
{"count": AssetImageURL_aggregate_bool_exp_count}

AssetImageURL_aggregate_bool_exp_count

Fields
Input Field Description
arguments - [AssetImageURL_select_column!]
distinct - Boolean
filter - AssetImageURL_bool_exp
predicate - Int_comparison_exp!
Example
{
  "arguments": ["asset_id"],
  "distinct": true,
  "filter": AssetImageURL_bool_exp,
  "predicate": Int_comparison_exp
}

AssetImageURL_aggregate_fields

Description

aggregate fields of "AssetImageURL"

Example
{
  "avg": AssetImageURL_avg_fields,
  "count": 123,
  "max": AssetImageURL_max_fields,
  "min": AssetImageURL_min_fields,
  "stddev": AssetImageURL_stddev_fields,
  "stddev_pop": AssetImageURL_stddev_pop_fields,
  "stddev_samp": AssetImageURL_stddev_samp_fields,
  "sum": AssetImageURL_sum_fields,
  "var_pop": AssetImageURL_var_pop_fields,
  "var_samp": AssetImageURL_var_samp_fields,
  "variance": AssetImageURL_variance_fields
}

AssetImageURL_aggregate_order_by

Description

order by aggregate values of table "AssetImageURL"

Example
{
  "avg": AssetImageURL_avg_order_by,
  "count": "asc",
  "max": AssetImageURL_max_order_by,
  "min": AssetImageURL_min_order_by,
  "stddev": AssetImageURL_stddev_order_by,
  "stddev_pop": AssetImageURL_stddev_pop_order_by,
  "stddev_samp": AssetImageURL_stddev_samp_order_by,
  "sum": AssetImageURL_sum_order_by,
  "var_pop": AssetImageURL_var_pop_order_by,
  "var_samp": AssetImageURL_var_samp_order_by,
  "variance": AssetImageURL_variance_order_by
}

AssetImageURL_avg_fields

Description

aggregate avg on columns

Fields
Field Name Description
blockNumber - Float
height - Float
index - Float
width - Float
Example
{"blockNumber": 123.45, "height": 123.45, "index": 123.45, "width": 123.45}

AssetImageURL_avg_order_by

Description

order by avg() on columns of table "AssetImageURL"

Fields
Input Field Description
blockNumber - order_by
height - order_by
index - order_by
width - order_by
Example
{"blockNumber": "asc", "height": "asc", "index": "asc", "width": "asc"}

AssetImageURL_bool_exp

Description

Boolean expression to filter rows from the table "AssetImageURL". All fields are combined with a logical 'AND'.

Example
{
  "_and": [AssetImageURL_bool_exp],
  "_not": AssetImageURL_bool_exp,
  "_or": [AssetImageURL_bool_exp],
  "asset": Asset_bool_exp,
  "asset_id": String_comparison_exp,
  "blockNumber": Int_comparison_exp,
  "data": String_comparison_exp,
  "db_write_timestamp": timestamp_comparison_exp,
  "error": String_comparison_exp,
  "fileType": String_comparison_exp,
  "height": Int_comparison_exp,
  "id": String_comparison_exp,
  "index": Int_comparison_exp,
  "method": String_comparison_exp,
  "src": String_comparison_exp,
  "url": String_comparison_exp,
  "verified": verificationstatus_comparison_exp,
  "width": Int_comparison_exp
}

AssetImageURL_max_fields

Description

aggregate max on columns

Fields
Field Name Description
asset_id - String
blockNumber - Int
data - String
db_write_timestamp - timestamp
error - String
fileType - String
height - Int
id - String
index - Int
method - String
src - String
url - String
verified - verificationstatus
width - Int
Example
{
  "asset_id": "abc123",
  "blockNumber": 123,
  "data": "abc123",
  "db_write_timestamp": timestamp,
  "error": "xyz789",
  "fileType": "abc123",
  "height": 987,
  "id": "abc123",
  "index": 123,
  "method": "xyz789",
  "src": "xyz789",
  "url": "xyz789",
  "verified": verificationstatus,
  "width": 123
}

AssetImageURL_max_order_by

Description

order by max() on columns of table "AssetImageURL"

Fields
Input Field Description
asset_id - order_by
blockNumber - order_by
data - order_by
db_write_timestamp - order_by
error - order_by
fileType - order_by
height - order_by
id - order_by
index - order_by
method - order_by
src - order_by
url - order_by
verified - order_by
width - order_by
Example
{
  "asset_id": "asc",
  "blockNumber": "asc",
  "data": "asc",
  "db_write_timestamp": "asc",
  "error": "asc",
  "fileType": "asc",
  "height": "asc",
  "id": "asc",
  "index": "asc",
  "method": "asc",
  "src": "asc",
  "url": "asc",
  "verified": "asc",
  "width": "asc"
}

AssetImageURL_min_fields

Description

aggregate min on columns

Fields
Field Name Description
asset_id - String
blockNumber - Int
data - String
db_write_timestamp - timestamp
error - String
fileType - String
height - Int
id - String
index - Int
method - String
src - String
url - String
verified - verificationstatus
width - Int
Example
{
  "asset_id": "abc123",
  "blockNumber": 987,
  "data": "xyz789",
  "db_write_timestamp": timestamp,
  "error": "abc123",
  "fileType": "abc123",
  "height": 987,
  "id": "abc123",
  "index": 123,
  "method": "abc123",
  "src": "xyz789",
  "url": "xyz789",
  "verified": verificationstatus,
  "width": 987
}

AssetImageURL_min_order_by

Description

order by min() on columns of table "AssetImageURL"

Fields
Input Field Description
asset_id - order_by
blockNumber - order_by
data - order_by
db_write_timestamp - order_by
error - order_by
fileType - order_by
height - order_by
id - order_by
index - order_by
method - order_by
src - order_by
url - order_by
verified - order_by
width - order_by
Example
{
  "asset_id": "asc",
  "blockNumber": "asc",
  "data": "asc",
  "db_write_timestamp": "asc",
  "error": "asc",
  "fileType": "asc",
  "height": "asc",
  "id": "asc",
  "index": "asc",
  "method": "asc",
  "src": "asc",
  "url": "asc",
  "verified": "asc",
  "width": "asc"
}

AssetImageURL_order_by

Description

Ordering options when selecting data from "AssetImageURL".

Fields
Input Field Description
asset - Asset_order_by
asset_id - order_by
blockNumber - order_by
data - order_by
db_write_timestamp - order_by
error - order_by
fileType - order_by
height - order_by
id - order_by
index - order_by
method - order_by
src - order_by
url - order_by
verified - order_by
width - order_by
Example
{
  "asset": Asset_order_by,
  "asset_id": "asc",
  "blockNumber": "asc",
  "data": "asc",
  "db_write_timestamp": "asc",
  "error": "asc",
  "fileType": "asc",
  "height": "asc",
  "id": "asc",
  "index": "asc",
  "method": "asc",
  "src": "asc",
  "url": "asc",
  "verified": "asc",
  "width": "asc"
}

AssetImageURL_select_column

Description

select columns of table "AssetImageURL"

Values
Enum Value Description

asset_id

column name

blockNumber

column name

data

column name

db_write_timestamp

column name

error

column name

fileType

column name

height

column name

id

column name

index

column name

method

column name

src

column name

url

column name

verified

column name

width

column name
Example
"asset_id"

AssetImageURL_stddev_fields

Description

aggregate stddev on columns

Fields
Field Name Description
blockNumber - Float
height - Float
index - Float
width - Float
Example
{"blockNumber": 987.65, "height": 987.65, "index": 987.65, "width": 123.45}

AssetImageURL_stddev_order_by

Description

order by stddev() on columns of table "AssetImageURL"

Fields
Input Field Description
blockNumber - order_by
height - order_by
index - order_by
width - order_by
Example
{"blockNumber": "asc", "height": "asc", "index": "asc", "width": "asc"}

AssetImageURL_stddev_pop_fields

Description

aggregate stddev_pop on columns

Fields
Field Name Description
blockNumber - Float
height - Float
index - Float
width - Float
Example
{"blockNumber": 123.45, "height": 987.65, "index": 987.65, "width": 987.65}

AssetImageURL_stddev_pop_order_by

Description

order by stddev_pop() on columns of table "AssetImageURL"

Fields
Input Field Description
blockNumber - order_by
height - order_by
index - order_by
width - order_by
Example
{"blockNumber": "asc", "height": "asc", "index": "asc", "width": "asc"}

AssetImageURL_stddev_samp_fields

Description

aggregate stddev_samp on columns

Fields
Field Name Description
blockNumber - Float
height - Float
index - Float
width - Float
Example
{"blockNumber": 987.65, "height": 123.45, "index": 987.65, "width": 987.65}

AssetImageURL_stddev_samp_order_by

Description

order by stddev_samp() on columns of table "AssetImageURL"

Fields
Input Field Description
blockNumber - order_by
height - order_by
index - order_by
width - order_by
Example
{"blockNumber": "asc", "height": "asc", "index": "asc", "width": "asc"}

AssetImageURL_stream_cursor_input

Description

Streaming cursor of the table "AssetImageURL"

Fields
Input Field Description
initial_value - AssetImageURL_stream_cursor_value_input! Stream column input with initial value
ordering - cursor_ordering cursor ordering
Example
{
  "initial_value": AssetImageURL_stream_cursor_value_input,
  "ordering": "ASC"
}

AssetImageURL_stream_cursor_value_input

Description

Initial value of the column from where the streaming should start

Fields
Input Field Description
asset_id - String
blockNumber - Int
data - String
db_write_timestamp - timestamp
error - String
fileType - String
height - Int
id - String
index - Int
method - String
src - String
url - String
verified - verificationstatus
width - Int
Example
{
  "asset_id": "abc123",
  "blockNumber": 123,
  "data": "abc123",
  "db_write_timestamp": timestamp,
  "error": "xyz789",
  "fileType": "abc123",
  "height": 987,
  "id": "xyz789",
  "index": 123,
  "method": "abc123",
  "src": "abc123",
  "url": "xyz789",
  "verified": verificationstatus,
  "width": 123
}

AssetImageURL_sum_fields

Description

aggregate sum on columns

Fields
Field Name Description
blockNumber - Int
height - Int
index - Int
width - Int
Example
{"blockNumber": 987, "height": 123, "index": 987, "width": 123}

AssetImageURL_sum_order_by

Description

order by sum() on columns of table "AssetImageURL"

Fields
Input Field Description
blockNumber - order_by
height - order_by
index - order_by
width - order_by
Example
{"blockNumber": "asc", "height": "asc", "index": "asc", "width": "asc"}

AssetImageURL_var_pop_fields

Description

aggregate var_pop on columns

Fields
Field Name Description
blockNumber - Float
height - Float
index - Float
width - Float
Example
{"blockNumber": 123.45, "height": 987.65, "index": 987.65, "width": 987.65}

AssetImageURL_var_pop_order_by

Description

order by var_pop() on columns of table "AssetImageURL"

Fields
Input Field Description
blockNumber - order_by
height - order_by
index - order_by
width - order_by
Example
{"blockNumber": "asc", "height": "asc", "index": "asc", "width": "asc"}

AssetImageURL_var_samp_fields

Description

aggregate var_samp on columns

Fields
Field Name Description
blockNumber - Float
height - Float
index - Float
width - Float
Example
{"blockNumber": 123.45, "height": 123.45, "index": 123.45, "width": 123.45}

AssetImageURL_var_samp_order_by

Description

order by var_samp() on columns of table "AssetImageURL"

Fields
Input Field Description
blockNumber - order_by
height - order_by
index - order_by
width - order_by
Example
{"blockNumber": "asc", "height": "asc", "index": "asc", "width": "asc"}

AssetImageURL_variance_fields

Description

aggregate variance on columns

Fields
Field Name Description
blockNumber - Float
height - Float
index - Float
width - Float
Example
{"blockNumber": 987.65, "height": 987.65, "index": 987.65, "width": 987.65}

AssetImageURL_variance_order_by

Description

order by variance() on columns of table "AssetImageURL"

Fields
Input Field Description
blockNumber - order_by
height - order_by
index - order_by
width - order_by
Example
{"blockNumber": "asc", "height": "asc", "index": "asc", "width": "asc"}

Asset_aggregate

Description

aggregated selection of "Asset"

Fields
Field Name Description
aggregate - Asset_aggregate_fields
nodes - [Asset!]!
Example
{
  "aggregate": Asset_aggregate_fields,
  "nodes": [Asset]
}

Asset_aggregate_fields

Description

aggregate fields of "Asset"

Fields
Field Name Description
avg - Asset_avg_fields
count - Int!
Arguments
distinct - Boolean
max - Asset_max_fields
min - Asset_min_fields
stddev - Asset_stddev_fields
stddev_pop - Asset_stddev_pop_fields
stddev_samp - Asset_stddev_samp_fields
sum - Asset_sum_fields
var_pop - Asset_var_pop_fields
var_samp - Asset_var_samp_fields
variance - Asset_variance_fields
Example
{
  "avg": Asset_avg_fields,
  "count": 987,
  "max": Asset_max_fields,
  "min": Asset_min_fields,
  "stddev": Asset_stddev_fields,
  "stddev_pop": Asset_stddev_pop_fields,
  "stddev_samp": Asset_stddev_samp_fields,
  "sum": Asset_sum_fields,
  "var_pop": Asset_var_pop_fields,
  "var_samp": Asset_var_samp_fields,
  "variance": Asset_variance_fields
}

Asset_avg_fields

Description

aggregate avg on columns

Fields
Field Name Description
blockNumber - Float
createdBlockNumber - Float
createdTimestamp - Float
createdTransactionIndex - Float
decimals - Float
lsp4TokenType - Float
lsp8TokenIdFormat - Float
totalSupply - Float
updatedBlockNumber - Float
updatedTimestamp - Float
updatedTransactionIndex - Float
Example
{
  "blockNumber": 123.45,
  "createdBlockNumber": 123.45,
  "createdTimestamp": 987.65,
  "createdTransactionIndex": 123.45,
  "decimals": 987.65,
  "lsp4TokenType": 987.65,
  "lsp8TokenIdFormat": 987.65,
  "totalSupply": 123.45,
  "updatedBlockNumber": 123.45,
  "updatedTimestamp": 123.45,
  "updatedTransactionIndex": 987.65
}

Asset_bool_exp

Description

Boolean expression to filter rows from the table "Asset". All fields are combined with a logical 'AND'.

Fields
Input Field Description
_and - [Asset_bool_exp!]
_not - Asset_bool_exp
_or - [Asset_bool_exp!]
appHistory - AppHistory_bool_exp
appHistory_aggregate - AppHistory_aggregate_bool_exp
appInstalls - AppInstall_bool_exp
appInstalls_aggregate - AppInstall_aggregate_bool_exp
assets - AssetAssetURL_bool_exp
assets_ - String_array_comparison_exp
assets_aggregate - AssetAssetURL_aggregate_bool_exp
attributes - AssetAttribute_bool_exp
attributes_ - String_array_comparison_exp
attributes_aggregate - AssetAttribute_aggregate_bool_exp
backgroundImages - AssetBackgroundImageURL_bool_exp
backgroundImages_ - String_array_comparison_exp
baseHolders - Hold_bool_exp
baseHolders_aggregate - Hold_aggregate_bool_exp
blockNumber - Int_comparison_exp
category - String_comparison_exp
createdBlockNumber - Int_comparison_exp
createdTimestamp - Int_comparison_exp
createdTransactionIndex - Int_comparison_exp
data - String_comparison_exp
db_write_timestamp - timestamp_comparison_exp
decimals - Int_comparison_exp
description - String_comparison_exp
error - String_comparison_exp
holders - Hold_bool_exp
holders_aggregate - Hold_aggregate_bool_exp
icons - AssetIconURL_bool_exp
icons_ - String_array_comparison_exp
icons_aggregate - AssetIconURL_aggregate_bool_exp
id - String_comparison_exp
images - AssetImageURL_bool_exp
images_ - String_array_comparison_exp
images_aggregate - AssetImageURL_aggregate_bool_exp
interfaces - String_array_comparison_exp
isCollection - Boolean_comparison_exp
isLSP7 - Boolean_comparison_exp
isUnknown - Boolean_comparison_exp
links - AssetLink_bool_exp
links_ - String_array_comparison_exp
links_aggregate - AssetLink_aggregate_bool_exp
lsp4Creators - AssetCreators_bool_exp
lsp4CreatorsMap - AssetCreators_bool_exp
lsp4CreatorsMap_aggregate - AssetCreators_aggregate_bool_exp
lsp4Creators_ - String_array_comparison_exp
lsp4Creators_aggregate - AssetCreators_aggregate_bool_exp
lsp4TokenName - String_comparison_exp
lsp4TokenSymbol - String_comparison_exp
lsp4TokenType - Int_comparison_exp
lsp8ReferenceContract - Asset_bool_exp
lsp8ReferenceContractSelf - String_comparison_exp
lsp8ReferenceContract_id - String_comparison_exp
lsp8TokenIdFormat - Int_comparison_exp
lsp8TokenMetadataBaseUri - String_comparison_exp
method - String_comparison_exp
name - String_comparison_exp
owner - Profile_bool_exp
owner_id - String_comparison_exp
src - String_comparison_exp
standard - standards_comparison_exp
supportedStandardsLsp4DigitalAsset - Boolean_comparison_exp
tokens - Token_bool_exp
tokens_aggregate - Token_aggregate_bool_exp
totalSupply - numeric_comparison_exp
transfers - Transfer_bool_exp
transfers_aggregate - Transfer_aggregate_bool_exp
updatedBlockNumber - Int_comparison_exp
updatedTimestamp - Int_comparison_exp
updatedTransactionIndex - Int_comparison_exp
url - String_comparison_exp
Example
{
  "_and": [Asset_bool_exp],
  "_not": Asset_bool_exp,
  "_or": [Asset_bool_exp],
  "appHistory": AppHistory_bool_exp,
  "appHistory_aggregate": AppHistory_aggregate_bool_exp,
  "appInstalls": AppInstall_bool_exp,
  "appInstalls_aggregate": AppInstall_aggregate_bool_exp,
  "assets": AssetAssetURL_bool_exp,
  "assets_": String_array_comparison_exp,
  "assets_aggregate": AssetAssetURL_aggregate_bool_exp,
  "attributes": AssetAttribute_bool_exp,
  "attributes_": String_array_comparison_exp,
  "attributes_aggregate": AssetAttribute_aggregate_bool_exp,
  "backgroundImages": AssetBackgroundImageURL_bool_exp,
  "backgroundImages_": String_array_comparison_exp,
  "baseHolders": Hold_bool_exp,
  "baseHolders_aggregate": Hold_aggregate_bool_exp,
  "blockNumber": Int_comparison_exp,
  "category": String_comparison_exp,
  "createdBlockNumber": Int_comparison_exp,
  "createdTimestamp": Int_comparison_exp,
  "createdTransactionIndex": Int_comparison_exp,
  "data": String_comparison_exp,
  "db_write_timestamp": timestamp_comparison_exp,
  "decimals": Int_comparison_exp,
  "description": String_comparison_exp,
  "error": String_comparison_exp,
  "holders": Hold_bool_exp,
  "holders_aggregate": Hold_aggregate_bool_exp,
  "icons": AssetIconURL_bool_exp,
  "icons_": String_array_comparison_exp,
  "icons_aggregate": AssetIconURL_aggregate_bool_exp,
  "id": String_comparison_exp,
  "images": AssetImageURL_bool_exp,
  "images_": String_array_comparison_exp,
  "images_aggregate": AssetImageURL_aggregate_bool_exp,
  "interfaces": String_array_comparison_exp,
  "isCollection": Boolean_comparison_exp,
  "isLSP7": Boolean_comparison_exp,
  "isUnknown": Boolean_comparison_exp,
  "links": AssetLink_bool_exp,
  "links_": String_array_comparison_exp,
  "links_aggregate": AssetLink_aggregate_bool_exp,
  "lsp4Creators": AssetCreators_bool_exp,
  "lsp4CreatorsMap": AssetCreators_bool_exp,
  "lsp4CreatorsMap_aggregate": AssetCreators_aggregate_bool_exp,
  "lsp4Creators_": String_array_comparison_exp,
  "lsp4Creators_aggregate": AssetCreators_aggregate_bool_exp,
  "lsp4TokenName": String_comparison_exp,
  "lsp4TokenSymbol": String_comparison_exp,
  "lsp4TokenType": Int_comparison_exp,
  "lsp8ReferenceContract": Asset_bool_exp,
  "lsp8ReferenceContractSelf": String_comparison_exp,
  "lsp8ReferenceContract_id": String_comparison_exp,
  "lsp8TokenIdFormat": Int_comparison_exp,
  "lsp8TokenMetadataBaseUri": String_comparison_exp,
  "method": String_comparison_exp,
  "name": String_comparison_exp,
  "owner": Profile_bool_exp,
  "owner_id": String_comparison_exp,
  "src": String_comparison_exp,
  "standard": standards_comparison_exp,
  "supportedStandardsLsp4DigitalAsset": Boolean_comparison_exp,
  "tokens": Token_bool_exp,
  "tokens_aggregate": Token_aggregate_bool_exp,
  "totalSupply": numeric_comparison_exp,
  "transfers": Transfer_bool_exp,
  "transfers_aggregate": Transfer_aggregate_bool_exp,
  "updatedBlockNumber": Int_comparison_exp,
  "updatedTimestamp": Int_comparison_exp,
  "updatedTransactionIndex": Int_comparison_exp,
  "url": String_comparison_exp
}

Asset_max_fields

Description

aggregate max on columns

Fields
Field Name Description
assets_ - [String!]
attributes_ - [String!]
backgroundImages_ - [String!]
blockNumber - Int
category - String
createdBlockNumber - Int
createdTimestamp - Int
createdTransactionIndex - Int
data - String
db_write_timestamp - timestamp
decimals - Int
description - String
error - String
icons_ - [String!]
id - String
images_ - [String!]
interfaces - [String!]
links_ - [String!]
lsp4Creators_ - [String!]
lsp4TokenName - String
lsp4TokenSymbol - String
lsp4TokenType - Int
lsp8ReferenceContractSelf - String
lsp8ReferenceContract_id - String
lsp8TokenIdFormat - Int
lsp8TokenMetadataBaseUri - String
method - String
name - String
owner_id - String
src - String
standard - standards
totalSupply - numeric
updatedBlockNumber - Int
updatedTimestamp - Int
updatedTransactionIndex - Int
url - String
Example
{
  "assets_": ["xyz789"],
  "attributes_": ["abc123"],
  "backgroundImages_": ["abc123"],
  "blockNumber": 123,
  "category": "abc123",
  "createdBlockNumber": 987,
  "createdTimestamp": 123,
  "createdTransactionIndex": 987,
  "data": "xyz789",
  "db_write_timestamp": timestamp,
  "decimals": 987,
  "description": "abc123",
  "error": "abc123",
  "icons_": ["abc123"],
  "id": "abc123",
  "images_": ["xyz789"],
  "interfaces": ["xyz789"],
  "links_": ["xyz789"],
  "lsp4Creators_": ["xyz789"],
  "lsp4TokenName": "xyz789",
  "lsp4TokenSymbol": "abc123",
  "lsp4TokenType": 987,
  "lsp8ReferenceContractSelf": "xyz789",
  "lsp8ReferenceContract_id": "xyz789",
  "lsp8TokenIdFormat": 987,
  "lsp8TokenMetadataBaseUri": "xyz789",
  "method": "abc123",
  "name": "abc123",
  "owner_id": "abc123",
  "src": "abc123",
  "standard": standards,
  "totalSupply": numeric,
  "updatedBlockNumber": 987,
  "updatedTimestamp": 123,
  "updatedTransactionIndex": 987,
  "url": "xyz789"
}

Asset_min_fields

Description

aggregate min on columns

Fields
Field Name Description
assets_ - [String!]
attributes_ - [String!]
backgroundImages_ - [String!]
blockNumber - Int
category - String
createdBlockNumber - Int
createdTimestamp - Int
createdTransactionIndex - Int
data - String
db_write_timestamp - timestamp
decimals - Int
description - String
error - String
icons_ - [String!]
id - String
images_ - [String!]
interfaces - [String!]
links_ - [String!]
lsp4Creators_ - [String!]
lsp4TokenName - String
lsp4TokenSymbol - String
lsp4TokenType - Int
lsp8ReferenceContractSelf - String
lsp8ReferenceContract_id - String
lsp8TokenIdFormat - Int
lsp8TokenMetadataBaseUri - String
method - String
name - String
owner_id - String
src - String
standard - standards
totalSupply - numeric
updatedBlockNumber - Int
updatedTimestamp - Int
updatedTransactionIndex - Int
url - String
Example
{
  "assets_": ["xyz789"],
  "attributes_": ["xyz789"],
  "backgroundImages_": ["abc123"],
  "blockNumber": 987,
  "category": "xyz789",
  "createdBlockNumber": 987,
  "createdTimestamp": 123,
  "createdTransactionIndex": 123,
  "data": "abc123",
  "db_write_timestamp": timestamp,
  "decimals": 123,
  "description": "abc123",
  "error": "xyz789",
  "icons_": ["abc123"],
  "id": "xyz789",
  "images_": ["xyz789"],
  "interfaces": ["xyz789"],
  "links_": ["abc123"],
  "lsp4Creators_": ["xyz789"],
  "lsp4TokenName": "xyz789",
  "lsp4TokenSymbol": "xyz789",
  "lsp4TokenType": 987,
  "lsp8ReferenceContractSelf": "abc123",
  "lsp8ReferenceContract_id": "xyz789",
  "lsp8TokenIdFormat": 987,
  "lsp8TokenMetadataBaseUri": "abc123",
  "method": "xyz789",
  "name": "xyz789",
  "owner_id": "xyz789",
  "src": "xyz789",
  "standard": standards,
  "totalSupply": numeric,
  "updatedBlockNumber": 123,
  "updatedTimestamp": 123,
  "updatedTransactionIndex": 987,
  "url": "xyz789"
}

Asset_order_by

Description

Ordering options when selecting data from "Asset".

Fields
Input Field Description
appHistory_aggregate - AppHistory_aggregate_order_by
appInstalls_aggregate - AppInstall_aggregate_order_by
assets_ - order_by
assets_aggregate - AssetAssetURL_aggregate_order_by
attributes_ - order_by
attributes_aggregate - AssetAttribute_aggregate_order_by
backgroundImages_ - order_by
backgroundImages_aggregate - AssetBackgroundImageURL_aggregate_order_by
baseHolders_aggregate - Hold_aggregate_order_by
blockNumber - order_by
category - order_by
createdBlockNumber - order_by
createdTimestamp - order_by
createdTransactionIndex - order_by
data - order_by
db_write_timestamp - order_by
decimals - order_by
description - order_by
error - order_by
holders_aggregate - Hold_aggregate_order_by
icons_ - order_by
icons_aggregate - AssetIconURL_aggregate_order_by
id - order_by
images_ - order_by
images_aggregate - AssetImageURL_aggregate_order_by
interfaces - order_by
isCollection - order_by
isLSP7 - order_by
isUnknown - order_by
links_ - order_by
links_aggregate - AssetLink_aggregate_order_by
lsp4CreatorsMap_aggregate - AssetCreators_aggregate_order_by
lsp4Creators_ - order_by
lsp4Creators_aggregate - AssetCreators_aggregate_order_by
lsp4TokenName - order_by
lsp4TokenSymbol - order_by
lsp4TokenType - order_by
lsp8ReferenceContract - Asset_order_by
lsp8ReferenceContractSelf - order_by
lsp8ReferenceContract_id - order_by
lsp8TokenIdFormat - order_by
lsp8TokenMetadataBaseUri - order_by
method - order_by
name - order_by
owner - Profile_order_by
owner_id - order_by
src - order_by
standard - order_by
supportedStandardsLsp4DigitalAsset - order_by
tokens_aggregate - Token_aggregate_order_by
totalSupply - order_by
transfers_aggregate - Transfer_aggregate_order_by
updatedBlockNumber - order_by
updatedTimestamp - order_by
updatedTransactionIndex - order_by
url - order_by
Example
{
  "appHistory_aggregate": AppHistory_aggregate_order_by,
  "appInstalls_aggregate": AppInstall_aggregate_order_by,
  "assets_": "asc",
  "assets_aggregate": AssetAssetURL_aggregate_order_by,
  "attributes_": "asc",
  "attributes_aggregate": AssetAttribute_aggregate_order_by,
  "backgroundImages_": "asc",
  "backgroundImages_aggregate": AssetBackgroundImageURL_aggregate_order_by,
  "baseHolders_aggregate": Hold_aggregate_order_by,
  "blockNumber": "asc",
  "category": "asc",
  "createdBlockNumber": "asc",
  "createdTimestamp": "asc",
  "createdTransactionIndex": "asc",
  "data": "asc",
  "db_write_timestamp": "asc",
  "decimals": "asc",
  "description": "asc",
  "error": "asc",
  "holders_aggregate": Hold_aggregate_order_by,
  "icons_": "asc",
  "icons_aggregate": AssetIconURL_aggregate_order_by,
  "id": "asc",
  "images_": "asc",
  "images_aggregate": AssetImageURL_aggregate_order_by,
  "interfaces": "asc",
  "isCollection": "asc",
  "isLSP7": "asc",
  "isUnknown": "asc",
  "links_": "asc",
  "links_aggregate": AssetLink_aggregate_order_by,
  "lsp4CreatorsMap_aggregate": AssetCreators_aggregate_order_by,
  "lsp4Creators_": "asc",
  "lsp4Creators_aggregate": AssetCreators_aggregate_order_by,
  "lsp4TokenName": "asc",
  "lsp4TokenSymbol": "asc",
  "lsp4TokenType": "asc",
  "lsp8ReferenceContract": Asset_order_by,
  "lsp8ReferenceContractSelf": "asc",
  "lsp8ReferenceContract_id": "asc",
  "lsp8TokenIdFormat": "asc",
  "lsp8TokenMetadataBaseUri": "asc",
  "method": "asc",
  "name": "asc",
  "owner": Profile_order_by,
  "owner_id": "asc",
  "src": "asc",
  "standard": "asc",
  "supportedStandardsLsp4DigitalAsset": "asc",
  "tokens_aggregate": Token_aggregate_order_by,
  "totalSupply": "asc",
  "transfers_aggregate": Transfer_aggregate_order_by,
  "updatedBlockNumber": "asc",
  "updatedTimestamp": "asc",
  "updatedTransactionIndex": "asc",
  "url": "asc"
}

Asset_select_column

Description

select columns of table "Asset"

Values
Enum Value Description

assets_

column name

attributes_

column name

backgroundImages_

column name

blockNumber

column name

category

column name

createdBlockNumber

column name

createdTimestamp

column name

createdTransactionIndex

column name

data

column name

db_write_timestamp

column name

decimals

column name

description

column name

error

column name

icons_

column name

id

column name

images_

column name

interfaces

column name

isCollection

column name

isLSP7

column name

isUnknown

column name

links_

column name

lsp4Creators_

column name

lsp4TokenName

column name

lsp4TokenSymbol

column name

lsp4TokenType

column name

lsp8ReferenceContractSelf

column name

lsp8ReferenceContract_id

column name

lsp8TokenIdFormat

column name

lsp8TokenMetadataBaseUri

column name

method

column name

name

column name

owner_id

column name

src

column name

standard

column name

supportedStandardsLsp4DigitalAsset

column name

totalSupply

column name

updatedBlockNumber

column name

updatedTimestamp

column name

updatedTransactionIndex

column name

url

column name
Example
"assets_"

Asset_stddev_fields

Description

aggregate stddev on columns

Fields
Field Name Description
blockNumber - Float
createdBlockNumber - Float
createdTimestamp - Float
createdTransactionIndex - Float
decimals - Float
lsp4TokenType - Float
lsp8TokenIdFormat - Float
totalSupply - Float
updatedBlockNumber - Float
updatedTimestamp - Float
updatedTransactionIndex - Float
Example
{
  "blockNumber": 987.65,
  "createdBlockNumber": 987.65,
  "createdTimestamp": 987.65,
  "createdTransactionIndex": 123.45,
  "decimals": 123.45,
  "lsp4TokenType": 987.65,
  "lsp8TokenIdFormat": 123.45,
  "totalSupply": 123.45,
  "updatedBlockNumber": 123.45,
  "updatedTimestamp": 987.65,
  "updatedTransactionIndex": 987.65
}

Asset_stddev_pop_fields

Description

aggregate stddev_pop on columns

Fields
Field Name Description
blockNumber - Float
createdBlockNumber - Float
createdTimestamp - Float
createdTransactionIndex - Float
decimals - Float
lsp4TokenType - Float
lsp8TokenIdFormat - Float
totalSupply - Float
updatedBlockNumber - Float
updatedTimestamp - Float
updatedTransactionIndex - Float
Example
{
  "blockNumber": 987.65,
  "createdBlockNumber": 987.65,
  "createdTimestamp": 987.65,
  "createdTransactionIndex": 987.65,
  "decimals": 987.65,
  "lsp4TokenType": 123.45,
  "lsp8TokenIdFormat": 123.45,
  "totalSupply": 987.65,
  "updatedBlockNumber": 123.45,
  "updatedTimestamp": 123.45,
  "updatedTransactionIndex": 987.65
}

Asset_stddev_samp_fields

Description

aggregate stddev_samp on columns

Fields
Field Name Description
blockNumber - Float
createdBlockNumber - Float
createdTimestamp - Float
createdTransactionIndex - Float
decimals - Float
lsp4TokenType - Float
lsp8TokenIdFormat - Float
totalSupply - Float
updatedBlockNumber - Float
updatedTimestamp - Float
updatedTransactionIndex - Float
Example
{
  "blockNumber": 987.65,
  "createdBlockNumber": 123.45,
  "createdTimestamp": 987.65,
  "createdTransactionIndex": 987.65,
  "decimals": 987.65,
  "lsp4TokenType": 987.65,
  "lsp8TokenIdFormat": 123.45,
  "totalSupply": 123.45,
  "updatedBlockNumber": 123.45,
  "updatedTimestamp": 123.45,
  "updatedTransactionIndex": 987.65
}

Asset_stream_cursor_input

Description

Streaming cursor of the table "Asset"

Fields
Input Field Description
initial_value - Asset_stream_cursor_value_input! Stream column input with initial value
ordering - cursor_ordering cursor ordering
Example
{
  "initial_value": Asset_stream_cursor_value_input,
  "ordering": "ASC"
}

Asset_stream_cursor_value_input

Description

Initial value of the column from where the streaming should start

Fields
Input Field Description
assets_ - [String!]
attributes_ - [String!]
backgroundImages_ - [String!]
blockNumber - Int
category - String
createdBlockNumber - Int
createdTimestamp - Int
createdTransactionIndex - Int
data - String
db_write_timestamp - timestamp
decimals - Int
description - String
error - String
icons_ - [String!]
id - String
images_ - [String!]
interfaces - [String!]
isCollection - Boolean
isLSP7 - Boolean
isUnknown - Boolean
links_ - [String!]
lsp4Creators_ - [String!]
lsp4TokenName - String
lsp4TokenSymbol - String
lsp4TokenType - Int
lsp8ReferenceContractSelf - String
lsp8ReferenceContract_id - String
lsp8TokenIdFormat - Int
lsp8TokenMetadataBaseUri - String
method - String
name - String
owner_id - String
src - String
standard - standards
supportedStandardsLsp4DigitalAsset - Boolean
totalSupply - numeric
updatedBlockNumber - Int
updatedTimestamp - Int
updatedTransactionIndex - Int
url - String
Example
{
  "assets_": ["abc123"],
  "attributes_": ["abc123"],
  "backgroundImages_": ["abc123"],
  "blockNumber": 123,
  "category": "xyz789",
  "createdBlockNumber": 123,
  "createdTimestamp": 987,
  "createdTransactionIndex": 987,
  "data": "xyz789",
  "db_write_timestamp": timestamp,
  "decimals": 123,
  "description": "xyz789",
  "error": "xyz789",
  "icons_": ["abc123"],
  "id": "xyz789",
  "images_": ["abc123"],
  "interfaces": ["abc123"],
  "isCollection": true,
  "isLSP7": true,
  "isUnknown": false,
  "links_": ["xyz789"],
  "lsp4Creators_": ["abc123"],
  "lsp4TokenName": "abc123",
  "lsp4TokenSymbol": "abc123",
  "lsp4TokenType": 987,
  "lsp8ReferenceContractSelf": "abc123",
  "lsp8ReferenceContract_id": "xyz789",
  "lsp8TokenIdFormat": 987,
  "lsp8TokenMetadataBaseUri": "abc123",
  "method": "abc123",
  "name": "abc123",
  "owner_id": "xyz789",
  "src": "xyz789",
  "standard": standards,
  "supportedStandardsLsp4DigitalAsset": false,
  "totalSupply": numeric,
  "updatedBlockNumber": 987,
  "updatedTimestamp": 987,
  "updatedTransactionIndex": 987,
  "url": "abc123"
}

Asset_sum_fields

Description

aggregate sum on columns

Fields
Field Name Description
blockNumber - Int
createdBlockNumber - Int
createdTimestamp - Int
createdTransactionIndex - Int
decimals - Int
lsp4TokenType - Int
lsp8TokenIdFormat - Int
totalSupply - numeric
updatedBlockNumber - Int
updatedTimestamp - Int
updatedTransactionIndex - Int
Example
{
  "blockNumber": 987,
  "createdBlockNumber": 987,
  "createdTimestamp": 123,
  "createdTransactionIndex": 987,
  "decimals": 123,
  "lsp4TokenType": 987,
  "lsp8TokenIdFormat": 987,
  "totalSupply": numeric,
  "updatedBlockNumber": 123,
  "updatedTimestamp": 987,
  "updatedTransactionIndex": 987
}

Asset_var_pop_fields

Description

aggregate var_pop on columns

Fields
Field Name Description
blockNumber - Float
createdBlockNumber - Float
createdTimestamp - Float
createdTransactionIndex - Float
decimals - Float
lsp4TokenType - Float
lsp8TokenIdFormat - Float
totalSupply - Float
updatedBlockNumber - Float
updatedTimestamp - Float
updatedTransactionIndex - Float
Example
{
  "blockNumber": 123.45,
  "createdBlockNumber": 987.65,
  "createdTimestamp": 123.45,
  "createdTransactionIndex": 123.45,
  "decimals": 123.45,
  "lsp4TokenType": 123.45,
  "lsp8TokenIdFormat": 123.45,
  "totalSupply": 123.45,
  "updatedBlockNumber": 123.45,
  "updatedTimestamp": 987.65,
  "updatedTransactionIndex": 987.65
}

Asset_var_samp_fields

Description

aggregate var_samp on columns

Fields
Field Name Description
blockNumber - Float
createdBlockNumber - Float
createdTimestamp - Float
createdTransactionIndex - Float
decimals - Float
lsp4TokenType - Float
lsp8TokenIdFormat - Float
totalSupply - Float
updatedBlockNumber - Float
updatedTimestamp - Float
updatedTransactionIndex - Float
Example
{
  "blockNumber": 123.45,
  "createdBlockNumber": 987.65,
  "createdTimestamp": 123.45,
  "createdTransactionIndex": 987.65,
  "decimals": 987.65,
  "lsp4TokenType": 987.65,
  "lsp8TokenIdFormat": 987.65,
  "totalSupply": 123.45,
  "updatedBlockNumber": 987.65,
  "updatedTimestamp": 987.65,
  "updatedTransactionIndex": 987.65
}

Asset_variance_fields

Description

aggregate variance on columns

Fields
Field Name Description
blockNumber - Float
createdBlockNumber - Float
createdTimestamp - Float
createdTransactionIndex - Float
decimals - Float
lsp4TokenType - Float
lsp8TokenIdFormat - Float
totalSupply - Float
updatedBlockNumber - Float
updatedTimestamp - Float
updatedTransactionIndex - Float
Example
{
  "blockNumber": 987.65,
  "createdBlockNumber": 987.65,
  "createdTimestamp": 987.65,
  "createdTransactionIndex": 987.65,
  "decimals": 123.45,
  "lsp4TokenType": 123.45,
  "lsp8TokenIdFormat": 987.65,
  "totalSupply": 123.45,
  "updatedBlockNumber": 987.65,
  "updatedTimestamp": 123.45,
  "updatedTransactionIndex": 123.45
}

AvatarAssetURL

Description

columns and relationships of "AvatarAssetURL"

Fields
Field Name Description
blockNumber - Int!
contentAsset - Asset An object relationship
contentAsset_id - String
contentToken - Token An object relationship
contentToken_id - String
data - String
db_write_timestamp - timestamp
error - String
fileType - String
height - Int
id - String!
index - Int
method - String
profile - Profile An object relationship
profile_id - String!
src - String
url - String
verified - verificationstatus!
width - Int
Example
{
  "blockNumber": 123,
  "contentAsset": Asset,
  "contentAsset_id": "abc123",
  "contentToken": Token,
  "contentToken_id": "xyz789",
  "data": "xyz789",
  "db_write_timestamp": timestamp,
  "error": "xyz789",
  "fileType": "abc123",
  "height": 987,
  "id": "xyz789",
  "index": 123,
  "method": "xyz789",
  "profile": Profile,
  "profile_id": "xyz789",
  "src": "xyz789",
  "url": "abc123",
  "verified": verificationstatus,
  "width": 987
}

AvatarAssetURL_aggregate

Description

aggregated selection of "AvatarAssetURL"

Fields
Field Name Description
aggregate - AvatarAssetURL_aggregate_fields
nodes - [AvatarAssetURL!]!
Example
{
  "aggregate": AvatarAssetURL_aggregate_fields,
  "nodes": [AvatarAssetURL]
}

AvatarAssetURL_aggregate_bool_exp

Fields
Input Field Description
count - AvatarAssetURL_aggregate_bool_exp_count
Example
{"count": AvatarAssetURL_aggregate_bool_exp_count}

AvatarAssetURL_aggregate_bool_exp_count

Fields
Input Field Description
arguments - [AvatarAssetURL_select_column!]
distinct - Boolean
filter - AvatarAssetURL_bool_exp
predicate - Int_comparison_exp!
Example
{
  "arguments": ["blockNumber"],
  "distinct": false,
  "filter": AvatarAssetURL_bool_exp,
  "predicate": Int_comparison_exp
}

AvatarAssetURL_aggregate_fields

Description

aggregate fields of "AvatarAssetURL"

Example
{
  "avg": AvatarAssetURL_avg_fields,
  "count": 987,
  "max": AvatarAssetURL_max_fields,
  "min": AvatarAssetURL_min_fields,
  "stddev": AvatarAssetURL_stddev_fields,
  "stddev_pop": AvatarAssetURL_stddev_pop_fields,
  "stddev_samp": AvatarAssetURL_stddev_samp_fields,
  "sum": AvatarAssetURL_sum_fields,
  "var_pop": AvatarAssetURL_var_pop_fields,
  "var_samp": AvatarAssetURL_var_samp_fields,
  "variance": AvatarAssetURL_variance_fields
}

AvatarAssetURL_aggregate_order_by

Description

order by aggregate values of table "AvatarAssetURL"

Example
{
  "avg": AvatarAssetURL_avg_order_by,
  "count": "asc",
  "max": AvatarAssetURL_max_order_by,
  "min": AvatarAssetURL_min_order_by,
  "stddev": AvatarAssetURL_stddev_order_by,
  "stddev_pop": AvatarAssetURL_stddev_pop_order_by,
  "stddev_samp": AvatarAssetURL_stddev_samp_order_by,
  "sum": AvatarAssetURL_sum_order_by,
  "var_pop": AvatarAssetURL_var_pop_order_by,
  "var_samp": AvatarAssetURL_var_samp_order_by,
  "variance": AvatarAssetURL_variance_order_by
}

AvatarAssetURL_avg_fields

Description

aggregate avg on columns

Fields
Field Name Description
blockNumber - Float
height - Float
index - Float
width - Float
Example
{"blockNumber": 987.65, "height": 123.45, "index": 987.65, "width": 987.65}

AvatarAssetURL_avg_order_by

Description

order by avg() on columns of table "AvatarAssetURL"

Fields
Input Field Description
blockNumber - order_by
height - order_by
index - order_by
width - order_by
Example
{"blockNumber": "asc", "height": "asc", "index": "asc", "width": "asc"}

AvatarAssetURL_bool_exp

Description

Boolean expression to filter rows from the table "AvatarAssetURL". All fields are combined with a logical 'AND'.

Example
{
  "_and": [AvatarAssetURL_bool_exp],
  "_not": AvatarAssetURL_bool_exp,
  "_or": [AvatarAssetURL_bool_exp],
  "blockNumber": Int_comparison_exp,
  "contentAsset": Asset_bool_exp,
  "contentAsset_id": String_comparison_exp,
  "contentToken": Token_bool_exp,
  "contentToken_id": String_comparison_exp,
  "data": String_comparison_exp,
  "db_write_timestamp": timestamp_comparison_exp,
  "error": String_comparison_exp,
  "fileType": String_comparison_exp,
  "height": Int_comparison_exp,
  "id": String_comparison_exp,
  "index": Int_comparison_exp,
  "method": String_comparison_exp,
  "profile": Profile_bool_exp,
  "profile_id": String_comparison_exp,
  "src": String_comparison_exp,
  "url": String_comparison_exp,
  "verified": verificationstatus_comparison_exp,
  "width": Int_comparison_exp
}

AvatarAssetURL_max_fields

Description

aggregate max on columns

Fields
Field Name Description
blockNumber - Int
contentAsset_id - String
contentToken_id - String
data - String
db_write_timestamp - timestamp
error - String
fileType - String
height - Int
id - String
index - Int
method - String
profile_id - String
src - String
url - String
verified - verificationstatus
width - Int
Example
{
  "blockNumber": 123,
  "contentAsset_id": "abc123",
  "contentToken_id": "abc123",
  "data": "abc123",
  "db_write_timestamp": timestamp,
  "error": "xyz789",
  "fileType": "abc123",
  "height": 987,
  "id": "abc123",
  "index": 123,
  "method": "abc123",
  "profile_id": "xyz789",
  "src": "xyz789",
  "url": "xyz789",
  "verified": verificationstatus,
  "width": 987
}

AvatarAssetURL_max_order_by

Description

order by max() on columns of table "AvatarAssetURL"

Fields
Input Field Description
blockNumber - order_by
contentAsset_id - order_by
contentToken_id - order_by
data - order_by
db_write_timestamp - order_by
error - order_by
fileType - order_by
height - order_by
id - order_by
index - order_by
method - order_by
profile_id - order_by
src - order_by
url - order_by
verified - order_by
width - order_by
Example
{
  "blockNumber": "asc",
  "contentAsset_id": "asc",
  "contentToken_id": "asc",
  "data": "asc",
  "db_write_timestamp": "asc",
  "error": "asc",
  "fileType": "asc",
  "height": "asc",
  "id": "asc",
  "index": "asc",
  "method": "asc",
  "profile_id": "asc",
  "src": "asc",
  "url": "asc",
  "verified": "asc",
  "width": "asc"
}

AvatarAssetURL_min_fields

Description

aggregate min on columns

Fields
Field Name Description
blockNumber - Int
contentAsset_id - String
contentToken_id - String
data - String
db_write_timestamp - timestamp
error - String
fileType - String
height - Int
id - String
index - Int
method - String
profile_id - String
src - String
url - String
verified - verificationstatus
width - Int
Example
{
  "blockNumber": 123,
  "contentAsset_id": "abc123",
  "contentToken_id": "abc123",
  "data": "abc123",
  "db_write_timestamp": timestamp,
  "error": "xyz789",
  "fileType": "xyz789",
  "height": 987,
  "id": "xyz789",
  "index": 123,
  "method": "xyz789",
  "profile_id": "abc123",
  "src": "abc123",
  "url": "abc123",
  "verified": verificationstatus,
  "width": 123
}

AvatarAssetURL_min_order_by

Description

order by min() on columns of table "AvatarAssetURL"

Fields
Input Field Description
blockNumber - order_by
contentAsset_id - order_by
contentToken_id - order_by
data - order_by
db_write_timestamp - order_by
error - order_by
fileType - order_by
height - order_by
id - order_by
index - order_by
method - order_by
profile_id - order_by
src - order_by
url - order_by
verified - order_by
width - order_by
Example
{
  "blockNumber": "asc",
  "contentAsset_id": "asc",
  "contentToken_id": "asc",
  "data": "asc",
  "db_write_timestamp": "asc",
  "error": "asc",
  "fileType": "asc",
  "height": "asc",
  "id": "asc",
  "index": "asc",
  "method": "asc",
  "profile_id": "asc",
  "src": "asc",
  "url": "asc",
  "verified": "asc",
  "width": "asc"
}

AvatarAssetURL_order_by

Description

Ordering options when selecting data from "AvatarAssetURL".

Fields
Input Field Description
blockNumber - order_by
contentAsset - Asset_order_by
contentAsset_id - order_by
contentToken - Token_order_by
contentToken_id - order_by
data - order_by
db_write_timestamp - order_by
error - order_by
fileType - order_by
height - order_by
id - order_by
index - order_by
method - order_by
profile - Profile_order_by
profile_id - order_by
src - order_by
url - order_by
verified - order_by
width - order_by
Example
{
  "blockNumber": "asc",
  "contentAsset": Asset_order_by,
  "contentAsset_id": "asc",
  "contentToken": Token_order_by,
  "contentToken_id": "asc",
  "data": "asc",
  "db_write_timestamp": "asc",
  "error": "asc",
  "fileType": "asc",
  "height": "asc",
  "id": "asc",
  "index": "asc",
  "method": "asc",
  "profile": Profile_order_by,
  "profile_id": "asc",
  "src": "asc",
  "url": "asc",
  "verified": "asc",
  "width": "asc"
}

AvatarAssetURL_select_column

Description

select columns of table "AvatarAssetURL"

Values
Enum Value Description

blockNumber

column name

contentAsset_id

column name

contentToken_id

column name

data

column name

db_write_timestamp

column name

error

column name

fileType

column name

height

column name

id

column name

index

column name

method

column name

profile_id

column name

src

column name

url

column name

verified

column name

width

column name
Example
"blockNumber"

AvatarAssetURL_stddev_fields

Description

aggregate stddev on columns

Fields
Field Name Description
blockNumber - Float
height - Float
index - Float
width - Float
Example
{"blockNumber": 987.65, "height": 987.65, "index": 987.65, "width": 987.65}

AvatarAssetURL_stddev_order_by

Description

order by stddev() on columns of table "AvatarAssetURL"

Fields
Input Field Description
blockNumber - order_by
height - order_by
index - order_by
width - order_by
Example
{"blockNumber": "asc", "height": "asc", "index": "asc", "width": "asc"}

AvatarAssetURL_stddev_pop_fields

Description

aggregate stddev_pop on columns

Fields
Field Name Description
blockNumber - Float
height - Float
index - Float
width - Float
Example
{"blockNumber": 987.65, "height": 987.65, "index": 123.45, "width": 987.65}

AvatarAssetURL_stddev_pop_order_by

Description

order by stddev_pop() on columns of table "AvatarAssetURL"

Fields
Input Field Description
blockNumber - order_by
height - order_by
index - order_by
width - order_by
Example
{"blockNumber": "asc", "height": "asc", "index": "asc", "width": "asc"}

AvatarAssetURL_stddev_samp_fields

Description

aggregate stddev_samp on columns

Fields
Field Name Description
blockNumber - Float
height - Float
index - Float
width - Float
Example
{"blockNumber": 123.45, "height": 123.45, "index": 123.45, "width": 123.45}

AvatarAssetURL_stddev_samp_order_by

Description

order by stddev_samp() on columns of table "AvatarAssetURL"

Fields
Input Field Description
blockNumber - order_by
height - order_by
index - order_by
width - order_by
Example
{"blockNumber": "asc", "height": "asc", "index": "asc", "width": "asc"}

AvatarAssetURL_stream_cursor_input

Description

Streaming cursor of the table "AvatarAssetURL"

Fields
Input Field Description
initial_value - AvatarAssetURL_stream_cursor_value_input! Stream column input with initial value
ordering - cursor_ordering cursor ordering
Example
{
  "initial_value": AvatarAssetURL_stream_cursor_value_input,
  "ordering": "ASC"
}

AvatarAssetURL_stream_cursor_value_input

Description

Initial value of the column from where the streaming should start

Fields
Input Field Description
blockNumber - Int
contentAsset_id - String
contentToken_id - String
data - String
db_write_timestamp - timestamp
error - String
fileType - String
height - Int
id - String
index - Int
method - String
profile_id - String
src - String
url - String
verified - verificationstatus
width - Int
Example
{
  "blockNumber": 123,
  "contentAsset_id": "abc123",
  "contentToken_id": "xyz789",
  "data": "xyz789",
  "db_write_timestamp": timestamp,
  "error": "xyz789",
  "fileType": "xyz789",
  "height": 123,
  "id": "xyz789",
  "index": 987,
  "method": "xyz789",
  "profile_id": "abc123",
  "src": "abc123",
  "url": "xyz789",
  "verified": verificationstatus,
  "width": 987
}

AvatarAssetURL_sum_fields

Description

aggregate sum on columns

Fields
Field Name Description
blockNumber - Int
height - Int
index - Int
width - Int
Example
{"blockNumber": 123, "height": 987, "index": 987, "width": 123}

AvatarAssetURL_sum_order_by

Description

order by sum() on columns of table "AvatarAssetURL"

Fields
Input Field Description
blockNumber - order_by
height - order_by
index - order_by
width - order_by
Example
{"blockNumber": "asc", "height": "asc", "index": "asc", "width": "asc"}

AvatarAssetURL_var_pop_fields

Description

aggregate var_pop on columns

Fields
Field Name Description
blockNumber - Float
height - Float
index - Float
width - Float
Example
{"blockNumber": 123.45, "height": 123.45, "index": 123.45, "width": 987.65}

AvatarAssetURL_var_pop_order_by

Description

order by var_pop() on columns of table "AvatarAssetURL"

Fields
Input Field Description
blockNumber - order_by
height - order_by
index - order_by
width - order_by
Example
{"blockNumber": "asc", "height": "asc", "index": "asc", "width": "asc"}

AvatarAssetURL_var_samp_fields

Description

aggregate var_samp on columns

Fields
Field Name Description
blockNumber - Float
height - Float
index - Float
width - Float
Example
{"blockNumber": 123.45, "height": 123.45, "index": 123.45, "width": 987.65}

AvatarAssetURL_var_samp_order_by

Description

order by var_samp() on columns of table "AvatarAssetURL"

Fields
Input Field Description
blockNumber - order_by
height - order_by
index - order_by
width - order_by
Example
{"blockNumber": "asc", "height": "asc", "index": "asc", "width": "asc"}

AvatarAssetURL_variance_fields

Description

aggregate variance on columns

Fields
Field Name Description
blockNumber - Float
height - Float
index - Float
width - Float
Example
{"blockNumber": 123.45, "height": 123.45, "index": 987.65, "width": 123.45}

AvatarAssetURL_variance_order_by

Description

order by variance() on columns of table "AvatarAssetURL"

Fields
Input Field Description
blockNumber - order_by
height - order_by
index - order_by
width - order_by
Example
{"blockNumber": "asc", "height": "asc", "index": "asc", "width": "asc"}

BackgroundImageURL

Description

columns and relationships of "BackgroundImageURL"

Fields
Field Name Description
blockNumber - Int!
data - String
db_write_timestamp - timestamp
error - String
fileType - String
height - Int
id - String!
index - Int
method - String
profile - Profile An object relationship
profile_id - String!
src - String
url - String
verified - verificationstatus!
width - Int
Example
{
  "blockNumber": 123,
  "data": "abc123",
  "db_write_timestamp": timestamp,
  "error": "abc123",
  "fileType": "xyz789",
  "height": 123,
  "id": "xyz789",
  "index": 123,
  "method": "xyz789",
  "profile": Profile,
  "profile_id": "xyz789",
  "src": "xyz789",
  "url": "abc123",
  "verified": verificationstatus,
  "width": 123
}

BackgroundImageURL_aggregate

Description

aggregated selection of "BackgroundImageURL"

Fields
Field Name Description
aggregate - BackgroundImageURL_aggregate_fields
nodes - [BackgroundImageURL!]!
Example
{
  "aggregate": BackgroundImageURL_aggregate_fields,
  "nodes": [BackgroundImageURL]
}

BackgroundImageURL_aggregate_fields

Example
{
  "avg": BackgroundImageURL_avg_fields,
  "count": 123,
  "max": BackgroundImageURL_max_fields,
  "min": BackgroundImageURL_min_fields,
  "stddev": BackgroundImageURL_stddev_fields,
  "stddev_pop": BackgroundImageURL_stddev_pop_fields,
  "stddev_samp": BackgroundImageURL_stddev_samp_fields,
  "sum": BackgroundImageURL_sum_fields,
  "var_pop": BackgroundImageURL_var_pop_fields,
  "var_samp": BackgroundImageURL_var_samp_fields,
  "variance": BackgroundImageURL_variance_fields
}

BackgroundImageURL_avg_fields

Description

aggregate avg on columns

Fields
Field Name Description
blockNumber - Float
height - Float
index - Float
width - Float
Example
{"blockNumber": 987.65, "height": 987.65, "index": 987.65, "width": 123.45}

BackgroundImageURL_bool_exp

Description

Boolean expression to filter rows from the table "BackgroundImageURL". All fields are combined with a logical 'AND'.

Example
{
  "_and": [BackgroundImageURL_bool_exp],
  "_not": BackgroundImageURL_bool_exp,
  "_or": [BackgroundImageURL_bool_exp],
  "blockNumber": Int_comparison_exp,
  "data": String_comparison_exp,
  "db_write_timestamp": timestamp_comparison_exp,
  "error": String_comparison_exp,
  "fileType": String_comparison_exp,
  "height": Int_comparison_exp,
  "id": String_comparison_exp,
  "index": Int_comparison_exp,
  "method": String_comparison_exp,
  "profile": Profile_bool_exp,
  "profile_id": String_comparison_exp,
  "src": String_comparison_exp,
  "url": String_comparison_exp,
  "verified": verificationstatus_comparison_exp,
  "width": Int_comparison_exp
}

BackgroundImageURL_max_fields

Description

aggregate max on columns

Fields
Field Name Description
blockNumber - Int
data - String
db_write_timestamp - timestamp
error - String
fileType - String
height - Int
id - String
index - Int
method - String
profile_id - String
src - String
url - String
verified - verificationstatus
width - Int
Example
{
  "blockNumber": 123,
  "data": "abc123",
  "db_write_timestamp": timestamp,
  "error": "xyz789",
  "fileType": "xyz789",
  "height": 123,
  "id": "xyz789",
  "index": 123,
  "method": "abc123",
  "profile_id": "xyz789",
  "src": "abc123",
  "url": "abc123",
  "verified": verificationstatus,
  "width": 123
}

BackgroundImageURL_min_fields

Description

aggregate min on columns

Fields
Field Name Description
blockNumber - Int
data - String
db_write_timestamp - timestamp
error - String
fileType - String
height - Int
id - String
index - Int
method - String
profile_id - String
src - String
url - String
verified - verificationstatus
width - Int
Example
{
  "blockNumber": 987,
  "data": "xyz789",
  "db_write_timestamp": timestamp,
  "error": "xyz789",
  "fileType": "xyz789",
  "height": 987,
  "id": "abc123",
  "index": 987,
  "method": "xyz789",
  "profile_id": "abc123",
  "src": "abc123",
  "url": "xyz789",
  "verified": verificationstatus,
  "width": 987
}

BackgroundImageURL_order_by

Description

Ordering options when selecting data from "BackgroundImageURL".

Fields
Input Field Description
blockNumber - order_by
data - order_by
db_write_timestamp - order_by
error - order_by
fileType - order_by
height - order_by
id - order_by
index - order_by
method - order_by
profile - Profile_order_by
profile_id - order_by
src - order_by
url - order_by
verified - order_by
width - order_by
Example
{
  "blockNumber": "asc",
  "data": "asc",
  "db_write_timestamp": "asc",
  "error": "asc",
  "fileType": "asc",
  "height": "asc",
  "id": "asc",
  "index": "asc",
  "method": "asc",
  "profile": Profile_order_by,
  "profile_id": "asc",
  "src": "asc",
  "url": "asc",
  "verified": "asc",
  "width": "asc"
}

BackgroundImageURL_select_column

Description

select columns of table "BackgroundImageURL"

Values
Enum Value Description

blockNumber

column name

data

column name

db_write_timestamp

column name

error

column name

fileType

column name

height

column name

id

column name

index

column name

method

column name

profile_id

column name

src

column name

url

column name

verified

column name

width

column name
Example
"blockNumber"

BackgroundImageURL_stddev_fields

Description

aggregate stddev on columns

Fields
Field Name Description
blockNumber - Float
height - Float
index - Float
width - Float
Example
{"blockNumber": 987.65, "height": 123.45, "index": 987.65, "width": 123.45}

BackgroundImageURL_stddev_pop_fields

Description

aggregate stddev_pop on columns

Fields
Field Name Description
blockNumber - Float
height - Float
index - Float
width - Float
Example
{"blockNumber": 987.65, "height": 987.65, "index": 123.45, "width": 123.45}

BackgroundImageURL_stddev_samp_fields

Description

aggregate stddev_samp on columns

Fields
Field Name Description
blockNumber - Float
height - Float
index - Float
width - Float
Example
{"blockNumber": 123.45, "height": 123.45, "index": 123.45, "width": 987.65}

BackgroundImageURL_stream_cursor_input

Description

Streaming cursor of the table "BackgroundImageURL"

Fields
Input Field Description
initial_value - BackgroundImageURL_stream_cursor_value_input! Stream column input with initial value
ordering - cursor_ordering cursor ordering
Example
{
  "initial_value": BackgroundImageURL_stream_cursor_value_input,
  "ordering": "ASC"
}

BackgroundImageURL_stream_cursor_value_input

Description

Initial value of the column from where the streaming should start

Fields
Input Field Description
blockNumber - Int
data - String
db_write_timestamp - timestamp
error - String
fileType - String
height - Int
id - String
index - Int
method - String
profile_id - String
src - String
url - String
verified - verificationstatus
width - Int
Example
{
  "blockNumber": 123,
  "data": "abc123",
  "db_write_timestamp": timestamp,
  "error": "abc123",
  "fileType": "abc123",
  "height": 987,
  "id": "xyz789",
  "index": 123,
  "method": "xyz789",
  "profile_id": "xyz789",
  "src": "abc123",
  "url": "xyz789",
  "verified": verificationstatus,
  "width": 987
}

BackgroundImageURL_sum_fields

Description

aggregate sum on columns

Fields
Field Name Description
blockNumber - Int
height - Int
index - Int
width - Int
Example
{"blockNumber": 123, "height": 123, "index": 987, "width": 987}

BackgroundImageURL_var_pop_fields

Description

aggregate var_pop on columns

Fields
Field Name Description
blockNumber - Float
height - Float
index - Float
width - Float
Example
{"blockNumber": 123.45, "height": 987.65, "index": 987.65, "width": 123.45}

BackgroundImageURL_var_samp_fields

Description

aggregate var_samp on columns

Fields
Field Name Description
blockNumber - Float
height - Float
index - Float
width - Float
Example
{"blockNumber": 123.45, "height": 123.45, "index": 123.45, "width": 987.65}

BackgroundImageURL_variance_fields

Description

aggregate variance on columns

Fields
Field Name Description
blockNumber - Float
height - Float
index - Float
width - Float
Example
{"blockNumber": 987.65, "height": 123.45, "index": 123.45, "width": 987.65}

Boolean

Description

The Boolean scalar type represents true or false.

Example
true

Boolean_comparison_exp

Description

Boolean expression to compare columns of type "Boolean". All fields are combined with logical 'AND'.

Fields
Input Field Description
_eq - Boolean
_gt - Boolean
_gte - Boolean
_in - [Boolean!]
_is_null - Boolean
_lt - Boolean
_lte - Boolean
_neq - Boolean
_nin - [Boolean!]
Example
{
  "_eq": true,
  "_gt": false,
  "_gte": true,
  "_in": [false],
  "_is_null": true,
  "_lt": true,
  "_lte": false,
  "_neq": true,
  "_nin": [false]
}

Controller

Description

columns and relationships of "Controller"

Fields
Field Name Description
address - String
blockNumber - Int!
db_write_timestamp - timestamp
id - String!
permissions - String
profile - Profile An object relationship
profile_id - String
tags - [permissions!]
Example
{
  "address": "xyz789",
  "blockNumber": 987,
  "db_write_timestamp": timestamp,
  "id": "abc123",
  "permissions": "xyz789",
  "profile": Profile,
  "profile_id": "xyz789",
  "tags": [permissions]
}

Controller_aggregate

Description

aggregated selection of "Controller"

Fields
Field Name Description
aggregate - Controller_aggregate_fields
nodes - [Controller!]!
Example
{
  "aggregate": Controller_aggregate_fields,
  "nodes": [Controller]
}

Controller_aggregate_bool_exp

Fields
Input Field Description
count - Controller_aggregate_bool_exp_count
Example
{"count": Controller_aggregate_bool_exp_count}

Controller_aggregate_bool_exp_count

Fields
Input Field Description
arguments - [Controller_select_column!]
distinct - Boolean
filter - Controller_bool_exp
predicate - Int_comparison_exp!
Example
{
  "arguments": ["address"],
  "distinct": false,
  "filter": Controller_bool_exp,
  "predicate": Int_comparison_exp
}

Controller_aggregate_fields

Description

aggregate fields of "Controller"

Example
{
  "avg": Controller_avg_fields,
  "count": 987,
  "max": Controller_max_fields,
  "min": Controller_min_fields,
  "stddev": Controller_stddev_fields,
  "stddev_pop": Controller_stddev_pop_fields,
  "stddev_samp": Controller_stddev_samp_fields,
  "sum": Controller_sum_fields,
  "var_pop": Controller_var_pop_fields,
  "var_samp": Controller_var_samp_fields,
  "variance": Controller_variance_fields
}

Controller_aggregate_order_by

Description

order by aggregate values of table "Controller"

Example
{
  "avg": Controller_avg_order_by,
  "count": "asc",
  "max": Controller_max_order_by,
  "min": Controller_min_order_by,
  "stddev": Controller_stddev_order_by,
  "stddev_pop": Controller_stddev_pop_order_by,
  "stddev_samp": Controller_stddev_samp_order_by,
  "sum": Controller_sum_order_by,
  "var_pop": Controller_var_pop_order_by,
  "var_samp": Controller_var_samp_order_by,
  "variance": Controller_variance_order_by
}

Controller_avg_fields

Description

aggregate avg on columns

Fields
Field Name Description
blockNumber - Float
Example
{"blockNumber": 987.65}

Controller_avg_order_by

Description

order by avg() on columns of table "Controller"

Fields
Input Field Description
blockNumber - order_by
Example
{"blockNumber": "asc"}

Controller_bool_exp

Description

Boolean expression to filter rows from the table "Controller". All fields are combined with a logical 'AND'.

Example
{
  "_and": [Controller_bool_exp],
  "_not": Controller_bool_exp,
  "_or": [Controller_bool_exp],
  "address": String_comparison_exp,
  "blockNumber": Int_comparison_exp,
  "db_write_timestamp": timestamp_comparison_exp,
  "id": String_comparison_exp,
  "permissions": String_comparison_exp,
  "profile": Profile_bool_exp,
  "profile_id": String_comparison_exp,
  "tags": permissions_array_comparison_exp
}

Controller_max_fields

Description

aggregate max on columns

Fields
Field Name Description
address - String
blockNumber - Int
db_write_timestamp - timestamp
id - String
permissions - String
profile_id - String
tags - [permissions!]
Example
{
  "address": "abc123",
  "blockNumber": 987,
  "db_write_timestamp": timestamp,
  "id": "xyz789",
  "permissions": "xyz789",
  "profile_id": "abc123",
  "tags": [permissions]
}

Controller_max_order_by

Description

order by max() on columns of table "Controller"

Fields
Input Field Description
address - order_by
blockNumber - order_by
db_write_timestamp - order_by
id - order_by
permissions - order_by
profile_id - order_by
tags - order_by
Example
{
  "address": "asc",
  "blockNumber": "asc",
  "db_write_timestamp": "asc",
  "id": "asc",
  "permissions": "asc",
  "profile_id": "asc",
  "tags": "asc"
}

Controller_min_fields

Description

aggregate min on columns

Fields
Field Name Description
address - String
blockNumber - Int
db_write_timestamp - timestamp
id - String
permissions - String
profile_id - String
tags - [permissions!]
Example
{
  "address": "xyz789",
  "blockNumber": 987,
  "db_write_timestamp": timestamp,
  "id": "xyz789",
  "permissions": "xyz789",
  "profile_id": "abc123",
  "tags": [permissions]
}

Controller_min_order_by

Description

order by min() on columns of table "Controller"

Fields
Input Field Description
address - order_by
blockNumber - order_by
db_write_timestamp - order_by
id - order_by
permissions - order_by
profile_id - order_by
tags - order_by
Example
{
  "address": "asc",
  "blockNumber": "asc",
  "db_write_timestamp": "asc",
  "id": "asc",
  "permissions": "asc",
  "profile_id": "asc",
  "tags": "asc"
}

Controller_order_by

Description

Ordering options when selecting data from "Controller".

Fields
Input Field Description
address - order_by
blockNumber - order_by
db_write_timestamp - order_by
id - order_by
permissions - order_by
profile - Profile_order_by
profile_id - order_by
tags - order_by
Example
{
  "address": "asc",
  "blockNumber": "asc",
  "db_write_timestamp": "asc",
  "id": "asc",
  "permissions": "asc",
  "profile": Profile_order_by,
  "profile_id": "asc",
  "tags": "asc"
}

Controller_select_column

Description

select columns of table "Controller"

Values
Enum Value Description

address

column name

blockNumber

column name

db_write_timestamp

column name

id

column name

permissions

column name

profile_id

column name

tags

column name
Example
"address"

Controller_stddev_fields

Description

aggregate stddev on columns

Fields
Field Name Description
blockNumber - Float
Example
{"blockNumber": 987.65}

Controller_stddev_order_by

Description

order by stddev() on columns of table "Controller"

Fields
Input Field Description
blockNumber - order_by
Example
{"blockNumber": "asc"}

Controller_stddev_pop_fields

Description

aggregate stddev_pop on columns

Fields
Field Name Description
blockNumber - Float
Example
{"blockNumber": 987.65}

Controller_stddev_pop_order_by

Description

order by stddev_pop() on columns of table "Controller"

Fields
Input Field Description
blockNumber - order_by
Example
{"blockNumber": "asc"}

Controller_stddev_samp_fields

Description

aggregate stddev_samp on columns

Fields
Field Name Description
blockNumber - Float
Example
{"blockNumber": 987.65}

Controller_stddev_samp_order_by

Description

order by stddev_samp() on columns of table "Controller"

Fields
Input Field Description
blockNumber - order_by
Example
{"blockNumber": "asc"}

Controller_stream_cursor_input

Description

Streaming cursor of the table "Controller"

Fields
Input Field Description
initial_value - Controller_stream_cursor_value_input! Stream column input with initial value
ordering - cursor_ordering cursor ordering
Example
{
  "initial_value": Controller_stream_cursor_value_input,
  "ordering": "ASC"
}

Controller_stream_cursor_value_input

Description

Initial value of the column from where the streaming should start

Fields
Input Field Description
address - String
blockNumber - Int
db_write_timestamp - timestamp
id - String
permissions - String
profile_id - String
tags - [permissions!]
Example
{
  "address": "xyz789",
  "blockNumber": 123,
  "db_write_timestamp": timestamp,
  "id": "abc123",
  "permissions": "abc123",
  "profile_id": "xyz789",
  "tags": [permissions]
}

Controller_sum_fields

Description

aggregate sum on columns

Fields
Field Name Description
blockNumber - Int
Example
{"blockNumber": 987}

Controller_sum_order_by

Description

order by sum() on columns of table "Controller"

Fields
Input Field Description
blockNumber - order_by
Example
{"blockNumber": "asc"}

Controller_var_pop_fields

Description

aggregate var_pop on columns

Fields
Field Name Description
blockNumber - Float
Example
{"blockNumber": 123.45}

Controller_var_pop_order_by

Description

order by var_pop() on columns of table "Controller"

Fields
Input Field Description
blockNumber - order_by
Example
{"blockNumber": "asc"}

Controller_var_samp_fields

Description

aggregate var_samp on columns

Fields
Field Name Description
blockNumber - Float
Example
{"blockNumber": 123.45}

Controller_var_samp_order_by

Description

order by var_samp() on columns of table "Controller"

Fields
Input Field Description
blockNumber - order_by
Example
{"blockNumber": "asc"}

Controller_variance_fields

Description

aggregate variance on columns

Fields
Field Name Description
blockNumber - Float
Example
{"blockNumber": 987.65}

Controller_variance_order_by

Description

order by variance() on columns of table "Controller"

Fields
Input Field Description
blockNumber - order_by
Example
{"blockNumber": "asc"}

DataChanged

Description

columns and relationships of "DataChanged"

Fields
Field Name Description
address - String
asset - Asset An object relationship
asset_id - String
blockNumber - Int!
db_write_timestamp - timestamp
id - String!
key - String
logIndex - Int
profile - Profile An object relationship
profile_id - String
token - Token An object relationship
token_id - String
transactionHash - String
value - String
Example
{
  "address": "xyz789",
  "asset": Asset,
  "asset_id": "xyz789",
  "blockNumber": 987,
  "db_write_timestamp": timestamp,
  "id": "xyz789",
  "key": "abc123",
  "logIndex": 987,
  "profile": Profile,
  "profile_id": "abc123",
  "token": Token,
  "token_id": "xyz789",
  "transactionHash": "abc123",
  "value": "abc123"
}

DataChanged_aggregate

Description

aggregated selection of "DataChanged"

Fields
Field Name Description
aggregate - DataChanged_aggregate_fields
nodes - [DataChanged!]!
Example
{
  "aggregate": DataChanged_aggregate_fields,
  "nodes": [DataChanged]
}

DataChanged_aggregate_fields

Description

aggregate fields of "DataChanged"

Example
{
  "avg": DataChanged_avg_fields,
  "count": 123,
  "max": DataChanged_max_fields,
  "min": DataChanged_min_fields,
  "stddev": DataChanged_stddev_fields,
  "stddev_pop": DataChanged_stddev_pop_fields,
  "stddev_samp": DataChanged_stddev_samp_fields,
  "sum": DataChanged_sum_fields,
  "var_pop": DataChanged_var_pop_fields,
  "var_samp": DataChanged_var_samp_fields,
  "variance": DataChanged_variance_fields
}

DataChanged_avg_fields

Description

aggregate avg on columns

Fields
Field Name Description
blockNumber - Float
logIndex - Float
Example
{"blockNumber": 987.65, "logIndex": 123.45}

DataChanged_bool_exp

Description

Boolean expression to filter rows from the table "DataChanged". All fields are combined with a logical 'AND'.

Example
{
  "_and": [DataChanged_bool_exp],
  "_not": DataChanged_bool_exp,
  "_or": [DataChanged_bool_exp],
  "address": String_comparison_exp,
  "asset": Asset_bool_exp,
  "asset_id": String_comparison_exp,
  "blockNumber": Int_comparison_exp,
  "db_write_timestamp": timestamp_comparison_exp,
  "id": String_comparison_exp,
  "key": String_comparison_exp,
  "logIndex": Int_comparison_exp,
  "profile": Profile_bool_exp,
  "profile_id": String_comparison_exp,
  "token": Token_bool_exp,
  "token_id": String_comparison_exp,
  "transactionHash": String_comparison_exp,
  "value": String_comparison_exp
}

DataChanged_max_fields

Description

aggregate max on columns

Fields
Field Name Description
address - String
asset_id - String
blockNumber - Int
db_write_timestamp - timestamp
id - String
key - String
logIndex - Int
profile_id - String
token_id - String
transactionHash - String
value - String
Example
{
  "address": "xyz789",
  "asset_id": "xyz789",
  "blockNumber": 123,
  "db_write_timestamp": timestamp,
  "id": "xyz789",
  "key": "abc123",
  "logIndex": 123,
  "profile_id": "xyz789",
  "token_id": "abc123",
  "transactionHash": "xyz789",
  "value": "xyz789"
}

DataChanged_min_fields

Description

aggregate min on columns

Fields
Field Name Description
address - String
asset_id - String
blockNumber - Int
db_write_timestamp - timestamp
id - String
key - String
logIndex - Int
profile_id - String
token_id - String
transactionHash - String
value - String
Example
{
  "address": "xyz789",
  "asset_id": "abc123",
  "blockNumber": 123,
  "db_write_timestamp": timestamp,
  "id": "abc123",
  "key": "abc123",
  "logIndex": 123,
  "profile_id": "xyz789",
  "token_id": "xyz789",
  "transactionHash": "xyz789",
  "value": "xyz789"
}

DataChanged_order_by

Description

Ordering options when selecting data from "DataChanged".

Fields
Input Field Description
address - order_by
asset - Asset_order_by
asset_id - order_by
blockNumber - order_by
db_write_timestamp - order_by
id - order_by
key - order_by
logIndex - order_by
profile - Profile_order_by
profile_id - order_by
token - Token_order_by
token_id - order_by
transactionHash - order_by
value - order_by
Example
{
  "address": "asc",
  "asset": Asset_order_by,
  "asset_id": "asc",
  "blockNumber": "asc",
  "db_write_timestamp": "asc",
  "id": "asc",
  "key": "asc",
  "logIndex": "asc",
  "profile": Profile_order_by,
  "profile_id": "asc",
  "token": Token_order_by,
  "token_id": "asc",
  "transactionHash": "asc",
  "value": "asc"
}

DataChanged_select_column

Description

select columns of table "DataChanged"

Values
Enum Value Description

address

column name

asset_id

column name

blockNumber

column name

db_write_timestamp

column name

id

column name

key

column name

logIndex

column name

profile_id

column name

token_id

column name

transactionHash

column name

value

column name
Example
"address"

DataChanged_stddev_fields

Description

aggregate stddev on columns

Fields
Field Name Description
blockNumber - Float
logIndex - Float
Example
{"blockNumber": 987.65, "logIndex": 987.65}

DataChanged_stddev_pop_fields

Description

aggregate stddev_pop on columns

Fields
Field Name Description
blockNumber - Float
logIndex - Float
Example
{"blockNumber": 987.65, "logIndex": 987.65}

DataChanged_stddev_samp_fields

Description

aggregate stddev_samp on columns

Fields
Field Name Description
blockNumber - Float
logIndex - Float
Example
{"blockNumber": 123.45, "logIndex": 123.45}

DataChanged_stream_cursor_input

Description

Streaming cursor of the table "DataChanged"

Fields
Input Field Description
initial_value - DataChanged_stream_cursor_value_input! Stream column input with initial value
ordering - cursor_ordering cursor ordering
Example
{
  "initial_value": DataChanged_stream_cursor_value_input,
  "ordering": "ASC"
}

DataChanged_stream_cursor_value_input

Description

Initial value of the column from where the streaming should start

Fields
Input Field Description
address - String
asset_id - String
blockNumber - Int
db_write_timestamp - timestamp
id - String
key - String
logIndex - Int
profile_id - String
token_id - String
transactionHash - String
value - String
Example
{
  "address": "xyz789",
  "asset_id": "abc123",
  "blockNumber": 123,
  "db_write_timestamp": timestamp,
  "id": "xyz789",
  "key": "abc123",
  "logIndex": 987,
  "profile_id": "abc123",
  "token_id": "abc123",
  "transactionHash": "xyz789",
  "value": "xyz789"
}

DataChanged_sum_fields

Description

aggregate sum on columns

Fields
Field Name Description
blockNumber - Int
logIndex - Int
Example
{"blockNumber": 987, "logIndex": 123}

DataChanged_var_pop_fields

Description

aggregate var_pop on columns

Fields
Field Name Description
blockNumber - Float
logIndex - Float
Example
{"blockNumber": 123.45, "logIndex": 123.45}

DataChanged_var_samp_fields

Description

aggregate var_samp on columns

Fields
Field Name Description
blockNumber - Float
logIndex - Float
Example
{"blockNumber": 987.65, "logIndex": 123.45}

DataChanged_variance_fields

Description

aggregate variance on columns

Fields
Field Name Description
blockNumber - Float
logIndex - Float
Example
{"blockNumber": 987.65, "logIndex": 123.45}

Feed

Description

columns and relationships of "Feed"

Fields
Field Name Description
address - String!
assetArgs - [FeedAssetArg!]! An array relationship
Arguments
distinct_on - [FeedAssetArg_select_column!]

distinct select on columns

limit - Int

limit the number of rows returned

offset - Int

skip the first n rows. Use only with order_by

order_by - [FeedAssetArg_order_by!]

sort the rows by one or more columns

where - FeedAssetArg_bool_exp

filter the rows returned

assetArgs_aggregate - FeedAssetArg_aggregate! An aggregate relationship
Arguments
distinct_on - [FeedAssetArg_select_column!]

distinct select on columns

limit - Int

limit the number of rows returned

offset - Int

skip the first n rows. Use only with order_by

order_by - [FeedAssetArg_order_by!]

sort the rows by one or more columns

where - FeedAssetArg_bool_exp

filter the rows returned

blockNumber - Int!
dataKey - String
decoded - jsonb
Arguments
path - String

JSON select path

eventType - String!
id - String!
logIndex - Int!
profileArgs - [FeedProfileArg!]! An array relationship
Arguments
distinct_on - [FeedProfileArg_select_column!]

distinct select on columns

limit - Int

limit the number of rows returned

offset - Int

skip the first n rows. Use only with order_by

order_by - [FeedProfileArg_order_by!]

sort the rows by one or more columns

where - FeedProfileArg_bool_exp

filter the rows returned

profileArgs_aggregate - FeedProfileArg_aggregate! An aggregate relationship
Arguments
distinct_on - [FeedProfileArg_select_column!]

distinct select on columns

limit - Int

limit the number of rows returned

offset - Int

skip the first n rows. Use only with order_by

order_by - [FeedProfileArg_order_by!]

sort the rows by one or more columns

where - FeedProfileArg_bool_exp

filter the rows returned

profiles - [FeedProfile!]! An array relationship
Arguments
distinct_on - [FeedProfile_select_column!]

distinct select on columns

limit - Int

limit the number of rows returned

offset - Int

skip the first n rows. Use only with order_by

order_by - [FeedProfile_order_by!]

sort the rows by one or more columns

where - FeedProfile_bool_exp

filter the rows returned

profiles_aggregate - FeedProfile_aggregate! An aggregate relationship
Arguments
distinct_on - [FeedProfile_select_column!]

distinct select on columns

limit - Int

limit the number of rows returned

offset - Int

skip the first n rows. Use only with order_by

order_by - [FeedProfile_order_by!]

sort the rows by one or more columns

where - FeedProfile_bool_exp

filter the rows returned

timestamp - Int!
tokenArgs - [FeedTokenArg!]! An array relationship
Arguments
distinct_on - [FeedTokenArg_select_column!]

distinct select on columns

limit - Int

limit the number of rows returned

offset - Int

skip the first n rows. Use only with order_by

order_by - [FeedTokenArg_order_by!]

sort the rows by one or more columns

where - FeedTokenArg_bool_exp

filter the rows returned

tokenArgs_aggregate - FeedTokenArg_aggregate! An aggregate relationship
Arguments
distinct_on - [FeedTokenArg_select_column!]

distinct select on columns

limit - Int

limit the number of rows returned

offset - Int

skip the first n rows. Use only with order_by

order_by - [FeedTokenArg_order_by!]

sort the rows by one or more columns

where - FeedTokenArg_bool_exp

filter the rows returned

transactionHash - String!
transactionIndex - Int!
Example
{
  "address": "abc123",
  "assetArgs": [FeedAssetArg],
  "assetArgs_aggregate": FeedAssetArg_aggregate,
  "blockNumber": 987,
  "dataKey": "abc123",
  "decoded": jsonb,
  "eventType": "abc123",
  "id": "abc123",
  "logIndex": 123,
  "profileArgs": [FeedProfileArg],
  "profileArgs_aggregate": FeedProfileArg_aggregate,
  "profiles": [FeedProfile],
  "profiles_aggregate": FeedProfile_aggregate,
  "timestamp": 123,
  "tokenArgs": [FeedTokenArg],
  "tokenArgs_aggregate": FeedTokenArg_aggregate,
  "transactionHash": "abc123",
  "transactionIndex": 123
}

FeedAssetArg

Description

columns and relationships of "FeedAssetArg"

Fields
Field Name Description
asset - Asset An object relationship
asset_id - String!
feed - Feed An object relationship
feed_id - String!
id - String!
Example
{
  "asset": Asset,
  "asset_id": "xyz789",
  "feed": Feed,
  "feed_id": "xyz789",
  "id": "xyz789"
}

FeedAssetArg_aggregate

Description

aggregated selection of "FeedAssetArg"

Fields
Field Name Description
aggregate - FeedAssetArg_aggregate_fields
nodes - [FeedAssetArg!]!
Example
{
  "aggregate": FeedAssetArg_aggregate_fields,
  "nodes": [FeedAssetArg]
}

FeedAssetArg_aggregate_bool_exp

Fields
Input Field Description
count - FeedAssetArg_aggregate_bool_exp_count
Example
{"count": FeedAssetArg_aggregate_bool_exp_count}

FeedAssetArg_aggregate_bool_exp_count

Fields
Input Field Description
arguments - [FeedAssetArg_select_column!]
distinct - Boolean
filter - FeedAssetArg_bool_exp
predicate - Int_comparison_exp!
Example
{
  "arguments": ["asset_id"],
  "distinct": true,
  "filter": FeedAssetArg_bool_exp,
  "predicate": Int_comparison_exp
}

FeedAssetArg_aggregate_fields

Description

aggregate fields of "FeedAssetArg"

Fields
Field Name Description
count - Int!
Arguments
distinct - Boolean
max - FeedAssetArg_max_fields
min - FeedAssetArg_min_fields
Example
{
  "count": 987,
  "max": FeedAssetArg_max_fields,
  "min": FeedAssetArg_min_fields
}

FeedAssetArg_aggregate_order_by

Description

order by aggregate values of table "FeedAssetArg"

Fields
Input Field Description
count - order_by
max - FeedAssetArg_max_order_by
min - FeedAssetArg_min_order_by
Example
{
  "count": "asc",
  "max": FeedAssetArg_max_order_by,
  "min": FeedAssetArg_min_order_by
}

FeedAssetArg_bool_exp

Description

Boolean expression to filter rows from the table "FeedAssetArg". All fields are combined with a logical 'AND'.

Example
{
  "_and": [FeedAssetArg_bool_exp],
  "_not": FeedAssetArg_bool_exp,
  "_or": [FeedAssetArg_bool_exp],
  "asset": Asset_bool_exp,
  "asset_id": String_comparison_exp,
  "feed": Feed_bool_exp,
  "feed_id": String_comparison_exp,
  "id": String_comparison_exp
}

FeedAssetArg_max_fields

Description

aggregate max on columns

Fields
Field Name Description
asset_id - String
feed_id - String
id - String
Example
{
  "asset_id": "abc123",
  "feed_id": "abc123",
  "id": "abc123"
}

FeedAssetArg_max_order_by

Description

order by max() on columns of table "FeedAssetArg"

Fields
Input Field Description
asset_id - order_by
feed_id - order_by
id - order_by
Example
{"asset_id": "asc", "feed_id": "asc", "id": "asc"}

FeedAssetArg_min_fields

Description

aggregate min on columns

Fields
Field Name Description
asset_id - String
feed_id - String
id - String
Example
{
  "asset_id": "abc123",
  "feed_id": "xyz789",
  "id": "xyz789"
}

FeedAssetArg_min_order_by

Description

order by min() on columns of table "FeedAssetArg"

Fields
Input Field Description
asset_id - order_by
feed_id - order_by
id - order_by
Example
{"asset_id": "asc", "feed_id": "asc", "id": "asc"}

FeedAssetArg_order_by

Description

Ordering options when selecting data from "FeedAssetArg".

Fields
Input Field Description
asset - Asset_order_by
asset_id - order_by
feed - Feed_order_by
feed_id - order_by
id - order_by
Example
{
  "asset": Asset_order_by,
  "asset_id": "asc",
  "feed": Feed_order_by,
  "feed_id": "asc",
  "id": "asc"
}

FeedAssetArg_select_column

Description

select columns of table "FeedAssetArg"

Values
Enum Value Description

asset_id

column name

feed_id

column name

id

column name
Example
"asset_id"

FeedAssetArg_stream_cursor_input

Description

Streaming cursor of the table "FeedAssetArg"

Fields
Input Field Description
initial_value - FeedAssetArg_stream_cursor_value_input! Stream column input with initial value
ordering - cursor_ordering cursor ordering
Example
{
  "initial_value": FeedAssetArg_stream_cursor_value_input,
  "ordering": "ASC"
}

FeedAssetArg_stream_cursor_value_input

Description

Initial value of the column from where the streaming should start

Fields
Input Field Description
asset_id - String
feed_id - String
id - String
Example
{
  "asset_id": "abc123",
  "feed_id": "abc123",
  "id": "xyz789"
}

FeedProfile

Description

columns and relationships of "FeedProfile"

Fields
Field Name Description
feed - Feed An object relationship
feed_id - String!
id - String!
profile - Profile An object relationship
profile_id - String!
Example
{
  "feed": Feed,
  "feed_id": "abc123",
  "id": "xyz789",
  "profile": Profile,
  "profile_id": "abc123"
}

FeedProfileArg

Description

columns and relationships of "FeedProfileArg"

Fields
Field Name Description
feed - Feed An object relationship
feed_id - String!
id - String!
profile - Profile An object relationship
profile_id - String!
Example
{
  "feed": Feed,
  "feed_id": "xyz789",
  "id": "abc123",
  "profile": Profile,
  "profile_id": "xyz789"
}

FeedProfileArg_aggregate

Description

aggregated selection of "FeedProfileArg"

Fields
Field Name Description
aggregate - FeedProfileArg_aggregate_fields
nodes - [FeedProfileArg!]!
Example
{
  "aggregate": FeedProfileArg_aggregate_fields,
  "nodes": [FeedProfileArg]
}

FeedProfileArg_aggregate_bool_exp

Fields
Input Field Description
count - FeedProfileArg_aggregate_bool_exp_count
Example
{"count": FeedProfileArg_aggregate_bool_exp_count}

FeedProfileArg_aggregate_bool_exp_count

Fields
Input Field Description
arguments - [FeedProfileArg_select_column!]
distinct - Boolean
filter - FeedProfileArg_bool_exp
predicate - Int_comparison_exp!
Example
{
  "arguments": ["feed_id"],
  "distinct": false,
  "filter": FeedProfileArg_bool_exp,
  "predicate": Int_comparison_exp
}

FeedProfileArg_aggregate_fields

Description

aggregate fields of "FeedProfileArg"

Fields
Field Name Description
count - Int!
Arguments
max - FeedProfileArg_max_fields
min - FeedProfileArg_min_fields
Example
{
  "count": 123,
  "max": FeedProfileArg_max_fields,
  "min": FeedProfileArg_min_fields
}

FeedProfileArg_aggregate_order_by

Description

order by aggregate values of table "FeedProfileArg"

Fields
Input Field Description
count - order_by
max - FeedProfileArg_max_order_by
min - FeedProfileArg_min_order_by
Example
{
  "count": "asc",
  "max": FeedProfileArg_max_order_by,
  "min": FeedProfileArg_min_order_by
}

FeedProfileArg_bool_exp

Description

Boolean expression to filter rows from the table "FeedProfileArg". All fields are combined with a logical 'AND'.

Example
{
  "_and": [FeedProfileArg_bool_exp],
  "_not": FeedProfileArg_bool_exp,
  "_or": [FeedProfileArg_bool_exp],
  "feed": Feed_bool_exp,
  "feed_id": String_comparison_exp,
  "id": String_comparison_exp,
  "profile": Profile_bool_exp,
  "profile_id": String_comparison_exp
}

FeedProfileArg_max_fields

Description

aggregate max on columns

Fields
Field Name Description
feed_id - String
id - String
profile_id - String
Example
{
  "feed_id": "abc123",
  "id": "xyz789",
  "profile_id": "abc123"
}

FeedProfileArg_max_order_by

Description

order by max() on columns of table "FeedProfileArg"

Fields
Input Field Description
feed_id - order_by
id - order_by
profile_id - order_by
Example
{"feed_id": "asc", "id": "asc", "profile_id": "asc"}

FeedProfileArg_min_fields

Description

aggregate min on columns

Fields
Field Name Description
feed_id - String
id - String
profile_id - String
Example
{
  "feed_id": "xyz789",
  "id": "xyz789",
  "profile_id": "abc123"
}

FeedProfileArg_min_order_by

Description

order by min() on columns of table "FeedProfileArg"

Fields
Input Field Description
feed_id - order_by
id - order_by
profile_id - order_by
Example
{"feed_id": "asc", "id": "asc", "profile_id": "asc"}

FeedProfileArg_order_by

Description

Ordering options when selecting data from "FeedProfileArg".

Fields
Input Field Description
feed - Feed_order_by
feed_id - order_by
id - order_by
profile - Profile_order_by
profile_id - order_by
Example
{
  "feed": Feed_order_by,
  "feed_id": "asc",
  "id": "asc",
  "profile": Profile_order_by,
  "profile_id": "asc"
}

FeedProfileArg_select_column

Description

select columns of table "FeedProfileArg"

Values
Enum Value Description

feed_id

column name

id

column name

profile_id

column name
Example
"feed_id"

FeedProfileArg_stream_cursor_input

Description

Streaming cursor of the table "FeedProfileArg"

Fields
Input Field Description
initial_value - FeedProfileArg_stream_cursor_value_input! Stream column input with initial value
ordering - cursor_ordering cursor ordering
Example
{
  "initial_value": FeedProfileArg_stream_cursor_value_input,
  "ordering": "ASC"
}

FeedProfileArg_stream_cursor_value_input

Description

Initial value of the column from where the streaming should start

Fields
Input Field Description
feed_id - String
id - String
profile_id - String
Example
{
  "feed_id": "abc123",
  "id": "xyz789",
  "profile_id": "abc123"
}

FeedProfile_aggregate

Description

aggregated selection of "FeedProfile"

Fields
Field Name Description
aggregate - FeedProfile_aggregate_fields
nodes - [FeedProfile!]!
Example
{
  "aggregate": FeedProfile_aggregate_fields,
  "nodes": [FeedProfile]
}

FeedProfile_aggregate_bool_exp

Fields
Input Field Description
count - FeedProfile_aggregate_bool_exp_count
Example
{"count": FeedProfile_aggregate_bool_exp_count}

FeedProfile_aggregate_bool_exp_count

Fields
Input Field Description
arguments - [FeedProfile_select_column!]
distinct - Boolean
filter - FeedProfile_bool_exp
predicate - Int_comparison_exp!
Example
{
  "arguments": ["feed_id"],
  "distinct": true,
  "filter": FeedProfile_bool_exp,
  "predicate": Int_comparison_exp
}

FeedProfile_aggregate_fields

Description

aggregate fields of "FeedProfile"

Fields
Field Name Description
count - Int!
Arguments
distinct - Boolean
max - FeedProfile_max_fields
min - FeedProfile_min_fields
Example
{
  "count": 123,
  "max": FeedProfile_max_fields,
  "min": FeedProfile_min_fields
}

FeedProfile_aggregate_order_by

Description

order by aggregate values of table "FeedProfile"

Fields
Input Field Description
count - order_by
max - FeedProfile_max_order_by
min - FeedProfile_min_order_by
Example
{
  "count": "asc",
  "max": FeedProfile_max_order_by,
  "min": FeedProfile_min_order_by
}

FeedProfile_bool_exp

Description

Boolean expression to filter rows from the table "FeedProfile". All fields are combined with a logical 'AND'.

Example
{
  "_and": [FeedProfile_bool_exp],
  "_not": FeedProfile_bool_exp,
  "_or": [FeedProfile_bool_exp],
  "feed": Feed_bool_exp,
  "feed_id": String_comparison_exp,
  "id": String_comparison_exp,
  "profile": Profile_bool_exp,
  "profile_id": String_comparison_exp
}

FeedProfile_max_fields

Description

aggregate max on columns

Fields
Field Name Description
feed_id - String
id - String
profile_id - String
Example
{
  "feed_id": "xyz789",
  "id": "abc123",
  "profile_id": "abc123"
}

FeedProfile_max_order_by

Description

order by max() on columns of table "FeedProfile"

Fields
Input Field Description
feed_id - order_by
id - order_by
profile_id - order_by
Example
{"feed_id": "asc", "id": "asc", "profile_id": "asc"}

FeedProfile_min_fields

Description

aggregate min on columns

Fields
Field Name Description
feed_id - String
id - String
profile_id - String
Example
{
  "feed_id": "abc123",
  "id": "abc123",
  "profile_id": "abc123"
}

FeedProfile_min_order_by

Description

order by min() on columns of table "FeedProfile"

Fields
Input Field Description
feed_id - order_by
id - order_by
profile_id - order_by
Example
{"feed_id": "asc", "id": "asc", "profile_id": "asc"}

FeedProfile_order_by

Description

Ordering options when selecting data from "FeedProfile".

Fields
Input Field Description
feed - Feed_order_by
feed_id - order_by
id - order_by
profile - Profile_order_by
profile_id - order_by
Example
{
  "feed": Feed_order_by,
  "feed_id": "asc",
  "id": "asc",
  "profile": Profile_order_by,
  "profile_id": "asc"
}

FeedProfile_select_column

Description

select columns of table "FeedProfile"

Values
Enum Value Description

feed_id

column name

id

column name

profile_id

column name
Example
"feed_id"

FeedProfile_stream_cursor_input

Description

Streaming cursor of the table "FeedProfile"

Fields
Input Field Description
initial_value - FeedProfile_stream_cursor_value_input! Stream column input with initial value
ordering - cursor_ordering cursor ordering
Example
{
  "initial_value": FeedProfile_stream_cursor_value_input,
  "ordering": "ASC"
}

FeedProfile_stream_cursor_value_input

Description

Initial value of the column from where the streaming should start

Fields
Input Field Description
feed_id - String
id - String
profile_id - String
Example
{
  "feed_id": "xyz789",
  "id": "xyz789",
  "profile_id": "xyz789"
}

FeedTokenArg

Description

columns and relationships of "FeedTokenArg"

Fields
Field Name Description
feed - Feed An object relationship
feed_id - String!
id - String!
token - Token An object relationship
token_id - String!
Example
{
  "feed": Feed,
  "feed_id": "xyz789",
  "id": "abc123",
  "token": Token,
  "token_id": "abc123"
}

FeedTokenArg_aggregate

Description

aggregated selection of "FeedTokenArg"

Fields
Field Name Description
aggregate - FeedTokenArg_aggregate_fields
nodes - [FeedTokenArg!]!
Example
{
  "aggregate": FeedTokenArg_aggregate_fields,
  "nodes": [FeedTokenArg]
}

FeedTokenArg_aggregate_bool_exp

Fields
Input Field Description
count - FeedTokenArg_aggregate_bool_exp_count
Example
{"count": FeedTokenArg_aggregate_bool_exp_count}

FeedTokenArg_aggregate_bool_exp_count

Fields
Input Field Description
arguments - [FeedTokenArg_select_column!]
distinct - Boolean
filter - FeedTokenArg_bool_exp
predicate - Int_comparison_exp!
Example
{
  "arguments": ["feed_id"],
  "distinct": true,
  "filter": FeedTokenArg_bool_exp,
  "predicate": Int_comparison_exp
}

FeedTokenArg_aggregate_fields

Description

aggregate fields of "FeedTokenArg"

Fields
Field Name Description
count - Int!
Arguments
distinct - Boolean
max - FeedTokenArg_max_fields
min - FeedTokenArg_min_fields
Example
{
  "count": 987,
  "max": FeedTokenArg_max_fields,
  "min": FeedTokenArg_min_fields
}

FeedTokenArg_aggregate_order_by

Description

order by aggregate values of table "FeedTokenArg"

Fields
Input Field Description
count - order_by
max - FeedTokenArg_max_order_by
min - FeedTokenArg_min_order_by
Example
{
  "count": "asc",
  "max": FeedTokenArg_max_order_by,
  "min": FeedTokenArg_min_order_by
}

FeedTokenArg_bool_exp

Description

Boolean expression to filter rows from the table "FeedTokenArg". All fields are combined with a logical 'AND'.

Example
{
  "_and": [FeedTokenArg_bool_exp],
  "_not": FeedTokenArg_bool_exp,
  "_or": [FeedTokenArg_bool_exp],
  "feed": Feed_bool_exp,
  "feed_id": String_comparison_exp,
  "id": String_comparison_exp,
  "token": Token_bool_exp,
  "token_id": String_comparison_exp
}

FeedTokenArg_max_fields

Description

aggregate max on columns

Fields
Field Name Description
feed_id - String
id - String
token_id - String
Example
{
  "feed_id": "xyz789",
  "id": "abc123",
  "token_id": "abc123"
}

FeedTokenArg_max_order_by

Description

order by max() on columns of table "FeedTokenArg"

Fields
Input Field Description
feed_id - order_by
id - order_by
token_id - order_by
Example
{"feed_id": "asc", "id": "asc", "token_id": "asc"}

FeedTokenArg_min_fields

Description

aggregate min on columns

Fields
Field Name Description
feed_id - String
id - String
token_id - String
Example
{
  "feed_id": "xyz789",
  "id": "abc123",
  "token_id": "xyz789"
}

FeedTokenArg_min_order_by

Description

order by min() on columns of table "FeedTokenArg"

Fields
Input Field Description
feed_id - order_by
id - order_by
token_id - order_by
Example
{"feed_id": "asc", "id": "asc", "token_id": "asc"}

FeedTokenArg_order_by

Description

Ordering options when selecting data from "FeedTokenArg".

Fields
Input Field Description
feed - Feed_order_by
feed_id - order_by
id - order_by
token - Token_order_by
token_id - order_by
Example
{
  "feed": Feed_order_by,
  "feed_id": "asc",
  "id": "asc",
  "token": Token_order_by,
  "token_id": "asc"
}

FeedTokenArg_select_column

Description

select columns of table "FeedTokenArg"

Values
Enum Value Description

feed_id

column name

id

column name

token_id

column name
Example
"feed_id"

FeedTokenArg_stream_cursor_input

Description

Streaming cursor of the table "FeedTokenArg"

Fields
Input Field Description
initial_value - FeedTokenArg_stream_cursor_value_input! Stream column input with initial value
ordering - cursor_ordering cursor ordering
Example
{
  "initial_value": FeedTokenArg_stream_cursor_value_input,
  "ordering": "ASC"
}

FeedTokenArg_stream_cursor_value_input

Description

Initial value of the column from where the streaming should start

Fields
Input Field Description
feed_id - String
id - String
token_id - String
Example
{
  "feed_id": "abc123",
  "id": "xyz789",
  "token_id": "xyz789"
}

Feed_aggregate

Description

aggregated selection of "Feed"

Fields
Field Name Description
aggregate - Feed_aggregate_fields
nodes - [Feed!]!
Example
{
  "aggregate": Feed_aggregate_fields,
  "nodes": [Feed]
}

Feed_aggregate_fields

Description

aggregate fields of "Feed"

Fields
Field Name Description
avg - Feed_avg_fields
count - Int!
Arguments
distinct - Boolean
max - Feed_max_fields
min - Feed_min_fields
stddev - Feed_stddev_fields
stddev_pop - Feed_stddev_pop_fields
stddev_samp - Feed_stddev_samp_fields
sum - Feed_sum_fields
var_pop - Feed_var_pop_fields
var_samp - Feed_var_samp_fields
variance - Feed_variance_fields
Example
{
  "avg": Feed_avg_fields,
  "count": 123,
  "max": Feed_max_fields,
  "min": Feed_min_fields,
  "stddev": Feed_stddev_fields,
  "stddev_pop": Feed_stddev_pop_fields,
  "stddev_samp": Feed_stddev_samp_fields,
  "sum": Feed_sum_fields,
  "var_pop": Feed_var_pop_fields,
  "var_samp": Feed_var_samp_fields,
  "variance": Feed_variance_fields
}

Feed_avg_fields

Description

aggregate avg on columns

Fields
Field Name Description
blockNumber - Float
logIndex - Float
timestamp - Float
transactionIndex - Float
Example
{
  "blockNumber": 123.45,
  "logIndex": 123.45,
  "timestamp": 987.65,
  "transactionIndex": 987.65
}

Feed_bool_exp

Description

Boolean expression to filter rows from the table "Feed". All fields are combined with a logical 'AND'.

Fields
Input Field Description
_and - [Feed_bool_exp!]
_not - Feed_bool_exp
_or - [Feed_bool_exp!]
address - String_comparison_exp
assetArgs - FeedAssetArg_bool_exp
assetArgs_aggregate - FeedAssetArg_aggregate_bool_exp
blockNumber - Int_comparison_exp
dataKey - String_comparison_exp
decoded - jsonb_comparison_exp
eventType - String_comparison_exp
id - String_comparison_exp
logIndex - Int_comparison_exp
profileArgs - FeedProfileArg_bool_exp
profileArgs_aggregate - FeedProfileArg_aggregate_bool_exp
profiles - FeedProfile_bool_exp
profiles_aggregate - FeedProfile_aggregate_bool_exp
timestamp - Int_comparison_exp
tokenArgs - FeedTokenArg_bool_exp
tokenArgs_aggregate - FeedTokenArg_aggregate_bool_exp
transactionHash - String_comparison_exp
transactionIndex - Int_comparison_exp
Example
{
  "_and": [Feed_bool_exp],
  "_not": Feed_bool_exp,
  "_or": [Feed_bool_exp],
  "address": String_comparison_exp,
  "assetArgs": FeedAssetArg_bool_exp,
  "assetArgs_aggregate": FeedAssetArg_aggregate_bool_exp,
  "blockNumber": Int_comparison_exp,
  "dataKey": String_comparison_exp,
  "decoded": jsonb_comparison_exp,
  "eventType": String_comparison_exp,
  "id": String_comparison_exp,
  "logIndex": Int_comparison_exp,
  "profileArgs": FeedProfileArg_bool_exp,
  "profileArgs_aggregate": FeedProfileArg_aggregate_bool_exp,
  "profiles": FeedProfile_bool_exp,
  "profiles_aggregate": FeedProfile_aggregate_bool_exp,
  "timestamp": Int_comparison_exp,
  "tokenArgs": FeedTokenArg_bool_exp,
  "tokenArgs_aggregate": FeedTokenArg_aggregate_bool_exp,
  "transactionHash": String_comparison_exp,
  "transactionIndex": Int_comparison_exp
}

Feed_max_fields

Description

aggregate max on columns

Fields
Field Name Description
address - String
blockNumber - Int
dataKey - String
eventType - String
id - String
logIndex - Int
timestamp - Int
transactionHash - String
transactionIndex - Int
Example
{
  "address": "xyz789",
  "blockNumber": 123,
  "dataKey": "xyz789",
  "eventType": "abc123",
  "id": "abc123",
  "logIndex": 987,
  "timestamp": 123,
  "transactionHash": "xyz789",
  "transactionIndex": 123
}

Feed_min_fields

Description

aggregate min on columns

Fields
Field Name Description
address - String
blockNumber - Int
dataKey - String
eventType - String
id - String
logIndex - Int
timestamp - Int
transactionHash - String
transactionIndex - Int
Example
{
  "address": "xyz789",
  "blockNumber": 123,
  "dataKey": "abc123",
  "eventType": "xyz789",
  "id": "xyz789",
  "logIndex": 987,
  "timestamp": 123,
  "transactionHash": "abc123",
  "transactionIndex": 987
}

Feed_order_by

Description

Ordering options when selecting data from "Feed".

Fields
Input Field Description
address - order_by
assetArgs_aggregate - FeedAssetArg_aggregate_order_by
blockNumber - order_by
dataKey - order_by
decoded - order_by
eventType - order_by
id - order_by
logIndex - order_by
profileArgs_aggregate - FeedProfileArg_aggregate_order_by
profiles_aggregate - FeedProfile_aggregate_order_by
timestamp - order_by
tokenArgs_aggregate - FeedTokenArg_aggregate_order_by
transactionHash - order_by
transactionIndex - order_by
Example
{
  "address": "asc",
  "assetArgs_aggregate": FeedAssetArg_aggregate_order_by,
  "blockNumber": "asc",
  "dataKey": "asc",
  "decoded": "asc",
  "eventType": "asc",
  "id": "asc",
  "logIndex": "asc",
  "profileArgs_aggregate": FeedProfileArg_aggregate_order_by,
  "profiles_aggregate": FeedProfile_aggregate_order_by,
  "timestamp": "asc",
  "tokenArgs_aggregate": FeedTokenArg_aggregate_order_by,
  "transactionHash": "asc",
  "transactionIndex": "asc"
}

Feed_select_column

Description

select columns of table "Feed"

Values
Enum Value Description

address

column name

blockNumber

column name

dataKey

column name

decoded

column name

eventType

column name

id

column name

logIndex

column name

timestamp

column name

transactionHash

column name

transactionIndex

column name
Example
"address"

Feed_stddev_fields

Description

aggregate stddev on columns

Fields
Field Name Description
blockNumber - Float
logIndex - Float
timestamp - Float
transactionIndex - Float
Example
{
  "blockNumber": 987.65,
  "logIndex": 987.65,
  "timestamp": 123.45,
  "transactionIndex": 123.45
}

Feed_stddev_pop_fields

Description

aggregate stddev_pop on columns

Fields
Field Name Description
blockNumber - Float
logIndex - Float
timestamp - Float
transactionIndex - Float
Example
{
  "blockNumber": 123.45,
  "logIndex": 987.65,
  "timestamp": 123.45,
  "transactionIndex": 123.45
}

Feed_stddev_samp_fields

Description

aggregate stddev_samp on columns

Fields
Field Name Description
blockNumber - Float
logIndex - Float
timestamp - Float
transactionIndex - Float
Example
{
  "blockNumber": 123.45,
  "logIndex": 123.45,
  "timestamp": 987.65,
  "transactionIndex": 123.45
}

Feed_stream_cursor_input

Description

Streaming cursor of the table "Feed"

Fields
Input Field Description
initial_value - Feed_stream_cursor_value_input! Stream column input with initial value
ordering - cursor_ordering cursor ordering
Example
{
  "initial_value": Feed_stream_cursor_value_input,
  "ordering": "ASC"
}

Feed_stream_cursor_value_input

Description

Initial value of the column from where the streaming should start

Fields
Input Field Description
address - String
blockNumber - Int
dataKey - String
decoded - jsonb
eventType - String
id - String
logIndex - Int
timestamp - Int
transactionHash - String
transactionIndex - Int
Example
{
  "address": "abc123",
  "blockNumber": 987,
  "dataKey": "xyz789",
  "decoded": jsonb,
  "eventType": "xyz789",
  "id": "abc123",
  "logIndex": 123,
  "timestamp": 123,
  "transactionHash": "xyz789",
  "transactionIndex": 123
}

Feed_sum_fields

Description

aggregate sum on columns

Fields
Field Name Description
blockNumber - Int
logIndex - Int
timestamp - Int
transactionIndex - Int
Example
{"blockNumber": 123, "logIndex": 987, "timestamp": 123, "transactionIndex": 123}

Feed_var_pop_fields

Description

aggregate var_pop on columns

Fields
Field Name Description
blockNumber - Float
logIndex - Float
timestamp - Float
transactionIndex - Float
Example
{
  "blockNumber": 123.45,
  "logIndex": 123.45,
  "timestamp": 123.45,
  "transactionIndex": 123.45
}

Feed_var_samp_fields

Description

aggregate var_samp on columns

Fields
Field Name Description
blockNumber - Float
logIndex - Float
timestamp - Float
transactionIndex - Float
Example
{
  "blockNumber": 123.45,
  "logIndex": 123.45,
  "timestamp": 987.65,
  "transactionIndex": 987.65
}

Feed_variance_fields

Description

aggregate variance on columns

Fields
Field Name Description
blockNumber - Float
logIndex - Float
timestamp - Float
transactionIndex - Float
Example
{
  "blockNumber": 987.65,
  "logIndex": 987.65,
  "timestamp": 123.45,
  "transactionIndex": 123.45
}

Float

Description

The Float scalar type represents signed double-precision fractional values as specified by IEEE 754.

Example
123.45

Follow

Description

columns and relationships of "Follow"

Fields
Field Name Description
blockNumber - Int!
createdBlockNumber - Int!
createdTimestamp - Int!
createdTransactionIndex - Int!
db_write_timestamp - timestamp
followee - Profile An object relationship
followee_id - String
follower - Profile An object relationship
follower_id - String
id - String!
updatedBlockNumber - Int
updatedTimestamp - Int
updatedTransactionIndex - Int
Example
{
  "blockNumber": 123,
  "createdBlockNumber": 987,
  "createdTimestamp": 123,
  "createdTransactionIndex": 987,
  "db_write_timestamp": timestamp,
  "followee": Profile,
  "followee_id": "xyz789",
  "follower": Profile,
  "follower_id": "abc123",
  "id": "abc123",
  "updatedBlockNumber": 987,
  "updatedTimestamp": 987,
  "updatedTransactionIndex": 987
}

Follow_aggregate

Description

aggregated selection of "Follow"

Fields
Field Name Description
aggregate - Follow_aggregate_fields
nodes - [Follow!]!
Example
{
  "aggregate": Follow_aggregate_fields,
  "nodes": [Follow]
}

Follow_aggregate_bool_exp

Fields
Input Field Description
count - Follow_aggregate_bool_exp_count
Example
{"count": Follow_aggregate_bool_exp_count}

Follow_aggregate_bool_exp_count

Fields
Input Field Description
arguments - [Follow_select_column!]
distinct - Boolean
filter - Follow_bool_exp
predicate - Int_comparison_exp!
Example
{
  "arguments": ["blockNumber"],
  "distinct": false,
  "filter": Follow_bool_exp,
  "predicate": Int_comparison_exp
}

Follow_aggregate_fields

Description

aggregate fields of "Follow"

Fields
Field Name Description
avg - Follow_avg_fields
count - Int!
Arguments
distinct - Boolean
max - Follow_max_fields
min - Follow_min_fields
stddev - Follow_stddev_fields
stddev_pop - Follow_stddev_pop_fields
stddev_samp - Follow_stddev_samp_fields
sum - Follow_sum_fields
var_pop - Follow_var_pop_fields
var_samp - Follow_var_samp_fields
variance - Follow_variance_fields
Example
{
  "avg": Follow_avg_fields,
  "count": 987,
  "max": Follow_max_fields,
  "min": Follow_min_fields,
  "stddev": Follow_stddev_fields,
  "stddev_pop": Follow_stddev_pop_fields,
  "stddev_samp": Follow_stddev_samp_fields,
  "sum": Follow_sum_fields,
  "var_pop": Follow_var_pop_fields,
  "var_samp": Follow_var_samp_fields,
  "variance": Follow_variance_fields
}

Follow_aggregate_order_by

Description

order by aggregate values of table "Follow"

Example
{
  "avg": Follow_avg_order_by,
  "count": "asc",
  "max": Follow_max_order_by,
  "min": Follow_min_order_by,
  "stddev": Follow_stddev_order_by,
  "stddev_pop": Follow_stddev_pop_order_by,
  "stddev_samp": Follow_stddev_samp_order_by,
  "sum": Follow_sum_order_by,
  "var_pop": Follow_var_pop_order_by,
  "var_samp": Follow_var_samp_order_by,
  "variance": Follow_variance_order_by
}

Follow_avg_fields

Description

aggregate avg on columns

Fields
Field Name Description
blockNumber - Float
createdBlockNumber - Float
createdTimestamp - Float
createdTransactionIndex - Float
updatedBlockNumber - Float
updatedTimestamp - Float
updatedTransactionIndex - Float
Example
{
  "blockNumber": 987.65,
  "createdBlockNumber": 123.45,
  "createdTimestamp": 987.65,
  "createdTransactionIndex": 987.65,
  "updatedBlockNumber": 987.65,
  "updatedTimestamp": 123.45,
  "updatedTransactionIndex": 123.45
}

Follow_avg_order_by

Description

order by avg() on columns of table "Follow"

Fields
Input Field Description
blockNumber - order_by
createdBlockNumber - order_by
createdTimestamp - order_by
createdTransactionIndex - order_by
updatedBlockNumber - order_by
updatedTimestamp - order_by
updatedTransactionIndex - order_by
Example
{
  "blockNumber": "asc",
  "createdBlockNumber": "asc",
  "createdTimestamp": "asc",
  "createdTransactionIndex": "asc",
  "updatedBlockNumber": "asc",
  "updatedTimestamp": "asc",
  "updatedTransactionIndex": "asc"
}

Follow_bool_exp

Description

Boolean expression to filter rows from the table "Follow". All fields are combined with a logical 'AND'.

Fields
Input Field Description
_and - [Follow_bool_exp!]
_not - Follow_bool_exp
_or - [Follow_bool_exp!]
blockNumber - Int_comparison_exp
createdBlockNumber - Int_comparison_exp
createdTimestamp - Int_comparison_exp
createdTransactionIndex - Int_comparison_exp
db_write_timestamp - timestamp_comparison_exp
followee - Profile_bool_exp
followee_id - String_comparison_exp
follower - Profile_bool_exp
follower_id - String_comparison_exp
id - String_comparison_exp
updatedBlockNumber - Int_comparison_exp
updatedTimestamp - Int_comparison_exp
updatedTransactionIndex - Int_comparison_exp
Example
{
  "_and": [Follow_bool_exp],
  "_not": Follow_bool_exp,
  "_or": [Follow_bool_exp],
  "blockNumber": Int_comparison_exp,
  "createdBlockNumber": Int_comparison_exp,
  "createdTimestamp": Int_comparison_exp,
  "createdTransactionIndex": Int_comparison_exp,
  "db_write_timestamp": timestamp_comparison_exp,
  "followee": Profile_bool_exp,
  "followee_id": String_comparison_exp,
  "follower": Profile_bool_exp,
  "follower_id": String_comparison_exp,
  "id": String_comparison_exp,
  "updatedBlockNumber": Int_comparison_exp,
  "updatedTimestamp": Int_comparison_exp,
  "updatedTransactionIndex": Int_comparison_exp
}

Follow_max_fields

Description

aggregate max on columns

Fields
Field Name Description
blockNumber - Int
createdBlockNumber - Int
createdTimestamp - Int
createdTransactionIndex - Int
db_write_timestamp - timestamp
followee_id - String
follower_id - String
id - String
updatedBlockNumber - Int
updatedTimestamp - Int
updatedTransactionIndex - Int
Example
{
  "blockNumber": 123,
  "createdBlockNumber": 987,
  "createdTimestamp": 123,
  "createdTransactionIndex": 987,
  "db_write_timestamp": timestamp,
  "followee_id": "xyz789",
  "follower_id": "abc123",
  "id": "abc123",
  "updatedBlockNumber": 123,
  "updatedTimestamp": 987,
  "updatedTransactionIndex": 123
}

Follow_max_order_by

Description

order by max() on columns of table "Follow"

Fields
Input Field Description
blockNumber - order_by
createdBlockNumber - order_by
createdTimestamp - order_by
createdTransactionIndex - order_by
db_write_timestamp - order_by
followee_id - order_by
follower_id - order_by
id - order_by
updatedBlockNumber - order_by
updatedTimestamp - order_by
updatedTransactionIndex - order_by
Example
{
  "blockNumber": "asc",
  "createdBlockNumber": "asc",
  "createdTimestamp": "asc",
  "createdTransactionIndex": "asc",
  "db_write_timestamp": "asc",
  "followee_id": "asc",
  "follower_id": "asc",
  "id": "asc",
  "updatedBlockNumber": "asc",
  "updatedTimestamp": "asc",
  "updatedTransactionIndex": "asc"
}

Follow_min_fields

Description

aggregate min on columns

Fields
Field Name Description
blockNumber - Int
createdBlockNumber - Int
createdTimestamp - Int
createdTransactionIndex - Int
db_write_timestamp - timestamp
followee_id - String
follower_id - String
id - String
updatedBlockNumber - Int
updatedTimestamp - Int
updatedTransactionIndex - Int
Example
{
  "blockNumber": 987,
  "createdBlockNumber": 987,
  "createdTimestamp": 123,
  "createdTransactionIndex": 123,
  "db_write_timestamp": timestamp,
  "followee_id": "abc123",
  "follower_id": "xyz789",
  "id": "abc123",
  "updatedBlockNumber": 123,
  "updatedTimestamp": 123,
  "updatedTransactionIndex": 123
}

Follow_min_order_by

Description

order by min() on columns of table "Follow"

Fields
Input Field Description
blockNumber - order_by
createdBlockNumber - order_by
createdTimestamp - order_by
createdTransactionIndex - order_by
db_write_timestamp - order_by
followee_id - order_by
follower_id - order_by
id - order_by
updatedBlockNumber - order_by
updatedTimestamp - order_by
updatedTransactionIndex - order_by
Example
{
  "blockNumber": "asc",
  "createdBlockNumber": "asc",
  "createdTimestamp": "asc",
  "createdTransactionIndex": "asc",
  "db_write_timestamp": "asc",
  "followee_id": "asc",
  "follower_id": "asc",
  "id": "asc",
  "updatedBlockNumber": "asc",
  "updatedTimestamp": "asc",
  "updatedTransactionIndex": "asc"
}

Follow_order_by

Description

Ordering options when selecting data from "Follow".

Fields
Input Field Description
blockNumber - order_by
createdBlockNumber - order_by
createdTimestamp - order_by
createdTransactionIndex - order_by
db_write_timestamp - order_by
followee - Profile_order_by
followee_id - order_by
follower - Profile_order_by
follower_id - order_by
id - order_by
updatedBlockNumber - order_by
updatedTimestamp - order_by
updatedTransactionIndex - order_by
Example
{
  "blockNumber": "asc",
  "createdBlockNumber": "asc",
  "createdTimestamp": "asc",
  "createdTransactionIndex": "asc",
  "db_write_timestamp": "asc",
  "followee": Profile_order_by,
  "followee_id": "asc",
  "follower": Profile_order_by,
  "follower_id": "asc",
  "id": "asc",
  "updatedBlockNumber": "asc",
  "updatedTimestamp": "asc",
  "updatedTransactionIndex": "asc"
}

Follow_select_column

Description

select columns of table "Follow"

Values
Enum Value Description

blockNumber

column name

createdBlockNumber

column name

createdTimestamp

column name

createdTransactionIndex

column name

db_write_timestamp

column name

followee_id

column name

follower_id

column name

id

column name

updatedBlockNumber

column name

updatedTimestamp

column name

updatedTransactionIndex

column name
Example
"blockNumber"

Follow_stddev_fields

Description

aggregate stddev on columns

Fields
Field Name Description
blockNumber - Float
createdBlockNumber - Float
createdTimestamp - Float
createdTransactionIndex - Float
updatedBlockNumber - Float
updatedTimestamp - Float
updatedTransactionIndex - Float
Example
{
  "blockNumber": 123.45,
  "createdBlockNumber": 987.65,
  "createdTimestamp": 123.45,
  "createdTransactionIndex": 123.45,
  "updatedBlockNumber": 123.45,
  "updatedTimestamp": 987.65,
  "updatedTransactionIndex": 987.65
}

Follow_stddev_order_by

Description

order by stddev() on columns of table "Follow"

Fields
Input Field Description
blockNumber - order_by
createdBlockNumber - order_by
createdTimestamp - order_by
createdTransactionIndex - order_by
updatedBlockNumber - order_by
updatedTimestamp - order_by
updatedTransactionIndex - order_by
Example
{
  "blockNumber": "asc",
  "createdBlockNumber": "asc",
  "createdTimestamp": "asc",
  "createdTransactionIndex": "asc",
  "updatedBlockNumber": "asc",
  "updatedTimestamp": "asc",
  "updatedTransactionIndex": "asc"
}

Follow_stddev_pop_fields

Description

aggregate stddev_pop on columns

Fields
Field Name Description
blockNumber - Float
createdBlockNumber - Float
createdTimestamp - Float
createdTransactionIndex - Float
updatedBlockNumber - Float
updatedTimestamp - Float
updatedTransactionIndex - Float
Example
{
  "blockNumber": 987.65,
  "createdBlockNumber": 987.65,
  "createdTimestamp": 987.65,
  "createdTransactionIndex": 987.65,
  "updatedBlockNumber": 987.65,
  "updatedTimestamp": 123.45,
  "updatedTransactionIndex": 987.65
}

Follow_stddev_pop_order_by

Description

order by stddev_pop() on columns of table "Follow"

Fields
Input Field Description
blockNumber - order_by
createdBlockNumber - order_by
createdTimestamp - order_by
createdTransactionIndex - order_by
updatedBlockNumber - order_by
updatedTimestamp - order_by
updatedTransactionIndex - order_by
Example
{
  "blockNumber": "asc",
  "createdBlockNumber": "asc",
  "createdTimestamp": "asc",
  "createdTransactionIndex": "asc",
  "updatedBlockNumber": "asc",
  "updatedTimestamp": "asc",
  "updatedTransactionIndex": "asc"
}

Follow_stddev_samp_fields

Description

aggregate stddev_samp on columns

Fields
Field Name Description
blockNumber - Float
createdBlockNumber - Float
createdTimestamp - Float
createdTransactionIndex - Float
updatedBlockNumber - Float
updatedTimestamp - Float
updatedTransactionIndex - Float
Example
{
  "blockNumber": 123.45,
  "createdBlockNumber": 987.65,
  "createdTimestamp": 987.65,
  "createdTransactionIndex": 987.65,
  "updatedBlockNumber": 123.45,
  "updatedTimestamp": 123.45,
  "updatedTransactionIndex": 987.65
}

Follow_stddev_samp_order_by

Description

order by stddev_samp() on columns of table "Follow"

Fields
Input Field Description
blockNumber - order_by
createdBlockNumber - order_by
createdTimestamp - order_by
createdTransactionIndex - order_by
updatedBlockNumber - order_by
updatedTimestamp - order_by
updatedTransactionIndex - order_by
Example
{
  "blockNumber": "asc",
  "createdBlockNumber": "asc",
  "createdTimestamp": "asc",
  "createdTransactionIndex": "asc",
  "updatedBlockNumber": "asc",
  "updatedTimestamp": "asc",
  "updatedTransactionIndex": "asc"
}

Follow_stream_cursor_input

Description

Streaming cursor of the table "Follow"

Fields
Input Field Description
initial_value - Follow_stream_cursor_value_input! Stream column input with initial value
ordering - cursor_ordering cursor ordering
Example
{
  "initial_value": Follow_stream_cursor_value_input,
  "ordering": "ASC"
}

Follow_stream_cursor_value_input

Description

Initial value of the column from where the streaming should start

Fields
Input Field Description
blockNumber - Int
createdBlockNumber - Int
createdTimestamp - Int
createdTransactionIndex - Int
db_write_timestamp - timestamp
followee_id - String
follower_id - String
id - String
updatedBlockNumber - Int
updatedTimestamp - Int
updatedTransactionIndex - Int
Example
{
  "blockNumber": 987,
  "createdBlockNumber": 987,
  "createdTimestamp": 987,
  "createdTransactionIndex": 987,
  "db_write_timestamp": timestamp,
  "followee_id": "abc123",
  "follower_id": "abc123",
  "id": "abc123",
  "updatedBlockNumber": 987,
  "updatedTimestamp": 987,
  "updatedTransactionIndex": 123
}

Follow_sum_fields

Description

aggregate sum on columns

Fields
Field Name Description
blockNumber - Int
createdBlockNumber - Int
createdTimestamp - Int
createdTransactionIndex - Int
updatedBlockNumber - Int
updatedTimestamp - Int
updatedTransactionIndex - Int
Example
{
  "blockNumber": 123,
  "createdBlockNumber": 987,
  "createdTimestamp": 987,
  "createdTransactionIndex": 123,
  "updatedBlockNumber": 987,
  "updatedTimestamp": 123,
  "updatedTransactionIndex": 987
}

Follow_sum_order_by

Description

order by sum() on columns of table "Follow"

Fields
Input Field Description
blockNumber - order_by
createdBlockNumber - order_by
createdTimestamp - order_by
createdTransactionIndex - order_by
updatedBlockNumber - order_by
updatedTimestamp - order_by
updatedTransactionIndex - order_by
Example
{
  "blockNumber": "asc",
  "createdBlockNumber": "asc",
  "createdTimestamp": "asc",
  "createdTransactionIndex": "asc",
  "updatedBlockNumber": "asc",
  "updatedTimestamp": "asc",
  "updatedTransactionIndex": "asc"
}

Follow_var_pop_fields

Description

aggregate var_pop on columns

Fields
Field Name Description
blockNumber - Float
createdBlockNumber - Float
createdTimestamp - Float
createdTransactionIndex - Float
updatedBlockNumber - Float
updatedTimestamp - Float
updatedTransactionIndex - Float
Example
{
  "blockNumber": 123.45,
  "createdBlockNumber": 987.65,
  "createdTimestamp": 987.65,
  "createdTransactionIndex": 987.65,
  "updatedBlockNumber": 123.45,
  "updatedTimestamp": 987.65,
  "updatedTransactionIndex": 987.65
}

Follow_var_pop_order_by

Description

order by var_pop() on columns of table "Follow"

Fields
Input Field Description
blockNumber - order_by
createdBlockNumber - order_by
createdTimestamp - order_by
createdTransactionIndex - order_by
updatedBlockNumber - order_by
updatedTimestamp - order_by
updatedTransactionIndex - order_by
Example
{
  "blockNumber": "asc",
  "createdBlockNumber": "asc",
  "createdTimestamp": "asc",
  "createdTransactionIndex": "asc",
  "updatedBlockNumber": "asc",
  "updatedTimestamp": "asc",
  "updatedTransactionIndex": "asc"
}

Follow_var_samp_fields

Description

aggregate var_samp on columns

Fields
Field Name Description
blockNumber - Float
createdBlockNumber - Float
createdTimestamp - Float
createdTransactionIndex - Float
updatedBlockNumber - Float
updatedTimestamp - Float
updatedTransactionIndex - Float
Example
{
  "blockNumber": 987.65,
  "createdBlockNumber": 123.45,
  "createdTimestamp": 123.45,
  "createdTransactionIndex": 123.45,
  "updatedBlockNumber": 123.45,
  "updatedTimestamp": 987.65,
  "updatedTransactionIndex": 987.65
}

Follow_var_samp_order_by

Description

order by var_samp() on columns of table "Follow"

Fields
Input Field Description
blockNumber - order_by
createdBlockNumber - order_by
createdTimestamp - order_by
createdTransactionIndex - order_by
updatedBlockNumber - order_by
updatedTimestamp - order_by
updatedTransactionIndex - order_by
Example
{
  "blockNumber": "asc",
  "createdBlockNumber": "asc",
  "createdTimestamp": "asc",
  "createdTransactionIndex": "asc",
  "updatedBlockNumber": "asc",
  "updatedTimestamp": "asc",
  "updatedTransactionIndex": "asc"
}

Follow_variance_fields

Description

aggregate variance on columns

Fields
Field Name Description
blockNumber - Float
createdBlockNumber - Float
createdTimestamp - Float
createdTransactionIndex - Float
updatedBlockNumber - Float
updatedTimestamp - Float
updatedTransactionIndex - Float
Example
{
  "blockNumber": 987.65,
  "createdBlockNumber": 123.45,
  "createdTimestamp": 123.45,
  "createdTransactionIndex": 123.45,
  "updatedBlockNumber": 123.45,
  "updatedTimestamp": 987.65,
  "updatedTransactionIndex": 123.45
}

Follow_variance_order_by

Description

order by variance() on columns of table "Follow"

Fields
Input Field Description
blockNumber - order_by
createdBlockNumber - order_by
createdTimestamp - order_by
createdTransactionIndex - order_by
updatedBlockNumber - order_by
updatedTimestamp - order_by
updatedTransactionIndex - order_by
Example
{
  "blockNumber": "asc",
  "createdBlockNumber": "asc",
  "createdTimestamp": "asc",
  "createdTransactionIndex": "asc",
  "updatedBlockNumber": "asc",
  "updatedTimestamp": "asc",
  "updatedTransactionIndex": "asc"
}

Hold

Description

columns and relationships of "Hold"

Fields
Field Name Description
asset - Asset An object relationship
asset_id - String
balance - numeric
baseAsset - Asset An object relationship
baseAsset_id - String
blockNumber - Int!
createdBlockNumber - Int!
createdTimestamp - Int!
createdTransactionIndex - Int!
db_write_timestamp - timestamp
id - String!
ownerEOA - Boolean
profile - Profile An object relationship
profile_id - String
timestamp - Int
token - Token An object relationship
token_id - String
transaction - Transaction An object relationship
transaction_id - String!
updatedBlockNumber - Int
updatedTimestamp - Int
updatedTransactionIndex - Int
Example
{
  "asset": Asset,
  "asset_id": "xyz789",
  "balance": numeric,
  "baseAsset": Asset,
  "baseAsset_id": "abc123",
  "blockNumber": 123,
  "createdBlockNumber": 123,
  "createdTimestamp": 987,
  "createdTransactionIndex": 987,
  "db_write_timestamp": timestamp,
  "id": "abc123",
  "ownerEOA": true,
  "profile": Profile,
  "profile_id": "abc123",
  "timestamp": 987,
  "token": Token,
  "token_id": "xyz789",
  "transaction": Transaction,
  "transaction_id": "abc123",
  "updatedBlockNumber": 987,
  "updatedTimestamp": 123,
  "updatedTransactionIndex": 123
}

Hold_aggregate

Description

aggregated selection of "Hold"

Fields
Field Name Description
aggregate - Hold_aggregate_fields
nodes - [Hold!]!
Example
{
  "aggregate": Hold_aggregate_fields,
  "nodes": [Hold]
}

Hold_aggregate_bool_exp

Fields
Input Field Description
bool_and - Hold_aggregate_bool_exp_bool_and
bool_or - Hold_aggregate_bool_exp_bool_or
count - Hold_aggregate_bool_exp_count
Example
{
  "bool_and": Hold_aggregate_bool_exp_bool_and,
  "bool_or": Hold_aggregate_bool_exp_bool_or,
  "count": Hold_aggregate_bool_exp_count
}

Hold_aggregate_bool_exp_bool_and

Fields
Input Field Description
arguments - Hold_select_column_Hold_aggregate_bool_exp_bool_and_arguments_columns!
distinct - Boolean
filter - Hold_bool_exp
predicate - Boolean_comparison_exp!
Example
{
  "arguments": "ownerEOA",
  "distinct": false,
  "filter": Hold_bool_exp,
  "predicate": Boolean_comparison_exp
}

Hold_aggregate_bool_exp_bool_or

Fields
Input Field Description
arguments - Hold_select_column_Hold_aggregate_bool_exp_bool_or_arguments_columns!
distinct - Boolean
filter - Hold_bool_exp
predicate - Boolean_comparison_exp!
Example
{
  "arguments": "ownerEOA",
  "distinct": false,
  "filter": Hold_bool_exp,
  "predicate": Boolean_comparison_exp
}

Hold_aggregate_bool_exp_count

Fields
Input Field Description
arguments - [Hold_select_column!]
distinct - Boolean
filter - Hold_bool_exp
predicate - Int_comparison_exp!
Example
{
  "arguments": ["asset_id"],
  "distinct": false,
  "filter": Hold_bool_exp,
  "predicate": Int_comparison_exp
}

Hold_aggregate_fields

Description

aggregate fields of "Hold"

Fields
Field Name Description
avg - Hold_avg_fields
count - Int!
Arguments
distinct - Boolean
max - Hold_max_fields
min - Hold_min_fields
stddev - Hold_stddev_fields
stddev_pop - Hold_stddev_pop_fields
stddev_samp - Hold_stddev_samp_fields
sum - Hold_sum_fields
var_pop - Hold_var_pop_fields
var_samp - Hold_var_samp_fields
variance - Hold_variance_fields
Example
{
  "avg": Hold_avg_fields,
  "count": 123,
  "max": Hold_max_fields,
  "min": Hold_min_fields,
  "stddev": Hold_stddev_fields,
  "stddev_pop": Hold_stddev_pop_fields,
  "stddev_samp": Hold_stddev_samp_fields,
  "sum": Hold_sum_fields,
  "var_pop": Hold_var_pop_fields,
  "var_samp": Hold_var_samp_fields,
  "variance": Hold_variance_fields
}

Hold_aggregate_order_by

Description

order by aggregate values of table "Hold"

Fields
Input Field Description
avg - Hold_avg_order_by
count - order_by
max - Hold_max_order_by
min - Hold_min_order_by
stddev - Hold_stddev_order_by
stddev_pop - Hold_stddev_pop_order_by
stddev_samp - Hold_stddev_samp_order_by
sum - Hold_sum_order_by
var_pop - Hold_var_pop_order_by
var_samp - Hold_var_samp_order_by
variance - Hold_variance_order_by
Example
{
  "avg": Hold_avg_order_by,
  "count": "asc",
  "max": Hold_max_order_by,
  "min": Hold_min_order_by,
  "stddev": Hold_stddev_order_by,
  "stddev_pop": Hold_stddev_pop_order_by,
  "stddev_samp": Hold_stddev_samp_order_by,
  "sum": Hold_sum_order_by,
  "var_pop": Hold_var_pop_order_by,
  "var_samp": Hold_var_samp_order_by,
  "variance": Hold_variance_order_by
}

Hold_avg_fields

Description

aggregate avg on columns

Fields
Field Name Description
balance - Float
blockNumber - Float
createdBlockNumber - Float
createdTimestamp - Float
createdTransactionIndex - Float
timestamp - Float
updatedBlockNumber - Float
updatedTimestamp - Float
updatedTransactionIndex - Float
Example
{
  "balance": 987.65,
  "blockNumber": 123.45,
  "createdBlockNumber": 123.45,
  "createdTimestamp": 123.45,
  "createdTransactionIndex": 987.65,
  "timestamp": 987.65,
  "updatedBlockNumber": 987.65,
  "updatedTimestamp": 123.45,
  "updatedTransactionIndex": 987.65
}

Hold_avg_order_by

Description

order by avg() on columns of table "Hold"

Fields
Input Field Description
balance - order_by
blockNumber - order_by
createdBlockNumber - order_by
createdTimestamp - order_by
createdTransactionIndex - order_by
timestamp - order_by
updatedBlockNumber - order_by
updatedTimestamp - order_by
updatedTransactionIndex - order_by
Example
{
  "balance": "asc",
  "blockNumber": "asc",
  "createdBlockNumber": "asc",
  "createdTimestamp": "asc",
  "createdTransactionIndex": "asc",
  "timestamp": "asc",
  "updatedBlockNumber": "asc",
  "updatedTimestamp": "asc",
  "updatedTransactionIndex": "asc"
}

Hold_bool_exp

Description

Boolean expression to filter rows from the table "Hold". All fields are combined with a logical 'AND'.

Fields
Input Field Description
_and - [Hold_bool_exp!]
_not - Hold_bool_exp
_or - [Hold_bool_exp!]
asset - Asset_bool_exp
asset_id - String_comparison_exp
balance - numeric_comparison_exp
baseAsset - Asset_bool_exp
baseAsset_id - String_comparison_exp
blockNumber - Int_comparison_exp
createdBlockNumber - Int_comparison_exp
createdTimestamp - Int_comparison_exp
createdTransactionIndex - Int_comparison_exp
db_write_timestamp - timestamp_comparison_exp
id - String_comparison_exp
ownerEOA - Boolean_comparison_exp
profile - Profile_bool_exp
profile_id - String_comparison_exp
timestamp - Int_comparison_exp
token - Token_bool_exp
token_id - String_comparison_exp
transaction - Transaction_bool_exp
transaction_id - String_comparison_exp
updatedBlockNumber - Int_comparison_exp
updatedTimestamp - Int_comparison_exp
updatedTransactionIndex - Int_comparison_exp
Example
{
  "_and": [Hold_bool_exp],
  "_not": Hold_bool_exp,
  "_or": [Hold_bool_exp],
  "asset": Asset_bool_exp,
  "asset_id": String_comparison_exp,
  "balance": numeric_comparison_exp,
  "baseAsset": Asset_bool_exp,
  "baseAsset_id": String_comparison_exp,
  "blockNumber": Int_comparison_exp,
  "createdBlockNumber": Int_comparison_exp,
  "createdTimestamp": Int_comparison_exp,
  "createdTransactionIndex": Int_comparison_exp,
  "db_write_timestamp": timestamp_comparison_exp,
  "id": String_comparison_exp,
  "ownerEOA": Boolean_comparison_exp,
  "profile": Profile_bool_exp,
  "profile_id": String_comparison_exp,
  "timestamp": Int_comparison_exp,
  "token": Token_bool_exp,
  "token_id": String_comparison_exp,
  "transaction": Transaction_bool_exp,
  "transaction_id": String_comparison_exp,
  "updatedBlockNumber": Int_comparison_exp,
  "updatedTimestamp": Int_comparison_exp,
  "updatedTransactionIndex": Int_comparison_exp
}

Hold_max_fields

Description

aggregate max on columns

Fields
Field Name Description
asset_id - String
balance - numeric
baseAsset_id - String
blockNumber - Int
createdBlockNumber - Int
createdTimestamp - Int
createdTransactionIndex - Int
db_write_timestamp - timestamp
id - String
profile_id - String
timestamp - Int
token_id - String
transaction_id - String
updatedBlockNumber - Int
updatedTimestamp - Int
updatedTransactionIndex - Int
Example
{
  "asset_id": "abc123",
  "balance": numeric,
  "baseAsset_id": "xyz789",
  "blockNumber": 123,
  "createdBlockNumber": 123,
  "createdTimestamp": 123,
  "createdTransactionIndex": 123,
  "db_write_timestamp": timestamp,
  "id": "abc123",
  "profile_id": "xyz789",
  "timestamp": 987,
  "token_id": "xyz789",
  "transaction_id": "xyz789",
  "updatedBlockNumber": 123,
  "updatedTimestamp": 987,
  "updatedTransactionIndex": 987
}

Hold_max_order_by

Description

order by max() on columns of table "Hold"

Fields
Input Field Description
asset_id - order_by
balance - order_by
baseAsset_id - order_by
blockNumber - order_by
createdBlockNumber - order_by
createdTimestamp - order_by
createdTransactionIndex - order_by
db_write_timestamp - order_by
id - order_by
profile_id - order_by
timestamp - order_by
token_id - order_by
transaction_id - order_by
updatedBlockNumber - order_by
updatedTimestamp - order_by
updatedTransactionIndex - order_by
Example
{
  "asset_id": "asc",
  "balance": "asc",
  "baseAsset_id": "asc",
  "blockNumber": "asc",
  "createdBlockNumber": "asc",
  "createdTimestamp": "asc",
  "createdTransactionIndex": "asc",
  "db_write_timestamp": "asc",
  "id": "asc",
  "profile_id": "asc",
  "timestamp": "asc",
  "token_id": "asc",
  "transaction_id": "asc",
  "updatedBlockNumber": "asc",
  "updatedTimestamp": "asc",
  "updatedTransactionIndex": "asc"
}

Hold_min_fields

Description

aggregate min on columns

Fields
Field Name Description
asset_id - String
balance - numeric
baseAsset_id - String
blockNumber - Int
createdBlockNumber - Int
createdTimestamp - Int
createdTransactionIndex - Int
db_write_timestamp - timestamp
id - String
profile_id - String
timestamp - Int
token_id - String
transaction_id - String
updatedBlockNumber - Int
updatedTimestamp - Int
updatedTransactionIndex - Int
Example
{
  "asset_id": "abc123",
  "balance": numeric,
  "baseAsset_id": "xyz789",
  "blockNumber": 987,
  "createdBlockNumber": 987,
  "createdTimestamp": 987,
  "createdTransactionIndex": 123,
  "db_write_timestamp": timestamp,
  "id": "abc123",
  "profile_id": "abc123",
  "timestamp": 123,
  "token_id": "xyz789",
  "transaction_id": "abc123",
  "updatedBlockNumber": 987,
  "updatedTimestamp": 123,
  "updatedTransactionIndex": 123
}

Hold_min_order_by

Description

order by min() on columns of table "Hold"

Fields
Input Field Description
asset_id - order_by
balance - order_by
baseAsset_id - order_by
blockNumber - order_by
createdBlockNumber - order_by
createdTimestamp - order_by
createdTransactionIndex - order_by
db_write_timestamp - order_by
id - order_by
profile_id - order_by
timestamp - order_by
token_id - order_by
transaction_id - order_by
updatedBlockNumber - order_by
updatedTimestamp - order_by
updatedTransactionIndex - order_by
Example
{
  "asset_id": "asc",
  "balance": "asc",
  "baseAsset_id": "asc",
  "blockNumber": "asc",
  "createdBlockNumber": "asc",
  "createdTimestamp": "asc",
  "createdTransactionIndex": "asc",
  "db_write_timestamp": "asc",
  "id": "asc",
  "profile_id": "asc",
  "timestamp": "asc",
  "token_id": "asc",
  "transaction_id": "asc",
  "updatedBlockNumber": "asc",
  "updatedTimestamp": "asc",
  "updatedTransactionIndex": "asc"
}

Hold_order_by

Description

Ordering options when selecting data from "Hold".

Fields
Input Field Description
asset - Asset_order_by
asset_id - order_by
balance - order_by
baseAsset - Asset_order_by
baseAsset_id - order_by
blockNumber - order_by
createdBlockNumber - order_by
createdTimestamp - order_by
createdTransactionIndex - order_by
db_write_timestamp - order_by
id - order_by
ownerEOA - order_by
profile - Profile_order_by
profile_id - order_by
timestamp - order_by
token - Token_order_by
token_id - order_by
transaction - Transaction_order_by
transaction_id - order_by
updatedBlockNumber - order_by
updatedTimestamp - order_by
updatedTransactionIndex - order_by
Example
{
  "asset": Asset_order_by,
  "asset_id": "asc",
  "balance": "asc",
  "baseAsset": Asset_order_by,
  "baseAsset_id": "asc",
  "blockNumber": "asc",
  "createdBlockNumber": "asc",
  "createdTimestamp": "asc",
  "createdTransactionIndex": "asc",
  "db_write_timestamp": "asc",
  "id": "asc",
  "ownerEOA": "asc",
  "profile": Profile_order_by,
  "profile_id": "asc",
  "timestamp": "asc",
  "token": Token_order_by,
  "token_id": "asc",
  "transaction": Transaction_order_by,
  "transaction_id": "asc",
  "updatedBlockNumber": "asc",
  "updatedTimestamp": "asc",
  "updatedTransactionIndex": "asc"
}

Hold_select_column

Description

select columns of table "Hold"

Values
Enum Value Description

asset_id

column name

balance

column name

baseAsset_id

column name

blockNumber

column name

createdBlockNumber

column name

createdTimestamp

column name

createdTransactionIndex

column name

db_write_timestamp

column name

id

column name

ownerEOA

column name

profile_id

column name

timestamp

column name

token_id

column name

transaction_id

column name

updatedBlockNumber

column name

updatedTimestamp

column name

updatedTransactionIndex

column name
Example
"asset_id"

Hold_select_column_Hold_aggregate_bool_exp_bool_and_arguments_columns

Description

select "Hold_aggregate_bool_exp_bool_and_arguments_columns" columns of table "Hold"

Values
Enum Value Description

ownerEOA

column name
Example
"ownerEOA"

Hold_select_column_Hold_aggregate_bool_exp_bool_or_arguments_columns

Description

select "Hold_aggregate_bool_exp_bool_or_arguments_columns" columns of table "Hold"

Values
Enum Value Description

ownerEOA

column name
Example
"ownerEOA"

Hold_stddev_fields

Description

aggregate stddev on columns

Fields
Field Name Description
balance - Float
blockNumber - Float
createdBlockNumber - Float
createdTimestamp - Float
createdTransactionIndex - Float
timestamp - Float
updatedBlockNumber - Float
updatedTimestamp - Float
updatedTransactionIndex - Float
Example
{
  "balance": 987.65,
  "blockNumber": 123.45,
  "createdBlockNumber": 987.65,
  "createdTimestamp": 987.65,
  "createdTransactionIndex": 987.65,
  "timestamp": 987.65,
  "updatedBlockNumber": 123.45,
  "updatedTimestamp": 123.45,
  "updatedTransactionIndex": 987.65
}

Hold_stddev_order_by

Description

order by stddev() on columns of table "Hold"

Fields
Input Field Description
balance - order_by
blockNumber - order_by
createdBlockNumber - order_by
createdTimestamp - order_by
createdTransactionIndex - order_by
timestamp - order_by
updatedBlockNumber - order_by
updatedTimestamp - order_by
updatedTransactionIndex - order_by
Example
{
  "balance": "asc",
  "blockNumber": "asc",
  "createdBlockNumber": "asc",
  "createdTimestamp": "asc",
  "createdTransactionIndex": "asc",
  "timestamp": "asc",
  "updatedBlockNumber": "asc",
  "updatedTimestamp": "asc",
  "updatedTransactionIndex": "asc"
}

Hold_stddev_pop_fields

Description

aggregate stddev_pop on columns

Fields
Field Name Description
balance - Float
blockNumber - Float
createdBlockNumber - Float
createdTimestamp - Float
createdTransactionIndex - Float
timestamp - Float
updatedBlockNumber - Float
updatedTimestamp - Float
updatedTransactionIndex - Float
Example
{
  "balance": 123.45,
  "blockNumber": 123.45,
  "createdBlockNumber": 987.65,
  "createdTimestamp": 987.65,
  "createdTransactionIndex": 987.65,
  "timestamp": 987.65,
  "updatedBlockNumber": 123.45,
  "updatedTimestamp": 987.65,
  "updatedTransactionIndex": 123.45
}

Hold_stddev_pop_order_by

Description

order by stddev_pop() on columns of table "Hold"

Fields
Input Field Description
balance - order_by
blockNumber - order_by
createdBlockNumber - order_by
createdTimestamp - order_by
createdTransactionIndex - order_by
timestamp - order_by
updatedBlockNumber - order_by
updatedTimestamp - order_by
updatedTransactionIndex - order_by
Example
{
  "balance": "asc",
  "blockNumber": "asc",
  "createdBlockNumber": "asc",
  "createdTimestamp": "asc",
  "createdTransactionIndex": "asc",
  "timestamp": "asc",
  "updatedBlockNumber": "asc",
  "updatedTimestamp": "asc",
  "updatedTransactionIndex": "asc"
}

Hold_stddev_samp_fields

Description

aggregate stddev_samp on columns

Fields
Field Name Description
balance - Float
blockNumber - Float
createdBlockNumber - Float
createdTimestamp - Float
createdTransactionIndex - Float
timestamp - Float
updatedBlockNumber - Float
updatedTimestamp - Float
updatedTransactionIndex - Float
Example
{
  "balance": 123.45,
  "blockNumber": 123.45,
  "createdBlockNumber": 987.65,
  "createdTimestamp": 123.45,
  "createdTransactionIndex": 123.45,
  "timestamp": 123.45,
  "updatedBlockNumber": 987.65,
  "updatedTimestamp": 123.45,
  "updatedTransactionIndex": 123.45
}

Hold_stddev_samp_order_by

Description

order by stddev_samp() on columns of table "Hold"

Fields
Input Field Description
balance - order_by
blockNumber - order_by
createdBlockNumber - order_by
createdTimestamp - order_by
createdTransactionIndex - order_by
timestamp - order_by
updatedBlockNumber - order_by
updatedTimestamp - order_by
updatedTransactionIndex - order_by
Example
{
  "balance": "asc",
  "blockNumber": "asc",
  "createdBlockNumber": "asc",
  "createdTimestamp": "asc",
  "createdTransactionIndex": "asc",
  "timestamp": "asc",
  "updatedBlockNumber": "asc",
  "updatedTimestamp": "asc",
  "updatedTransactionIndex": "asc"
}

Hold_stream_cursor_input

Description

Streaming cursor of the table "Hold"

Fields
Input Field Description
initial_value - Hold_stream_cursor_value_input! Stream column input with initial value
ordering - cursor_ordering cursor ordering
Example
{
  "initial_value": Hold_stream_cursor_value_input,
  "ordering": "ASC"
}

Hold_stream_cursor_value_input

Description

Initial value of the column from where the streaming should start

Fields
Input Field Description
asset_id - String
balance - numeric
baseAsset_id - String
blockNumber - Int
createdBlockNumber - Int
createdTimestamp - Int
createdTransactionIndex - Int
db_write_timestamp - timestamp
id - String
ownerEOA - Boolean
profile_id - String
timestamp - Int
token_id - String
transaction_id - String
updatedBlockNumber - Int
updatedTimestamp - Int
updatedTransactionIndex - Int
Example
{
  "asset_id": "xyz789",
  "balance": numeric,
  "baseAsset_id": "xyz789",
  "blockNumber": 987,
  "createdBlockNumber": 987,
  "createdTimestamp": 987,
  "createdTransactionIndex": 123,
  "db_write_timestamp": timestamp,
  "id": "xyz789",
  "ownerEOA": true,
  "profile_id": "xyz789",
  "timestamp": 123,
  "token_id": "abc123",
  "transaction_id": "xyz789",
  "updatedBlockNumber": 987,
  "updatedTimestamp": 987,
  "updatedTransactionIndex": 987
}

Hold_sum_fields

Description

aggregate sum on columns

Fields
Field Name Description
balance - numeric
blockNumber - Int
createdBlockNumber - Int
createdTimestamp - Int
createdTransactionIndex - Int
timestamp - Int
updatedBlockNumber - Int
updatedTimestamp - Int
updatedTransactionIndex - Int
Example
{
  "balance": numeric,
  "blockNumber": 987,
  "createdBlockNumber": 987,
  "createdTimestamp": 987,
  "createdTransactionIndex": 987,
  "timestamp": 987,
  "updatedBlockNumber": 123,
  "updatedTimestamp": 987,
  "updatedTransactionIndex": 123
}

Hold_sum_order_by

Description

order by sum() on columns of table "Hold"

Fields
Input Field Description
balance - order_by
blockNumber - order_by
createdBlockNumber - order_by
createdTimestamp - order_by
createdTransactionIndex - order_by
timestamp - order_by
updatedBlockNumber - order_by
updatedTimestamp - order_by
updatedTransactionIndex - order_by
Example
{
  "balance": "asc",
  "blockNumber": "asc",
  "createdBlockNumber": "asc",
  "createdTimestamp": "asc",
  "createdTransactionIndex": "asc",
  "timestamp": "asc",
  "updatedBlockNumber": "asc",
  "updatedTimestamp": "asc",
  "updatedTransactionIndex": "asc"
}

Hold_var_pop_fields

Description

aggregate var_pop on columns

Fields
Field Name Description
balance - Float
blockNumber - Float
createdBlockNumber - Float
createdTimestamp - Float
createdTransactionIndex - Float
timestamp - Float
updatedBlockNumber - Float
updatedTimestamp - Float
updatedTransactionIndex - Float
Example
{
  "balance": 123.45,
  "blockNumber": 123.45,
  "createdBlockNumber": 987.65,
  "createdTimestamp": 987.65,
  "createdTransactionIndex": 987.65,
  "timestamp": 123.45,
  "updatedBlockNumber": 123.45,
  "updatedTimestamp": 123.45,
  "updatedTransactionIndex": 123.45
}

Hold_var_pop_order_by

Description

order by var_pop() on columns of table "Hold"

Fields
Input Field Description
balance - order_by
blockNumber - order_by
createdBlockNumber - order_by
createdTimestamp - order_by
createdTransactionIndex - order_by
timestamp - order_by
updatedBlockNumber - order_by
updatedTimestamp - order_by
updatedTransactionIndex - order_by
Example
{
  "balance": "asc",
  "blockNumber": "asc",
  "createdBlockNumber": "asc",
  "createdTimestamp": "asc",
  "createdTransactionIndex": "asc",
  "timestamp": "asc",
  "updatedBlockNumber": "asc",
  "updatedTimestamp": "asc",
  "updatedTransactionIndex": "asc"
}

Hold_var_samp_fields

Description

aggregate var_samp on columns

Fields
Field Name Description
balance - Float
blockNumber - Float
createdBlockNumber - Float
createdTimestamp - Float
createdTransactionIndex - Float
timestamp - Float
updatedBlockNumber - Float
updatedTimestamp - Float
updatedTransactionIndex - Float
Example
{
  "balance": 123.45,
  "blockNumber": 987.65,
  "createdBlockNumber": 123.45,
  "createdTimestamp": 123.45,
  "createdTransactionIndex": 123.45,
  "timestamp": 987.65,
  "updatedBlockNumber": 987.65,
  "updatedTimestamp": 123.45,
  "updatedTransactionIndex": 123.45
}

Hold_var_samp_order_by

Description

order by var_samp() on columns of table "Hold"

Fields
Input Field Description
balance - order_by
blockNumber - order_by
createdBlockNumber - order_by
createdTimestamp - order_by
createdTransactionIndex - order_by
timestamp - order_by
updatedBlockNumber - order_by
updatedTimestamp - order_by
updatedTransactionIndex - order_by
Example
{
  "balance": "asc",
  "blockNumber": "asc",
  "createdBlockNumber": "asc",
  "createdTimestamp": "asc",
  "createdTransactionIndex": "asc",
  "timestamp": "asc",
  "updatedBlockNumber": "asc",
  "updatedTimestamp": "asc",
  "updatedTransactionIndex": "asc"
}

Hold_variance_fields

Description

aggregate variance on columns

Fields
Field Name Description
balance - Float
blockNumber - Float
createdBlockNumber - Float
createdTimestamp - Float
createdTransactionIndex - Float
timestamp - Float
updatedBlockNumber - Float
updatedTimestamp - Float
updatedTransactionIndex - Float
Example
{
  "balance": 987.65,
  "blockNumber": 123.45,
  "createdBlockNumber": 987.65,
  "createdTimestamp": 123.45,
  "createdTransactionIndex": 123.45,
  "timestamp": 987.65,
  "updatedBlockNumber": 987.65,
  "updatedTimestamp": 123.45,
  "updatedTransactionIndex": 123.45
}

Hold_variance_order_by

Description

order by variance() on columns of table "Hold"

Fields
Input Field Description
balance - order_by
blockNumber - order_by
createdBlockNumber - order_by
createdTimestamp - order_by
createdTransactionIndex - order_by
timestamp - order_by
updatedBlockNumber - order_by
updatedTimestamp - order_by
updatedTransactionIndex - order_by
Example
{
  "balance": "asc",
  "blockNumber": "asc",
  "createdBlockNumber": "asc",
  "createdTimestamp": "asc",
  "createdTransactionIndex": "asc",
  "timestamp": "asc",
  "updatedBlockNumber": "asc",
  "updatedTimestamp": "asc",
  "updatedTransactionIndex": "asc"
}

Int

Description

The Int scalar type represents non-fractional signed whole numeric values. Int can represent values between -(2^31) and 2^31 - 1.

Example
123

Int_array_comparison_exp

Description

Boolean expression to compare columns of type "Int". All fields are combined with logical 'AND'.

Fields
Input Field Description
_contained_in - [Int!] is the array contained in the given array value
_contains - [Int!] does the array contain the given value
_eq - [Int!]
_gt - [Int!]
_gte - [Int!]
_in - [Int!]
_is_null - Boolean
_lt - [Int!]
_lte - [Int!]
_neq - [Int!]
_nin - [Int!]
Example
{
  "_contained_in": [987],
  "_contains": [123],
  "_eq": [987],
  "_gt": [987],
  "_gte": [987],
  "_in": [123],
  "_is_null": false,
  "_lt": [987],
  "_lte": [123],
  "_neq": [987],
  "_nin": [123]
}

Int_comparison_exp

Description

Boolean expression to compare columns of type "Int". All fields are combined with logical 'AND'.

Fields
Input Field Description
_eq - Int
_gt - Int
_gte - Int
_in - [Int!]
_is_null - Boolean
_lt - Int
_lte - Int
_neq - Int
_nin - [Int!]
Example
{
  "_eq": 123,
  "_gt": 987,
  "_gte": 987,
  "_in": [123],
  "_is_null": false,
  "_lt": 123,
  "_lte": 123,
  "_neq": 987,
  "_nin": [123]
}

Interaction

Description

columns and relationships of "Interaction"

Fields
Field Name Description
blockNumber - Int!
db_write_timestamp - timestamp
id - String!
interacted - String
interactedAsset - Asset An object relationship
interactedAsset_id - String
interactionType - interactiontype!
operationType - numeric
profile - Profile An object relationship
profile_id - String
receivedData - String
returnedValue - String
timestamp - Int!
transaction - Transaction An object relationship
transaction_id - String
value - numeric!
Example
{
  "blockNumber": 987,
  "db_write_timestamp": timestamp,
  "id": "xyz789",
  "interacted": "abc123",
  "interactedAsset": Asset,
  "interactedAsset_id": "xyz789",
  "interactionType": interactiontype,
  "operationType": numeric,
  "profile": Profile,
  "profile_id": "xyz789",
  "receivedData": "xyz789",
  "returnedValue": "xyz789",
  "timestamp": 987,
  "transaction": Transaction,
  "transaction_id": "xyz789",
  "value": numeric
}

Interaction_aggregate

Description

aggregated selection of "Interaction"

Fields
Field Name Description
aggregate - Interaction_aggregate_fields
nodes - [Interaction!]!
Example
{
  "aggregate": Interaction_aggregate_fields,
  "nodes": [Interaction]
}

Interaction_aggregate_bool_exp

Fields
Input Field Description
count - Interaction_aggregate_bool_exp_count
Example
{"count": Interaction_aggregate_bool_exp_count}

Interaction_aggregate_bool_exp_count

Fields
Input Field Description
arguments - [Interaction_select_column!]
distinct - Boolean
filter - Interaction_bool_exp
predicate - Int_comparison_exp!
Example
{
  "arguments": ["blockNumber"],
  "distinct": false,
  "filter": Interaction_bool_exp,
  "predicate": Int_comparison_exp
}

Interaction_aggregate_fields

Description

aggregate fields of "Interaction"

Example
{
  "avg": Interaction_avg_fields,
  "count": 123,
  "max": Interaction_max_fields,
  "min": Interaction_min_fields,
  "stddev": Interaction_stddev_fields,
  "stddev_pop": Interaction_stddev_pop_fields,
  "stddev_samp": Interaction_stddev_samp_fields,
  "sum": Interaction_sum_fields,
  "var_pop": Interaction_var_pop_fields,
  "var_samp": Interaction_var_samp_fields,
  "variance": Interaction_variance_fields
}

Interaction_aggregate_order_by

Description

order by aggregate values of table "Interaction"

Example
{
  "avg": Interaction_avg_order_by,
  "count": "asc",
  "max": Interaction_max_order_by,
  "min": Interaction_min_order_by,
  "stddev": Interaction_stddev_order_by,
  "stddev_pop": Interaction_stddev_pop_order_by,
  "stddev_samp": Interaction_stddev_samp_order_by,
  "sum": Interaction_sum_order_by,
  "var_pop": Interaction_var_pop_order_by,
  "var_samp": Interaction_var_samp_order_by,
  "variance": Interaction_variance_order_by
}

Interaction_avg_fields

Description

aggregate avg on columns

Fields
Field Name Description
blockNumber - Float
operationType - Float
timestamp - Float
value - Float
Example
{
  "blockNumber": 987.65,
  "operationType": 123.45,
  "timestamp": 987.65,
  "value": 123.45
}

Interaction_avg_order_by

Description

order by avg() on columns of table "Interaction"

Fields
Input Field Description
blockNumber - order_by
operationType - order_by
timestamp - order_by
value - order_by
Example
{
  "blockNumber": "asc",
  "operationType": "asc",
  "timestamp": "asc",
  "value": "asc"
}

Interaction_bool_exp

Description

Boolean expression to filter rows from the table "Interaction". All fields are combined with a logical 'AND'.

Fields
Input Field Description
_and - [Interaction_bool_exp!]
_not - Interaction_bool_exp
_or - [Interaction_bool_exp!]
blockNumber - Int_comparison_exp
db_write_timestamp - timestamp_comparison_exp
id - String_comparison_exp
interacted - String_comparison_exp
interactedAsset - Asset_bool_exp
interactedAsset_id - String_comparison_exp
interactionType - interactiontype_comparison_exp
operationType - numeric_comparison_exp
profile - Profile_bool_exp
profile_id - String_comparison_exp
receivedData - String_comparison_exp
returnedValue - String_comparison_exp
timestamp - Int_comparison_exp
transaction - Transaction_bool_exp
transaction_id - String_comparison_exp
value - numeric_comparison_exp
Example
{
  "_and": [Interaction_bool_exp],
  "_not": Interaction_bool_exp,
  "_or": [Interaction_bool_exp],
  "blockNumber": Int_comparison_exp,
  "db_write_timestamp": timestamp_comparison_exp,
  "id": String_comparison_exp,
  "interacted": String_comparison_exp,
  "interactedAsset": Asset_bool_exp,
  "interactedAsset_id": String_comparison_exp,
  "interactionType": interactiontype_comparison_exp,
  "operationType": numeric_comparison_exp,
  "profile": Profile_bool_exp,
  "profile_id": String_comparison_exp,
  "receivedData": String_comparison_exp,
  "returnedValue": String_comparison_exp,
  "timestamp": Int_comparison_exp,
  "transaction": Transaction_bool_exp,
  "transaction_id": String_comparison_exp,
  "value": numeric_comparison_exp
}

Interaction_max_fields

Description

aggregate max on columns

Fields
Field Name Description
blockNumber - Int
db_write_timestamp - timestamp
id - String
interacted - String
interactedAsset_id - String
interactionType - interactiontype
operationType - numeric
profile_id - String
receivedData - String
returnedValue - String
timestamp - Int
transaction_id - String
value - numeric
Example
{
  "blockNumber": 987,
  "db_write_timestamp": timestamp,
  "id": "xyz789",
  "interacted": "abc123",
  "interactedAsset_id": "xyz789",
  "interactionType": interactiontype,
  "operationType": numeric,
  "profile_id": "abc123",
  "receivedData": "xyz789",
  "returnedValue": "xyz789",
  "timestamp": 987,
  "transaction_id": "xyz789",
  "value": numeric
}

Interaction_max_order_by

Description

order by max() on columns of table "Interaction"

Fields
Input Field Description
blockNumber - order_by
db_write_timestamp - order_by
id - order_by
interacted - order_by
interactedAsset_id - order_by
interactionType - order_by
operationType - order_by
profile_id - order_by
receivedData - order_by
returnedValue - order_by
timestamp - order_by
transaction_id - order_by
value - order_by
Example
{
  "blockNumber": "asc",
  "db_write_timestamp": "asc",
  "id": "asc",
  "interacted": "asc",
  "interactedAsset_id": "asc",
  "interactionType": "asc",
  "operationType": "asc",
  "profile_id": "asc",
  "receivedData": "asc",
  "returnedValue": "asc",
  "timestamp": "asc",
  "transaction_id": "asc",
  "value": "asc"
}

Interaction_min_fields

Description

aggregate min on columns

Fields
Field Name Description
blockNumber - Int
db_write_timestamp - timestamp
id - String
interacted - String
interactedAsset_id - String
interactionType - interactiontype
operationType - numeric
profile_id - String
receivedData - String
returnedValue - String
timestamp - Int
transaction_id - String
value - numeric
Example
{
  "blockNumber": 987,
  "db_write_timestamp": timestamp,
  "id": "xyz789",
  "interacted": "abc123",
  "interactedAsset_id": "abc123",
  "interactionType": interactiontype,
  "operationType": numeric,
  "profile_id": "xyz789",
  "receivedData": "xyz789",
  "returnedValue": "xyz789",
  "timestamp": 123,
  "transaction_id": "xyz789",
  "value": numeric
}

Interaction_min_order_by

Description

order by min() on columns of table "Interaction"

Fields
Input Field Description
blockNumber - order_by
db_write_timestamp - order_by
id - order_by
interacted - order_by
interactedAsset_id - order_by
interactionType - order_by
operationType - order_by
profile_id - order_by
receivedData - order_by
returnedValue - order_by
timestamp - order_by
transaction_id - order_by
value - order_by
Example
{
  "blockNumber": "asc",
  "db_write_timestamp": "asc",
  "id": "asc",
  "interacted": "asc",
  "interactedAsset_id": "asc",
  "interactionType": "asc",
  "operationType": "asc",
  "profile_id": "asc",
  "receivedData": "asc",
  "returnedValue": "asc",
  "timestamp": "asc",
  "transaction_id": "asc",
  "value": "asc"
}

Interaction_order_by

Description

Ordering options when selecting data from "Interaction".

Fields
Input Field Description
blockNumber - order_by
db_write_timestamp - order_by
id - order_by
interacted - order_by
interactedAsset - Asset_order_by
interactedAsset_id - order_by
interactionType - order_by
operationType - order_by
profile - Profile_order_by
profile_id - order_by
receivedData - order_by
returnedValue - order_by
timestamp - order_by
transaction - Transaction_order_by
transaction_id - order_by
value - order_by
Example
{
  "blockNumber": "asc",
  "db_write_timestamp": "asc",
  "id": "asc",
  "interacted": "asc",
  "interactedAsset": Asset_order_by,
  "interactedAsset_id": "asc",
  "interactionType": "asc",
  "operationType": "asc",
  "profile": Profile_order_by,
  "profile_id": "asc",
  "receivedData": "asc",
  "returnedValue": "asc",
  "timestamp": "asc",
  "transaction": Transaction_order_by,
  "transaction_id": "asc",
  "value": "asc"
}

Interaction_select_column

Description

select columns of table "Interaction"

Values
Enum Value Description

blockNumber

column name

db_write_timestamp

column name

id

column name

interacted

column name

interactedAsset_id

column name

interactionType

column name

operationType

column name

profile_id

column name

receivedData

column name

returnedValue

column name

timestamp

column name

transaction_id

column name

value

column name
Example
"blockNumber"

Interaction_stddev_fields

Description

aggregate stddev on columns

Fields
Field Name Description
blockNumber - Float
operationType - Float
timestamp - Float
value - Float
Example
{
  "blockNumber": 987.65,
  "operationType": 987.65,
  "timestamp": 987.65,
  "value": 987.65
}

Interaction_stddev_order_by

Description

order by stddev() on columns of table "Interaction"

Fields
Input Field Description
blockNumber - order_by
operationType - order_by
timestamp - order_by
value - order_by
Example
{
  "blockNumber": "asc",
  "operationType": "asc",
  "timestamp": "asc",
  "value": "asc"
}

Interaction_stddev_pop_fields

Description

aggregate stddev_pop on columns

Fields
Field Name Description
blockNumber - Float
operationType - Float
timestamp - Float
value - Float
Example
{
  "blockNumber": 987.65,
  "operationType": 987.65,
  "timestamp": 123.45,
  "value": 123.45
}

Interaction_stddev_pop_order_by

Description

order by stddev_pop() on columns of table "Interaction"

Fields
Input Field Description
blockNumber - order_by
operationType - order_by
timestamp - order_by
value - order_by
Example
{
  "blockNumber": "asc",
  "operationType": "asc",
  "timestamp": "asc",
  "value": "asc"
}

Interaction_stddev_samp_fields

Description

aggregate stddev_samp on columns

Fields
Field Name Description
blockNumber - Float
operationType - Float
timestamp - Float
value - Float
Example
{
  "blockNumber": 123.45,
  "operationType": 123.45,
  "timestamp": 123.45,
  "value": 987.65
}

Interaction_stddev_samp_order_by

Description

order by stddev_samp() on columns of table "Interaction"

Fields
Input Field Description
blockNumber - order_by
operationType - order_by
timestamp - order_by
value - order_by
Example
{
  "blockNumber": "asc",
  "operationType": "asc",
  "timestamp": "asc",
  "value": "asc"
}

Interaction_stream_cursor_input

Description

Streaming cursor of the table "Interaction"

Fields
Input Field Description
initial_value - Interaction_stream_cursor_value_input! Stream column input with initial value
ordering - cursor_ordering cursor ordering
Example
{
  "initial_value": Interaction_stream_cursor_value_input,
  "ordering": "ASC"
}

Interaction_stream_cursor_value_input

Description

Initial value of the column from where the streaming should start

Fields
Input Field Description
blockNumber - Int
db_write_timestamp - timestamp
id - String
interacted - String
interactedAsset_id - String
interactionType - interactiontype
operationType - numeric
profile_id - String
receivedData - String
returnedValue - String
timestamp - Int
transaction_id - String
value - numeric
Example
{
  "blockNumber": 123,
  "db_write_timestamp": timestamp,
  "id": "abc123",
  "interacted": "abc123",
  "interactedAsset_id": "abc123",
  "interactionType": interactiontype,
  "operationType": numeric,
  "profile_id": "xyz789",
  "receivedData": "xyz789",
  "returnedValue": "xyz789",
  "timestamp": 987,
  "transaction_id": "xyz789",
  "value": numeric
}

Interaction_sum_fields

Description

aggregate sum on columns

Fields
Field Name Description
blockNumber - Int
operationType - numeric
timestamp - Int
value - numeric
Example
{
  "blockNumber": 123,
  "operationType": numeric,
  "timestamp": 987,
  "value": numeric
}

Interaction_sum_order_by

Description

order by sum() on columns of table "Interaction"

Fields
Input Field Description
blockNumber - order_by
operationType - order_by
timestamp - order_by
value - order_by
Example
{
  "blockNumber": "asc",
  "operationType": "asc",
  "timestamp": "asc",
  "value": "asc"
}

Interaction_var_pop_fields

Description

aggregate var_pop on columns

Fields
Field Name Description
blockNumber - Float
operationType - Float
timestamp - Float
value - Float
Example
{
  "blockNumber": 987.65,
  "operationType": 123.45,
  "timestamp": 987.65,
  "value": 987.65
}

Interaction_var_pop_order_by

Description

order by var_pop() on columns of table "Interaction"

Fields
Input Field Description
blockNumber - order_by
operationType - order_by
timestamp - order_by
value - order_by
Example
{
  "blockNumber": "asc",
  "operationType": "asc",
  "timestamp": "asc",
  "value": "asc"
}

Interaction_var_samp_fields

Description

aggregate var_samp on columns

Fields
Field Name Description
blockNumber - Float
operationType - Float
timestamp - Float
value - Float
Example
{
  "blockNumber": 123.45,
  "operationType": 987.65,
  "timestamp": 987.65,
  "value": 123.45
}

Interaction_var_samp_order_by

Description

order by var_samp() on columns of table "Interaction"

Fields
Input Field Description
blockNumber - order_by
operationType - order_by
timestamp - order_by
value - order_by
Example
{
  "blockNumber": "asc",
  "operationType": "asc",
  "timestamp": "asc",
  "value": "asc"
}

Interaction_variance_fields

Description

aggregate variance on columns

Fields
Field Name Description
blockNumber - Float
operationType - Float
timestamp - Float
value - Float
Example
{
  "blockNumber": 123.45,
  "operationType": 987.65,
  "timestamp": 987.65,
  "value": 987.65
}

Interaction_variance_order_by

Description

order by variance() on columns of table "Interaction"

Fields
Input Field Description
blockNumber - order_by
operationType - order_by
timestamp - order_by
value - order_by
Example
{
  "blockNumber": "asc",
  "operationType": "asc",
  "timestamp": "asc",
  "value": "asc"
}

IssuedAsset

Description

columns and relationships of "IssuedAsset"

Fields
Field Name Description
asset - Asset An object relationship
asset_id - String
blockNumber - Int!
createdBlockNumber - Int!
createdTimestamp - Int!
createdTransactionIndex - Int!
db_write_timestamp - timestamp
id - String!
index - Int
interfaceId - String
profile - Profile An object relationship
profile_id - String
updatedBlockNumber - Int
updatedTimestamp - Int
updatedTransactionIndex - Int
Example
{
  "asset": Asset,
  "asset_id": "abc123",
  "blockNumber": 123,
  "createdBlockNumber": 987,
  "createdTimestamp": 987,
  "createdTransactionIndex": 987,
  "db_write_timestamp": timestamp,
  "id": "abc123",
  "index": 987,
  "interfaceId": "xyz789",
  "profile": Profile,
  "profile_id": "abc123",
  "updatedBlockNumber": 987,
  "updatedTimestamp": 987,
  "updatedTransactionIndex": 123
}

IssuedAsset_aggregate

Description

aggregated selection of "IssuedAsset"

Fields
Field Name Description
aggregate - IssuedAsset_aggregate_fields
nodes - [IssuedAsset!]!
Example
{
  "aggregate": IssuedAsset_aggregate_fields,
  "nodes": [IssuedAsset]
}

IssuedAsset_aggregate_bool_exp

Fields
Input Field Description
count - IssuedAsset_aggregate_bool_exp_count
Example
{"count": IssuedAsset_aggregate_bool_exp_count}

IssuedAsset_aggregate_bool_exp_count

Fields
Input Field Description
arguments - [IssuedAsset_select_column!]
distinct - Boolean
filter - IssuedAsset_bool_exp
predicate - Int_comparison_exp!
Example
{
  "arguments": ["asset_id"],
  "distinct": false,
  "filter": IssuedAsset_bool_exp,
  "predicate": Int_comparison_exp
}

IssuedAsset_aggregate_fields

Description

aggregate fields of "IssuedAsset"

Example
{
  "avg": IssuedAsset_avg_fields,
  "count": 987,
  "max": IssuedAsset_max_fields,
  "min": IssuedAsset_min_fields,
  "stddev": IssuedAsset_stddev_fields,
  "stddev_pop": IssuedAsset_stddev_pop_fields,
  "stddev_samp": IssuedAsset_stddev_samp_fields,
  "sum": IssuedAsset_sum_fields,
  "var_pop": IssuedAsset_var_pop_fields,
  "var_samp": IssuedAsset_var_samp_fields,
  "variance": IssuedAsset_variance_fields
}

IssuedAsset_aggregate_order_by

Description

order by aggregate values of table "IssuedAsset"

Example
{
  "avg": IssuedAsset_avg_order_by,
  "count": "asc",
  "max": IssuedAsset_max_order_by,
  "min": IssuedAsset_min_order_by,
  "stddev": IssuedAsset_stddev_order_by,
  "stddev_pop": IssuedAsset_stddev_pop_order_by,
  "stddev_samp": IssuedAsset_stddev_samp_order_by,
  "sum": IssuedAsset_sum_order_by,
  "var_pop": IssuedAsset_var_pop_order_by,
  "var_samp": IssuedAsset_var_samp_order_by,
  "variance": IssuedAsset_variance_order_by
}

IssuedAsset_avg_fields

Description

aggregate avg on columns

Fields
Field Name Description
blockNumber - Float
createdBlockNumber - Float
createdTimestamp - Float
createdTransactionIndex - Float
index - Float
updatedBlockNumber - Float
updatedTimestamp - Float
updatedTransactionIndex - Float
Example
{
  "blockNumber": 123.45,
  "createdBlockNumber": 987.65,
  "createdTimestamp": 123.45,
  "createdTransactionIndex": 987.65,
  "index": 123.45,
  "updatedBlockNumber": 123.45,
  "updatedTimestamp": 123.45,
  "updatedTransactionIndex": 987.65
}

IssuedAsset_avg_order_by

Description

order by avg() on columns of table "IssuedAsset"

Fields
Input Field Description
blockNumber - order_by
createdBlockNumber - order_by
createdTimestamp - order_by
createdTransactionIndex - order_by
index - order_by
updatedBlockNumber - order_by
updatedTimestamp - order_by
updatedTransactionIndex - order_by
Example
{
  "blockNumber": "asc",
  "createdBlockNumber": "asc",
  "createdTimestamp": "asc",
  "createdTransactionIndex": "asc",
  "index": "asc",
  "updatedBlockNumber": "asc",
  "updatedTimestamp": "asc",
  "updatedTransactionIndex": "asc"
}

IssuedAsset_bool_exp

Description

Boolean expression to filter rows from the table "IssuedAsset". All fields are combined with a logical 'AND'.

Fields
Input Field Description
_and - [IssuedAsset_bool_exp!]
_not - IssuedAsset_bool_exp
_or - [IssuedAsset_bool_exp!]
asset - Asset_bool_exp
asset_id - String_comparison_exp
blockNumber - Int_comparison_exp
createdBlockNumber - Int_comparison_exp
createdTimestamp - Int_comparison_exp
createdTransactionIndex - Int_comparison_exp
db_write_timestamp - timestamp_comparison_exp
id - String_comparison_exp
index - Int_comparison_exp
interfaceId - String_comparison_exp
profile - Profile_bool_exp
profile_id - String_comparison_exp
updatedBlockNumber - Int_comparison_exp
updatedTimestamp - Int_comparison_exp
updatedTransactionIndex - Int_comparison_exp
Example
{
  "_and": [IssuedAsset_bool_exp],
  "_not": IssuedAsset_bool_exp,
  "_or": [IssuedAsset_bool_exp],
  "asset": Asset_bool_exp,
  "asset_id": String_comparison_exp,
  "blockNumber": Int_comparison_exp,
  "createdBlockNumber": Int_comparison_exp,
  "createdTimestamp": Int_comparison_exp,
  "createdTransactionIndex": Int_comparison_exp,
  "db_write_timestamp": timestamp_comparison_exp,
  "id": String_comparison_exp,
  "index": Int_comparison_exp,
  "interfaceId": String_comparison_exp,
  "profile": Profile_bool_exp,
  "profile_id": String_comparison_exp,
  "updatedBlockNumber": Int_comparison_exp,
  "updatedTimestamp": Int_comparison_exp,
  "updatedTransactionIndex": Int_comparison_exp
}

IssuedAsset_max_fields

Description

aggregate max on columns

Fields
Field Name Description
asset_id - String
blockNumber - Int
createdBlockNumber - Int
createdTimestamp - Int
createdTransactionIndex - Int
db_write_timestamp - timestamp
id - String
index - Int
interfaceId - String
profile_id - String
updatedBlockNumber - Int
updatedTimestamp - Int
updatedTransactionIndex - Int
Example
{
  "asset_id": "abc123",
  "blockNumber": 123,
  "createdBlockNumber": 987,
  "createdTimestamp": 987,
  "createdTransactionIndex": 123,
  "db_write_timestamp": timestamp,
  "id": "abc123",
  "index": 987,
  "interfaceId": "xyz789",
  "profile_id": "abc123",
  "updatedBlockNumber": 123,
  "updatedTimestamp": 123,
  "updatedTransactionIndex": 987
}

IssuedAsset_max_order_by

Description

order by max() on columns of table "IssuedAsset"

Fields
Input Field Description
asset_id - order_by
blockNumber - order_by
createdBlockNumber - order_by
createdTimestamp - order_by
createdTransactionIndex - order_by
db_write_timestamp - order_by
id - order_by
index - order_by
interfaceId - order_by
profile_id - order_by
updatedBlockNumber - order_by
updatedTimestamp - order_by
updatedTransactionIndex - order_by
Example
{
  "asset_id": "asc",
  "blockNumber": "asc",
  "createdBlockNumber": "asc",
  "createdTimestamp": "asc",
  "createdTransactionIndex": "asc",
  "db_write_timestamp": "asc",
  "id": "asc",
  "index": "asc",
  "interfaceId": "asc",
  "profile_id": "asc",
  "updatedBlockNumber": "asc",
  "updatedTimestamp": "asc",
  "updatedTransactionIndex": "asc"
}

IssuedAsset_min_fields

Description

aggregate min on columns

Fields
Field Name Description
asset_id - String
blockNumber - Int
createdBlockNumber - Int
createdTimestamp - Int
createdTransactionIndex - Int
db_write_timestamp - timestamp
id - String
index - Int
interfaceId - String
profile_id - String
updatedBlockNumber - Int
updatedTimestamp - Int
updatedTransactionIndex - Int
Example
{
  "asset_id": "abc123",
  "blockNumber": 123,
  "createdBlockNumber": 987,
  "createdTimestamp": 123,
  "createdTransactionIndex": 987,
  "db_write_timestamp": timestamp,
  "id": "xyz789",
  "index": 987,
  "interfaceId": "abc123",
  "profile_id": "abc123",
  "updatedBlockNumber": 123,
  "updatedTimestamp": 987,
  "updatedTransactionIndex": 123
}

IssuedAsset_min_order_by

Description

order by min() on columns of table "IssuedAsset"

Fields
Input Field Description
asset_id - order_by
blockNumber - order_by
createdBlockNumber - order_by
createdTimestamp - order_by
createdTransactionIndex - order_by
db_write_timestamp - order_by
id - order_by
index - order_by
interfaceId - order_by
profile_id - order_by
updatedBlockNumber - order_by
updatedTimestamp - order_by
updatedTransactionIndex - order_by
Example
{
  "asset_id": "asc",
  "blockNumber": "asc",
  "createdBlockNumber": "asc",
  "createdTimestamp": "asc",
  "createdTransactionIndex": "asc",
  "db_write_timestamp": "asc",
  "id": "asc",
  "index": "asc",
  "interfaceId": "asc",
  "profile_id": "asc",
  "updatedBlockNumber": "asc",
  "updatedTimestamp": "asc",
  "updatedTransactionIndex": "asc"
}

IssuedAsset_order_by

Description

Ordering options when selecting data from "IssuedAsset".

Fields
Input Field Description
asset - Asset_order_by
asset_id - order_by
blockNumber - order_by
createdBlockNumber - order_by
createdTimestamp - order_by
createdTransactionIndex - order_by
db_write_timestamp - order_by
id - order_by
index - order_by
interfaceId - order_by
profile - Profile_order_by
profile_id - order_by
updatedBlockNumber - order_by
updatedTimestamp - order_by
updatedTransactionIndex - order_by
Example
{
  "asset": Asset_order_by,
  "asset_id": "asc",
  "blockNumber": "asc",
  "createdBlockNumber": "asc",
  "createdTimestamp": "asc",
  "createdTransactionIndex": "asc",
  "db_write_timestamp": "asc",
  "id": "asc",
  "index": "asc",
  "interfaceId": "asc",
  "profile": Profile_order_by,
  "profile_id": "asc",
  "updatedBlockNumber": "asc",
  "updatedTimestamp": "asc",
  "updatedTransactionIndex": "asc"
}

IssuedAsset_select_column

Description

select columns of table "IssuedAsset"

Values
Enum Value Description

asset_id

column name

blockNumber

column name

createdBlockNumber

column name

createdTimestamp

column name

createdTransactionIndex

column name

db_write_timestamp

column name

id

column name

index

column name

interfaceId

column name

profile_id

column name

updatedBlockNumber

column name

updatedTimestamp

column name

updatedTransactionIndex

column name
Example
"asset_id"

IssuedAsset_stddev_fields

Description

aggregate stddev on columns

Fields
Field Name Description
blockNumber - Float
createdBlockNumber - Float
createdTimestamp - Float
createdTransactionIndex - Float
index - Float
updatedBlockNumber - Float
updatedTimestamp - Float
updatedTransactionIndex - Float
Example
{
  "blockNumber": 987.65,
  "createdBlockNumber": 123.45,
  "createdTimestamp": 123.45,
  "createdTransactionIndex": 987.65,
  "index": 987.65,
  "updatedBlockNumber": 987.65,
  "updatedTimestamp": 987.65,
  "updatedTransactionIndex": 987.65
}

IssuedAsset_stddev_order_by

Description

order by stddev() on columns of table "IssuedAsset"

Fields
Input Field Description
blockNumber - order_by
createdBlockNumber - order_by
createdTimestamp - order_by
createdTransactionIndex - order_by
index - order_by
updatedBlockNumber - order_by
updatedTimestamp - order_by
updatedTransactionIndex - order_by
Example
{
  "blockNumber": "asc",
  "createdBlockNumber": "asc",
  "createdTimestamp": "asc",
  "createdTransactionIndex": "asc",
  "index": "asc",
  "updatedBlockNumber": "asc",
  "updatedTimestamp": "asc",
  "updatedTransactionIndex": "asc"
}

IssuedAsset_stddev_pop_fields

Description

aggregate stddev_pop on columns

Fields
Field Name Description
blockNumber - Float
createdBlockNumber - Float
createdTimestamp - Float
createdTransactionIndex - Float
index - Float
updatedBlockNumber - Float
updatedTimestamp - Float
updatedTransactionIndex - Float
Example
{
  "blockNumber": 123.45,
  "createdBlockNumber": 987.65,
  "createdTimestamp": 987.65,
  "createdTransactionIndex": 987.65,
  "index": 123.45,
  "updatedBlockNumber": 123.45,
  "updatedTimestamp": 987.65,
  "updatedTransactionIndex": 123.45
}

IssuedAsset_stddev_pop_order_by

Description

order by stddev_pop() on columns of table "IssuedAsset"

Fields
Input Field Description
blockNumber - order_by
createdBlockNumber - order_by
createdTimestamp - order_by
createdTransactionIndex - order_by
index - order_by
updatedBlockNumber - order_by
updatedTimestamp - order_by
updatedTransactionIndex - order_by
Example
{
  "blockNumber": "asc",
  "createdBlockNumber": "asc",
  "createdTimestamp": "asc",
  "createdTransactionIndex": "asc",
  "index": "asc",
  "updatedBlockNumber": "asc",
  "updatedTimestamp": "asc",
  "updatedTransactionIndex": "asc"
}

IssuedAsset_stddev_samp_fields

Description

aggregate stddev_samp on columns

Fields
Field Name Description
blockNumber - Float
createdBlockNumber - Float
createdTimestamp - Float
createdTransactionIndex - Float
index - Float
updatedBlockNumber - Float
updatedTimestamp - Float
updatedTransactionIndex - Float
Example
{
  "blockNumber": 123.45,
  "createdBlockNumber": 987.65,
  "createdTimestamp": 987.65,
  "createdTransactionIndex": 123.45,
  "index": 123.45,
  "updatedBlockNumber": 987.65,
  "updatedTimestamp": 987.65,
  "updatedTransactionIndex": 987.65
}

IssuedAsset_stddev_samp_order_by

Description

order by stddev_samp() on columns of table "IssuedAsset"

Fields
Input Field Description
blockNumber - order_by
createdBlockNumber - order_by
createdTimestamp - order_by
createdTransactionIndex - order_by
index - order_by
updatedBlockNumber - order_by
updatedTimestamp - order_by
updatedTransactionIndex - order_by
Example
{
  "blockNumber": "asc",
  "createdBlockNumber": "asc",
  "createdTimestamp": "asc",
  "createdTransactionIndex": "asc",
  "index": "asc",
  "updatedBlockNumber": "asc",
  "updatedTimestamp": "asc",
  "updatedTransactionIndex": "asc"
}

IssuedAsset_stream_cursor_input

Description

Streaming cursor of the table "IssuedAsset"

Fields
Input Field Description
initial_value - IssuedAsset_stream_cursor_value_input! Stream column input with initial value
ordering - cursor_ordering cursor ordering
Example
{
  "initial_value": IssuedAsset_stream_cursor_value_input,
  "ordering": "ASC"
}

IssuedAsset_stream_cursor_value_input

Description

Initial value of the column from where the streaming should start

Fields
Input Field Description
asset_id - String
blockNumber - Int
createdBlockNumber - Int
createdTimestamp - Int
createdTransactionIndex - Int
db_write_timestamp - timestamp
id - String
index - Int
interfaceId - String
profile_id - String
updatedBlockNumber - Int
updatedTimestamp - Int
updatedTransactionIndex - Int
Example
{
  "asset_id": "abc123",
  "blockNumber": 987,
  "createdBlockNumber": 987,
  "createdTimestamp": 123,
  "createdTransactionIndex": 123,
  "db_write_timestamp": timestamp,
  "id": "xyz789",
  "index": 123,
  "interfaceId": "xyz789",
  "profile_id": "xyz789",
  "updatedBlockNumber": 987,
  "updatedTimestamp": 123,
  "updatedTransactionIndex": 123
}

IssuedAsset_sum_fields

Description

aggregate sum on columns

Fields
Field Name Description
blockNumber - Int
createdBlockNumber - Int
createdTimestamp - Int
createdTransactionIndex - Int
index - Int
updatedBlockNumber - Int
updatedTimestamp - Int
updatedTransactionIndex - Int
Example
{
  "blockNumber": 123,
  "createdBlockNumber": 123,
  "createdTimestamp": 987,
  "createdTransactionIndex": 123,
  "index": 987,
  "updatedBlockNumber": 987,
  "updatedTimestamp": 987,
  "updatedTransactionIndex": 987
}

IssuedAsset_sum_order_by

Description

order by sum() on columns of table "IssuedAsset"

Fields
Input Field Description
blockNumber - order_by
createdBlockNumber - order_by
createdTimestamp - order_by
createdTransactionIndex - order_by
index - order_by
updatedBlockNumber - order_by
updatedTimestamp - order_by
updatedTransactionIndex - order_by
Example
{
  "blockNumber": "asc",
  "createdBlockNumber": "asc",
  "createdTimestamp": "asc",
  "createdTransactionIndex": "asc",
  "index": "asc",
  "updatedBlockNumber": "asc",
  "updatedTimestamp": "asc",
  "updatedTransactionIndex": "asc"
}

IssuedAsset_var_pop_fields

Description

aggregate var_pop on columns

Fields
Field Name Description
blockNumber - Float
createdBlockNumber - Float
createdTimestamp - Float
createdTransactionIndex - Float
index - Float
updatedBlockNumber - Float
updatedTimestamp - Float
updatedTransactionIndex - Float
Example
{
  "blockNumber": 987.65,
  "createdBlockNumber": 987.65,
  "createdTimestamp": 987.65,
  "createdTransactionIndex": 123.45,
  "index": 987.65,
  "updatedBlockNumber": 987.65,
  "updatedTimestamp": 123.45,
  "updatedTransactionIndex": 987.65
}

IssuedAsset_var_pop_order_by

Description

order by var_pop() on columns of table "IssuedAsset"

Fields
Input Field Description
blockNumber - order_by
createdBlockNumber - order_by
createdTimestamp - order_by
createdTransactionIndex - order_by
index - order_by
updatedBlockNumber - order_by
updatedTimestamp - order_by
updatedTransactionIndex - order_by
Example
{
  "blockNumber": "asc",
  "createdBlockNumber": "asc",
  "createdTimestamp": "asc",
  "createdTransactionIndex": "asc",
  "index": "asc",
  "updatedBlockNumber": "asc",
  "updatedTimestamp": "asc",
  "updatedTransactionIndex": "asc"
}

IssuedAsset_var_samp_fields

Description

aggregate var_samp on columns

Fields
Field Name Description
blockNumber - Float
createdBlockNumber - Float
createdTimestamp - Float
createdTransactionIndex - Float
index - Float
updatedBlockNumber - Float
updatedTimestamp - Float
updatedTransactionIndex - Float
Example
{
  "blockNumber": 123.45,
  "createdBlockNumber": 987.65,
  "createdTimestamp": 987.65,
  "createdTransactionIndex": 123.45,
  "index": 987.65,
  "updatedBlockNumber": 123.45,
  "updatedTimestamp": 987.65,
  "updatedTransactionIndex": 123.45
}

IssuedAsset_var_samp_order_by

Description

order by var_samp() on columns of table "IssuedAsset"

Fields
Input Field Description
blockNumber - order_by
createdBlockNumber - order_by
createdTimestamp - order_by
createdTransactionIndex - order_by
index - order_by
updatedBlockNumber - order_by
updatedTimestamp - order_by
updatedTransactionIndex - order_by
Example
{
  "blockNumber": "asc",
  "createdBlockNumber": "asc",
  "createdTimestamp": "asc",
  "createdTransactionIndex": "asc",
  "index": "asc",
  "updatedBlockNumber": "asc",
  "updatedTimestamp": "asc",
  "updatedTransactionIndex": "asc"
}

IssuedAsset_variance_fields

Description

aggregate variance on columns

Fields
Field Name Description
blockNumber - Float
createdBlockNumber - Float
createdTimestamp - Float
createdTransactionIndex - Float
index - Float
updatedBlockNumber - Float
updatedTimestamp - Float
updatedTransactionIndex - Float
Example
{
  "blockNumber": 123.45,
  "createdBlockNumber": 123.45,
  "createdTimestamp": 123.45,
  "createdTransactionIndex": 123.45,
  "index": 123.45,
  "updatedBlockNumber": 987.65,
  "updatedTimestamp": 987.65,
  "updatedTransactionIndex": 987.65
}

IssuedAsset_variance_order_by

Description

order by variance() on columns of table "IssuedAsset"

Fields
Input Field Description
blockNumber - order_by
createdBlockNumber - order_by
createdTimestamp - order_by
createdTransactionIndex - order_by
index - order_by
updatedBlockNumber - order_by
updatedTimestamp - order_by
updatedTransactionIndex - order_by
Example
{
  "blockNumber": "asc",
  "createdBlockNumber": "asc",
  "createdTimestamp": "asc",
  "createdTransactionIndex": "asc",
  "index": "asc",
  "updatedBlockNumber": "asc",
  "updatedTimestamp": "asc",
  "updatedTransactionIndex": "asc"
}

KeyManager

Description

columns and relationships of "KeyManager"

Fields
Field Name Description
blockNumber - Int!
createdBlockNumber - Int!
createdTimestamp - Int!
createdTransactionIndex - Int!
id - String!
profile - Profile An object relationship
profile_id - String
updatedBlockNumber - Int
updatedTimestamp - Int
updatedTransactionIndex - Int
Example
{
  "blockNumber": 987,
  "createdBlockNumber": 123,
  "createdTimestamp": 987,
  "createdTransactionIndex": 123,
  "id": "xyz789",
  "profile": Profile,
  "profile_id": "xyz789",
  "updatedBlockNumber": 123,
  "updatedTimestamp": 987,
  "updatedTransactionIndex": 987
}

KeyManager_aggregate

Description

aggregated selection of "KeyManager"

Fields
Field Name Description
aggregate - KeyManager_aggregate_fields
nodes - [KeyManager!]!
Example
{
  "aggregate": KeyManager_aggregate_fields,
  "nodes": [KeyManager]
}

KeyManager_aggregate_bool_exp

Fields
Input Field Description
count - KeyManager_aggregate_bool_exp_count
Example
{"count": KeyManager_aggregate_bool_exp_count}

KeyManager_aggregate_bool_exp_count

Fields
Input Field Description
arguments - [KeyManager_select_column!]
distinct - Boolean
filter - KeyManager_bool_exp
predicate - Int_comparison_exp!
Example
{
  "arguments": ["blockNumber"],
  "distinct": false,
  "filter": KeyManager_bool_exp,
  "predicate": Int_comparison_exp
}

KeyManager_aggregate_fields

Description

aggregate fields of "KeyManager"

Example
{
  "avg": KeyManager_avg_fields,
  "count": 123,
  "max": KeyManager_max_fields,
  "min": KeyManager_min_fields,
  "stddev": KeyManager_stddev_fields,
  "stddev_pop": KeyManager_stddev_pop_fields,
  "stddev_samp": KeyManager_stddev_samp_fields,
  "sum": KeyManager_sum_fields,
  "var_pop": KeyManager_var_pop_fields,
  "var_samp": KeyManager_var_samp_fields,
  "variance": KeyManager_variance_fields
}

KeyManager_aggregate_order_by

Description

order by aggregate values of table "KeyManager"

Example
{
  "avg": KeyManager_avg_order_by,
  "count": "asc",
  "max": KeyManager_max_order_by,
  "min": KeyManager_min_order_by,
  "stddev": KeyManager_stddev_order_by,
  "stddev_pop": KeyManager_stddev_pop_order_by,
  "stddev_samp": KeyManager_stddev_samp_order_by,
  "sum": KeyManager_sum_order_by,
  "var_pop": KeyManager_var_pop_order_by,
  "var_samp": KeyManager_var_samp_order_by,
  "variance": KeyManager_variance_order_by
}

KeyManager_avg_fields

Description

aggregate avg on columns

Fields
Field Name Description
blockNumber - Float
createdBlockNumber - Float
createdTimestamp - Float
createdTransactionIndex - Float
updatedBlockNumber - Float
updatedTimestamp - Float
updatedTransactionIndex - Float
Example
{
  "blockNumber": 987.65,
  "createdBlockNumber": 987.65,
  "createdTimestamp": 123.45,
  "createdTransactionIndex": 123.45,
  "updatedBlockNumber": 123.45,
  "updatedTimestamp": 987.65,
  "updatedTransactionIndex": 987.65
}

KeyManager_avg_order_by

Description

order by avg() on columns of table "KeyManager"

Fields
Input Field Description
blockNumber - order_by
createdBlockNumber - order_by
createdTimestamp - order_by
createdTransactionIndex - order_by
updatedBlockNumber - order_by
updatedTimestamp - order_by
updatedTransactionIndex - order_by
Example
{
  "blockNumber": "asc",
  "createdBlockNumber": "asc",
  "createdTimestamp": "asc",
  "createdTransactionIndex": "asc",
  "updatedBlockNumber": "asc",
  "updatedTimestamp": "asc",
  "updatedTransactionIndex": "asc"
}

KeyManager_bool_exp

Description

Boolean expression to filter rows from the table "KeyManager". All fields are combined with a logical 'AND'.

Fields
Input Field Description
_and - [KeyManager_bool_exp!]
_not - KeyManager_bool_exp
_or - [KeyManager_bool_exp!]
blockNumber - Int_comparison_exp
createdBlockNumber - Int_comparison_exp
createdTimestamp - Int_comparison_exp
createdTransactionIndex - Int_comparison_exp
id - String_comparison_exp
profile - Profile_bool_exp
profile_id - String_comparison_exp
updatedBlockNumber - Int_comparison_exp
updatedTimestamp - Int_comparison_exp
updatedTransactionIndex - Int_comparison_exp
Example
{
  "_and": [KeyManager_bool_exp],
  "_not": KeyManager_bool_exp,
  "_or": [KeyManager_bool_exp],
  "blockNumber": Int_comparison_exp,
  "createdBlockNumber": Int_comparison_exp,
  "createdTimestamp": Int_comparison_exp,
  "createdTransactionIndex": Int_comparison_exp,
  "id": String_comparison_exp,
  "profile": Profile_bool_exp,
  "profile_id": String_comparison_exp,
  "updatedBlockNumber": Int_comparison_exp,
  "updatedTimestamp": Int_comparison_exp,
  "updatedTransactionIndex": Int_comparison_exp
}

KeyManager_max_fields

Description

aggregate max on columns

Fields
Field Name Description
blockNumber - Int
createdBlockNumber - Int
createdTimestamp - Int
createdTransactionIndex - Int
id - String
profile_id - String
updatedBlockNumber - Int
updatedTimestamp - Int
updatedTransactionIndex - Int
Example
{
  "blockNumber": 123,
  "createdBlockNumber": 123,
  "createdTimestamp": 123,
  "createdTransactionIndex": 987,
  "id": "xyz789",
  "profile_id": "xyz789",
  "updatedBlockNumber": 987,
  "updatedTimestamp": 987,
  "updatedTransactionIndex": 123
}

KeyManager_max_order_by

Description

order by max() on columns of table "KeyManager"

Fields
Input Field Description
blockNumber - order_by
createdBlockNumber - order_by
createdTimestamp - order_by
createdTransactionIndex - order_by
id - order_by
profile_id - order_by
updatedBlockNumber - order_by
updatedTimestamp - order_by
updatedTransactionIndex - order_by
Example
{
  "blockNumber": "asc",
  "createdBlockNumber": "asc",
  "createdTimestamp": "asc",
  "createdTransactionIndex": "asc",
  "id": "asc",
  "profile_id": "asc",
  "updatedBlockNumber": "asc",
  "updatedTimestamp": "asc",
  "updatedTransactionIndex": "asc"
}

KeyManager_min_fields

Description

aggregate min on columns

Fields
Field Name Description
blockNumber - Int
createdBlockNumber - Int
createdTimestamp - Int
createdTransactionIndex - Int
id - String
profile_id - String
updatedBlockNumber - Int
updatedTimestamp - Int
updatedTransactionIndex - Int
Example
{
  "blockNumber": 987,
  "createdBlockNumber": 123,
  "createdTimestamp": 123,
  "createdTransactionIndex": 987,
  "id": "abc123",
  "profile_id": "xyz789",
  "updatedBlockNumber": 987,
  "updatedTimestamp": 987,
  "updatedTransactionIndex": 123
}

KeyManager_min_order_by

Description

order by min() on columns of table "KeyManager"

Fields
Input Field Description
blockNumber - order_by
createdBlockNumber - order_by
createdTimestamp - order_by
createdTransactionIndex - order_by
id - order_by
profile_id - order_by
updatedBlockNumber - order_by
updatedTimestamp - order_by
updatedTransactionIndex - order_by
Example
{
  "blockNumber": "asc",
  "createdBlockNumber": "asc",
  "createdTimestamp": "asc",
  "createdTransactionIndex": "asc",
  "id": "asc",
  "profile_id": "asc",
  "updatedBlockNumber": "asc",
  "updatedTimestamp": "asc",
  "updatedTransactionIndex": "asc"
}

KeyManager_order_by

Description

Ordering options when selecting data from "KeyManager".

Fields
Input Field Description
blockNumber - order_by
createdBlockNumber - order_by
createdTimestamp - order_by
createdTransactionIndex - order_by
id - order_by
profile - Profile_order_by
profile_id - order_by
updatedBlockNumber - order_by
updatedTimestamp - order_by
updatedTransactionIndex - order_by
Example
{
  "blockNumber": "asc",
  "createdBlockNumber": "asc",
  "createdTimestamp": "asc",
  "createdTransactionIndex": "asc",
  "id": "asc",
  "profile": Profile_order_by,
  "profile_id": "asc",
  "updatedBlockNumber": "asc",
  "updatedTimestamp": "asc",
  "updatedTransactionIndex": "asc"
}

KeyManager_select_column

Description

select columns of table "KeyManager"

Values
Enum Value Description

blockNumber

column name

createdBlockNumber

column name

createdTimestamp

column name

createdTransactionIndex

column name

id

column name

profile_id

column name

updatedBlockNumber

column name

updatedTimestamp

column name

updatedTransactionIndex

column name
Example
"blockNumber"

KeyManager_stddev_fields

Description

aggregate stddev on columns

Fields
Field Name Description
blockNumber - Float
createdBlockNumber - Float
createdTimestamp - Float
createdTransactionIndex - Float
updatedBlockNumber - Float
updatedTimestamp - Float
updatedTransactionIndex - Float
Example
{
  "blockNumber": 987.65,
  "createdBlockNumber": 987.65,
  "createdTimestamp": 123.45,
  "createdTransactionIndex": 987.65,
  "updatedBlockNumber": 987.65,
  "updatedTimestamp": 987.65,
  "updatedTransactionIndex": 123.45
}

KeyManager_stddev_order_by

Description

order by stddev() on columns of table "KeyManager"

Fields
Input Field Description
blockNumber - order_by
createdBlockNumber - order_by
createdTimestamp - order_by
createdTransactionIndex - order_by
updatedBlockNumber - order_by
updatedTimestamp - order_by
updatedTransactionIndex - order_by
Example
{
  "blockNumber": "asc",
  "createdBlockNumber": "asc",
  "createdTimestamp": "asc",
  "createdTransactionIndex": "asc",
  "updatedBlockNumber": "asc",
  "updatedTimestamp": "asc",
  "updatedTransactionIndex": "asc"
}

KeyManager_stddev_pop_fields

Description

aggregate stddev_pop on columns

Fields
Field Name Description
blockNumber - Float
createdBlockNumber - Float
createdTimestamp - Float
createdTransactionIndex - Float
updatedBlockNumber - Float
updatedTimestamp - Float
updatedTransactionIndex - Float
Example
{
  "blockNumber": 987.65,
  "createdBlockNumber": 123.45,
  "createdTimestamp": 123.45,
  "createdTransactionIndex": 123.45,
  "updatedBlockNumber": 987.65,
  "updatedTimestamp": 987.65,
  "updatedTransactionIndex": 987.65
}

KeyManager_stddev_pop_order_by

Description

order by stddev_pop() on columns of table "KeyManager"

Fields
Input Field Description
blockNumber - order_by
createdBlockNumber - order_by
createdTimestamp - order_by
createdTransactionIndex - order_by
updatedBlockNumber - order_by
updatedTimestamp - order_by
updatedTransactionIndex - order_by
Example
{
  "blockNumber": "asc",
  "createdBlockNumber": "asc",
  "createdTimestamp": "asc",
  "createdTransactionIndex": "asc",
  "updatedBlockNumber": "asc",
  "updatedTimestamp": "asc",
  "updatedTransactionIndex": "asc"
}

KeyManager_stddev_samp_fields

Description

aggregate stddev_samp on columns

Fields
Field Name Description
blockNumber - Float
createdBlockNumber - Float
createdTimestamp - Float
createdTransactionIndex - Float
updatedBlockNumber - Float
updatedTimestamp - Float
updatedTransactionIndex - Float
Example
{
  "blockNumber": 987.65,
  "createdBlockNumber": 987.65,
  "createdTimestamp": 123.45,
  "createdTransactionIndex": 987.65,
  "updatedBlockNumber": 987.65,
  "updatedTimestamp": 987.65,
  "updatedTransactionIndex": 987.65
}

KeyManager_stddev_samp_order_by

Description

order by stddev_samp() on columns of table "KeyManager"

Fields
Input Field Description
blockNumber - order_by
createdBlockNumber - order_by
createdTimestamp - order_by
createdTransactionIndex - order_by
updatedBlockNumber - order_by
updatedTimestamp - order_by
updatedTransactionIndex - order_by
Example
{
  "blockNumber": "asc",
  "createdBlockNumber": "asc",
  "createdTimestamp": "asc",
  "createdTransactionIndex": "asc",
  "updatedBlockNumber": "asc",
  "updatedTimestamp": "asc",
  "updatedTransactionIndex": "asc"
}

KeyManager_stream_cursor_input

Description

Streaming cursor of the table "KeyManager"

Fields
Input Field Description
initial_value - KeyManager_stream_cursor_value_input! Stream column input with initial value
ordering - cursor_ordering cursor ordering
Example
{
  "initial_value": KeyManager_stream_cursor_value_input,
  "ordering": "ASC"
}

KeyManager_stream_cursor_value_input

Description

Initial value of the column from where the streaming should start

Fields
Input Field Description
blockNumber - Int
createdBlockNumber - Int
createdTimestamp - Int
createdTransactionIndex - Int
id - String
profile_id - String
updatedBlockNumber - Int
updatedTimestamp - Int
updatedTransactionIndex - Int
Example
{
  "blockNumber": 987,
  "createdBlockNumber": 987,
  "createdTimestamp": 123,
  "createdTransactionIndex": 987,
  "id": "xyz789",
  "profile_id": "xyz789",
  "updatedBlockNumber": 123,
  "updatedTimestamp": 123,
  "updatedTransactionIndex": 123
}

KeyManager_sum_fields

Description

aggregate sum on columns

Fields
Field Name Description
blockNumber - Int
createdBlockNumber - Int
createdTimestamp - Int
createdTransactionIndex - Int
updatedBlockNumber - Int
updatedTimestamp - Int
updatedTransactionIndex - Int
Example
{
  "blockNumber": 123,
  "createdBlockNumber": 987,
  "createdTimestamp": 987,
  "createdTransactionIndex": 987,
  "updatedBlockNumber": 123,
  "updatedTimestamp": 123,
  "updatedTransactionIndex": 987
}

KeyManager_sum_order_by

Description

order by sum() on columns of table "KeyManager"

Fields
Input Field Description
blockNumber - order_by
createdBlockNumber - order_by
createdTimestamp - order_by
createdTransactionIndex - order_by
updatedBlockNumber - order_by
updatedTimestamp - order_by
updatedTransactionIndex - order_by
Example
{
  "blockNumber": "asc",
  "createdBlockNumber": "asc",
  "createdTimestamp": "asc",
  "createdTransactionIndex": "asc",
  "updatedBlockNumber": "asc",
  "updatedTimestamp": "asc",
  "updatedTransactionIndex": "asc"
}

KeyManager_var_pop_fields

Description

aggregate var_pop on columns

Fields
Field Name Description
blockNumber - Float
createdBlockNumber - Float
createdTimestamp - Float
createdTransactionIndex - Float
updatedBlockNumber - Float
updatedTimestamp - Float
updatedTransactionIndex - Float
Example
{
  "blockNumber": 123.45,
  "createdBlockNumber": 123.45,
  "createdTimestamp": 987.65,
  "createdTransactionIndex": 123.45,
  "updatedBlockNumber": 987.65,
  "updatedTimestamp": 987.65,
  "updatedTransactionIndex": 987.65
}

KeyManager_var_pop_order_by

Description

order by var_pop() on columns of table "KeyManager"

Fields
Input Field Description
blockNumber - order_by
createdBlockNumber - order_by
createdTimestamp - order_by
createdTransactionIndex - order_by
updatedBlockNumber - order_by
updatedTimestamp - order_by
updatedTransactionIndex - order_by
Example
{
  "blockNumber": "asc",
  "createdBlockNumber": "asc",
  "createdTimestamp": "asc",
  "createdTransactionIndex": "asc",
  "updatedBlockNumber": "asc",
  "updatedTimestamp": "asc",
  "updatedTransactionIndex": "asc"
}

KeyManager_var_samp_fields

Description

aggregate var_samp on columns

Fields
Field Name Description
blockNumber - Float
createdBlockNumber - Float
createdTimestamp - Float
createdTransactionIndex - Float
updatedBlockNumber - Float
updatedTimestamp - Float
updatedTransactionIndex - Float
Example
{
  "blockNumber": 123.45,
  "createdBlockNumber": 987.65,
  "createdTimestamp": 987.65,
  "createdTransactionIndex": 987.65,
  "updatedBlockNumber": 987.65,
  "updatedTimestamp": 123.45,
  "updatedTransactionIndex": 123.45
}

KeyManager_var_samp_order_by

Description

order by var_samp() on columns of table "KeyManager"

Fields
Input Field Description
blockNumber - order_by
createdBlockNumber - order_by
createdTimestamp - order_by
createdTransactionIndex - order_by
updatedBlockNumber - order_by
updatedTimestamp - order_by
updatedTransactionIndex - order_by
Example
{
  "blockNumber": "asc",
  "createdBlockNumber": "asc",
  "createdTimestamp": "asc",
  "createdTransactionIndex": "asc",
  "updatedBlockNumber": "asc",
  "updatedTimestamp": "asc",
  "updatedTransactionIndex": "asc"
}

KeyManager_variance_fields

Description

aggregate variance on columns

Fields
Field Name Description
blockNumber - Float
createdBlockNumber - Float
createdTimestamp - Float
createdTransactionIndex - Float
updatedBlockNumber - Float
updatedTimestamp - Float
updatedTransactionIndex - Float
Example
{
  "blockNumber": 123.45,
  "createdBlockNumber": 987.65,
  "createdTimestamp": 987.65,
  "createdTransactionIndex": 987.65,
  "updatedBlockNumber": 123.45,
  "updatedTimestamp": 987.65,
  "updatedTransactionIndex": 123.45
}

KeyManager_variance_order_by

Description

order by variance() on columns of table "KeyManager"

Fields
Input Field Description
blockNumber - order_by
createdBlockNumber - order_by
createdTimestamp - order_by
createdTransactionIndex - order_by
updatedBlockNumber - order_by
updatedTimestamp - order_by
updatedTransactionIndex - order_by
Example
{
  "blockNumber": "asc",
  "createdBlockNumber": "asc",
  "createdTimestamp": "asc",
  "createdTransactionIndex": "asc",
  "updatedBlockNumber": "asc",
  "updatedTimestamp": "asc",
  "updatedTransactionIndex": "asc"
}

LSP23Deployment

Description

Factory deployment records from LSP23 (Universal Profile creation). Each row represents a profile deployed via an LSP23 factory contract.

Fields
Field Name Description
blockNumber - Int!
chainIds - [Int!]!
decoded - jsonb Decoded deployment parameters (controllers, init data). BigInt values serialized with n suffix
Arguments
path - String

JSON select path

factoryAddress - String! LSP23 factory contract that deployed this profile
id - String! Primary contract (Universal Profile) address
isProfile - Boolean! True if the primary contract is an LSP0 Universal Profile
logIndex - Int!
postDeploymentModule - String! Post-deployment initialization module address
primaryContract - String! Deployed Universal Profile address
profile - Profile An object relationship
secondaryContract - String! Deployed Key Manager address
timestamp - Int!
transactionHash - String!
Example
{
  "blockNumber": 123,
  "chainIds": [123],
  "decoded": jsonb,
  "factoryAddress": "xyz789",
  "id": "abc123",
  "isProfile": true,
  "logIndex": 987,
  "postDeploymentModule": "xyz789",
  "primaryContract": "xyz789",
  "profile": Profile,
  "secondaryContract": "abc123",
  "timestamp": 987,
  "transactionHash": "abc123"
}

LSP23Deployment_aggregate

Description

aggregated selection of "LSP23Deployment"

Fields
Field Name Description
aggregate - LSP23Deployment_aggregate_fields
nodes - [LSP23Deployment!]!
Example
{
  "aggregate": LSP23Deployment_aggregate_fields,
  "nodes": [LSP23Deployment]
}

LSP23Deployment_aggregate_fields

Description

aggregate fields of "LSP23Deployment"

Example
{
  "avg": LSP23Deployment_avg_fields,
  "count": 123,
  "max": LSP23Deployment_max_fields,
  "min": LSP23Deployment_min_fields,
  "stddev": LSP23Deployment_stddev_fields,
  "stddev_pop": LSP23Deployment_stddev_pop_fields,
  "stddev_samp": LSP23Deployment_stddev_samp_fields,
  "sum": LSP23Deployment_sum_fields,
  "var_pop": LSP23Deployment_var_pop_fields,
  "var_samp": LSP23Deployment_var_samp_fields,
  "variance": LSP23Deployment_variance_fields
}

LSP23Deployment_avg_fields

Description

aggregate avg on columns

Fields
Field Name Description
blockNumber - Float
logIndex - Float
timestamp - Float
Example
{"blockNumber": 987.65, "logIndex": 123.45, "timestamp": 987.65}

LSP23Deployment_bool_exp

Description

Boolean expression to filter rows from the table "LSP23Deployment". All fields are combined with a logical 'AND'.

Fields
Input Field Description
_and - [LSP23Deployment_bool_exp!]
_not - LSP23Deployment_bool_exp
_or - [LSP23Deployment_bool_exp!]
blockNumber - Int_comparison_exp
chainIds - Int_array_comparison_exp
decoded - jsonb_comparison_exp
factoryAddress - String_comparison_exp
id - String_comparison_exp
isProfile - Boolean_comparison_exp
logIndex - Int_comparison_exp
postDeploymentModule - String_comparison_exp
primaryContract - String_comparison_exp
profile - Profile_bool_exp
secondaryContract - String_comparison_exp
timestamp - Int_comparison_exp
transactionHash - String_comparison_exp
Example
{
  "_and": [LSP23Deployment_bool_exp],
  "_not": LSP23Deployment_bool_exp,
  "_or": [LSP23Deployment_bool_exp],
  "blockNumber": Int_comparison_exp,
  "chainIds": Int_array_comparison_exp,
  "decoded": jsonb_comparison_exp,
  "factoryAddress": String_comparison_exp,
  "id": String_comparison_exp,
  "isProfile": Boolean_comparison_exp,
  "logIndex": Int_comparison_exp,
  "postDeploymentModule": String_comparison_exp,
  "primaryContract": String_comparison_exp,
  "profile": Profile_bool_exp,
  "secondaryContract": String_comparison_exp,
  "timestamp": Int_comparison_exp,
  "transactionHash": String_comparison_exp
}

LSP23Deployment_max_fields

Description

aggregate max on columns

Fields
Field Name Description
blockNumber - Int
chainIds - [Int!]
factoryAddress - String LSP23 factory contract that deployed this profile
id - String Primary contract (Universal Profile) address
logIndex - Int
postDeploymentModule - String Post-deployment initialization module address
primaryContract - String Deployed Universal Profile address
secondaryContract - String Deployed Key Manager address
timestamp - Int
transactionHash - String
Example
{
  "blockNumber": 987,
  "chainIds": [987],
  "factoryAddress": "abc123",
  "id": "xyz789",
  "logIndex": 123,
  "postDeploymentModule": "abc123",
  "primaryContract": "xyz789",
  "secondaryContract": "xyz789",
  "timestamp": 123,
  "transactionHash": "xyz789"
}

LSP23Deployment_min_fields

Description

aggregate min on columns

Fields
Field Name Description
blockNumber - Int
chainIds - [Int!]
factoryAddress - String LSP23 factory contract that deployed this profile
id - String Primary contract (Universal Profile) address
logIndex - Int
postDeploymentModule - String Post-deployment initialization module address
primaryContract - String Deployed Universal Profile address
secondaryContract - String Deployed Key Manager address
timestamp - Int
transactionHash - String
Example
{
  "blockNumber": 987,
  "chainIds": [123],
  "factoryAddress": "abc123",
  "id": "xyz789",
  "logIndex": 987,
  "postDeploymentModule": "abc123",
  "primaryContract": "xyz789",
  "secondaryContract": "abc123",
  "timestamp": 987,
  "transactionHash": "abc123"
}

LSP23Deployment_order_by

Description

Ordering options when selecting data from "LSP23Deployment".

Fields
Input Field Description
blockNumber - order_by
chainIds - order_by
decoded - order_by
factoryAddress - order_by
id - order_by
isProfile - order_by
logIndex - order_by
postDeploymentModule - order_by
primaryContract - order_by
profile - Profile_order_by
secondaryContract - order_by
timestamp - order_by
transactionHash - order_by
Example
{
  "blockNumber": "asc",
  "chainIds": "asc",
  "decoded": "asc",
  "factoryAddress": "asc",
  "id": "asc",
  "isProfile": "asc",
  "logIndex": "asc",
  "postDeploymentModule": "asc",
  "primaryContract": "asc",
  "profile": Profile_order_by,
  "secondaryContract": "asc",
  "timestamp": "asc",
  "transactionHash": "asc"
}

LSP23Deployment_select_column

Description

select columns of table "LSP23Deployment"

Values
Enum Value Description

blockNumber

column name

chainIds

column name

decoded

column name

factoryAddress

column name

id

column name

isProfile

column name

logIndex

column name

postDeploymentModule

column name

primaryContract

column name

secondaryContract

column name

timestamp

column name

transactionHash

column name
Example
"blockNumber"

LSP23Deployment_stddev_fields

Description

aggregate stddev on columns

Fields
Field Name Description
blockNumber - Float
logIndex - Float
timestamp - Float
Example
{"blockNumber": 123.45, "logIndex": 987.65, "timestamp": 123.45}

LSP23Deployment_stddev_pop_fields

Description

aggregate stddev_pop on columns

Fields
Field Name Description
blockNumber - Float
logIndex - Float
timestamp - Float
Example
{"blockNumber": 123.45, "logIndex": 987.65, "timestamp": 987.65}

LSP23Deployment_stddev_samp_fields

Description

aggregate stddev_samp on columns

Fields
Field Name Description
blockNumber - Float
logIndex - Float
timestamp - Float
Example
{"blockNumber": 123.45, "logIndex": 987.65, "timestamp": 987.65}

LSP23Deployment_stream_cursor_input

Description

Streaming cursor of the table "LSP23Deployment"

Fields
Input Field Description
initial_value - LSP23Deployment_stream_cursor_value_input! Stream column input with initial value
ordering - cursor_ordering cursor ordering
Example
{
  "initial_value": LSP23Deployment_stream_cursor_value_input,
  "ordering": "ASC"
}

LSP23Deployment_stream_cursor_value_input

Description

Initial value of the column from where the streaming should start

Fields
Input Field Description
blockNumber - Int
chainIds - [Int!]
decoded - jsonb Decoded deployment parameters (controllers, init data). BigInt values serialized with n suffix
factoryAddress - String LSP23 factory contract that deployed this profile
id - String Primary contract (Universal Profile) address
isProfile - Boolean True if the primary contract is an LSP0 Universal Profile
logIndex - Int
postDeploymentModule - String Post-deployment initialization module address
primaryContract - String Deployed Universal Profile address
secondaryContract - String Deployed Key Manager address
timestamp - Int
transactionHash - String
Example
{
  "blockNumber": 123,
  "chainIds": [987],
  "decoded": jsonb,
  "factoryAddress": "xyz789",
  "id": "xyz789",
  "isProfile": false,
  "logIndex": 987,
  "postDeploymentModule": "xyz789",
  "primaryContract": "abc123",
  "secondaryContract": "abc123",
  "timestamp": 987,
  "transactionHash": "xyz789"
}

LSP23Deployment_sum_fields

Description

aggregate sum on columns

Fields
Field Name Description
blockNumber - Int
logIndex - Int
timestamp - Int
Example
{"blockNumber": 987, "logIndex": 987, "timestamp": 987}

LSP23Deployment_var_pop_fields

Description

aggregate var_pop on columns

Fields
Field Name Description
blockNumber - Float
logIndex - Float
timestamp - Float
Example
{"blockNumber": 123.45, "logIndex": 987.65, "timestamp": 987.65}

LSP23Deployment_var_samp_fields

Description

aggregate var_samp on columns

Fields
Field Name Description
blockNumber - Float
logIndex - Float
timestamp - Float
Example
{"blockNumber": 123.45, "logIndex": 123.45, "timestamp": 987.65}

LSP23Deployment_variance_fields

Description

aggregate variance on columns

Fields
Field Name Description
blockNumber - Float
logIndex - Float
timestamp - Float
Example
{"blockNumber": 123.45, "logIndex": 987.65, "timestamp": 123.45}

Profile

Description

columns and relationships of "Profile"

Fields
Field Name Description
addressPermissions - [String!]
addressPermissions_ - [String!]
app - App An object relationship
appContributions - [AppContributor!]! An array relationship
Arguments
distinct_on - [AppContributor_select_column!]

distinct select on columns

limit - Int

limit the number of rows returned

offset - Int

skip the first n rows. Use only with order_by

order_by - [AppContributor_order_by!]

sort the rows by one or more columns

where - AppContributor_bool_exp

filter the rows returned

appContributions_aggregate - AppContributor_aggregate! An aggregate relationship
Arguments
distinct_on - [AppContributor_select_column!]

distinct select on columns

limit - Int

limit the number of rows returned

offset - Int

skip the first n rows. Use only with order_by

order_by - [AppContributor_order_by!]

sort the rows by one or more columns

where - AppContributor_bool_exp

filter the rows returned

appHistory - [AppHistory!]! An array relationship
Arguments
distinct_on - [AppHistory_select_column!]

distinct select on columns

limit - Int

limit the number of rows returned

offset - Int

skip the first n rows. Use only with order_by

order_by - [AppHistory_order_by!]

sort the rows by one or more columns

where - AppHistory_bool_exp

filter the rows returned

appHistory_aggregate - AppHistory_aggregate! An aggregate relationship
Arguments
distinct_on - [AppHistory_select_column!]

distinct select on columns

limit - Int

limit the number of rows returned

offset - Int

skip the first n rows. Use only with order_by

order_by - [AppHistory_order_by!]

sort the rows by one or more columns

where - AppHistory_bool_exp

filter the rows returned

appInstalls - [AppInstall!]! An array relationship
Arguments
distinct_on - [AppInstall_select_column!]

distinct select on columns

limit - Int

limit the number of rows returned

offset - Int

skip the first n rows. Use only with order_by

order_by - [AppInstall_order_by!]

sort the rows by one or more columns

where - AppInstall_bool_exp

filter the rows returned

appInstalls_aggregate - AppInstall_aggregate! An aggregate relationship
Arguments
distinct_on - [AppInstall_select_column!]

distinct select on columns

limit - Int

limit the number of rows returned

offset - Int

skip the first n rows. Use only with order_by

order_by - [AppInstall_order_by!]

sort the rows by one or more columns

where - AppInstall_bool_exp

filter the rows returned

asset - Asset An object relationship
asset_id - String
avatars - [AvatarAssetURL!]! An array relationship
Arguments
distinct_on - [AvatarAssetURL_select_column!]

distinct select on columns

limit - Int

limit the number of rows returned

offset - Int

skip the first n rows. Use only with order_by

order_by - [AvatarAssetURL_order_by!]

sort the rows by one or more columns

where - AvatarAssetURL_bool_exp

filter the rows returned

avatars_ - [String!]
avatars_aggregate - AvatarAssetURL_aggregate! An aggregate relationship
Arguments
distinct_on - [AvatarAssetURL_select_column!]

distinct select on columns

limit - Int

limit the number of rows returned

offset - Int

skip the first n rows. Use only with order_by

order_by - [AvatarAssetURL_order_by!]

sort the rows by one or more columns

where - AvatarAssetURL_bool_exp

filter the rows returned

backgroundImages - [ProfileBackgroundImageURL!]! An array relationship
Arguments
distinct_on - [ProfileBackgroundImageURL_select_column!]

distinct select on columns

limit - Int

limit the number of rows returned

offset - Int

skip the first n rows. Use only with order_by

order_by - [ProfileBackgroundImageURL_order_by!]

sort the rows by one or more columns

where - ProfileBackgroundImageURL_bool_exp

filter the rows returned

backgroundImages_ - [String!]
backgroundImages_aggregate - ProfileBackgroundImageURL_aggregate! An aggregate relationship
Arguments
distinct_on - [ProfileBackgroundImageURL_select_column!]

distinct select on columns

limit - Int

limit the number of rows returned

offset - Int

skip the first n rows. Use only with order_by

order_by - [ProfileBackgroundImageURL_order_by!]

sort the rows by one or more columns

where - ProfileBackgroundImageURL_bool_exp

filter the rows returned

blockNumber - Int!
controllers - [Controller!]! An array relationship
Arguments
distinct_on - [Controller_select_column!]

distinct select on columns

limit - Int

limit the number of rows returned

offset - Int

skip the first n rows. Use only with order_by

order_by - [Controller_order_by!]

sort the rows by one or more columns

where - Controller_bool_exp

filter the rows returned

controllers_ - [String!]
controllers_aggregate - Controller_aggregate! An aggregate relationship
Arguments
distinct_on - [Controller_select_column!]

distinct select on columns

limit - Int

limit the number of rows returned

offset - Int

skip the first n rows. Use only with order_by

order_by - [Controller_order_by!]

sort the rows by one or more columns

where - Controller_bool_exp

filter the rows returned

createdBlockNumber - Int!
createdTimestamp - Int!
createdTransactionIndex - Int!
data - String
db_write_timestamp - timestamp
description - String
error - String
feed - [FeedProfileArg!]! An array relationship
Arguments
distinct_on - [FeedProfileArg_select_column!]

distinct select on columns

limit - Int

limit the number of rows returned

offset - Int

skip the first n rows. Use only with order_by

order_by - [FeedProfileArg_order_by!]

sort the rows by one or more columns

where - FeedProfileArg_bool_exp

filter the rows returned

feed_aggregate - FeedProfileArg_aggregate! An aggregate relationship
Arguments
distinct_on - [FeedProfileArg_select_column!]

distinct select on columns

limit - Int

limit the number of rows returned

offset - Int

skip the first n rows. Use only with order_by

order_by - [FeedProfileArg_order_by!]

sort the rows by one or more columns

where - FeedProfileArg_bool_exp

filter the rows returned

followed - [Follow!]! An array relationship
Arguments
distinct_on - [Follow_select_column!]

distinct select on columns

limit - Int

limit the number of rows returned

offset - Int

skip the first n rows. Use only with order_by

order_by - [Follow_order_by!]

sort the rows by one or more columns

where - Follow_bool_exp

filter the rows returned

followed_aggregate - Follow_aggregate! An aggregate relationship
Arguments
distinct_on - [Follow_select_column!]

distinct select on columns

limit - Int

limit the number of rows returned

offset - Int

skip the first n rows. Use only with order_by

order_by - [Follow_order_by!]

sort the rows by one or more columns

where - Follow_bool_exp

filter the rows returned

following - [Follow!]! An array relationship
Arguments
distinct_on - [Follow_select_column!]

distinct select on columns

limit - Int

limit the number of rows returned

offset - Int

skip the first n rows. Use only with order_by

order_by - [Follow_order_by!]

sort the rows by one or more columns

where - Follow_bool_exp

filter the rows returned

following_aggregate - Follow_aggregate! An aggregate relationship
Arguments
distinct_on - [Follow_select_column!]

distinct select on columns

limit - Int

limit the number of rows returned

offset - Int

skip the first n rows. Use only with order_by

order_by - [Follow_order_by!]

sort the rows by one or more columns

where - Follow_bool_exp

filter the rows returned

ft - String
fts - tsvector
fullName - String
holds - [Hold!]! An array relationship
Arguments
distinct_on - [Hold_select_column!]

distinct select on columns

limit - Int

limit the number of rows returned

offset - Int

skip the first n rows. Use only with order_by

order_by - [Hold_order_by!]

sort the rows by one or more columns

where - Hold_bool_exp

filter the rows returned

holds_aggregate - Hold_aggregate! An aggregate relationship
Arguments
distinct_on - [Hold_select_column!]

distinct select on columns

limit - Int

limit the number of rows returned

offset - Int

skip the first n rows. Use only with order_by

order_by - [Hold_order_by!]

sort the rows by one or more columns

where - Hold_bool_exp

filter the rows returned

id - String!
incoming_transfers - [Transfer!]! An array relationship
Arguments
distinct_on - [Transfer_select_column!]

distinct select on columns

limit - Int

limit the number of rows returned

offset - Int

skip the first n rows. Use only with order_by

order_by - [Transfer_order_by!]

sort the rows by one or more columns

where - Transfer_bool_exp

filter the rows returned

incoming_transfers_aggregate - Transfer_aggregate! An aggregate relationship
Arguments
distinct_on - [Transfer_select_column!]

distinct select on columns

limit - Int

limit the number of rows returned

offset - Int

skip the first n rows. Use only with order_by

order_by - [Transfer_order_by!]

sort the rows by one or more columns

where - Transfer_bool_exp

filter the rows returned

interactions - [Interaction!]! An array relationship
Arguments
distinct_on - [Interaction_select_column!]

distinct select on columns

limit - Int

limit the number of rows returned

offset - Int

skip the first n rows. Use only with order_by

order_by - [Interaction_order_by!]

sort the rows by one or more columns

where - Interaction_bool_exp

filter the rows returned

interactions_aggregate - Interaction_aggregate! An aggregate relationship
Arguments
distinct_on - [Interaction_select_column!]

distinct select on columns

limit - Int

limit the number of rows returned

offset - Int

skip the first n rows. Use only with order_by

order_by - [Interaction_order_by!]

sort the rows by one or more columns

where - Interaction_bool_exp

filter the rows returned

interfaces - [String!]
isContract - Boolean!
isEOA - Boolean!
keyManagers - [KeyManager!]! An array relationship
Arguments
distinct_on - [KeyManager_select_column!]

distinct select on columns

limit - Int

limit the number of rows returned

offset - Int

skip the first n rows. Use only with order_by

order_by - [KeyManager_order_by!]

sort the rows by one or more columns

where - KeyManager_bool_exp

filter the rows returned

keyManagers_aggregate - KeyManager_aggregate! An aggregate relationship
Arguments
distinct_on - [KeyManager_select_column!]

distinct select on columns

limit - Int

limit the number of rows returned

offset - Int

skip the first n rows. Use only with order_by

order_by - [KeyManager_order_by!]

sort the rows by one or more columns

where - KeyManager_bool_exp

filter the rows returned

lastMetadataUpdate - Int
lastNameUpdate - Int
links - [ProfileLink!]! An array relationship
Arguments
distinct_on - [ProfileLink_select_column!]

distinct select on columns

limit - Int

limit the number of rows returned

offset - Int

skip the first n rows. Use only with order_by

order_by - [ProfileLink_order_by!]

sort the rows by one or more columns

where - ProfileLink_bool_exp

filter the rows returned

links_ - [String!]
links_aggregate - ProfileLink_aggregate! An aggregate relationship
Arguments
distinct_on - [ProfileLink_select_column!]

distinct select on columns

limit - Int

limit the number of rows returned

offset - Int

skip the first n rows. Use only with order_by

order_by - [ProfileLink_order_by!]

sort the rows by one or more columns

where - ProfileLink_bool_exp

filter the rows returned

lsp12IssuedAssets - [IssuedAsset!]! An array relationship
Arguments
distinct_on - [IssuedAsset_select_column!]

distinct select on columns

limit - Int

limit the number of rows returned

offset - Int

skip the first n rows. Use only with order_by

order_by - [IssuedAsset_order_by!]

sort the rows by one or more columns

where - IssuedAsset_bool_exp

filter the rows returned

lsp12IssuedAssets_ - [String!]
lsp12IssuedAssets_aggregate - IssuedAsset_aggregate! An aggregate relationship
Arguments
distinct_on - [IssuedAsset_select_column!]

distinct select on columns

limit - Int

limit the number of rows returned

offset - Int

skip the first n rows. Use only with order_by

order_by - [IssuedAsset_order_by!]

sort the rows by one or more columns

where - IssuedAsset_bool_exp

filter the rows returned

lsp1UniversalReceiverDelegate - [ReceiverDelegate!]! An array relationship
Arguments
distinct_on - [ReceiverDelegate_select_column!]

distinct select on columns

limit - Int

limit the number of rows returned

offset - Int

skip the first n rows. Use only with order_by

order_by - [ReceiverDelegate_order_by!]

sort the rows by one or more columns

where - ReceiverDelegate_bool_exp

filter the rows returned

lsp1UniversalReceiverDelegate_aggregate - ReceiverDelegate_aggregate! An aggregate relationship
Arguments
distinct_on - [ReceiverDelegate_select_column!]

distinct select on columns

limit - Int

limit the number of rows returned

offset - Int

skip the first n rows. Use only with order_by

order_by - [ReceiverDelegate_order_by!]

sort the rows by one or more columns

where - ReceiverDelegate_bool_exp

filter the rows returned

lsp23Deployment - LSP23Deployment An object relationship
lsp5ReceivedAssets - [ReceivedAsset!]! An array relationship
Arguments
distinct_on - [ReceivedAsset_select_column!]

distinct select on columns

limit - Int

limit the number of rows returned

offset - Int

skip the first n rows. Use only with order_by

order_by - [ReceivedAsset_order_by!]

sort the rows by one or more columns

where - ReceivedAsset_bool_exp

filter the rows returned

lsp5ReceivedAssets_ - [String!]
lsp5ReceivedAssets_aggregate - ReceivedAsset_aggregate! An aggregate relationship
Arguments
distinct_on - [ReceivedAsset_select_column!]

distinct select on columns

limit - Int

limit the number of rows returned

offset - Int

skip the first n rows. Use only with order_by

order_by - [ReceivedAsset_order_by!]

sort the rows by one or more columns

where - ReceivedAsset_bool_exp

filter the rows returned

method - String
name - String
outgoing_transfers - [Transfer!]! An array relationship
Arguments
distinct_on - [Transfer_select_column!]

distinct select on columns

limit - Int

limit the number of rows returned

offset - Int

skip the first n rows. Use only with order_by

order_by - [Transfer_order_by!]

sort the rows by one or more columns

where - Transfer_bool_exp

filter the rows returned

outgoing_transfers_aggregate - Transfer_aggregate! An aggregate relationship
Arguments
distinct_on - [Transfer_select_column!]

distinct select on columns

limit - Int

limit the number of rows returned

offset - Int

skip the first n rows. Use only with order_by

order_by - [Transfer_order_by!]

sort the rows by one or more columns

where - Transfer_bool_exp

filter the rows returned

owner - Profile An object relationship
owner_id - String
profileImages - [ProfileImageURL!]! An array relationship
Arguments
distinct_on - [ProfileImageURL_select_column!]

distinct select on columns

limit - Int

limit the number of rows returned

offset - Int

skip the first n rows. Use only with order_by

order_by - [ProfileImageURL_order_by!]

sort the rows by one or more columns

where - ProfileImageURL_bool_exp

filter the rows returned

profileImages_ - [String!]
profileImages_aggregate - ProfileImageURL_aggregate! An aggregate relationship
Arguments
distinct_on - [ProfileImageURL_select_column!]

distinct select on columns

limit - Int

limit the number of rows returned

offset - Int

skip the first n rows. Use only with order_by

order_by - [ProfileImageURL_order_by!]

sort the rows by one or more columns

where - ProfileImageURL_bool_exp

filter the rows returned

src - String
standard - standards!
supportedStandardsLsp3Profile - Boolean
tags - [String!]
transactions - [Transaction!]! An array relationship
Arguments
distinct_on - [Transaction_select_column!]

distinct select on columns

limit - Int

limit the number of rows returned

offset - Int

skip the first n rows. Use only with order_by

order_by - [Transaction_order_by!]

sort the rows by one or more columns

where - Transaction_bool_exp

filter the rows returned

transactions_aggregate - Transaction_aggregate! An aggregate relationship
Arguments
distinct_on - [Transaction_select_column!]

distinct select on columns

limit - Int

limit the number of rows returned

offset - Int

skip the first n rows. Use only with order_by

order_by - [Transaction_order_by!]

sort the rows by one or more columns

where - Transaction_bool_exp

filter the rows returned

updatedBlockNumber - Int
updatedTimestamp - Int
updatedTransactionIndex - Int
url - String
Example
{
  "addressPermissions": ["xyz789"],
  "addressPermissions_": ["abc123"],
  "app": App,
  "appContributions": [AppContributor],
  "appContributions_aggregate": AppContributor_aggregate,
  "appHistory": [AppHistory],
  "appHistory_aggregate": AppHistory_aggregate,
  "appInstalls": [AppInstall],
  "appInstalls_aggregate": AppInstall_aggregate,
  "asset": Asset,
  "asset_id": "xyz789",
  "avatars": [AvatarAssetURL],
  "avatars_": ["xyz789"],
  "avatars_aggregate": AvatarAssetURL_aggregate,
  "backgroundImages": [ProfileBackgroundImageURL],
  "backgroundImages_": ["abc123"],
  "backgroundImages_aggregate": ProfileBackgroundImageURL_aggregate,
  "blockNumber": 987,
  "controllers": [Controller],
  "controllers_": ["abc123"],
  "controllers_aggregate": Controller_aggregate,
  "createdBlockNumber": 123,
  "createdTimestamp": 987,
  "createdTransactionIndex": 123,
  "data": "xyz789",
  "db_write_timestamp": timestamp,
  "description": "abc123",
  "error": "xyz789",
  "feed": [FeedProfileArg],
  "feed_aggregate": FeedProfileArg_aggregate,
  "followed": [Follow],
  "followed_aggregate": Follow_aggregate,
  "following": [Follow],
  "following_aggregate": Follow_aggregate,
  "ft": "xyz789",
  "fts": tsvector,
  "fullName": "abc123",
  "holds": [Hold],
  "holds_aggregate": Hold_aggregate,
  "id": "abc123",
  "incoming_transfers": [Transfer],
  "incoming_transfers_aggregate": Transfer_aggregate,
  "interactions": [Interaction],
  "interactions_aggregate": Interaction_aggregate,
  "interfaces": ["xyz789"],
  "isContract": true,
  "isEOA": false,
  "keyManagers": [KeyManager],
  "keyManagers_aggregate": KeyManager_aggregate,
  "lastMetadataUpdate": 123,
  "lastNameUpdate": 987,
  "links": [ProfileLink],
  "links_": ["xyz789"],
  "links_aggregate": ProfileLink_aggregate,
  "lsp12IssuedAssets": [IssuedAsset],
  "lsp12IssuedAssets_": ["abc123"],
  "lsp12IssuedAssets_aggregate": IssuedAsset_aggregate,
  "lsp1UniversalReceiverDelegate": [ReceiverDelegate],
  "lsp1UniversalReceiverDelegate_aggregate": ReceiverDelegate_aggregate,
  "lsp23Deployment": LSP23Deployment,
  "lsp5ReceivedAssets": [ReceivedAsset],
  "lsp5ReceivedAssets_": ["xyz789"],
  "lsp5ReceivedAssets_aggregate": ReceivedAsset_aggregate,
  "method": "abc123",
  "name": "abc123",
  "outgoing_transfers": [Transfer],
  "outgoing_transfers_aggregate": Transfer_aggregate,
  "owner": Profile,
  "owner_id": "abc123",
  "profileImages": [ProfileImageURL],
  "profileImages_": ["xyz789"],
  "profileImages_aggregate": ProfileImageURL_aggregate,
  "src": "abc123",
  "standard": standards,
  "supportedStandardsLsp3Profile": false,
  "tags": ["xyz789"],
  "transactions": [Transaction],
  "transactions_aggregate": Transaction_aggregate,
  "updatedBlockNumber": 123,
  "updatedTimestamp": 987,
  "updatedTransactionIndex": 987,
  "url": "xyz789"
}

ProfileBackgroundImageURL

Description

columns and relationships of "ProfileBackgroundImageURL"

Fields
Field Name Description
blockNumber - Int!
data - String
db_write_timestamp - timestamp
error - String
fileType - String
height - Int
id - String!
index - Int
method - String
profile - Profile An object relationship
profile_id - String!
src - String
url - String
verified - verificationstatus!
width - Int
Example
{
  "blockNumber": 987,
  "data": "xyz789",
  "db_write_timestamp": timestamp,
  "error": "xyz789",
  "fileType": "abc123",
  "height": 123,
  "id": "abc123",
  "index": 123,
  "method": "xyz789",
  "profile": Profile,
  "profile_id": "abc123",
  "src": "abc123",
  "url": "abc123",
  "verified": verificationstatus,
  "width": 987
}

ProfileBackgroundImageURL_aggregate

Description

aggregated selection of "ProfileBackgroundImageURL"

Fields
Field Name Description
aggregate - ProfileBackgroundImageURL_aggregate_fields
nodes - [ProfileBackgroundImageURL!]!
Example
{
  "aggregate": ProfileBackgroundImageURL_aggregate_fields,
  "nodes": [ProfileBackgroundImageURL]
}

ProfileBackgroundImageURL_aggregate_bool_exp

Fields
Input Field Description
count - ProfileBackgroundImageURL_aggregate_bool_exp_count
Example
{
  "count": ProfileBackgroundImageURL_aggregate_bool_exp_count
}

ProfileBackgroundImageURL_aggregate_bool_exp_count

Fields
Input Field Description
arguments - [ProfileBackgroundImageURL_select_column!]
distinct - Boolean
filter - ProfileBackgroundImageURL_bool_exp
predicate - Int_comparison_exp!
Example
{
  "arguments": ["blockNumber"],
  "distinct": true,
  "filter": ProfileBackgroundImageURL_bool_exp,
  "predicate": Int_comparison_exp
}

ProfileBackgroundImageURL_aggregate_fields

Example
{
  "avg": ProfileBackgroundImageURL_avg_fields,
  "count": 987,
  "max": ProfileBackgroundImageURL_max_fields,
  "min": ProfileBackgroundImageURL_min_fields,
  "stddev": ProfileBackgroundImageURL_stddev_fields,
  "stddev_pop": ProfileBackgroundImageURL_stddev_pop_fields,
  "stddev_samp": ProfileBackgroundImageURL_stddev_samp_fields,
  "sum": ProfileBackgroundImageURL_sum_fields,
  "var_pop": ProfileBackgroundImageURL_var_pop_fields,
  "var_samp": ProfileBackgroundImageURL_var_samp_fields,
  "variance": ProfileBackgroundImageURL_variance_fields
}

ProfileBackgroundImageURL_aggregate_order_by

Example
{
  "avg": ProfileBackgroundImageURL_avg_order_by,
  "count": "asc",
  "max": ProfileBackgroundImageURL_max_order_by,
  "min": ProfileBackgroundImageURL_min_order_by,
  "stddev": ProfileBackgroundImageURL_stddev_order_by,
  "stddev_pop": ProfileBackgroundImageURL_stddev_pop_order_by,
  "stddev_samp": ProfileBackgroundImageURL_stddev_samp_order_by,
  "sum": ProfileBackgroundImageURL_sum_order_by,
  "var_pop": ProfileBackgroundImageURL_var_pop_order_by,
  "var_samp": ProfileBackgroundImageURL_var_samp_order_by,
  "variance": ProfileBackgroundImageURL_variance_order_by
}

ProfileBackgroundImageURL_avg_fields

Description

aggregate avg on columns

Fields
Field Name Description
blockNumber - Float
height - Float
index - Float
width - Float
Example
{"blockNumber": 987.65, "height": 987.65, "index": 987.65, "width": 123.45}

ProfileBackgroundImageURL_avg_order_by

Description

order by avg() on columns of table "ProfileBackgroundImageURL"

Fields
Input Field Description
blockNumber - order_by
height - order_by
index - order_by
width - order_by
Example
{"blockNumber": "asc", "height": "asc", "index": "asc", "width": "asc"}

ProfileBackgroundImageURL_bool_exp

Description

Boolean expression to filter rows from the table "ProfileBackgroundImageURL". All fields are combined with a logical 'AND'.

Example
{
  "_and": [ProfileBackgroundImageURL_bool_exp],
  "_not": ProfileBackgroundImageURL_bool_exp,
  "_or": [ProfileBackgroundImageURL_bool_exp],
  "blockNumber": Int_comparison_exp,
  "data": String_comparison_exp,
  "db_write_timestamp": timestamp_comparison_exp,
  "error": String_comparison_exp,
  "fileType": String_comparison_exp,
  "height": Int_comparison_exp,
  "id": String_comparison_exp,
  "index": Int_comparison_exp,
  "method": String_comparison_exp,
  "profile": Profile_bool_exp,
  "profile_id": String_comparison_exp,
  "src": String_comparison_exp,
  "url": String_comparison_exp,
  "verified": verificationstatus_comparison_exp,
  "width": Int_comparison_exp
}

ProfileBackgroundImageURL_max_fields

Description

aggregate max on columns

Fields
Field Name Description
blockNumber - Int
data - String
db_write_timestamp - timestamp
error - String
fileType - String
height - Int
id - String
index - Int
method - String
profile_id - String
src - String
url - String
verified - verificationstatus
width - Int
Example
{
  "blockNumber": 123,
  "data": "xyz789",
  "db_write_timestamp": timestamp,
  "error": "abc123",
  "fileType": "abc123",
  "height": 123,
  "id": "xyz789",
  "index": 123,
  "method": "abc123",
  "profile_id": "xyz789",
  "src": "abc123",
  "url": "xyz789",
  "verified": verificationstatus,
  "width": 987
}

ProfileBackgroundImageURL_max_order_by

Description

order by max() on columns of table "ProfileBackgroundImageURL"

Fields
Input Field Description
blockNumber - order_by
data - order_by
db_write_timestamp - order_by
error - order_by
fileType - order_by
height - order_by
id - order_by
index - order_by
method - order_by
profile_id - order_by
src - order_by
url - order_by
verified - order_by
width - order_by
Example
{
  "blockNumber": "asc",
  "data": "asc",
  "db_write_timestamp": "asc",
  "error": "asc",
  "fileType": "asc",
  "height": "asc",
  "id": "asc",
  "index": "asc",
  "method": "asc",
  "profile_id": "asc",
  "src": "asc",
  "url": "asc",
  "verified": "asc",
  "width": "asc"
}

ProfileBackgroundImageURL_min_fields

Description

aggregate min on columns

Fields
Field Name Description
blockNumber - Int
data - String
db_write_timestamp - timestamp
error - String
fileType - String
height - Int
id - String
index - Int
method - String
profile_id - String
src - String
url - String
verified - verificationstatus
width - Int
Example
{
  "blockNumber": 987,
  "data": "xyz789",
  "db_write_timestamp": timestamp,
  "error": "abc123",
  "fileType": "xyz789",
  "height": 987,
  "id": "xyz789",
  "index": 123,
  "method": "xyz789",
  "profile_id": "xyz789",
  "src": "xyz789",
  "url": "xyz789",
  "verified": verificationstatus,
  "width": 987
}

ProfileBackgroundImageURL_min_order_by

Description

order by min() on columns of table "ProfileBackgroundImageURL"

Fields
Input Field Description
blockNumber - order_by
data - order_by
db_write_timestamp - order_by
error - order_by
fileType - order_by
height - order_by
id - order_by
index - order_by
method - order_by
profile_id - order_by
src - order_by
url - order_by
verified - order_by
width - order_by
Example
{
  "blockNumber": "asc",
  "data": "asc",
  "db_write_timestamp": "asc",
  "error": "asc",
  "fileType": "asc",
  "height": "asc",
  "id": "asc",
  "index": "asc",
  "method": "asc",
  "profile_id": "asc",
  "src": "asc",
  "url": "asc",
  "verified": "asc",
  "width": "asc"
}

ProfileBackgroundImageURL_order_by

Description

Ordering options when selecting data from "ProfileBackgroundImageURL".

Fields
Input Field Description
blockNumber - order_by
data - order_by
db_write_timestamp - order_by
error - order_by
fileType - order_by
height - order_by
id - order_by
index - order_by
method - order_by
profile - Profile_order_by
profile_id - order_by
src - order_by
url - order_by
verified - order_by
width - order_by
Example
{
  "blockNumber": "asc",
  "data": "asc",
  "db_write_timestamp": "asc",
  "error": "asc",
  "fileType": "asc",
  "height": "asc",
  "id": "asc",
  "index": "asc",
  "method": "asc",
  "profile": Profile_order_by,
  "profile_id": "asc",
  "src": "asc",
  "url": "asc",
  "verified": "asc",
  "width": "asc"
}

ProfileBackgroundImageURL_select_column

Description

select columns of table "ProfileBackgroundImageURL"

Values
Enum Value Description

blockNumber

column name

data

column name

db_write_timestamp

column name

error

column name

fileType

column name

height

column name

id

column name

index

column name

method

column name

profile_id

column name

src

column name

url

column name

verified

column name

width

column name
Example
"blockNumber"

ProfileBackgroundImageURL_stddev_fields

Description

aggregate stddev on columns

Fields
Field Name Description
blockNumber - Float
height - Float
index - Float
width - Float
Example
{"blockNumber": 123.45, "height": 987.65, "index": 123.45, "width": 987.65}

ProfileBackgroundImageURL_stddev_order_by

Description

order by stddev() on columns of table "ProfileBackgroundImageURL"

Fields
Input Field Description
blockNumber - order_by
height - order_by
index - order_by
width - order_by
Example
{"blockNumber": "asc", "height": "asc", "index": "asc", "width": "asc"}

ProfileBackgroundImageURL_stddev_pop_fields

Description

aggregate stddev_pop on columns

Fields
Field Name Description
blockNumber - Float
height - Float
index - Float
width - Float
Example
{"blockNumber": 123.45, "height": 123.45, "index": 123.45, "width": 987.65}

ProfileBackgroundImageURL_stddev_pop_order_by

Description

order by stddev_pop() on columns of table "ProfileBackgroundImageURL"

Fields
Input Field Description
blockNumber - order_by
height - order_by
index - order_by
width - order_by
Example
{"blockNumber": "asc", "height": "asc", "index": "asc", "width": "asc"}

ProfileBackgroundImageURL_stddev_samp_fields

Description

aggregate stddev_samp on columns

Fields
Field Name Description
blockNumber - Float
height - Float
index - Float
width - Float
Example
{"blockNumber": 987.65, "height": 987.65, "index": 987.65, "width": 123.45}

ProfileBackgroundImageURL_stddev_samp_order_by

Description

order by stddev_samp() on columns of table "ProfileBackgroundImageURL"

Fields
Input Field Description
blockNumber - order_by
height - order_by
index - order_by
width - order_by
Example
{"blockNumber": "asc", "height": "asc", "index": "asc", "width": "asc"}

ProfileBackgroundImageURL_stream_cursor_input

Description

Streaming cursor of the table "ProfileBackgroundImageURL"

Fields
Input Field Description
initial_value - ProfileBackgroundImageURL_stream_cursor_value_input! Stream column input with initial value
ordering - cursor_ordering cursor ordering
Example
{
  "initial_value": ProfileBackgroundImageURL_stream_cursor_value_input,
  "ordering": "ASC"
}

ProfileBackgroundImageURL_stream_cursor_value_input

Description

Initial value of the column from where the streaming should start

Fields
Input Field Description
blockNumber - Int
data - String
db_write_timestamp - timestamp
error - String
fileType - String
height - Int
id - String
index - Int
method - String
profile_id - String
src - String
url - String
verified - verificationstatus
width - Int
Example
{
  "blockNumber": 123,
  "data": "abc123",
  "db_write_timestamp": timestamp,
  "error": "abc123",
  "fileType": "abc123",
  "height": 987,
  "id": "xyz789",
  "index": 123,
  "method": "abc123",
  "profile_id": "abc123",
  "src": "xyz789",
  "url": "xyz789",
  "verified": verificationstatus,
  "width": 123
}

ProfileBackgroundImageURL_sum_fields

Description

aggregate sum on columns

Fields
Field Name Description
blockNumber - Int
height - Int
index - Int
width - Int
Example
{"blockNumber": 123, "height": 987, "index": 123, "width": 987}

ProfileBackgroundImageURL_sum_order_by

Description

order by sum() on columns of table "ProfileBackgroundImageURL"

Fields
Input Field Description
blockNumber - order_by
height - order_by
index - order_by
width - order_by
Example
{"blockNumber": "asc", "height": "asc", "index": "asc", "width": "asc"}

ProfileBackgroundImageURL_var_pop_fields

Description

aggregate var_pop on columns

Fields
Field Name Description
blockNumber - Float
height - Float
index - Float
width - Float
Example
{"blockNumber": 987.65, "height": 987.65, "index": 123.45, "width": 987.65}

ProfileBackgroundImageURL_var_pop_order_by

Description

order by var_pop() on columns of table "ProfileBackgroundImageURL"

Fields
Input Field Description
blockNumber - order_by
height - order_by
index - order_by
width - order_by
Example
{"blockNumber": "asc", "height": "asc", "index": "asc", "width": "asc"}

ProfileBackgroundImageURL_var_samp_fields

Description

aggregate var_samp on columns

Fields
Field Name Description
blockNumber - Float
height - Float
index - Float
width - Float
Example
{"blockNumber": 123.45, "height": 987.65, "index": 987.65, "width": 987.65}

ProfileBackgroundImageURL_var_samp_order_by

Description

order by var_samp() on columns of table "ProfileBackgroundImageURL"

Fields
Input Field Description
blockNumber - order_by
height - order_by
index - order_by
width - order_by
Example
{"blockNumber": "asc", "height": "asc", "index": "asc", "width": "asc"}

ProfileBackgroundImageURL_variance_fields

Description

aggregate variance on columns

Fields
Field Name Description
blockNumber - Float
height - Float
index - Float
width - Float
Example
{"blockNumber": 987.65, "height": 987.65, "index": 987.65, "width": 987.65}

ProfileBackgroundImageURL_variance_order_by

Description

order by variance() on columns of table "ProfileBackgroundImageURL"

Fields
Input Field Description
blockNumber - order_by
height - order_by
index - order_by
width - order_by
Example
{"blockNumber": "asc", "height": "asc", "index": "asc", "width": "asc"}

ProfileImageURL

Description

columns and relationships of "ProfileImageURL"

Fields
Field Name Description
blockNumber - Int!
data - String
db_write_timestamp - timestamp
error - String
fileType - String
height - Int
id - String!
index - Int
method - String
profile - Profile An object relationship
profile_id - String!
src - String
url - String
verified - verificationstatus!
width - Int
Example
{
  "blockNumber": 123,
  "data": "abc123",
  "db_write_timestamp": timestamp,
  "error": "xyz789",
  "fileType": "xyz789",
  "height": 987,
  "id": "xyz789",
  "index": 123,
  "method": "abc123",
  "profile": Profile,
  "profile_id": "abc123",
  "src": "xyz789",
  "url": "abc123",
  "verified": verificationstatus,
  "width": 987
}

ProfileImageURL_aggregate

Description

aggregated selection of "ProfileImageURL"

Fields
Field Name Description
aggregate - ProfileImageURL_aggregate_fields
nodes - [ProfileImageURL!]!
Example
{
  "aggregate": ProfileImageURL_aggregate_fields,
  "nodes": [ProfileImageURL]
}

ProfileImageURL_aggregate_bool_exp

Fields
Input Field Description
count - ProfileImageURL_aggregate_bool_exp_count
Example
{"count": ProfileImageURL_aggregate_bool_exp_count}

ProfileImageURL_aggregate_bool_exp_count

Fields
Input Field Description
arguments - [ProfileImageURL_select_column!]
distinct - Boolean
filter - ProfileImageURL_bool_exp
predicate - Int_comparison_exp!
Example
{
  "arguments": ["blockNumber"],
  "distinct": false,
  "filter": ProfileImageURL_bool_exp,
  "predicate": Int_comparison_exp
}

ProfileImageURL_aggregate_fields

Description

aggregate fields of "ProfileImageURL"

Example
{
  "avg": ProfileImageURL_avg_fields,
  "count": 987,
  "max": ProfileImageURL_max_fields,
  "min": ProfileImageURL_min_fields,
  "stddev": ProfileImageURL_stddev_fields,
  "stddev_pop": ProfileImageURL_stddev_pop_fields,
  "stddev_samp": ProfileImageURL_stddev_samp_fields,
  "sum": ProfileImageURL_sum_fields,
  "var_pop": ProfileImageURL_var_pop_fields,
  "var_samp": ProfileImageURL_var_samp_fields,
  "variance": ProfileImageURL_variance_fields
}

ProfileImageURL_aggregate_order_by

Example
{
  "avg": ProfileImageURL_avg_order_by,
  "count": "asc",
  "max": ProfileImageURL_max_order_by,
  "min": ProfileImageURL_min_order_by,
  "stddev": ProfileImageURL_stddev_order_by,
  "stddev_pop": ProfileImageURL_stddev_pop_order_by,
  "stddev_samp": ProfileImageURL_stddev_samp_order_by,
  "sum": ProfileImageURL_sum_order_by,
  "var_pop": ProfileImageURL_var_pop_order_by,
  "var_samp": ProfileImageURL_var_samp_order_by,
  "variance": ProfileImageURL_variance_order_by
}

ProfileImageURL_avg_fields

Description

aggregate avg on columns

Fields
Field Name Description
blockNumber - Float
height - Float
index - Float
width - Float
Example
{"blockNumber": 123.45, "height": 987.65, "index": 123.45, "width": 987.65}

ProfileImageURL_avg_order_by

Description

order by avg() on columns of table "ProfileImageURL"

Fields
Input Field Description
blockNumber - order_by
height - order_by
index - order_by
width - order_by
Example
{"blockNumber": "asc", "height": "asc", "index": "asc", "width": "asc"}

ProfileImageURL_bool_exp

Description

Boolean expression to filter rows from the table "ProfileImageURL". All fields are combined with a logical 'AND'.

Example
{
  "_and": [ProfileImageURL_bool_exp],
  "_not": ProfileImageURL_bool_exp,
  "_or": [ProfileImageURL_bool_exp],
  "blockNumber": Int_comparison_exp,
  "data": String_comparison_exp,
  "db_write_timestamp": timestamp_comparison_exp,
  "error": String_comparison_exp,
  "fileType": String_comparison_exp,
  "height": Int_comparison_exp,
  "id": String_comparison_exp,
  "index": Int_comparison_exp,
  "method": String_comparison_exp,
  "profile": Profile_bool_exp,
  "profile_id": String_comparison_exp,
  "src": String_comparison_exp,
  "url": String_comparison_exp,
  "verified": verificationstatus_comparison_exp,
  "width": Int_comparison_exp
}

ProfileImageURL_max_fields

Description

aggregate max on columns

Fields
Field Name Description
blockNumber - Int
data - String
db_write_timestamp - timestamp
error - String
fileType - String
height - Int
id - String
index - Int
method - String
profile_id - String
src - String
url - String
verified - verificationstatus
width - Int
Example
{
  "blockNumber": 123,
  "data": "xyz789",
  "db_write_timestamp": timestamp,
  "error": "abc123",
  "fileType": "abc123",
  "height": 987,
  "id": "abc123",
  "index": 987,
  "method": "abc123",
  "profile_id": "xyz789",
  "src": "xyz789",
  "url": "abc123",
  "verified": verificationstatus,
  "width": 987
}

ProfileImageURL_max_order_by

Description

order by max() on columns of table "ProfileImageURL"

Fields
Input Field Description
blockNumber - order_by
data - order_by
db_write_timestamp - order_by
error - order_by
fileType - order_by
height - order_by
id - order_by
index - order_by
method - order_by
profile_id - order_by
src - order_by
url - order_by
verified - order_by
width - order_by
Example
{
  "blockNumber": "asc",
  "data": "asc",
  "db_write_timestamp": "asc",
  "error": "asc",
  "fileType": "asc",
  "height": "asc",
  "id": "asc",
  "index": "asc",
  "method": "asc",
  "profile_id": "asc",
  "src": "asc",
  "url": "asc",
  "verified": "asc",
  "width": "asc"
}

ProfileImageURL_min_fields

Description

aggregate min on columns

Fields
Field Name Description
blockNumber - Int
data - String
db_write_timestamp - timestamp
error - String
fileType - String
height - Int
id - String
index - Int
method - String
profile_id - String
src - String
url - String
verified - verificationstatus
width - Int
Example
{
  "blockNumber": 987,
  "data": "abc123",
  "db_write_timestamp": timestamp,
  "error": "abc123",
  "fileType": "xyz789",
  "height": 123,
  "id": "abc123",
  "index": 987,
  "method": "xyz789",
  "profile_id": "abc123",
  "src": "abc123",
  "url": "abc123",
  "verified": verificationstatus,
  "width": 987
}

ProfileImageURL_min_order_by

Description

order by min() on columns of table "ProfileImageURL"

Fields
Input Field Description
blockNumber - order_by
data - order_by
db_write_timestamp - order_by
error - order_by
fileType - order_by
height - order_by
id - order_by
index - order_by
method - order_by
profile_id - order_by
src - order_by
url - order_by
verified - order_by
width - order_by
Example
{
  "blockNumber": "asc",
  "data": "asc",
  "db_write_timestamp": "asc",
  "error": "asc",
  "fileType": "asc",
  "height": "asc",
  "id": "asc",
  "index": "asc",
  "method": "asc",
  "profile_id": "asc",
  "src": "asc",
  "url": "asc",
  "verified": "asc",
  "width": "asc"
}

ProfileImageURL_order_by

Description

Ordering options when selecting data from "ProfileImageURL".

Fields
Input Field Description
blockNumber - order_by
data - order_by
db_write_timestamp - order_by
error - order_by
fileType - order_by
height - order_by
id - order_by
index - order_by
method - order_by
profile - Profile_order_by
profile_id - order_by
src - order_by
url - order_by
verified - order_by
width - order_by
Example
{
  "blockNumber": "asc",
  "data": "asc",
  "db_write_timestamp": "asc",
  "error": "asc",
  "fileType": "asc",
  "height": "asc",
  "id": "asc",
  "index": "asc",
  "method": "asc",
  "profile": Profile_order_by,
  "profile_id": "asc",
  "src": "asc",
  "url": "asc",
  "verified": "asc",
  "width": "asc"
}

ProfileImageURL_select_column

Description

select columns of table "ProfileImageURL"

Values
Enum Value Description

blockNumber

column name

data

column name

db_write_timestamp

column name

error

column name

fileType

column name

height

column name

id

column name

index

column name

method

column name

profile_id

column name

src

column name

url

column name

verified

column name

width

column name
Example
"blockNumber"

ProfileImageURL_stddev_fields

Description

aggregate stddev on columns

Fields
Field Name Description
blockNumber - Float
height - Float
index - Float
width - Float
Example
{"blockNumber": 987.65, "height": 987.65, "index": 123.45, "width": 987.65}

ProfileImageURL_stddev_order_by

Description

order by stddev() on columns of table "ProfileImageURL"

Fields
Input Field Description
blockNumber - order_by
height - order_by
index - order_by
width - order_by
Example
{"blockNumber": "asc", "height": "asc", "index": "asc", "width": "asc"}

ProfileImageURL_stddev_pop_fields

Description

aggregate stddev_pop on columns

Fields
Field Name Description
blockNumber - Float
height - Float
index - Float
width - Float
Example
{"blockNumber": 123.45, "height": 123.45, "index": 987.65, "width": 123.45}

ProfileImageURL_stddev_pop_order_by

Description

order by stddev_pop() on columns of table "ProfileImageURL"

Fields
Input Field Description
blockNumber - order_by
height - order_by
index - order_by
width - order_by
Example
{"blockNumber": "asc", "height": "asc", "index": "asc", "width": "asc"}

ProfileImageURL_stddev_samp_fields

Description

aggregate stddev_samp on columns

Fields
Field Name Description
blockNumber - Float
height - Float
index - Float
width - Float
Example
{"blockNumber": 987.65, "height": 123.45, "index": 987.65, "width": 123.45}

ProfileImageURL_stddev_samp_order_by

Description

order by stddev_samp() on columns of table "ProfileImageURL"

Fields
Input Field Description
blockNumber - order_by
height - order_by
index - order_by
width - order_by
Example
{"blockNumber": "asc", "height": "asc", "index": "asc", "width": "asc"}

ProfileImageURL_stream_cursor_input

Description

Streaming cursor of the table "ProfileImageURL"

Fields
Input Field Description
initial_value - ProfileImageURL_stream_cursor_value_input! Stream column input with initial value
ordering - cursor_ordering cursor ordering
Example
{
  "initial_value": ProfileImageURL_stream_cursor_value_input,
  "ordering": "ASC"
}

ProfileImageURL_stream_cursor_value_input

Description

Initial value of the column from where the streaming should start

Fields
Input Field Description
blockNumber - Int
data - String
db_write_timestamp - timestamp
error - String
fileType - String
height - Int
id - String
index - Int
method - String
profile_id - String
src - String
url - String
verified - verificationstatus
width - Int
Example
{
  "blockNumber": 123,
  "data": "abc123",
  "db_write_timestamp": timestamp,
  "error": "xyz789",
  "fileType": "abc123",
  "height": 123,
  "id": "abc123",
  "index": 987,
  "method": "xyz789",
  "profile_id": "xyz789",
  "src": "xyz789",
  "url": "abc123",
  "verified": verificationstatus,
  "width": 987
}

ProfileImageURL_sum_fields

Description

aggregate sum on columns

Fields
Field Name Description
blockNumber - Int
height - Int
index - Int
width - Int
Example
{"blockNumber": 987, "height": 987, "index": 123, "width": 123}

ProfileImageURL_sum_order_by

Description

order by sum() on columns of table "ProfileImageURL"

Fields
Input Field Description
blockNumber - order_by
height - order_by
index - order_by
width - order_by
Example
{"blockNumber": "asc", "height": "asc", "index": "asc", "width": "asc"}

ProfileImageURL_var_pop_fields

Description

aggregate var_pop on columns

Fields
Field Name Description
blockNumber - Float
height - Float
index - Float
width - Float
Example
{"blockNumber": 123.45, "height": 123.45, "index": 987.65, "width": 987.65}

ProfileImageURL_var_pop_order_by

Description

order by var_pop() on columns of table "ProfileImageURL"

Fields
Input Field Description
blockNumber - order_by
height - order_by
index - order_by
width - order_by
Example
{"blockNumber": "asc", "height": "asc", "index": "asc", "width": "asc"}

ProfileImageURL_var_samp_fields

Description

aggregate var_samp on columns

Fields
Field Name Description
blockNumber - Float
height - Float
index - Float
width - Float
Example
{"blockNumber": 987.65, "height": 987.65, "index": 123.45, "width": 987.65}

ProfileImageURL_var_samp_order_by

Description

order by var_samp() on columns of table "ProfileImageURL"

Fields
Input Field Description
blockNumber - order_by
height - order_by
index - order_by
width - order_by
Example
{"blockNumber": "asc", "height": "asc", "index": "asc", "width": "asc"}

ProfileImageURL_variance_fields

Description

aggregate variance on columns

Fields
Field Name Description
blockNumber - Float
height - Float
index - Float
width - Float
Example
{"blockNumber": 987.65, "height": 123.45, "index": 987.65, "width": 987.65}

ProfileImageURL_variance_order_by

Description

order by variance() on columns of table "ProfileImageURL"

Fields
Input Field Description
blockNumber - order_by
height - order_by
index - order_by
width - order_by
Example
{"blockNumber": "asc", "height": "asc", "index": "asc", "width": "asc"}

Profile_aggregate

Description

aggregated selection of "Profile"

Fields
Field Name Description
aggregate - Profile_aggregate_fields
nodes - [Profile!]!
Example
{
  "aggregate": Profile_aggregate_fields,
  "nodes": [Profile]
}

Profile_aggregate_fields

Description

aggregate fields of "Profile"

Fields
Field Name Description
avg - Profile_avg_fields
count - Int!
Arguments
distinct - Boolean
max - Profile_max_fields
min - Profile_min_fields
stddev - Profile_stddev_fields
stddev_pop - Profile_stddev_pop_fields
stddev_samp - Profile_stddev_samp_fields
sum - Profile_sum_fields
var_pop - Profile_var_pop_fields
var_samp - Profile_var_samp_fields
variance - Profile_variance_fields
Example
{
  "avg": Profile_avg_fields,
  "count": 987,
  "max": Profile_max_fields,
  "min": Profile_min_fields,
  "stddev": Profile_stddev_fields,
  "stddev_pop": Profile_stddev_pop_fields,
  "stddev_samp": Profile_stddev_samp_fields,
  "sum": Profile_sum_fields,
  "var_pop": Profile_var_pop_fields,
  "var_samp": Profile_var_samp_fields,
  "variance": Profile_variance_fields
}

Profile_avg_fields

Description

aggregate avg on columns

Fields
Field Name Description
blockNumber - Float
createdBlockNumber - Float
createdTimestamp - Float
createdTransactionIndex - Float
lastMetadataUpdate - Float
lastNameUpdate - Float
updatedBlockNumber - Float
updatedTimestamp - Float
updatedTransactionIndex - Float
Example
{
  "blockNumber": 987.65,
  "createdBlockNumber": 123.45,
  "createdTimestamp": 987.65,
  "createdTransactionIndex": 987.65,
  "lastMetadataUpdate": 987.65,
  "lastNameUpdate": 987.65,
  "updatedBlockNumber": 987.65,
  "updatedTimestamp": 123.45,
  "updatedTransactionIndex": 987.65
}

Profile_bool_exp

Description

Boolean expression to filter rows from the table "Profile". All fields are combined with a logical 'AND'.

Fields
Input Field Description
_and - [Profile_bool_exp!]
_not - Profile_bool_exp
_or - [Profile_bool_exp!]
addressPermissions - String_array_comparison_exp
addressPermissions_ - String_array_comparison_exp
app - App_bool_exp
appContributions - AppContributor_bool_exp
appContributions_aggregate - AppContributor_aggregate_bool_exp
appHistory - AppHistory_bool_exp
appHistory_aggregate - AppHistory_aggregate_bool_exp
appInstalls - AppInstall_bool_exp
appInstalls_aggregate - AppInstall_aggregate_bool_exp
asset - Asset_bool_exp
asset_id - String_comparison_exp
avatars - AvatarAssetURL_bool_exp
avatars_ - String_array_comparison_exp
avatars_aggregate - AvatarAssetURL_aggregate_bool_exp
backgroundImages - ProfileBackgroundImageURL_bool_exp
backgroundImages_ - String_array_comparison_exp
backgroundImages_aggregate - ProfileBackgroundImageURL_aggregate_bool_exp
blockNumber - Int_comparison_exp
controllers - Controller_bool_exp
controllers_ - String_array_comparison_exp
controllers_aggregate - Controller_aggregate_bool_exp
createdBlockNumber - Int_comparison_exp
createdTimestamp - Int_comparison_exp
createdTransactionIndex - Int_comparison_exp
data - String_comparison_exp
db_write_timestamp - timestamp_comparison_exp
description - String_comparison_exp
error - String_comparison_exp
feed - FeedProfileArg_bool_exp
feed_aggregate - FeedProfileArg_aggregate_bool_exp
followed - Follow_bool_exp
followed_aggregate - Follow_aggregate_bool_exp
following - Follow_bool_exp
following_aggregate - Follow_aggregate_bool_exp
ft - String_comparison_exp
fts - tsvector_comparison_exp
fullName - String_comparison_exp
holds - Hold_bool_exp
holds_aggregate - Hold_aggregate_bool_exp
id - String_comparison_exp
incoming_transfers - Transfer_bool_exp
incoming_transfers_aggregate - Transfer_aggregate_bool_exp
interactions - Interaction_bool_exp
interactions_aggregate - Interaction_aggregate_bool_exp
interfaces - String_array_comparison_exp
isContract - Boolean_comparison_exp
isEOA - Boolean_comparison_exp
keyManagers - KeyManager_bool_exp
keyManagers_aggregate - KeyManager_aggregate_bool_exp
lastMetadataUpdate - Int_comparison_exp
lastNameUpdate - Int_comparison_exp
links - ProfileLink_bool_exp
links_ - String_array_comparison_exp
links_aggregate - ProfileLink_aggregate_bool_exp
lsp12IssuedAssets - IssuedAsset_bool_exp
lsp12IssuedAssets_ - String_array_comparison_exp
lsp12IssuedAssets_aggregate - IssuedAsset_aggregate_bool_exp
lsp1UniversalReceiverDelegate - ReceiverDelegate_bool_exp
lsp1UniversalReceiverDelegate_aggregate - ReceiverDelegate_aggregate_bool_exp
lsp23Deployment - LSP23Deployment_bool_exp
lsp5ReceivedAssets - ReceivedAsset_bool_exp
lsp5ReceivedAssets_ - String_array_comparison_exp
lsp5ReceivedAssets_aggregate - ReceivedAsset_aggregate_bool_exp
method - String_comparison_exp
name - String_comparison_exp
outgoing_transfers - Transfer_bool_exp
outgoing_transfers_aggregate - Transfer_aggregate_bool_exp
owner - Profile_bool_exp
owner_id - String_comparison_exp
profileImages - ProfileImageURL_bool_exp
profileImages_ - String_array_comparison_exp
profileImages_aggregate - ProfileImageURL_aggregate_bool_exp
src - String_comparison_exp
standard - standards_comparison_exp
supportedStandardsLsp3Profile - Boolean_comparison_exp
tags - String_array_comparison_exp
transactions - Transaction_bool_exp
transactions_aggregate - Transaction_aggregate_bool_exp
updatedBlockNumber - Int_comparison_exp
updatedTimestamp - Int_comparison_exp
updatedTransactionIndex - Int_comparison_exp
url - String_comparison_exp
Example
{
  "_and": [Profile_bool_exp],
  "_not": Profile_bool_exp,
  "_or": [Profile_bool_exp],
  "addressPermissions": String_array_comparison_exp,
  "addressPermissions_": String_array_comparison_exp,
  "app": App_bool_exp,
  "appContributions": AppContributor_bool_exp,
  "appContributions_aggregate": AppContributor_aggregate_bool_exp,
  "appHistory": AppHistory_bool_exp,
  "appHistory_aggregate": AppHistory_aggregate_bool_exp,
  "appInstalls": AppInstall_bool_exp,
  "appInstalls_aggregate": AppInstall_aggregate_bool_exp,
  "asset": Asset_bool_exp,
  "asset_id": String_comparison_exp,
  "avatars": AvatarAssetURL_bool_exp,
  "avatars_": String_array_comparison_exp,
  "avatars_aggregate": AvatarAssetURL_aggregate_bool_exp,
  "backgroundImages": ProfileBackgroundImageURL_bool_exp,
  "backgroundImages_": String_array_comparison_exp,
  "backgroundImages_aggregate": ProfileBackgroundImageURL_aggregate_bool_exp,
  "blockNumber": Int_comparison_exp,
  "controllers": Controller_bool_exp,
  "controllers_": String_array_comparison_exp,
  "controllers_aggregate": Controller_aggregate_bool_exp,
  "createdBlockNumber": Int_comparison_exp,
  "createdTimestamp": Int_comparison_exp,
  "createdTransactionIndex": Int_comparison_exp,
  "data": String_comparison_exp,
  "db_write_timestamp": timestamp_comparison_exp,
  "description": String_comparison_exp,
  "error": String_comparison_exp,
  "feed": FeedProfileArg_bool_exp,
  "feed_aggregate": FeedProfileArg_aggregate_bool_exp,
  "followed": Follow_bool_exp,
  "followed_aggregate": Follow_aggregate_bool_exp,
  "following": Follow_bool_exp,
  "following_aggregate": Follow_aggregate_bool_exp,
  "ft": String_comparison_exp,
  "fts": tsvector_comparison_exp,
  "fullName": String_comparison_exp,
  "holds": Hold_bool_exp,
  "holds_aggregate": Hold_aggregate_bool_exp,
  "id": String_comparison_exp,
  "incoming_transfers": Transfer_bool_exp,
  "incoming_transfers_aggregate": Transfer_aggregate_bool_exp,
  "interactions": Interaction_bool_exp,
  "interactions_aggregate": Interaction_aggregate_bool_exp,
  "interfaces": String_array_comparison_exp,
  "isContract": Boolean_comparison_exp,
  "isEOA": Boolean_comparison_exp,
  "keyManagers": KeyManager_bool_exp,
  "keyManagers_aggregate": KeyManager_aggregate_bool_exp,
  "lastMetadataUpdate": Int_comparison_exp,
  "lastNameUpdate": Int_comparison_exp,
  "links": ProfileLink_bool_exp,
  "links_": String_array_comparison_exp,
  "links_aggregate": ProfileLink_aggregate_bool_exp,
  "lsp12IssuedAssets": IssuedAsset_bool_exp,
  "lsp12IssuedAssets_": String_array_comparison_exp,
  "lsp12IssuedAssets_aggregate": IssuedAsset_aggregate_bool_exp,
  "lsp1UniversalReceiverDelegate": ReceiverDelegate_bool_exp,
  "lsp1UniversalReceiverDelegate_aggregate": ReceiverDelegate_aggregate_bool_exp,
  "lsp23Deployment": LSP23Deployment_bool_exp,
  "lsp5ReceivedAssets": ReceivedAsset_bool_exp,
  "lsp5ReceivedAssets_": String_array_comparison_exp,
  "lsp5ReceivedAssets_aggregate": ReceivedAsset_aggregate_bool_exp,
  "method": String_comparison_exp,
  "name": String_comparison_exp,
  "outgoing_transfers": Transfer_bool_exp,
  "outgoing_transfers_aggregate": Transfer_aggregate_bool_exp,
  "owner": Profile_bool_exp,
  "owner_id": String_comparison_exp,
  "profileImages": ProfileImageURL_bool_exp,
  "profileImages_": String_array_comparison_exp,
  "profileImages_aggregate": ProfileImageURL_aggregate_bool_exp,
  "src": String_comparison_exp,
  "standard": standards_comparison_exp,
  "supportedStandardsLsp3Profile": Boolean_comparison_exp,
  "tags": String_array_comparison_exp,
  "transactions": Transaction_bool_exp,
  "transactions_aggregate": Transaction_aggregate_bool_exp,
  "updatedBlockNumber": Int_comparison_exp,
  "updatedTimestamp": Int_comparison_exp,
  "updatedTransactionIndex": Int_comparison_exp,
  "url": String_comparison_exp
}

Profile_max_fields

Description

aggregate max on columns

Fields
Field Name Description
addressPermissions - [String!]
addressPermissions_ - [String!]
asset_id - String
avatars_ - [String!]
backgroundImages_ - [String!]
blockNumber - Int
controllers_ - [String!]
createdBlockNumber - Int
createdTimestamp - Int
createdTransactionIndex - Int
data - String
db_write_timestamp - timestamp
description - String
error - String
ft - String
fullName - String
id - String
interfaces - [String!]
lastMetadataUpdate - Int
lastNameUpdate - Int
links_ - [String!]
lsp12IssuedAssets_ - [String!]
lsp5ReceivedAssets_ - [String!]
method - String
name - String
owner_id - String
profileImages_ - [String!]
src - String
standard - standards
tags - [String!]
updatedBlockNumber - Int
updatedTimestamp - Int
updatedTransactionIndex - Int
url - String
Example
{
  "addressPermissions": ["xyz789"],
  "addressPermissions_": ["xyz789"],
  "asset_id": "abc123",
  "avatars_": ["abc123"],
  "backgroundImages_": ["abc123"],
  "blockNumber": 123,
  "controllers_": ["abc123"],
  "createdBlockNumber": 987,
  "createdTimestamp": 123,
  "createdTransactionIndex": 123,
  "data": "abc123",
  "db_write_timestamp": timestamp,
  "description": "abc123",
  "error": "xyz789",
  "ft": "xyz789",
  "fullName": "xyz789",
  "id": "xyz789",
  "interfaces": ["xyz789"],
  "lastMetadataUpdate": 987,
  "lastNameUpdate": 123,
  "links_": ["abc123"],
  "lsp12IssuedAssets_": ["abc123"],
  "lsp5ReceivedAssets_": ["abc123"],
  "method": "abc123",
  "name": "abc123",
  "owner_id": "xyz789",
  "profileImages_": ["abc123"],
  "src": "xyz789",
  "standard": standards,
  "tags": ["abc123"],
  "updatedBlockNumber": 123,
  "updatedTimestamp": 987,
  "updatedTransactionIndex": 987,
  "url": "abc123"
}

Profile_min_fields

Description

aggregate min on columns

Fields
Field Name Description
addressPermissions - [String!]
addressPermissions_ - [String!]
asset_id - String
avatars_ - [String!]
backgroundImages_ - [String!]
blockNumber - Int
controllers_ - [String!]
createdBlockNumber - Int
createdTimestamp - Int
createdTransactionIndex - Int
data - String
db_write_timestamp - timestamp
description - String
error - String
ft - String
fullName - String
id - String
interfaces - [String!]
lastMetadataUpdate - Int
lastNameUpdate - Int
links_ - [String!]
lsp12IssuedAssets_ - [String!]
lsp5ReceivedAssets_ - [String!]
method - String
name - String
owner_id - String
profileImages_ - [String!]
src - String
standard - standards
tags - [String!]
updatedBlockNumber - Int
updatedTimestamp - Int
updatedTransactionIndex - Int
url - String
Example
{
  "addressPermissions": ["xyz789"],
  "addressPermissions_": ["xyz789"],
  "asset_id": "xyz789",
  "avatars_": ["xyz789"],
  "backgroundImages_": ["abc123"],
  "blockNumber": 987,
  "controllers_": ["xyz789"],
  "createdBlockNumber": 987,
  "createdTimestamp": 987,
  "createdTransactionIndex": 987,
  "data": "xyz789",
  "db_write_timestamp": timestamp,
  "description": "abc123",
  "error": "xyz789",
  "ft": "xyz789",
  "fullName": "abc123",
  "id": "abc123",
  "interfaces": ["abc123"],
  "lastMetadataUpdate": 123,
  "lastNameUpdate": 987,
  "links_": ["abc123"],
  "lsp12IssuedAssets_": ["xyz789"],
  "lsp5ReceivedAssets_": ["abc123"],
  "method": "xyz789",
  "name": "abc123",
  "owner_id": "abc123",
  "profileImages_": ["xyz789"],
  "src": "abc123",
  "standard": standards,
  "tags": ["abc123"],
  "updatedBlockNumber": 123,
  "updatedTimestamp": 987,
  "updatedTransactionIndex": 123,
  "url": "xyz789"
}

Profile_order_by

Description

Ordering options when selecting data from "Profile".

Fields
Input Field Description
addressPermissions - order_by
addressPermissions_ - order_by
app - App_order_by
appContributions_aggregate - AppContributor_aggregate_order_by
appHistory_aggregate - AppHistory_aggregate_order_by
appInstalls_aggregate - AppInstall_aggregate_order_by
asset - Asset_order_by
asset_id - order_by
avatars_ - order_by
avatars_aggregate - AvatarAssetURL_aggregate_order_by
backgroundImages_ - order_by
backgroundImages_aggregate - ProfileBackgroundImageURL_aggregate_order_by
blockNumber - order_by
controllers_ - order_by
controllers_aggregate - Controller_aggregate_order_by
createdBlockNumber - order_by
createdTimestamp - order_by
createdTransactionIndex - order_by
data - order_by
db_write_timestamp - order_by
description - order_by
error - order_by
feed_aggregate - FeedProfileArg_aggregate_order_by
followed_aggregate - Follow_aggregate_order_by
following_aggregate - Follow_aggregate_order_by
ft - order_by
fts - order_by
fullName - order_by
holds_aggregate - Hold_aggregate_order_by
id - order_by
incoming_transfers_aggregate - Transfer_aggregate_order_by
interactions_aggregate - Interaction_aggregate_order_by
interfaces - order_by
isContract - order_by
isEOA - order_by
keyManagers_aggregate - KeyManager_aggregate_order_by
lastMetadataUpdate - order_by
lastNameUpdate - order_by
links_ - order_by
links_aggregate - ProfileLink_aggregate_order_by
lsp12IssuedAssets_ - order_by
lsp12IssuedAssets_aggregate - IssuedAsset_aggregate_order_by
lsp1UniversalReceiverDelegate_aggregate - ReceiverDelegate_aggregate_order_by
lsp23Deployment - LSP23Deployment_order_by
lsp5ReceivedAssets_ - order_by
lsp5ReceivedAssets_aggregate - ReceivedAsset_aggregate_order_by
method - order_by
name - order_by
outgoing_transfers_aggregate - Transfer_aggregate_order_by
owner - Profile_order_by
owner_id - order_by
profileImages_ - order_by
profileImages_aggregate - ProfileImageURL_aggregate_order_by
src - order_by
standard - order_by
supportedStandardsLsp3Profile - order_by
tags - order_by
transactions_aggregate - Transaction_aggregate_order_by
updatedBlockNumber - order_by
updatedTimestamp - order_by
updatedTransactionIndex - order_by
url - order_by
Example
{
  "addressPermissions": "asc",
  "addressPermissions_": "asc",
  "app": App_order_by,
  "appContributions_aggregate": AppContributor_aggregate_order_by,
  "appHistory_aggregate": AppHistory_aggregate_order_by,
  "appInstalls_aggregate": AppInstall_aggregate_order_by,
  "asset": Asset_order_by,
  "asset_id": "asc",
  "avatars_": "asc",
  "avatars_aggregate": AvatarAssetURL_aggregate_order_by,
  "backgroundImages_": "asc",
  "backgroundImages_aggregate": ProfileBackgroundImageURL_aggregate_order_by,
  "blockNumber": "asc",
  "controllers_": "asc",
  "controllers_aggregate": Controller_aggregate_order_by,
  "createdBlockNumber": "asc",
  "createdTimestamp": "asc",
  "createdTransactionIndex": "asc",
  "data": "asc",
  "db_write_timestamp": "asc",
  "description": "asc",
  "error": "asc",
  "feed_aggregate": FeedProfileArg_aggregate_order_by,
  "followed_aggregate": Follow_aggregate_order_by,
  "following_aggregate": Follow_aggregate_order_by,
  "ft": "asc",
  "fts": "asc",
  "fullName": "asc",
  "holds_aggregate": Hold_aggregate_order_by,
  "id": "asc",
  "incoming_transfers_aggregate": Transfer_aggregate_order_by,
  "interactions_aggregate": Interaction_aggregate_order_by,
  "interfaces": "asc",
  "isContract": "asc",
  "isEOA": "asc",
  "keyManagers_aggregate": KeyManager_aggregate_order_by,
  "lastMetadataUpdate": "asc",
  "lastNameUpdate": "asc",
  "links_": "asc",
  "links_aggregate": ProfileLink_aggregate_order_by,
  "lsp12IssuedAssets_": "asc",
  "lsp12IssuedAssets_aggregate": IssuedAsset_aggregate_order_by,
  "lsp1UniversalReceiverDelegate_aggregate": ReceiverDelegate_aggregate_order_by,
  "lsp23Deployment": LSP23Deployment_order_by,
  "lsp5ReceivedAssets_": "asc",
  "lsp5ReceivedAssets_aggregate": ReceivedAsset_aggregate_order_by,
  "method": "asc",
  "name": "asc",
  "outgoing_transfers_aggregate": Transfer_aggregate_order_by,
  "owner": Profile_order_by,
  "owner_id": "asc",
  "profileImages_": "asc",
  "profileImages_aggregate": ProfileImageURL_aggregate_order_by,
  "src": "asc",
  "standard": "asc",
  "supportedStandardsLsp3Profile": "asc",
  "tags": "asc",
  "transactions_aggregate": Transaction_aggregate_order_by,
  "updatedBlockNumber": "asc",
  "updatedTimestamp": "asc",
  "updatedTransactionIndex": "asc",
  "url": "asc"
}

Profile_select_column

Description

select columns of table "Profile"

Values
Enum Value Description

addressPermissions

column name

addressPermissions_

column name

asset_id

column name

avatars_

column name

backgroundImages_

column name

blockNumber

column name

controllers_

column name

createdBlockNumber

column name

createdTimestamp

column name

createdTransactionIndex

column name

data

column name

db_write_timestamp

column name

description

column name

error

column name

ft

column name

fts

column name

fullName

column name

id

column name

interfaces

column name

isContract

column name

isEOA

column name

lastMetadataUpdate

column name

lastNameUpdate

column name

links_

column name

lsp12IssuedAssets_

column name

lsp5ReceivedAssets_

column name

method

column name

name

column name

owner_id

column name

profileImages_

column name

src

column name

standard

column name

supportedStandardsLsp3Profile

column name

tags

column name

updatedBlockNumber

column name

updatedTimestamp

column name

updatedTransactionIndex

column name

url

column name
Example
"addressPermissions"

Profile_stddev_fields

Description

aggregate stddev on columns

Fields
Field Name Description
blockNumber - Float
createdBlockNumber - Float
createdTimestamp - Float
createdTransactionIndex - Float
lastMetadataUpdate - Float
lastNameUpdate - Float
updatedBlockNumber - Float
updatedTimestamp - Float
updatedTransactionIndex - Float
Example
{
  "blockNumber": 987.65,
  "createdBlockNumber": 987.65,
  "createdTimestamp": 987.65,
  "createdTransactionIndex": 987.65,
  "lastMetadataUpdate": 123.45,
  "lastNameUpdate": 123.45,
  "updatedBlockNumber": 123.45,
  "updatedTimestamp": 123.45,
  "updatedTransactionIndex": 987.65
}

Profile_stddev_pop_fields

Description

aggregate stddev_pop on columns

Fields
Field Name Description
blockNumber - Float
createdBlockNumber - Float
createdTimestamp - Float
createdTransactionIndex - Float
lastMetadataUpdate - Float
lastNameUpdate - Float
updatedBlockNumber - Float
updatedTimestamp - Float
updatedTransactionIndex - Float
Example
{
  "blockNumber": 987.65,
  "createdBlockNumber": 987.65,
  "createdTimestamp": 123.45,
  "createdTransactionIndex": 987.65,
  "lastMetadataUpdate": 123.45,
  "lastNameUpdate": 987.65,
  "updatedBlockNumber": 123.45,
  "updatedTimestamp": 123.45,
  "updatedTransactionIndex": 123.45
}

Profile_stddev_samp_fields

Description

aggregate stddev_samp on columns

Fields
Field Name Description
blockNumber - Float
createdBlockNumber - Float
createdTimestamp - Float
createdTransactionIndex - Float
lastMetadataUpdate - Float
lastNameUpdate - Float
updatedBlockNumber - Float
updatedTimestamp - Float
updatedTransactionIndex - Float
Example
{
  "blockNumber": 123.45,
  "createdBlockNumber": 123.45,
  "createdTimestamp": 123.45,
  "createdTransactionIndex": 987.65,
  "lastMetadataUpdate": 123.45,
  "lastNameUpdate": 987.65,
  "updatedBlockNumber": 123.45,
  "updatedTimestamp": 987.65,
  "updatedTransactionIndex": 987.65
}

Profile_stream_cursor_input

Description

Streaming cursor of the table "Profile"

Fields
Input Field Description
initial_value - Profile_stream_cursor_value_input! Stream column input with initial value
ordering - cursor_ordering cursor ordering
Example
{
  "initial_value": Profile_stream_cursor_value_input,
  "ordering": "ASC"
}

Profile_stream_cursor_value_input

Description

Initial value of the column from where the streaming should start

Fields
Input Field Description
addressPermissions - [String!]
addressPermissions_ - [String!]
asset_id - String
avatars_ - [String!]
backgroundImages_ - [String!]
blockNumber - Int
controllers_ - [String!]
createdBlockNumber - Int
createdTimestamp - Int
createdTransactionIndex - Int
data - String
db_write_timestamp - timestamp
description - String
error - String
ft - String
fts - tsvector
fullName - String
id - String
interfaces - [String!]
isContract - Boolean
isEOA - Boolean
lastMetadataUpdate - Int
lastNameUpdate - Int
links_ - [String!]
lsp12IssuedAssets_ - [String!]
lsp5ReceivedAssets_ - [String!]
method - String
name - String
owner_id - String
profileImages_ - [String!]
src - String
standard - standards
supportedStandardsLsp3Profile - Boolean
tags - [String!]
updatedBlockNumber - Int
updatedTimestamp - Int
updatedTransactionIndex - Int
url - String
Example
{
  "addressPermissions": ["xyz789"],
  "addressPermissions_": ["abc123"],
  "asset_id": "xyz789",
  "avatars_": ["abc123"],
  "backgroundImages_": ["xyz789"],
  "blockNumber": 987,
  "controllers_": ["xyz789"],
  "createdBlockNumber": 123,
  "createdTimestamp": 987,
  "createdTransactionIndex": 987,
  "data": "xyz789",
  "db_write_timestamp": timestamp,
  "description": "abc123",
  "error": "abc123",
  "ft": "xyz789",
  "fts": tsvector,
  "fullName": "xyz789",
  "id": "abc123",
  "interfaces": ["xyz789"],
  "isContract": false,
  "isEOA": true,
  "lastMetadataUpdate": 987,
  "lastNameUpdate": 123,
  "links_": ["abc123"],
  "lsp12IssuedAssets_": ["abc123"],
  "lsp5ReceivedAssets_": ["abc123"],
  "method": "abc123",
  "name": "abc123",
  "owner_id": "xyz789",
  "profileImages_": ["abc123"],
  "src": "abc123",
  "standard": standards,
  "supportedStandardsLsp3Profile": true,
  "tags": ["abc123"],
  "updatedBlockNumber": 987,
  "updatedTimestamp": 123,
  "updatedTransactionIndex": 987,
  "url": "xyz789"
}

Profile_sum_fields

Description

aggregate sum on columns

Fields
Field Name Description
blockNumber - Int
createdBlockNumber - Int
createdTimestamp - Int
createdTransactionIndex - Int
lastMetadataUpdate - Int
lastNameUpdate - Int
updatedBlockNumber - Int
updatedTimestamp - Int
updatedTransactionIndex - Int
Example
{
  "blockNumber": 987,
  "createdBlockNumber": 123,
  "createdTimestamp": 987,
  "createdTransactionIndex": 987,
  "lastMetadataUpdate": 123,
  "lastNameUpdate": 987,
  "updatedBlockNumber": 123,
  "updatedTimestamp": 123,
  "updatedTransactionIndex": 987
}

Profile_var_pop_fields

Description

aggregate var_pop on columns

Fields
Field Name Description
blockNumber - Float
createdBlockNumber - Float
createdTimestamp - Float
createdTransactionIndex - Float
lastMetadataUpdate - Float
lastNameUpdate - Float
updatedBlockNumber - Float
updatedTimestamp - Float
updatedTransactionIndex - Float
Example
{
  "blockNumber": 123.45,
  "createdBlockNumber": 987.65,
  "createdTimestamp": 123.45,
  "createdTransactionIndex": 123.45,
  "lastMetadataUpdate": 987.65,
  "lastNameUpdate": 123.45,
  "updatedBlockNumber": 123.45,
  "updatedTimestamp": 123.45,
  "updatedTransactionIndex": 987.65
}

Profile_var_samp_fields

Description

aggregate var_samp on columns

Fields
Field Name Description
blockNumber - Float
createdBlockNumber - Float
createdTimestamp - Float
createdTransactionIndex - Float
lastMetadataUpdate - Float
lastNameUpdate - Float
updatedBlockNumber - Float
updatedTimestamp - Float
updatedTransactionIndex - Float
Example
{
  "blockNumber": 123.45,
  "createdBlockNumber": 987.65,
  "createdTimestamp": 987.65,
  "createdTransactionIndex": 987.65,
  "lastMetadataUpdate": 123.45,
  "lastNameUpdate": 987.65,
  "updatedBlockNumber": 123.45,
  "updatedTimestamp": 123.45,
  "updatedTransactionIndex": 987.65
}

Profile_variance_fields

Description

aggregate variance on columns

Fields
Field Name Description
blockNumber - Float
createdBlockNumber - Float
createdTimestamp - Float
createdTransactionIndex - Float
lastMetadataUpdate - Float
lastNameUpdate - Float
updatedBlockNumber - Float
updatedTimestamp - Float
updatedTransactionIndex - Float
Example
{
  "blockNumber": 123.45,
  "createdBlockNumber": 987.65,
  "createdTimestamp": 123.45,
  "createdTransactionIndex": 987.65,
  "lastMetadataUpdate": 123.45,
  "lastNameUpdate": 123.45,
  "updatedBlockNumber": 987.65,
  "updatedTimestamp": 987.65,
  "updatedTransactionIndex": 123.45
}

ReceivedAsset

Description

columns and relationships of "ReceivedAsset"

Fields
Field Name Description
asset - Asset An object relationship
asset_id - String
blockNumber - Int!
createdBlockNumber - Int!
createdTimestamp - Int!
createdTransactionIndex - Int!
db_write_timestamp - timestamp
id - String!
index - Int
interfaceId - String
profile - Profile An object relationship
profile_id - String
updatedBlockNumber - Int
updatedTimestamp - Int
updatedTransactionIndex - Int
Example
{
  "asset": Asset,
  "asset_id": "xyz789",
  "blockNumber": 123,
  "createdBlockNumber": 123,
  "createdTimestamp": 987,
  "createdTransactionIndex": 123,
  "db_write_timestamp": timestamp,
  "id": "xyz789",
  "index": 987,
  "interfaceId": "xyz789",
  "profile": Profile,
  "profile_id": "abc123",
  "updatedBlockNumber": 123,
  "updatedTimestamp": 987,
  "updatedTransactionIndex": 987
}

ReceivedAsset_aggregate

Description

aggregated selection of "ReceivedAsset"

Fields
Field Name Description
aggregate - ReceivedAsset_aggregate_fields
nodes - [ReceivedAsset!]!
Example
{
  "aggregate": ReceivedAsset_aggregate_fields,
  "nodes": [ReceivedAsset]
}

ReceivedAsset_aggregate_bool_exp

Fields
Input Field Description
count - ReceivedAsset_aggregate_bool_exp_count
Example
{"count": ReceivedAsset_aggregate_bool_exp_count}

ReceivedAsset_aggregate_bool_exp_count

Fields
Input Field Description
arguments - [ReceivedAsset_select_column!]
distinct - Boolean
filter - ReceivedAsset_bool_exp
predicate - Int_comparison_exp!
Example
{
  "arguments": ["asset_id"],
  "distinct": false,
  "filter": ReceivedAsset_bool_exp,
  "predicate": Int_comparison_exp
}

ReceivedAsset_aggregate_fields

Description

aggregate fields of "ReceivedAsset"

Example
{
  "avg": ReceivedAsset_avg_fields,
  "count": 123,
  "max": ReceivedAsset_max_fields,
  "min": ReceivedAsset_min_fields,
  "stddev": ReceivedAsset_stddev_fields,
  "stddev_pop": ReceivedAsset_stddev_pop_fields,
  "stddev_samp": ReceivedAsset_stddev_samp_fields,
  "sum": ReceivedAsset_sum_fields,
  "var_pop": ReceivedAsset_var_pop_fields,
  "var_samp": ReceivedAsset_var_samp_fields,
  "variance": ReceivedAsset_variance_fields
}

ReceivedAsset_aggregate_order_by

Description

order by aggregate values of table "ReceivedAsset"

Example
{
  "avg": ReceivedAsset_avg_order_by,
  "count": "asc",
  "max": ReceivedAsset_max_order_by,
  "min": ReceivedAsset_min_order_by,
  "stddev": ReceivedAsset_stddev_order_by,
  "stddev_pop": ReceivedAsset_stddev_pop_order_by,
  "stddev_samp": ReceivedAsset_stddev_samp_order_by,
  "sum": ReceivedAsset_sum_order_by,
  "var_pop": ReceivedAsset_var_pop_order_by,
  "var_samp": ReceivedAsset_var_samp_order_by,
  "variance": ReceivedAsset_variance_order_by
}

ReceivedAsset_avg_fields

Description

aggregate avg on columns

Fields
Field Name Description
blockNumber - Float
createdBlockNumber - Float
createdTimestamp - Float
createdTransactionIndex - Float
index - Float
updatedBlockNumber - Float
updatedTimestamp - Float
updatedTransactionIndex - Float
Example
{
  "blockNumber": 987.65,
  "createdBlockNumber": 987.65,
  "createdTimestamp": 123.45,
  "createdTransactionIndex": 123.45,
  "index": 987.65,
  "updatedBlockNumber": 123.45,
  "updatedTimestamp": 987.65,
  "updatedTransactionIndex": 987.65
}

ReceivedAsset_avg_order_by

Description

order by avg() on columns of table "ReceivedAsset"

Fields
Input Field Description
blockNumber - order_by
createdBlockNumber - order_by
createdTimestamp - order_by
createdTransactionIndex - order_by
index - order_by
updatedBlockNumber - order_by
updatedTimestamp - order_by
updatedTransactionIndex - order_by
Example
{
  "blockNumber": "asc",
  "createdBlockNumber": "asc",
  "createdTimestamp": "asc",
  "createdTransactionIndex": "asc",
  "index": "asc",
  "updatedBlockNumber": "asc",
  "updatedTimestamp": "asc",
  "updatedTransactionIndex": "asc"
}

ReceivedAsset_bool_exp

Description

Boolean expression to filter rows from the table "ReceivedAsset". All fields are combined with a logical 'AND'.

Fields
Input Field Description
_and - [ReceivedAsset_bool_exp!]
_not - ReceivedAsset_bool_exp
_or - [ReceivedAsset_bool_exp!]
asset - Asset_bool_exp
asset_id - String_comparison_exp
blockNumber - Int_comparison_exp
createdBlockNumber - Int_comparison_exp
createdTimestamp - Int_comparison_exp
createdTransactionIndex - Int_comparison_exp
db_write_timestamp - timestamp_comparison_exp
id - String_comparison_exp
index - Int_comparison_exp
interfaceId - String_comparison_exp
profile - Profile_bool_exp
profile_id - String_comparison_exp
updatedBlockNumber - Int_comparison_exp
updatedTimestamp - Int_comparison_exp
updatedTransactionIndex - Int_comparison_exp
Example
{
  "_and": [ReceivedAsset_bool_exp],
  "_not": ReceivedAsset_bool_exp,
  "_or": [ReceivedAsset_bool_exp],
  "asset": Asset_bool_exp,
  "asset_id": String_comparison_exp,
  "blockNumber": Int_comparison_exp,
  "createdBlockNumber": Int_comparison_exp,
  "createdTimestamp": Int_comparison_exp,
  "createdTransactionIndex": Int_comparison_exp,
  "db_write_timestamp": timestamp_comparison_exp,
  "id": String_comparison_exp,
  "index": Int_comparison_exp,
  "interfaceId": String_comparison_exp,
  "profile": Profile_bool_exp,
  "profile_id": String_comparison_exp,
  "updatedBlockNumber": Int_comparison_exp,
  "updatedTimestamp": Int_comparison_exp,
  "updatedTransactionIndex": Int_comparison_exp
}

ReceivedAsset_max_fields

Description

aggregate max on columns

Fields
Field Name Description
asset_id - String
blockNumber - Int
createdBlockNumber - Int
createdTimestamp - Int
createdTransactionIndex - Int
db_write_timestamp - timestamp
id - String
index - Int
interfaceId - String
profile_id - String
updatedBlockNumber - Int
updatedTimestamp - Int
updatedTransactionIndex - Int
Example
{
  "asset_id": "xyz789",
  "blockNumber": 123,
  "createdBlockNumber": 987,
  "createdTimestamp": 987,
  "createdTransactionIndex": 987,
  "db_write_timestamp": timestamp,
  "id": "abc123",
  "index": 123,
  "interfaceId": "abc123",
  "profile_id": "abc123",
  "updatedBlockNumber": 987,
  "updatedTimestamp": 123,
  "updatedTransactionIndex": 987
}

ReceivedAsset_max_order_by

Description

order by max() on columns of table "ReceivedAsset"

Fields
Input Field Description
asset_id - order_by
blockNumber - order_by
createdBlockNumber - order_by
createdTimestamp - order_by
createdTransactionIndex - order_by
db_write_timestamp - order_by
id - order_by
index - order_by
interfaceId - order_by
profile_id - order_by
updatedBlockNumber - order_by
updatedTimestamp - order_by
updatedTransactionIndex - order_by
Example
{
  "asset_id": "asc",
  "blockNumber": "asc",
  "createdBlockNumber": "asc",
  "createdTimestamp": "asc",
  "createdTransactionIndex": "asc",
  "db_write_timestamp": "asc",
  "id": "asc",
  "index": "asc",
  "interfaceId": "asc",
  "profile_id": "asc",
  "updatedBlockNumber": "asc",
  "updatedTimestamp": "asc",
  "updatedTransactionIndex": "asc"
}

ReceivedAsset_min_fields

Description

aggregate min on columns

Fields
Field Name Description
asset_id - String
blockNumber - Int
createdBlockNumber - Int
createdTimestamp - Int
createdTransactionIndex - Int
db_write_timestamp - timestamp
id - String
index - Int
interfaceId - String
profile_id - String
updatedBlockNumber - Int
updatedTimestamp - Int
updatedTransactionIndex - Int
Example
{
  "asset_id": "xyz789",
  "blockNumber": 987,
  "createdBlockNumber": 123,
  "createdTimestamp": 123,
  "createdTransactionIndex": 123,
  "db_write_timestamp": timestamp,
  "id": "abc123",
  "index": 987,
  "interfaceId": "xyz789",
  "profile_id": "abc123",
  "updatedBlockNumber": 987,
  "updatedTimestamp": 123,
  "updatedTransactionIndex": 123
}

ReceivedAsset_min_order_by

Description

order by min() on columns of table "ReceivedAsset"

Fields
Input Field Description
asset_id - order_by
blockNumber - order_by
createdBlockNumber - order_by
createdTimestamp - order_by
createdTransactionIndex - order_by
db_write_timestamp - order_by
id - order_by
index - order_by
interfaceId - order_by
profile_id - order_by
updatedBlockNumber - order_by
updatedTimestamp - order_by
updatedTransactionIndex - order_by
Example
{
  "asset_id": "asc",
  "blockNumber": "asc",
  "createdBlockNumber": "asc",
  "createdTimestamp": "asc",
  "createdTransactionIndex": "asc",
  "db_write_timestamp": "asc",
  "id": "asc",
  "index": "asc",
  "interfaceId": "asc",
  "profile_id": "asc",
  "updatedBlockNumber": "asc",
  "updatedTimestamp": "asc",
  "updatedTransactionIndex": "asc"
}

ReceivedAsset_order_by

Description

Ordering options when selecting data from "ReceivedAsset".

Fields
Input Field Description
asset - Asset_order_by
asset_id - order_by
blockNumber - order_by
createdBlockNumber - order_by
createdTimestamp - order_by
createdTransactionIndex - order_by
db_write_timestamp - order_by
id - order_by
index - order_by
interfaceId - order_by
profile - Profile_order_by
profile_id - order_by
updatedBlockNumber - order_by
updatedTimestamp - order_by
updatedTransactionIndex - order_by
Example
{
  "asset": Asset_order_by,
  "asset_id": "asc",
  "blockNumber": "asc",
  "createdBlockNumber": "asc",
  "createdTimestamp": "asc",
  "createdTransactionIndex": "asc",
  "db_write_timestamp": "asc",
  "id": "asc",
  "index": "asc",
  "interfaceId": "asc",
  "profile": Profile_order_by,
  "profile_id": "asc",
  "updatedBlockNumber": "asc",
  "updatedTimestamp": "asc",
  "updatedTransactionIndex": "asc"
}

ReceivedAsset_select_column

Description

select columns of table "ReceivedAsset"

Values
Enum Value Description

asset_id

column name

blockNumber

column name

createdBlockNumber

column name

createdTimestamp

column name

createdTransactionIndex

column name

db_write_timestamp

column name

id

column name

index

column name

interfaceId

column name

profile_id

column name

updatedBlockNumber

column name

updatedTimestamp

column name

updatedTransactionIndex

column name
Example
"asset_id"

ReceivedAsset_stddev_fields

Description

aggregate stddev on columns

Fields
Field Name Description
blockNumber - Float
createdBlockNumber - Float
createdTimestamp - Float
createdTransactionIndex - Float
index - Float
updatedBlockNumber - Float
updatedTimestamp - Float
updatedTransactionIndex - Float
Example
{
  "blockNumber": 987.65,
  "createdBlockNumber": 987.65,
  "createdTimestamp": 123.45,
  "createdTransactionIndex": 123.45,
  "index": 123.45,
  "updatedBlockNumber": 987.65,
  "updatedTimestamp": 987.65,
  "updatedTransactionIndex": 987.65
}

ReceivedAsset_stddev_order_by

Description

order by stddev() on columns of table "ReceivedAsset"

Fields
Input Field Description
blockNumber - order_by
createdBlockNumber - order_by
createdTimestamp - order_by
createdTransactionIndex - order_by
index - order_by
updatedBlockNumber - order_by
updatedTimestamp - order_by
updatedTransactionIndex - order_by
Example
{
  "blockNumber": "asc",
  "createdBlockNumber": "asc",
  "createdTimestamp": "asc",
  "createdTransactionIndex": "asc",
  "index": "asc",
  "updatedBlockNumber": "asc",
  "updatedTimestamp": "asc",
  "updatedTransactionIndex": "asc"
}

ReceivedAsset_stddev_pop_fields

Description

aggregate stddev_pop on columns

Fields
Field Name Description
blockNumber - Float
createdBlockNumber - Float
createdTimestamp - Float
createdTransactionIndex - Float
index - Float
updatedBlockNumber - Float
updatedTimestamp - Float
updatedTransactionIndex - Float
Example
{
  "blockNumber": 987.65,
  "createdBlockNumber": 987.65,
  "createdTimestamp": 123.45,
  "createdTransactionIndex": 123.45,
  "index": 123.45,
  "updatedBlockNumber": 123.45,
  "updatedTimestamp": 987.65,
  "updatedTransactionIndex": 987.65
}

ReceivedAsset_stddev_pop_order_by

Description

order by stddev_pop() on columns of table "ReceivedAsset"

Fields
Input Field Description
blockNumber - order_by
createdBlockNumber - order_by
createdTimestamp - order_by
createdTransactionIndex - order_by
index - order_by
updatedBlockNumber - order_by
updatedTimestamp - order_by
updatedTransactionIndex - order_by
Example
{
  "blockNumber": "asc",
  "createdBlockNumber": "asc",
  "createdTimestamp": "asc",
  "createdTransactionIndex": "asc",
  "index": "asc",
  "updatedBlockNumber": "asc",
  "updatedTimestamp": "asc",
  "updatedTransactionIndex": "asc"
}

ReceivedAsset_stddev_samp_fields

Description

aggregate stddev_samp on columns

Fields
Field Name Description
blockNumber - Float
createdBlockNumber - Float
createdTimestamp - Float
createdTransactionIndex - Float
index - Float
updatedBlockNumber - Float
updatedTimestamp - Float
updatedTransactionIndex - Float
Example
{
  "blockNumber": 123.45,
  "createdBlockNumber": 987.65,
  "createdTimestamp": 123.45,
  "createdTransactionIndex": 987.65,
  "index": 987.65,
  "updatedBlockNumber": 123.45,
  "updatedTimestamp": 123.45,
  "updatedTransactionIndex": 987.65
}

ReceivedAsset_stddev_samp_order_by

Description

order by stddev_samp() on columns of table "ReceivedAsset"

Fields
Input Field Description
blockNumber - order_by
createdBlockNumber - order_by
createdTimestamp - order_by
createdTransactionIndex - order_by
index - order_by
updatedBlockNumber - order_by
updatedTimestamp - order_by
updatedTransactionIndex - order_by
Example
{
  "blockNumber": "asc",
  "createdBlockNumber": "asc",
  "createdTimestamp": "asc",
  "createdTransactionIndex": "asc",
  "index": "asc",
  "updatedBlockNumber": "asc",
  "updatedTimestamp": "asc",
  "updatedTransactionIndex": "asc"
}

ReceivedAsset_stream_cursor_input

Description

Streaming cursor of the table "ReceivedAsset"

Fields
Input Field Description
initial_value - ReceivedAsset_stream_cursor_value_input! Stream column input with initial value
ordering - cursor_ordering cursor ordering
Example
{
  "initial_value": ReceivedAsset_stream_cursor_value_input,
  "ordering": "ASC"
}

ReceivedAsset_stream_cursor_value_input

Description

Initial value of the column from where the streaming should start

Fields
Input Field Description
asset_id - String
blockNumber - Int
createdBlockNumber - Int
createdTimestamp - Int
createdTransactionIndex - Int
db_write_timestamp - timestamp
id - String
index - Int
interfaceId - String
profile_id - String
updatedBlockNumber - Int
updatedTimestamp - Int
updatedTransactionIndex - Int
Example
{
  "asset_id": "xyz789",
  "blockNumber": 123,
  "createdBlockNumber": 123,
  "createdTimestamp": 123,
  "createdTransactionIndex": 987,
  "db_write_timestamp": timestamp,
  "id": "abc123",
  "index": 123,
  "interfaceId": "abc123",
  "profile_id": "abc123",
  "updatedBlockNumber": 987,
  "updatedTimestamp": 123,
  "updatedTransactionIndex": 123
}

ReceivedAsset_sum_fields

Description

aggregate sum on columns

Fields
Field Name Description
blockNumber - Int
createdBlockNumber - Int
createdTimestamp - Int
createdTransactionIndex - Int
index - Int
updatedBlockNumber - Int
updatedTimestamp - Int
updatedTransactionIndex - Int
Example
{
  "blockNumber": 123,
  "createdBlockNumber": 987,
  "createdTimestamp": 987,
  "createdTransactionIndex": 123,
  "index": 123,
  "updatedBlockNumber": 987,
  "updatedTimestamp": 987,
  "updatedTransactionIndex": 987
}

ReceivedAsset_sum_order_by

Description

order by sum() on columns of table "ReceivedAsset"

Fields
Input Field Description
blockNumber - order_by
createdBlockNumber - order_by
createdTimestamp - order_by
createdTransactionIndex - order_by
index - order_by
updatedBlockNumber - order_by
updatedTimestamp - order_by
updatedTransactionIndex - order_by
Example
{
  "blockNumber": "asc",
  "createdBlockNumber": "asc",
  "createdTimestamp": "asc",
  "createdTransactionIndex": "asc",
  "index": "asc",
  "updatedBlockNumber": "asc",
  "updatedTimestamp": "asc",
  "updatedTransactionIndex": "asc"
}

ReceivedAsset_var_pop_fields

Description

aggregate var_pop on columns

Fields
Field Name Description
blockNumber - Float
createdBlockNumber - Float
createdTimestamp - Float
createdTransactionIndex - Float
index - Float
updatedBlockNumber - Float
updatedTimestamp - Float
updatedTransactionIndex - Float
Example
{
  "blockNumber": 123.45,
  "createdBlockNumber": 123.45,
  "createdTimestamp": 123.45,
  "createdTransactionIndex": 123.45,
  "index": 987.65,
  "updatedBlockNumber": 987.65,
  "updatedTimestamp": 123.45,
  "updatedTransactionIndex": 123.45
}

ReceivedAsset_var_pop_order_by

Description

order by var_pop() on columns of table "ReceivedAsset"

Fields
Input Field Description
blockNumber - order_by
createdBlockNumber - order_by
createdTimestamp - order_by
createdTransactionIndex - order_by
index - order_by
updatedBlockNumber - order_by
updatedTimestamp - order_by
updatedTransactionIndex - order_by
Example
{
  "blockNumber": "asc",
  "createdBlockNumber": "asc",
  "createdTimestamp": "asc",
  "createdTransactionIndex": "asc",
  "index": "asc",
  "updatedBlockNumber": "asc",
  "updatedTimestamp": "asc",
  "updatedTransactionIndex": "asc"
}

ReceivedAsset_var_samp_fields

Description

aggregate var_samp on columns

Fields
Field Name Description
blockNumber - Float
createdBlockNumber - Float
createdTimestamp - Float
createdTransactionIndex - Float
index - Float
updatedBlockNumber - Float
updatedTimestamp - Float
updatedTransactionIndex - Float
Example
{
  "blockNumber": 123.45,
  "createdBlockNumber": 987.65,
  "createdTimestamp": 123.45,
  "createdTransactionIndex": 987.65,
  "index": 987.65,
  "updatedBlockNumber": 123.45,
  "updatedTimestamp": 123.45,
  "updatedTransactionIndex": 987.65
}

ReceivedAsset_var_samp_order_by

Description

order by var_samp() on columns of table "ReceivedAsset"

Fields
Input Field Description
blockNumber - order_by
createdBlockNumber - order_by
createdTimestamp - order_by
createdTransactionIndex - order_by
index - order_by
updatedBlockNumber - order_by
updatedTimestamp - order_by
updatedTransactionIndex - order_by
Example
{
  "blockNumber": "asc",
  "createdBlockNumber": "asc",
  "createdTimestamp": "asc",
  "createdTransactionIndex": "asc",
  "index": "asc",
  "updatedBlockNumber": "asc",
  "updatedTimestamp": "asc",
  "updatedTransactionIndex": "asc"
}

ReceivedAsset_variance_fields

Description

aggregate variance on columns

Fields
Field Name Description
blockNumber - Float
createdBlockNumber - Float
createdTimestamp - Float
createdTransactionIndex - Float
index - Float
updatedBlockNumber - Float
updatedTimestamp - Float
updatedTransactionIndex - Float
Example
{
  "blockNumber": 123.45,
  "createdBlockNumber": 987.65,
  "createdTimestamp": 987.65,
  "createdTransactionIndex": 987.65,
  "index": 987.65,
  "updatedBlockNumber": 123.45,
  "updatedTimestamp": 123.45,
  "updatedTransactionIndex": 987.65
}

ReceivedAsset_variance_order_by

Description

order by variance() on columns of table "ReceivedAsset"

Fields
Input Field Description
blockNumber - order_by
createdBlockNumber - order_by
createdTimestamp - order_by
createdTransactionIndex - order_by
index - order_by
updatedBlockNumber - order_by
updatedTimestamp - order_by
updatedTransactionIndex - order_by
Example
{
  "blockNumber": "asc",
  "createdBlockNumber": "asc",
  "createdTimestamp": "asc",
  "createdTransactionIndex": "asc",
  "index": "asc",
  "updatedBlockNumber": "asc",
  "updatedTimestamp": "asc",
  "updatedTransactionIndex": "asc"
}

ReceiverDelegate

Description

columns and relationships of "ReceiverDelegate"

Fields
Field Name Description
blockNumber - Int!
db_write_timestamp - timestamp
delegate - String
id - String!
profile - Profile An object relationship
profile_id - String
typeId - String
Example
{
  "blockNumber": 987,
  "db_write_timestamp": timestamp,
  "delegate": "abc123",
  "id": "xyz789",
  "profile": Profile,
  "profile_id": "abc123",
  "typeId": "xyz789"
}

ReceiverDelegate_aggregate

Description

aggregated selection of "ReceiverDelegate"

Fields
Field Name Description
aggregate - ReceiverDelegate_aggregate_fields
nodes - [ReceiverDelegate!]!
Example
{
  "aggregate": ReceiverDelegate_aggregate_fields,
  "nodes": [ReceiverDelegate]
}

ReceiverDelegate_aggregate_bool_exp

Fields
Input Field Description
count - ReceiverDelegate_aggregate_bool_exp_count
Example
{"count": ReceiverDelegate_aggregate_bool_exp_count}

ReceiverDelegate_aggregate_bool_exp_count

Fields
Input Field Description
arguments - [ReceiverDelegate_select_column!]
distinct - Boolean
filter - ReceiverDelegate_bool_exp
predicate - Int_comparison_exp!
Example
{
  "arguments": ["blockNumber"],
  "distinct": true,
  "filter": ReceiverDelegate_bool_exp,
  "predicate": Int_comparison_exp
}

ReceiverDelegate_aggregate_fields

Example
{
  "avg": ReceiverDelegate_avg_fields,
  "count": 123,
  "max": ReceiverDelegate_max_fields,
  "min": ReceiverDelegate_min_fields,
  "stddev": ReceiverDelegate_stddev_fields,
  "stddev_pop": ReceiverDelegate_stddev_pop_fields,
  "stddev_samp": ReceiverDelegate_stddev_samp_fields,
  "sum": ReceiverDelegate_sum_fields,
  "var_pop": ReceiverDelegate_var_pop_fields,
  "var_samp": ReceiverDelegate_var_samp_fields,
  "variance": ReceiverDelegate_variance_fields
}

ReceiverDelegate_aggregate_order_by

Example
{
  "avg": ReceiverDelegate_avg_order_by,
  "count": "asc",
  "max": ReceiverDelegate_max_order_by,
  "min": ReceiverDelegate_min_order_by,
  "stddev": ReceiverDelegate_stddev_order_by,
  "stddev_pop": ReceiverDelegate_stddev_pop_order_by,
  "stddev_samp": ReceiverDelegate_stddev_samp_order_by,
  "sum": ReceiverDelegate_sum_order_by,
  "var_pop": ReceiverDelegate_var_pop_order_by,
  "var_samp": ReceiverDelegate_var_samp_order_by,
  "variance": ReceiverDelegate_variance_order_by
}

ReceiverDelegate_avg_fields

Description

aggregate avg on columns

Fields
Field Name Description
blockNumber - Float
Example
{"blockNumber": 123.45}

ReceiverDelegate_avg_order_by

Description

order by avg() on columns of table "ReceiverDelegate"

Fields
Input Field Description
blockNumber - order_by
Example
{"blockNumber": "asc"}

ReceiverDelegate_bool_exp

Description

Boolean expression to filter rows from the table "ReceiverDelegate". All fields are combined with a logical 'AND'.

Example
{
  "_and": [ReceiverDelegate_bool_exp],
  "_not": ReceiverDelegate_bool_exp,
  "_or": [ReceiverDelegate_bool_exp],
  "blockNumber": Int_comparison_exp,
  "db_write_timestamp": timestamp_comparison_exp,
  "delegate": String_comparison_exp,
  "id": String_comparison_exp,
  "profile": Profile_bool_exp,
  "profile_id": String_comparison_exp,
  "typeId": String_comparison_exp
}

ReceiverDelegate_max_fields

Description

aggregate max on columns

Fields
Field Name Description
blockNumber - Int
db_write_timestamp - timestamp
delegate - String
id - String
profile_id - String
typeId - String
Example
{
  "blockNumber": 123,
  "db_write_timestamp": timestamp,
  "delegate": "abc123",
  "id": "abc123",
  "profile_id": "xyz789",
  "typeId": "abc123"
}

ReceiverDelegate_max_order_by

Description

order by max() on columns of table "ReceiverDelegate"

Fields
Input Field Description
blockNumber - order_by
db_write_timestamp - order_by
delegate - order_by
id - order_by
profile_id - order_by
typeId - order_by
Example
{
  "blockNumber": "asc",
  "db_write_timestamp": "asc",
  "delegate": "asc",
  "id": "asc",
  "profile_id": "asc",
  "typeId": "asc"
}

ReceiverDelegate_min_fields

Description

aggregate min on columns

Fields
Field Name Description
blockNumber - Int
db_write_timestamp - timestamp
delegate - String
id - String
profile_id - String
typeId - String
Example
{
  "blockNumber": 123,
  "db_write_timestamp": timestamp,
  "delegate": "abc123",
  "id": "abc123",
  "profile_id": "abc123",
  "typeId": "xyz789"
}

ReceiverDelegate_min_order_by

Description

order by min() on columns of table "ReceiverDelegate"

Fields
Input Field Description
blockNumber - order_by
db_write_timestamp - order_by
delegate - order_by
id - order_by
profile_id - order_by
typeId - order_by
Example
{
  "blockNumber": "asc",
  "db_write_timestamp": "asc",
  "delegate": "asc",
  "id": "asc",
  "profile_id": "asc",
  "typeId": "asc"
}

ReceiverDelegate_order_by

Description

Ordering options when selecting data from "ReceiverDelegate".

Fields
Input Field Description
blockNumber - order_by
db_write_timestamp - order_by
delegate - order_by
id - order_by
profile - Profile_order_by
profile_id - order_by
typeId - order_by
Example
{
  "blockNumber": "asc",
  "db_write_timestamp": "asc",
  "delegate": "asc",
  "id": "asc",
  "profile": Profile_order_by,
  "profile_id": "asc",
  "typeId": "asc"
}

ReceiverDelegate_select_column

Description

select columns of table "ReceiverDelegate"

Values
Enum Value Description

blockNumber

column name

db_write_timestamp

column name

delegate

column name

id

column name

profile_id

column name

typeId

column name
Example
"blockNumber"

ReceiverDelegate_stddev_fields

Description

aggregate stddev on columns

Fields
Field Name Description
blockNumber - Float
Example
{"blockNumber": 987.65}

ReceiverDelegate_stddev_order_by

Description

order by stddev() on columns of table "ReceiverDelegate"

Fields
Input Field Description
blockNumber - order_by
Example
{"blockNumber": "asc"}

ReceiverDelegate_stddev_pop_fields

Description

aggregate stddev_pop on columns

Fields
Field Name Description
blockNumber - Float
Example
{"blockNumber": 123.45}

ReceiverDelegate_stddev_pop_order_by

Description

order by stddev_pop() on columns of table "ReceiverDelegate"

Fields
Input Field Description
blockNumber - order_by
Example
{"blockNumber": "asc"}

ReceiverDelegate_stddev_samp_fields

Description

aggregate stddev_samp on columns

Fields
Field Name Description
blockNumber - Float
Example
{"blockNumber": 987.65}

ReceiverDelegate_stddev_samp_order_by

Description

order by stddev_samp() on columns of table "ReceiverDelegate"

Fields
Input Field Description
blockNumber - order_by
Example
{"blockNumber": "asc"}

ReceiverDelegate_stream_cursor_input

Description

Streaming cursor of the table "ReceiverDelegate"

Fields
Input Field Description
initial_value - ReceiverDelegate_stream_cursor_value_input! Stream column input with initial value
ordering - cursor_ordering cursor ordering
Example
{
  "initial_value": ReceiverDelegate_stream_cursor_value_input,
  "ordering": "ASC"
}

ReceiverDelegate_stream_cursor_value_input

Description

Initial value of the column from where the streaming should start

Fields
Input Field Description
blockNumber - Int
db_write_timestamp - timestamp
delegate - String
id - String
profile_id - String
typeId - String
Example
{
  "blockNumber": 123,
  "db_write_timestamp": timestamp,
  "delegate": "abc123",
  "id": "xyz789",
  "profile_id": "xyz789",
  "typeId": "abc123"
}

ReceiverDelegate_sum_fields

Description

aggregate sum on columns

Fields
Field Name Description
blockNumber - Int
Example
{"blockNumber": 123}

ReceiverDelegate_sum_order_by

Description

order by sum() on columns of table "ReceiverDelegate"

Fields
Input Field Description
blockNumber - order_by
Example
{"blockNumber": "asc"}

ReceiverDelegate_var_pop_fields

Description

aggregate var_pop on columns

Fields
Field Name Description
blockNumber - Float
Example
{"blockNumber": 123.45}

ReceiverDelegate_var_pop_order_by

Description

order by var_pop() on columns of table "ReceiverDelegate"

Fields
Input Field Description
blockNumber - order_by
Example
{"blockNumber": "asc"}

ReceiverDelegate_var_samp_fields

Description

aggregate var_samp on columns

Fields
Field Name Description
blockNumber - Float
Example
{"blockNumber": 123.45}

ReceiverDelegate_var_samp_order_by

Description

order by var_samp() on columns of table "ReceiverDelegate"

Fields
Input Field Description
blockNumber - order_by
Example
{"blockNumber": "asc"}

ReceiverDelegate_variance_fields

Description

aggregate variance on columns

Fields
Field Name Description
blockNumber - Float
Example
{"blockNumber": 123.45}

ReceiverDelegate_variance_order_by

Description

order by variance() on columns of table "ReceiverDelegate"

Fields
Input Field Description
blockNumber - order_by
Example
{"blockNumber": "asc"}

String

Description

The String scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.

Example
"abc123"

String_array_comparison_exp

Description

Boolean expression to compare columns of type "String". All fields are combined with logical 'AND'.

Fields
Input Field Description
_contained_in - [String!] is the array contained in the given array value
_contains - [String!] does the array contain the given value
_eq - [String!]
_gt - [String!]
_gte - [String!]
_in - [String!]
_is_null - Boolean
_lt - [String!]
_lte - [String!]
_neq - [String!]
_nin - [String!]
Example
{
  "_contained_in": ["xyz789"],
  "_contains": ["xyz789"],
  "_eq": ["abc123"],
  "_gt": ["xyz789"],
  "_gte": ["xyz789"],
  "_in": ["abc123"],
  "_is_null": false,
  "_lt": ["abc123"],
  "_lte": ["abc123"],
  "_neq": ["xyz789"],
  "_nin": ["xyz789"]
}

String_comparison_exp

Description

Boolean expression to compare columns of type "String". All fields are combined with logical 'AND'.

Fields
Input Field Description
_eq - String
_gt - String
_gte - String
_ilike - String does the column match the given case-insensitive pattern
_in - [String!]
_iregex - String does the column match the given POSIX regular expression, case insensitive
_is_null - Boolean
_like - String does the column match the given pattern
_lt - String
_lte - String
_neq - String
_nilike - String does the column NOT match the given case-insensitive pattern
_nin - [String!]
_niregex - String does the column NOT match the given POSIX regular expression, case insensitive
_nlike - String does the column NOT match the given pattern
_nregex - String does the column NOT match the given POSIX regular expression, case sensitive
_nsimilar - String does the column NOT match the given SQL regular expression
_regex - String does the column match the given POSIX regular expression, case sensitive
_similar - String does the column match the given SQL regular expression
Example
{
  "_eq": "xyz789",
  "_gt": "abc123",
  "_gte": "abc123",
  "_ilike": "xyz789",
  "_in": ["abc123"],
  "_iregex": "xyz789",
  "_is_null": false,
  "_like": "xyz789",
  "_lt": "xyz789",
  "_lte": "abc123",
  "_neq": "abc123",
  "_nilike": "xyz789",
  "_nin": ["xyz789"],
  "_niregex": "abc123",
  "_nlike": "abc123",
  "_nregex": "xyz789",
  "_nsimilar": "xyz789",
  "_regex": "abc123",
  "_similar": "abc123"
}

Token

Description

columns and relationships of "Token"

Fields
Field Name Description
appHistory - [AppHistory!]! An array relationship
Arguments
distinct_on - [AppHistory_select_column!]

distinct select on columns

limit - Int

limit the number of rows returned

offset - Int

skip the first n rows. Use only with order_by

order_by - [AppHistory_order_by!]

sort the rows by one or more columns

where - AppHistory_bool_exp

filter the rows returned

appHistory_aggregate - AppHistory_aggregate! An aggregate relationship
Arguments
distinct_on - [AppHistory_select_column!]

distinct select on columns

limit - Int

limit the number of rows returned

offset - Int

skip the first n rows. Use only with order_by

order_by - [AppHistory_order_by!]

sort the rows by one or more columns

where - AppHistory_bool_exp

filter the rows returned

appInstalls - [AppInstall!]! An array relationship
Arguments
distinct_on - [AppInstall_select_column!]

distinct select on columns

limit - Int

limit the number of rows returned

offset - Int

skip the first n rows. Use only with order_by

order_by - [AppInstall_order_by!]

sort the rows by one or more columns

where - AppInstall_bool_exp

filter the rows returned

appInstalls_aggregate - AppInstall_aggregate! An aggregate relationship
Arguments
distinct_on - [AppInstall_select_column!]

distinct select on columns

limit - Int

limit the number of rows returned

offset - Int

skip the first n rows. Use only with order_by

order_by - [AppInstall_order_by!]

sort the rows by one or more columns

where - AppInstall_bool_exp

filter the rows returned

asset - Asset An object relationship
asset_id - String
assets - [TokenAssetURL!]! An array relationship
Arguments
distinct_on - [TokenAssetURL_select_column!]

distinct select on columns

limit - Int

limit the number of rows returned

offset - Int

skip the first n rows. Use only with order_by

order_by - [TokenAssetURL_order_by!]

sort the rows by one or more columns

where - TokenAssetURL_bool_exp

filter the rows returned

assets_ - [String!]
assets_aggregate - TokenAssetURL_aggregate! An aggregate relationship
Arguments
distinct_on - [TokenAssetURL_select_column!]

distinct select on columns

limit - Int

limit the number of rows returned

offset - Int

skip the first n rows. Use only with order_by

order_by - [TokenAssetURL_order_by!]

sort the rows by one or more columns

where - TokenAssetURL_bool_exp

filter the rows returned

attributes - [TokenAttribute!]! An array relationship
Arguments
distinct_on - [TokenAttribute_select_column!]

distinct select on columns

limit - Int

limit the number of rows returned

offset - Int

skip the first n rows. Use only with order_by

order_by - [TokenAttribute_order_by!]

sort the rows by one or more columns

where - TokenAttribute_bool_exp

filter the rows returned

attributes_ - [String!]
attributes_aggregate - TokenAttribute_aggregate! An aggregate relationship
Arguments
distinct_on - [TokenAttribute_select_column!]

distinct select on columns

limit - Int

limit the number of rows returned

offset - Int

skip the first n rows. Use only with order_by

order_by - [TokenAttribute_order_by!]

sort the rows by one or more columns

where - TokenAttribute_bool_exp

filter the rows returned

backgroundImages - [TokenBackgroundImageURL!]! An array relationship
Arguments
distinct_on - [TokenBackgroundImageURL_select_column!]

distinct select on columns

limit - Int

limit the number of rows returned

offset - Int

skip the first n rows. Use only with order_by

order_by - [TokenBackgroundImageURL_order_by!]

sort the rows by one or more columns

where - TokenBackgroundImageURL_bool_exp

filter the rows returned

backgroundImages_ - [String!]
baseAsset - Asset An object relationship
baseAsset_id - String
baseUriChanged - Boolean
blockNumber - Int!
category - String
createdBlockNumber - Int!
createdTimestamp - Int!
createdTransactionIndex - Int!
data - String
db_write_timestamp - timestamp
description - String
error - String
formattedTokenId - String
holders - [Hold!]! An array relationship
Arguments
distinct_on - [Hold_select_column!]

distinct select on columns

limit - Int

limit the number of rows returned

offset - Int

skip the first n rows. Use only with order_by

order_by - [Hold_order_by!]

sort the rows by one or more columns

where - Hold_bool_exp

filter the rows returned

holders_aggregate - Hold_aggregate! An aggregate relationship
Arguments
distinct_on - [Hold_select_column!]

distinct select on columns

limit - Int

limit the number of rows returned

offset - Int

skip the first n rows. Use only with order_by

order_by - [Hold_order_by!]

sort the rows by one or more columns

where - Hold_bool_exp

filter the rows returned

icons - [TokenIconURL!]! An array relationship
Arguments
distinct_on - [TokenIconURL_select_column!]

distinct select on columns

limit - Int

limit the number of rows returned

offset - Int

skip the first n rows. Use only with order_by

order_by - [TokenIconURL_order_by!]

sort the rows by one or more columns

where - TokenIconURL_bool_exp

filter the rows returned

icons_ - [String!]
icons_aggregate - TokenIconURL_aggregate! An aggregate relationship
Arguments
distinct_on - [TokenIconURL_select_column!]

distinct select on columns

limit - Int

limit the number of rows returned

offset - Int

skip the first n rows. Use only with order_by

order_by - [TokenIconURL_order_by!]

sort the rows by one or more columns

where - TokenIconURL_bool_exp

filter the rows returned

id - String!
images - [TokenImageURL!]! An array relationship
Arguments
distinct_on - [TokenImageURL_select_column!]

distinct select on columns

limit - Int

limit the number of rows returned

offset - Int

skip the first n rows. Use only with order_by

order_by - [TokenImageURL_order_by!]

sort the rows by one or more columns

where - TokenImageURL_bool_exp

filter the rows returned

images_ - [String!]
images_aggregate - TokenImageURL_aggregate! An aggregate relationship
Arguments
distinct_on - [TokenImageURL_select_column!]

distinct select on columns

limit - Int

limit the number of rows returned

offset - Int

skip the first n rows. Use only with order_by

order_by - [TokenImageURL_order_by!]

sort the rows by one or more columns

where - TokenImageURL_bool_exp

filter the rows returned

links - [TokenLink!]! An array relationship
Arguments
distinct_on - [TokenLink_select_column!]

distinct select on columns

limit - Int

limit the number of rows returned

offset - Int

skip the first n rows. Use only with order_by

order_by - [TokenLink_order_by!]

sort the rows by one or more columns

where - TokenLink_bool_exp

filter the rows returned

links_ - [String!]
links_aggregate - TokenLink_aggregate! An aggregate relationship
Arguments
distinct_on - [TokenLink_select_column!]

distinct select on columns

limit - Int

limit the number of rows returned

offset - Int

skip the first n rows. Use only with order_by

order_by - [TokenLink_order_by!]

sort the rows by one or more columns

where - TokenLink_bool_exp

filter the rows returned

lsp4Creators - [TokenCreators!]! An array relationship
Arguments
distinct_on - [TokenCreators_select_column!]

distinct select on columns

limit - Int

limit the number of rows returned

offset - Int

skip the first n rows. Use only with order_by

order_by - [TokenCreators_order_by!]

sort the rows by one or more columns

where - TokenCreators_bool_exp

filter the rows returned

lsp4CreatorsMap - [TokenCreators!]! An array relationship
Arguments
distinct_on - [TokenCreators_select_column!]

distinct select on columns

limit - Int

limit the number of rows returned

offset - Int

skip the first n rows. Use only with order_by

order_by - [TokenCreators_order_by!]

sort the rows by one or more columns

where - TokenCreators_bool_exp

filter the rows returned

lsp4CreatorsMap_aggregate - TokenCreators_aggregate! An aggregate relationship
Arguments
distinct_on - [TokenCreators_select_column!]

distinct select on columns

limit - Int

limit the number of rows returned

offset - Int

skip the first n rows. Use only with order_by

order_by - [TokenCreators_order_by!]

sort the rows by one or more columns

where - TokenCreators_bool_exp

filter the rows returned

lsp4Creators_ - [String!]
lsp4Creators_aggregate - TokenCreators_aggregate! An aggregate relationship
Arguments
distinct_on - [TokenCreators_select_column!]

distinct select on columns

limit - Int

limit the number of rows returned

offset - Int

skip the first n rows. Use only with order_by

order_by - [TokenCreators_order_by!]

sort the rows by one or more columns

where - TokenCreators_bool_exp

filter the rows returned

lsp4TokenName - String
lsp4TokenSymbol - String
lsp4TokenType - Int
lsp8ReferenceContract - Asset An object relationship
lsp8ReferenceContractSelf - String
lsp8ReferenceContract_id - String
lsp8TokenIdFormat - Int
method - String
name - String
src - String
supportedStandardsLsp4DigitalAsset - Boolean
tokenId - String!
transfers - [Transfer!]! An array relationship
Arguments
distinct_on - [Transfer_select_column!]

distinct select on columns

limit - Int

limit the number of rows returned

offset - Int

skip the first n rows. Use only with order_by

order_by - [Transfer_order_by!]

sort the rows by one or more columns

where - Transfer_bool_exp

filter the rows returned

transfers_aggregate - Transfer_aggregate! An aggregate relationship
Arguments
distinct_on - [Transfer_select_column!]

distinct select on columns

limit - Int

limit the number of rows returned

offset - Int

skip the first n rows. Use only with order_by

order_by - [Transfer_order_by!]

sort the rows by one or more columns

where - Transfer_bool_exp

filter the rows returned

updatedBlockNumber - Int
updatedTimestamp - Int
updatedTransactionIndex - Int
url - String
Example
{
  "appHistory": [AppHistory],
  "appHistory_aggregate": AppHistory_aggregate,
  "appInstalls": [AppInstall],
  "appInstalls_aggregate": AppInstall_aggregate,
  "asset": Asset,
  "asset_id": "xyz789",
  "assets": [TokenAssetURL],
  "assets_": ["xyz789"],
  "assets_aggregate": TokenAssetURL_aggregate,
  "attributes": [TokenAttribute],
  "attributes_": ["xyz789"],
  "attributes_aggregate": TokenAttribute_aggregate,
  "backgroundImages": [TokenBackgroundImageURL],
  "backgroundImages_": ["abc123"],
  "baseAsset": Asset,
  "baseAsset_id": "xyz789",
  "baseUriChanged": false,
  "blockNumber": 123,
  "category": "abc123",
  "createdBlockNumber": 123,
  "createdTimestamp": 123,
  "createdTransactionIndex": 987,
  "data": "abc123",
  "db_write_timestamp": timestamp,
  "description": "abc123",
  "error": "xyz789",
  "formattedTokenId": "abc123",
  "holders": [Hold],
  "holders_aggregate": Hold_aggregate,
  "icons": [TokenIconURL],
  "icons_": ["xyz789"],
  "icons_aggregate": TokenIconURL_aggregate,
  "id": "abc123",
  "images": [TokenImageURL],
  "images_": ["abc123"],
  "images_aggregate": TokenImageURL_aggregate,
  "links": [TokenLink],
  "links_": ["xyz789"],
  "links_aggregate": TokenLink_aggregate,
  "lsp4Creators": [TokenCreators],
  "lsp4CreatorsMap": [TokenCreators],
  "lsp4CreatorsMap_aggregate": TokenCreators_aggregate,
  "lsp4Creators_": ["abc123"],
  "lsp4Creators_aggregate": TokenCreators_aggregate,
  "lsp4TokenName": "abc123",
  "lsp4TokenSymbol": "abc123",
  "lsp4TokenType": 123,
  "lsp8ReferenceContract": Asset,
  "lsp8ReferenceContractSelf": "xyz789",
  "lsp8ReferenceContract_id": "abc123",
  "lsp8TokenIdFormat": 123,
  "method": "abc123",
  "name": "xyz789",
  "src": "abc123",
  "supportedStandardsLsp4DigitalAsset": false,
  "tokenId": "abc123",
  "transfers": [Transfer],
  "transfers_aggregate": Transfer_aggregate,
  "updatedBlockNumber": 987,
  "updatedTimestamp": 987,
  "updatedTransactionIndex": 987,
  "url": "abc123"
}

TokenAssetURL

Description

columns and relationships of "TokenAssetURL"

Fields
Field Name Description
blockNumber - Int!
contentAsset - Asset An object relationship
contentAsset_id - String
contentToken - Token An object relationship
contentToken_id - String
data - String
db_write_timestamp - timestamp
error - String
fileType - String
height - Int
id - String!
method - String
src - String
token - Token An object relationship
token_id - String!
url - String
verified - verificationstatus!
width - Int
Example
{
  "blockNumber": 987,
  "contentAsset": Asset,
  "contentAsset_id": "abc123",
  "contentToken": Token,
  "contentToken_id": "abc123",
  "data": "abc123",
  "db_write_timestamp": timestamp,
  "error": "abc123",
  "fileType": "xyz789",
  "height": 123,
  "id": "abc123",
  "method": "xyz789",
  "src": "abc123",
  "token": Token,
  "token_id": "abc123",
  "url": "abc123",
  "verified": verificationstatus,
  "width": 123
}

TokenAssetURL_aggregate

Description

aggregated selection of "TokenAssetURL"

Fields
Field Name Description
aggregate - TokenAssetURL_aggregate_fields
nodes - [TokenAssetURL!]!
Example
{
  "aggregate": TokenAssetURL_aggregate_fields,
  "nodes": [TokenAssetURL]
}

TokenAssetURL_aggregate_bool_exp

Fields
Input Field Description
count - TokenAssetURL_aggregate_bool_exp_count
Example
{"count": TokenAssetURL_aggregate_bool_exp_count}

TokenAssetURL_aggregate_bool_exp_count

Fields
Input Field Description
arguments - [TokenAssetURL_select_column!]
distinct - Boolean
filter - TokenAssetURL_bool_exp
predicate - Int_comparison_exp!
Example
{
  "arguments": ["blockNumber"],
  "distinct": false,
  "filter": TokenAssetURL_bool_exp,
  "predicate": Int_comparison_exp
}

TokenAssetURL_aggregate_fields

Description

aggregate fields of "TokenAssetURL"

Example
{
  "avg": TokenAssetURL_avg_fields,
  "count": 123,
  "max": TokenAssetURL_max_fields,
  "min": TokenAssetURL_min_fields,
  "stddev": TokenAssetURL_stddev_fields,
  "stddev_pop": TokenAssetURL_stddev_pop_fields,
  "stddev_samp": TokenAssetURL_stddev_samp_fields,
  "sum": TokenAssetURL_sum_fields,
  "var_pop": TokenAssetURL_var_pop_fields,
  "var_samp": TokenAssetURL_var_samp_fields,
  "variance": TokenAssetURL_variance_fields
}

TokenAssetURL_aggregate_order_by

Description

order by aggregate values of table "TokenAssetURL"

Example
{
  "avg": TokenAssetURL_avg_order_by,
  "count": "asc",
  "max": TokenAssetURL_max_order_by,
  "min": TokenAssetURL_min_order_by,
  "stddev": TokenAssetURL_stddev_order_by,
  "stddev_pop": TokenAssetURL_stddev_pop_order_by,
  "stddev_samp": TokenAssetURL_stddev_samp_order_by,
  "sum": TokenAssetURL_sum_order_by,
  "var_pop": TokenAssetURL_var_pop_order_by,
  "var_samp": TokenAssetURL_var_samp_order_by,
  "variance": TokenAssetURL_variance_order_by
}

TokenAssetURL_avg_fields

Description

aggregate avg on columns

Fields
Field Name Description
blockNumber - Float
height - Float
width - Float
Example
{"blockNumber": 987.65, "height": 123.45, "width": 123.45}

TokenAssetURL_avg_order_by

Description

order by avg() on columns of table "TokenAssetURL"

Fields
Input Field Description
blockNumber - order_by
height - order_by
width - order_by
Example
{"blockNumber": "asc", "height": "asc", "width": "asc"}

TokenAssetURL_bool_exp

Description

Boolean expression to filter rows from the table "TokenAssetURL". All fields are combined with a logical 'AND'.

Example
{
  "_and": [TokenAssetURL_bool_exp],
  "_not": TokenAssetURL_bool_exp,
  "_or": [TokenAssetURL_bool_exp],
  "blockNumber": Int_comparison_exp,
  "contentAsset": Asset_bool_exp,
  "contentAsset_id": String_comparison_exp,
  "contentToken": Token_bool_exp,
  "contentToken_id": String_comparison_exp,
  "data": String_comparison_exp,
  "db_write_timestamp": timestamp_comparison_exp,
  "error": String_comparison_exp,
  "fileType": String_comparison_exp,
  "height": Int_comparison_exp,
  "id": String_comparison_exp,
  "method": String_comparison_exp,
  "src": String_comparison_exp,
  "token": Token_bool_exp,
  "token_id": String_comparison_exp,
  "url": String_comparison_exp,
  "verified": verificationstatus_comparison_exp,
  "width": Int_comparison_exp
}

TokenAssetURL_max_fields

Description

aggregate max on columns

Fields
Field Name Description
blockNumber - Int
contentAsset_id - String
contentToken_id - String
data - String
db_write_timestamp - timestamp
error - String
fileType - String
height - Int
id - String
method - String
src - String
token_id - String
url - String
verified - verificationstatus
width - Int
Example
{
  "blockNumber": 987,
  "contentAsset_id": "xyz789",
  "contentToken_id": "abc123",
  "data": "abc123",
  "db_write_timestamp": timestamp,
  "error": "abc123",
  "fileType": "xyz789",
  "height": 987,
  "id": "xyz789",
  "method": "abc123",
  "src": "abc123",
  "token_id": "xyz789",
  "url": "xyz789",
  "verified": verificationstatus,
  "width": 123
}

TokenAssetURL_max_order_by

Description

order by max() on columns of table "TokenAssetURL"

Fields
Input Field Description
blockNumber - order_by
contentAsset_id - order_by
contentToken_id - order_by
data - order_by
db_write_timestamp - order_by
error - order_by
fileType - order_by
height - order_by
id - order_by
method - order_by
src - order_by
token_id - order_by
url - order_by
verified - order_by
width - order_by
Example
{
  "blockNumber": "asc",
  "contentAsset_id": "asc",
  "contentToken_id": "asc",
  "data": "asc",
  "db_write_timestamp": "asc",
  "error": "asc",
  "fileType": "asc",
  "height": "asc",
  "id": "asc",
  "method": "asc",
  "src": "asc",
  "token_id": "asc",
  "url": "asc",
  "verified": "asc",
  "width": "asc"
}

TokenAssetURL_min_fields

Description

aggregate min on columns

Fields
Field Name Description
blockNumber - Int
contentAsset_id - String
contentToken_id - String
data - String
db_write_timestamp - timestamp
error - String
fileType - String
height - Int
id - String
method - String
src - String
token_id - String
url - String
verified - verificationstatus
width - Int
Example
{
  "blockNumber": 987,
  "contentAsset_id": "abc123",
  "contentToken_id": "abc123",
  "data": "abc123",
  "db_write_timestamp": timestamp,
  "error": "abc123",
  "fileType": "abc123",
  "height": 123,
  "id": "xyz789",
  "method": "xyz789",
  "src": "xyz789",
  "token_id": "abc123",
  "url": "abc123",
  "verified": verificationstatus,
  "width": 987
}

TokenAssetURL_min_order_by

Description

order by min() on columns of table "TokenAssetURL"

Fields
Input Field Description
blockNumber - order_by
contentAsset_id - order_by
contentToken_id - order_by
data - order_by
db_write_timestamp - order_by
error - order_by
fileType - order_by
height - order_by
id - order_by
method - order_by
src - order_by
token_id - order_by
url - order_by
verified - order_by
width - order_by
Example
{
  "blockNumber": "asc",
  "contentAsset_id": "asc",
  "contentToken_id": "asc",
  "data": "asc",
  "db_write_timestamp": "asc",
  "error": "asc",
  "fileType": "asc",
  "height": "asc",
  "id": "asc",
  "method": "asc",
  "src": "asc",
  "token_id": "asc",
  "url": "asc",
  "verified": "asc",
  "width": "asc"
}

TokenAssetURL_order_by

Description

Ordering options when selecting data from "TokenAssetURL".

Fields
Input Field Description
blockNumber - order_by
contentAsset - Asset_order_by
contentAsset_id - order_by
contentToken - Token_order_by
contentToken_id - order_by
data - order_by
db_write_timestamp - order_by
error - order_by
fileType - order_by
height - order_by
id - order_by
method - order_by
src - order_by
token - Token_order_by
token_id - order_by
url - order_by
verified - order_by
width - order_by
Example
{
  "blockNumber": "asc",
  "contentAsset": Asset_order_by,
  "contentAsset_id": "asc",
  "contentToken": Token_order_by,
  "contentToken_id": "asc",
  "data": "asc",
  "db_write_timestamp": "asc",
  "error": "asc",
  "fileType": "asc",
  "height": "asc",
  "id": "asc",
  "method": "asc",
  "src": "asc",
  "token": Token_order_by,
  "token_id": "asc",
  "url": "asc",
  "verified": "asc",
  "width": "asc"
}

TokenAssetURL_select_column

Description

select columns of table "TokenAssetURL"

Values
Enum Value Description

blockNumber

column name

contentAsset_id

column name

contentToken_id

column name

data

column name

db_write_timestamp

column name

error

column name

fileType

column name

height

column name

id

column name

method

column name

src

column name

token_id

column name

url

column name

verified

column name

width

column name
Example
"blockNumber"

TokenAssetURL_stddev_fields

Description

aggregate stddev on columns

Fields
Field Name Description
blockNumber - Float
height - Float
width - Float
Example
{"blockNumber": 987.65, "height": 987.65, "width": 123.45}

TokenAssetURL_stddev_order_by

Description

order by stddev() on columns of table "TokenAssetURL"

Fields
Input Field Description
blockNumber - order_by
height - order_by
width - order_by
Example
{"blockNumber": "asc", "height": "asc", "width": "asc"}

TokenAssetURL_stddev_pop_fields

Description

aggregate stddev_pop on columns

Fields
Field Name Description
blockNumber - Float
height - Float
width - Float
Example
{"blockNumber": 987.65, "height": 123.45, "width": 123.45}

TokenAssetURL_stddev_pop_order_by

Description

order by stddev_pop() on columns of table "TokenAssetURL"

Fields
Input Field Description
blockNumber - order_by
height - order_by
width - order_by
Example
{"blockNumber": "asc", "height": "asc", "width": "asc"}

TokenAssetURL_stddev_samp_fields

Description

aggregate stddev_samp on columns

Fields
Field Name Description
blockNumber - Float
height - Float
width - Float
Example
{"blockNumber": 987.65, "height": 987.65, "width": 123.45}

TokenAssetURL_stddev_samp_order_by

Description

order by stddev_samp() on columns of table "TokenAssetURL"

Fields
Input Field Description
blockNumber - order_by
height - order_by
width - order_by
Example
{"blockNumber": "asc", "height": "asc", "width": "asc"}

TokenAssetURL_stream_cursor_input

Description

Streaming cursor of the table "TokenAssetURL"

Fields
Input Field Description
initial_value - TokenAssetURL_stream_cursor_value_input! Stream column input with initial value
ordering - cursor_ordering cursor ordering
Example
{
  "initial_value": TokenAssetURL_stream_cursor_value_input,
  "ordering": "ASC"
}

TokenAssetURL_stream_cursor_value_input

Description

Initial value of the column from where the streaming should start

Fields
Input Field Description
blockNumber - Int
contentAsset_id - String
contentToken_id - String
data - String
db_write_timestamp - timestamp
error - String
fileType - String
height - Int
id - String
method - String
src - String
token_id - String
url - String
verified - verificationstatus
width - Int
Example
{
  "blockNumber": 987,
  "contentAsset_id": "abc123",
  "contentToken_id": "abc123",
  "data": "xyz789",
  "db_write_timestamp": timestamp,
  "error": "abc123",
  "fileType": "xyz789",
  "height": 987,
  "id": "xyz789",
  "method": "abc123",
  "src": "xyz789",
  "token_id": "abc123",
  "url": "xyz789",
  "verified": verificationstatus,
  "width": 987
}

TokenAssetURL_sum_fields

Description

aggregate sum on columns

Fields
Field Name Description
blockNumber - Int
height - Int
width - Int
Example
{"blockNumber": 123, "height": 123, "width": 123}

TokenAssetURL_sum_order_by

Description

order by sum() on columns of table "TokenAssetURL"

Fields
Input Field Description
blockNumber - order_by
height - order_by
width - order_by
Example
{"blockNumber": "asc", "height": "asc", "width": "asc"}

TokenAssetURL_var_pop_fields

Description

aggregate var_pop on columns

Fields
Field Name Description
blockNumber - Float
height - Float
width - Float
Example
{"blockNumber": 123.45, "height": 987.65, "width": 123.45}

TokenAssetURL_var_pop_order_by

Description

order by var_pop() on columns of table "TokenAssetURL"

Fields
Input Field Description
blockNumber - order_by
height - order_by
width - order_by
Example
{"blockNumber": "asc", "height": "asc", "width": "asc"}

TokenAssetURL_var_samp_fields

Description

aggregate var_samp on columns

Fields
Field Name Description
blockNumber - Float
height - Float
width - Float
Example
{"blockNumber": 987.65, "height": 987.65, "width": 123.45}

TokenAssetURL_var_samp_order_by

Description

order by var_samp() on columns of table "TokenAssetURL"

Fields
Input Field Description
blockNumber - order_by
height - order_by
width - order_by
Example
{"blockNumber": "asc", "height": "asc", "width": "asc"}

TokenAssetURL_variance_fields

Description

aggregate variance on columns

Fields
Field Name Description
blockNumber - Float
height - Float
width - Float
Example
{"blockNumber": 123.45, "height": 123.45, "width": 987.65}

TokenAssetURL_variance_order_by

Description

order by variance() on columns of table "TokenAssetURL"

Fields
Input Field Description
blockNumber - order_by
height - order_by
width - order_by
Example
{"blockNumber": "asc", "height": "asc", "width": "asc"}

TokenAttribute

Description

columns and relationships of "TokenAttribute"

Fields
Field Name Description
attributeType - String
blockNumber - Int!
db_write_timestamp - timestamp
id - String!
key - String
token - Token An object relationship
token_id - String!
value - String
Example
{
  "attributeType": "xyz789",
  "blockNumber": 987,
  "db_write_timestamp": timestamp,
  "id": "xyz789",
  "key": "abc123",
  "token": Token,
  "token_id": "xyz789",
  "value": "xyz789"
}

TokenAttribute_aggregate

Description

aggregated selection of "TokenAttribute"

Fields
Field Name Description
aggregate - TokenAttribute_aggregate_fields
nodes - [TokenAttribute!]!
Example
{
  "aggregate": TokenAttribute_aggregate_fields,
  "nodes": [TokenAttribute]
}

TokenAttribute_aggregate_bool_exp

Fields
Input Field Description
count - TokenAttribute_aggregate_bool_exp_count
Example
{"count": TokenAttribute_aggregate_bool_exp_count}

TokenAttribute_aggregate_bool_exp_count

Fields
Input Field Description
arguments - [TokenAttribute_select_column!]
distinct - Boolean
filter - TokenAttribute_bool_exp
predicate - Int_comparison_exp!
Example
{
  "arguments": ["attributeType"],
  "distinct": false,
  "filter": TokenAttribute_bool_exp,
  "predicate": Int_comparison_exp
}

TokenAttribute_aggregate_fields

Description

aggregate fields of "TokenAttribute"

Example
{
  "avg": TokenAttribute_avg_fields,
  "count": 123,
  "max": TokenAttribute_max_fields,
  "min": TokenAttribute_min_fields,
  "stddev": TokenAttribute_stddev_fields,
  "stddev_pop": TokenAttribute_stddev_pop_fields,
  "stddev_samp": TokenAttribute_stddev_samp_fields,
  "sum": TokenAttribute_sum_fields,
  "var_pop": TokenAttribute_var_pop_fields,
  "var_samp": TokenAttribute_var_samp_fields,
  "variance": TokenAttribute_variance_fields
}

TokenAttribute_aggregate_order_by

Description

order by aggregate values of table "TokenAttribute"

Example
{
  "avg": TokenAttribute_avg_order_by,
  "count": "asc",
  "max": TokenAttribute_max_order_by,
  "min": TokenAttribute_min_order_by,
  "stddev": TokenAttribute_stddev_order_by,
  "stddev_pop": TokenAttribute_stddev_pop_order_by,
  "stddev_samp": TokenAttribute_stddev_samp_order_by,
  "sum": TokenAttribute_sum_order_by,
  "var_pop": TokenAttribute_var_pop_order_by,
  "var_samp": TokenAttribute_var_samp_order_by,
  "variance": TokenAttribute_variance_order_by
}

TokenAttribute_avg_fields

Description

aggregate avg on columns

Fields
Field Name Description
blockNumber - Float
Example
{"blockNumber": 987.65}

TokenAttribute_avg_order_by

Description

order by avg() on columns of table "TokenAttribute"

Fields
Input Field Description
blockNumber - order_by
Example
{"blockNumber": "asc"}

TokenAttribute_bool_exp

Description

Boolean expression to filter rows from the table "TokenAttribute". All fields are combined with a logical 'AND'.

Example
{
  "_and": [TokenAttribute_bool_exp],
  "_not": TokenAttribute_bool_exp,
  "_or": [TokenAttribute_bool_exp],
  "attributeType": String_comparison_exp,
  "blockNumber": Int_comparison_exp,
  "db_write_timestamp": timestamp_comparison_exp,
  "id": String_comparison_exp,
  "key": String_comparison_exp,
  "token": Token_bool_exp,
  "token_id": String_comparison_exp,
  "value": String_comparison_exp
}

TokenAttribute_max_fields

Description

aggregate max on columns

Fields
Field Name Description
attributeType - String
blockNumber - Int
db_write_timestamp - timestamp
id - String
key - String
token_id - String
value - String
Example
{
  "attributeType": "abc123",
  "blockNumber": 987,
  "db_write_timestamp": timestamp,
  "id": "abc123",
  "key": "xyz789",
  "token_id": "xyz789",
  "value": "abc123"
}

TokenAttribute_max_order_by

Description

order by max() on columns of table "TokenAttribute"

Fields
Input Field Description
attributeType - order_by
blockNumber - order_by
db_write_timestamp - order_by
id - order_by
key - order_by
token_id - order_by
value - order_by
Example
{
  "attributeType": "asc",
  "blockNumber": "asc",
  "db_write_timestamp": "asc",
  "id": "asc",
  "key": "asc",
  "token_id": "asc",
  "value": "asc"
}

TokenAttribute_min_fields

Description

aggregate min on columns

Fields
Field Name Description
attributeType - String
blockNumber - Int
db_write_timestamp - timestamp
id - String
key - String
token_id - String
value - String
Example
{
  "attributeType": "xyz789",
  "blockNumber": 987,
  "db_write_timestamp": timestamp,
  "id": "abc123",
  "key": "xyz789",
  "token_id": "abc123",
  "value": "abc123"
}

TokenAttribute_min_order_by

Description

order by min() on columns of table "TokenAttribute"

Fields
Input Field Description
attributeType - order_by
blockNumber - order_by
db_write_timestamp - order_by
id - order_by
key - order_by
token_id - order_by
value - order_by
Example
{
  "attributeType": "asc",
  "blockNumber": "asc",
  "db_write_timestamp": "asc",
  "id": "asc",
  "key": "asc",
  "token_id": "asc",
  "value": "asc"
}

TokenAttribute_order_by

Description

Ordering options when selecting data from "TokenAttribute".

Fields
Input Field Description
attributeType - order_by
blockNumber - order_by
db_write_timestamp - order_by
id - order_by
key - order_by
token - Token_order_by
token_id - order_by
value - order_by
Example
{
  "attributeType": "asc",
  "blockNumber": "asc",
  "db_write_timestamp": "asc",
  "id": "asc",
  "key": "asc",
  "token": Token_order_by,
  "token_id": "asc",
  "value": "asc"
}

TokenAttribute_select_column

Description

select columns of table "TokenAttribute"

Values
Enum Value Description

attributeType

column name

blockNumber

column name

db_write_timestamp

column name

id

column name

key

column name

token_id

column name

value

column name
Example
"attributeType"

TokenAttribute_stddev_fields

Description

aggregate stddev on columns

Fields
Field Name Description
blockNumber - Float
Example
{"blockNumber": 987.65}

TokenAttribute_stddev_order_by

Description

order by stddev() on columns of table "TokenAttribute"

Fields
Input Field Description
blockNumber - order_by
Example
{"blockNumber": "asc"}

TokenAttribute_stddev_pop_fields

Description

aggregate stddev_pop on columns

Fields
Field Name Description
blockNumber - Float
Example
{"blockNumber": 987.65}

TokenAttribute_stddev_pop_order_by

Description

order by stddev_pop() on columns of table "TokenAttribute"

Fields
Input Field Description
blockNumber - order_by
Example
{"blockNumber": "asc"}

TokenAttribute_stddev_samp_fields

Description

aggregate stddev_samp on columns

Fields
Field Name Description
blockNumber - Float
Example
{"blockNumber": 123.45}

TokenAttribute_stddev_samp_order_by

Description

order by stddev_samp() on columns of table "TokenAttribute"

Fields
Input Field Description
blockNumber - order_by
Example
{"blockNumber": "asc"}

TokenAttribute_stream_cursor_input

Description

Streaming cursor of the table "TokenAttribute"

Fields
Input Field Description
initial_value - TokenAttribute_stream_cursor_value_input! Stream column input with initial value
ordering - cursor_ordering cursor ordering
Example
{
  "initial_value": TokenAttribute_stream_cursor_value_input,
  "ordering": "ASC"
}

TokenAttribute_stream_cursor_value_input

Description

Initial value of the column from where the streaming should start

Fields
Input Field Description
attributeType - String
blockNumber - Int
db_write_timestamp - timestamp
id - String
key - String
token_id - String
value - String
Example
{
  "attributeType": "xyz789",
  "blockNumber": 123,
  "db_write_timestamp": timestamp,
  "id": "xyz789",
  "key": "abc123",
  "token_id": "xyz789",
  "value": "xyz789"
}

TokenAttribute_sum_fields

Description

aggregate sum on columns

Fields
Field Name Description
blockNumber - Int
Example
{"blockNumber": 123}

TokenAttribute_sum_order_by

Description

order by sum() on columns of table "TokenAttribute"

Fields
Input Field Description
blockNumber - order_by
Example
{"blockNumber": "asc"}

TokenAttribute_var_pop_fields

Description

aggregate var_pop on columns

Fields
Field Name Description
blockNumber - Float
Example
{"blockNumber": 123.45}

TokenAttribute_var_pop_order_by

Description

order by var_pop() on columns of table "TokenAttribute"

Fields
Input Field Description
blockNumber - order_by
Example
{"blockNumber": "asc"}

TokenAttribute_var_samp_fields

Description

aggregate var_samp on columns

Fields
Field Name Description
blockNumber - Float
Example
{"blockNumber": 123.45}

TokenAttribute_var_samp_order_by

Description

order by var_samp() on columns of table "TokenAttribute"

Fields
Input Field Description
blockNumber - order_by
Example
{"blockNumber": "asc"}

TokenAttribute_variance_fields

Description

aggregate variance on columns

Fields
Field Name Description
blockNumber - Float
Example
{"blockNumber": 987.65}

TokenAttribute_variance_order_by

Description

order by variance() on columns of table "TokenAttribute"

Fields
Input Field Description
blockNumber - order_by
Example
{"blockNumber": "asc"}

TokenBackgroundImageURL

Description

columns and relationships of "TokenBackgroundImageURL"

Fields
Field Name Description
blockNumber - Int!
data - String
db_write_timestamp - timestamp
error - String
fileType - String
height - Int
id - String!
index - Int
method - String
src - String
token_id - String!
url - String
verified - verificationstatus!
width - Int
Example
{
  "blockNumber": 987,
  "data": "xyz789",
  "db_write_timestamp": timestamp,
  "error": "xyz789",
  "fileType": "xyz789",
  "height": 123,
  "id": "abc123",
  "index": 123,
  "method": "xyz789",
  "src": "xyz789",
  "token_id": "abc123",
  "url": "xyz789",
  "verified": verificationstatus,
  "width": 123
}

TokenBackgroundImageURL_aggregate_order_by

Example
{
  "avg": TokenBackgroundImageURL_avg_order_by,
  "count": "asc",
  "max": TokenBackgroundImageURL_max_order_by,
  "min": TokenBackgroundImageURL_min_order_by,
  "stddev": TokenBackgroundImageURL_stddev_order_by,
  "stddev_pop": TokenBackgroundImageURL_stddev_pop_order_by,
  "stddev_samp": TokenBackgroundImageURL_stddev_samp_order_by,
  "sum": TokenBackgroundImageURL_sum_order_by,
  "var_pop": TokenBackgroundImageURL_var_pop_order_by,
  "var_samp": TokenBackgroundImageURL_var_samp_order_by,
  "variance": TokenBackgroundImageURL_variance_order_by
}

TokenBackgroundImageURL_avg_order_by

Description

order by avg() on columns of table "TokenBackgroundImageURL"

Fields
Input Field Description
blockNumber - order_by
height - order_by
index - order_by
width - order_by
Example
{"blockNumber": "asc", "height": "asc", "index": "asc", "width": "asc"}

TokenBackgroundImageURL_bool_exp

Description

Boolean expression to filter rows from the table "TokenBackgroundImageURL". All fields are combined with a logical 'AND'.

Example
{
  "_and": [TokenBackgroundImageURL_bool_exp],
  "_not": TokenBackgroundImageURL_bool_exp,
  "_or": [TokenBackgroundImageURL_bool_exp],
  "blockNumber": Int_comparison_exp,
  "data": String_comparison_exp,
  "db_write_timestamp": timestamp_comparison_exp,
  "error": String_comparison_exp,
  "fileType": String_comparison_exp,
  "height": Int_comparison_exp,
  "id": String_comparison_exp,
  "index": Int_comparison_exp,
  "method": String_comparison_exp,
  "src": String_comparison_exp,
  "token_id": String_comparison_exp,
  "url": String_comparison_exp,
  "verified": verificationstatus_comparison_exp,
  "width": Int_comparison_exp
}

TokenBackgroundImageURL_max_order_by

Description

order by max() on columns of table "TokenBackgroundImageURL"

Fields
Input Field Description
blockNumber - order_by
data - order_by
db_write_timestamp - order_by
error - order_by
fileType - order_by
height - order_by
id - order_by
index - order_by
method - order_by
src - order_by
token_id - order_by
url - order_by
verified - order_by
width - order_by
Example
{
  "blockNumber": "asc",
  "data": "asc",
  "db_write_timestamp": "asc",
  "error": "asc",
  "fileType": "asc",
  "height": "asc",
  "id": "asc",
  "index": "asc",
  "method": "asc",
  "src": "asc",
  "token_id": "asc",
  "url": "asc",
  "verified": "asc",
  "width": "asc"
}

TokenBackgroundImageURL_min_order_by

Description

order by min() on columns of table "TokenBackgroundImageURL"

Fields
Input Field Description
blockNumber - order_by
data - order_by
db_write_timestamp - order_by
error - order_by
fileType - order_by
height - order_by
id - order_by
index - order_by
method - order_by
src - order_by
token_id - order_by
url - order_by
verified - order_by
width - order_by
Example
{
  "blockNumber": "asc",
  "data": "asc",
  "db_write_timestamp": "asc",
  "error": "asc",
  "fileType": "asc",
  "height": "asc",
  "id": "asc",
  "index": "asc",
  "method": "asc",
  "src": "asc",
  "token_id": "asc",
  "url": "asc",
  "verified": "asc",
  "width": "asc"
}

TokenBackgroundImageURL_order_by

Description

Ordering options when selecting data from "TokenBackgroundImageURL".

Fields
Input Field Description
blockNumber - order_by
data - order_by
db_write_timestamp - order_by
error - order_by
fileType - order_by
height - order_by
id - order_by
index - order_by
method - order_by
src - order_by
token_id - order_by
url - order_by
verified - order_by
width - order_by
Example
{
  "blockNumber": "asc",
  "data": "asc",
  "db_write_timestamp": "asc",
  "error": "asc",
  "fileType": "asc",
  "height": "asc",
  "id": "asc",
  "index": "asc",
  "method": "asc",
  "src": "asc",
  "token_id": "asc",
  "url": "asc",
  "verified": "asc",
  "width": "asc"
}

TokenBackgroundImageURL_select_column

Description

select columns of table "TokenBackgroundImageURL"

Values
Enum Value Description

blockNumber

column name

data

column name

db_write_timestamp

column name

error

column name

fileType

column name

height

column name

id

column name

index

column name

method

column name

src

column name

token_id

column name

url

column name

verified

column name

width

column name
Example
"blockNumber"

TokenBackgroundImageURL_stddev_order_by

Description

order by stddev() on columns of table "TokenBackgroundImageURL"

Fields
Input Field Description
blockNumber - order_by
height - order_by
index - order_by
width - order_by
Example
{"blockNumber": "asc", "height": "asc", "index": "asc", "width": "asc"}

TokenBackgroundImageURL_stddev_pop_order_by

Description

order by stddev_pop() on columns of table "TokenBackgroundImageURL"

Fields
Input Field Description
blockNumber - order_by
height - order_by
index - order_by
width - order_by
Example
{"blockNumber": "asc", "height": "asc", "index": "asc", "width": "asc"}

TokenBackgroundImageURL_stddev_samp_order_by

Description

order by stddev_samp() on columns of table "TokenBackgroundImageURL"

Fields
Input Field Description
blockNumber - order_by
height - order_by
index - order_by
width - order_by
Example
{"blockNumber": "asc", "height": "asc", "index": "asc", "width": "asc"}

TokenBackgroundImageURL_stream_cursor_input

Description

Streaming cursor of the table "TokenBackgroundImageURL"

Fields
Input Field Description
initial_value - TokenBackgroundImageURL_stream_cursor_value_input! Stream column input with initial value
ordering - cursor_ordering cursor ordering
Example
{
  "initial_value": TokenBackgroundImageURL_stream_cursor_value_input,
  "ordering": "ASC"
}

TokenBackgroundImageURL_stream_cursor_value_input

Description

Initial value of the column from where the streaming should start

Fields
Input Field Description
blockNumber - Int
data - String
db_write_timestamp - timestamp
error - String
fileType - String
height - Int
id - String
index - Int
method - String
src - String
token_id - String
url - String
verified - verificationstatus
width - Int
Example
{
  "blockNumber": 987,
  "data": "xyz789",
  "db_write_timestamp": timestamp,
  "error": "abc123",
  "fileType": "xyz789",
  "height": 987,
  "id": "abc123",
  "index": 123,
  "method": "abc123",
  "src": "abc123",
  "token_id": "abc123",
  "url": "abc123",
  "verified": verificationstatus,
  "width": 123
}

TokenBackgroundImageURL_sum_order_by

Description

order by sum() on columns of table "TokenBackgroundImageURL"

Fields
Input Field Description
blockNumber - order_by
height - order_by
index - order_by
width - order_by
Example
{"blockNumber": "asc", "height": "asc", "index": "asc", "width": "asc"}

TokenBackgroundImageURL_var_pop_order_by

Description

order by var_pop() on columns of table "TokenBackgroundImageURL"

Fields
Input Field Description
blockNumber - order_by
height - order_by
index - order_by
width - order_by
Example
{"blockNumber": "asc", "height": "asc", "index": "asc", "width": "asc"}

TokenBackgroundImageURL_var_samp_order_by

Description

order by var_samp() on columns of table "TokenBackgroundImageURL"

Fields
Input Field Description
blockNumber - order_by
height - order_by
index - order_by
width - order_by
Example
{"blockNumber": "asc", "height": "asc", "index": "asc", "width": "asc"}

TokenBackgroundImageURL_variance_order_by

Description

order by variance() on columns of table "TokenBackgroundImageURL"

Fields
Input Field Description
blockNumber - order_by
height - order_by
index - order_by
width - order_by
Example
{"blockNumber": "asc", "height": "asc", "index": "asc", "width": "asc"}

TokenCreators

Description

columns and relationships of "TokenCreators"

Fields
Field Name Description
blockNumber - Int!
db_write_timestamp - timestamp
id - String!
index - Int
interfaceId - String
profile - Profile An object relationship
profile_id - String
token - Token An object relationship
token_id - String!
Example
{
  "blockNumber": 123,
  "db_write_timestamp": timestamp,
  "id": "abc123",
  "index": 987,
  "interfaceId": "abc123",
  "profile": Profile,
  "profile_id": "abc123",
  "token": Token,
  "token_id": "abc123"
}

TokenCreators_aggregate

Description

aggregated selection of "TokenCreators"

Fields
Field Name Description
aggregate - TokenCreators_aggregate_fields
nodes - [TokenCreators!]!
Example
{
  "aggregate": TokenCreators_aggregate_fields,
  "nodes": [TokenCreators]
}

TokenCreators_aggregate_bool_exp

Fields
Input Field Description
count - TokenCreators_aggregate_bool_exp_count
Example
{"count": TokenCreators_aggregate_bool_exp_count}

TokenCreators_aggregate_bool_exp_count

Fields
Input Field Description
arguments - [TokenCreators_select_column!]
distinct - Boolean
filter - TokenCreators_bool_exp
predicate - Int_comparison_exp!
Example
{
  "arguments": ["blockNumber"],
  "distinct": false,
  "filter": TokenCreators_bool_exp,
  "predicate": Int_comparison_exp
}

TokenCreators_aggregate_fields

Description

aggregate fields of "TokenCreators"

Example
{
  "avg": TokenCreators_avg_fields,
  "count": 987,
  "max": TokenCreators_max_fields,
  "min": TokenCreators_min_fields,
  "stddev": TokenCreators_stddev_fields,
  "stddev_pop": TokenCreators_stddev_pop_fields,
  "stddev_samp": TokenCreators_stddev_samp_fields,
  "sum": TokenCreators_sum_fields,
  "var_pop": TokenCreators_var_pop_fields,
  "var_samp": TokenCreators_var_samp_fields,
  "variance": TokenCreators_variance_fields
}

TokenCreators_aggregate_order_by

Description

order by aggregate values of table "TokenCreators"

Example
{
  "avg": TokenCreators_avg_order_by,
  "count": "asc",
  "max": TokenCreators_max_order_by,
  "min": TokenCreators_min_order_by,
  "stddev": TokenCreators_stddev_order_by,
  "stddev_pop": TokenCreators_stddev_pop_order_by,
  "stddev_samp": TokenCreators_stddev_samp_order_by,
  "sum": TokenCreators_sum_order_by,
  "var_pop": TokenCreators_var_pop_order_by,
  "var_samp": TokenCreators_var_samp_order_by,
  "variance": TokenCreators_variance_order_by
}

TokenCreators_avg_fields

Description

aggregate avg on columns

Fields
Field Name Description
blockNumber - Float
index - Float
Example
{"blockNumber": 987.65, "index": 987.65}

TokenCreators_avg_order_by

Description

order by avg() on columns of table "TokenCreators"

Fields
Input Field Description
blockNumber - order_by
index - order_by
Example
{"blockNumber": "asc", "index": "asc"}

TokenCreators_bool_exp

Description

Boolean expression to filter rows from the table "TokenCreators". All fields are combined with a logical 'AND'.

Fields
Input Field Description
_and - [TokenCreators_bool_exp!]
_not - TokenCreators_bool_exp
_or - [TokenCreators_bool_exp!]
blockNumber - Int_comparison_exp
db_write_timestamp - timestamp_comparison_exp
id - String_comparison_exp
index - Int_comparison_exp
interfaceId - String_comparison_exp
profile - Profile_bool_exp
profile_id - String_comparison_exp
token - Token_bool_exp
token_id - String_comparison_exp
Example
{
  "_and": [TokenCreators_bool_exp],
  "_not": TokenCreators_bool_exp,
  "_or": [TokenCreators_bool_exp],
  "blockNumber": Int_comparison_exp,
  "db_write_timestamp": timestamp_comparison_exp,
  "id": String_comparison_exp,
  "index": Int_comparison_exp,
  "interfaceId": String_comparison_exp,
  "profile": Profile_bool_exp,
  "profile_id": String_comparison_exp,
  "token": Token_bool_exp,
  "token_id": String_comparison_exp
}

TokenCreators_max_fields

Description

aggregate max on columns

Fields
Field Name Description
blockNumber - Int
db_write_timestamp - timestamp
id - String
index - Int
interfaceId - String
profile_id - String
token_id - String
Example
{
  "blockNumber": 987,
  "db_write_timestamp": timestamp,
  "id": "abc123",
  "index": 123,
  "interfaceId": "xyz789",
  "profile_id": "abc123",
  "token_id": "abc123"
}

TokenCreators_max_order_by

Description

order by max() on columns of table "TokenCreators"

Fields
Input Field Description
blockNumber - order_by
db_write_timestamp - order_by
id - order_by
index - order_by
interfaceId - order_by
profile_id - order_by
token_id - order_by
Example
{
  "blockNumber": "asc",
  "db_write_timestamp": "asc",
  "id": "asc",
  "index": "asc",
  "interfaceId": "asc",
  "profile_id": "asc",
  "token_id": "asc"
}

TokenCreators_min_fields

Description

aggregate min on columns

Fields
Field Name Description
blockNumber - Int
db_write_timestamp - timestamp
id - String
index - Int
interfaceId - String
profile_id - String
token_id - String
Example
{
  "blockNumber": 987,
  "db_write_timestamp": timestamp,
  "id": "xyz789",
  "index": 987,
  "interfaceId": "abc123",
  "profile_id": "xyz789",
  "token_id": "xyz789"
}

TokenCreators_min_order_by

Description

order by min() on columns of table "TokenCreators"

Fields
Input Field Description
blockNumber - order_by
db_write_timestamp - order_by
id - order_by
index - order_by
interfaceId - order_by
profile_id - order_by
token_id - order_by
Example
{
  "blockNumber": "asc",
  "db_write_timestamp": "asc",
  "id": "asc",
  "index": "asc",
  "interfaceId": "asc",
  "profile_id": "asc",
  "token_id": "asc"
}

TokenCreators_order_by

Description

Ordering options when selecting data from "TokenCreators".

Fields
Input Field Description
blockNumber - order_by
db_write_timestamp - order_by
id - order_by
index - order_by
interfaceId - order_by
profile - Profile_order_by
profile_id - order_by
token - Token_order_by
token_id - order_by
Example
{
  "blockNumber": "asc",
  "db_write_timestamp": "asc",
  "id": "asc",
  "index": "asc",
  "interfaceId": "asc",
  "profile": Profile_order_by,
  "profile_id": "asc",
  "token": Token_order_by,
  "token_id": "asc"
}

TokenCreators_select_column

Description

select columns of table "TokenCreators"

Values
Enum Value Description

blockNumber

column name

db_write_timestamp

column name

id

column name

index

column name

interfaceId

column name

profile_id

column name

token_id

column name
Example
"blockNumber"

TokenCreators_stddev_fields

Description

aggregate stddev on columns

Fields
Field Name Description
blockNumber - Float
index - Float
Example
{"blockNumber": 987.65, "index": 123.45}

TokenCreators_stddev_order_by

Description

order by stddev() on columns of table "TokenCreators"

Fields
Input Field Description
blockNumber - order_by
index - order_by
Example
{"blockNumber": "asc", "index": "asc"}

TokenCreators_stddev_pop_fields

Description

aggregate stddev_pop on columns

Fields
Field Name Description
blockNumber - Float
index - Float
Example
{"blockNumber": 987.65, "index": 987.65}

TokenCreators_stddev_pop_order_by

Description

order by stddev_pop() on columns of table "TokenCreators"

Fields
Input Field Description
blockNumber - order_by
index - order_by
Example
{"blockNumber": "asc", "index": "asc"}

TokenCreators_stddev_samp_fields

Description

aggregate stddev_samp on columns

Fields
Field Name Description
blockNumber - Float
index - Float
Example
{"blockNumber": 123.45, "index": 123.45}

TokenCreators_stddev_samp_order_by

Description

order by stddev_samp() on columns of table "TokenCreators"

Fields
Input Field Description
blockNumber - order_by
index - order_by
Example
{"blockNumber": "asc", "index": "asc"}

TokenCreators_stream_cursor_input

Description

Streaming cursor of the table "TokenCreators"

Fields
Input Field Description
initial_value - TokenCreators_stream_cursor_value_input! Stream column input with initial value
ordering - cursor_ordering cursor ordering
Example
{
  "initial_value": TokenCreators_stream_cursor_value_input,
  "ordering": "ASC"
}

TokenCreators_stream_cursor_value_input

Description

Initial value of the column from where the streaming should start

Fields
Input Field Description
blockNumber - Int
db_write_timestamp - timestamp
id - String
index - Int
interfaceId - String
profile_id - String
token_id - String
Example
{
  "blockNumber": 987,
  "db_write_timestamp": timestamp,
  "id": "xyz789",
  "index": 123,
  "interfaceId": "xyz789",
  "profile_id": "xyz789",
  "token_id": "xyz789"
}

TokenCreators_sum_fields

Description

aggregate sum on columns

Fields
Field Name Description
blockNumber - Int
index - Int
Example
{"blockNumber": 987, "index": 987}

TokenCreators_sum_order_by

Description

order by sum() on columns of table "TokenCreators"

Fields
Input Field Description
blockNumber - order_by
index - order_by
Example
{"blockNumber": "asc", "index": "asc"}

TokenCreators_var_pop_fields

Description

aggregate var_pop on columns

Fields
Field Name Description
blockNumber - Float
index - Float
Example
{"blockNumber": 987.65, "index": 123.45}

TokenCreators_var_pop_order_by

Description

order by var_pop() on columns of table "TokenCreators"

Fields
Input Field Description
blockNumber - order_by
index - order_by
Example
{"blockNumber": "asc", "index": "asc"}

TokenCreators_var_samp_fields

Description

aggregate var_samp on columns

Fields
Field Name Description
blockNumber - Float
index - Float
Example
{"blockNumber": 987.65, "index": 987.65}

TokenCreators_var_samp_order_by

Description

order by var_samp() on columns of table "TokenCreators"

Fields
Input Field Description
blockNumber - order_by
index - order_by
Example
{"blockNumber": "asc", "index": "asc"}

TokenCreators_variance_fields

Description

aggregate variance on columns

Fields
Field Name Description
blockNumber - Float
index - Float
Example
{"blockNumber": 123.45, "index": 987.65}

TokenCreators_variance_order_by

Description

order by variance() on columns of table "TokenCreators"

Fields
Input Field Description
blockNumber - order_by
index - order_by
Example
{"blockNumber": "asc", "index": "asc"}

TokenIconURL

Description

columns and relationships of "TokenIconURL"

Fields
Field Name Description
blockNumber - Int!
data - String
db_write_timestamp - timestamp
error - String
fileType - String
height - Int
id - String!
method - String
src - String
token - Token An object relationship
token_id - String!
url - String
verified - verificationstatus!
width - Int
Example
{
  "blockNumber": 123,
  "data": "abc123",
  "db_write_timestamp": timestamp,
  "error": "abc123",
  "fileType": "abc123",
  "height": 123,
  "id": "xyz789",
  "method": "xyz789",
  "src": "xyz789",
  "token": Token,
  "token_id": "xyz789",
  "url": "xyz789",
  "verified": verificationstatus,
  "width": 987
}

TokenIconURL_aggregate

Description

aggregated selection of "TokenIconURL"

Fields
Field Name Description
aggregate - TokenIconURL_aggregate_fields
nodes - [TokenIconURL!]!
Example
{
  "aggregate": TokenIconURL_aggregate_fields,
  "nodes": [TokenIconURL]
}

TokenIconURL_aggregate_bool_exp

Fields
Input Field Description
count - TokenIconURL_aggregate_bool_exp_count
Example
{"count": TokenIconURL_aggregate_bool_exp_count}

TokenIconURL_aggregate_bool_exp_count

Fields
Input Field Description
arguments - [TokenIconURL_select_column!]
distinct - Boolean
filter - TokenIconURL_bool_exp
predicate - Int_comparison_exp!
Example
{
  "arguments": ["blockNumber"],
  "distinct": true,
  "filter": TokenIconURL_bool_exp,
  "predicate": Int_comparison_exp
}

TokenIconURL_aggregate_fields

Description

aggregate fields of "TokenIconURL"

Example
{
  "avg": TokenIconURL_avg_fields,
  "count": 987,
  "max": TokenIconURL_max_fields,
  "min": TokenIconURL_min_fields,
  "stddev": TokenIconURL_stddev_fields,
  "stddev_pop": TokenIconURL_stddev_pop_fields,
  "stddev_samp": TokenIconURL_stddev_samp_fields,
  "sum": TokenIconURL_sum_fields,
  "var_pop": TokenIconURL_var_pop_fields,
  "var_samp": TokenIconURL_var_samp_fields,
  "variance": TokenIconURL_variance_fields
}

TokenIconURL_aggregate_order_by

Description

order by aggregate values of table "TokenIconURL"

Example
{
  "avg": TokenIconURL_avg_order_by,
  "count": "asc",
  "max": TokenIconURL_max_order_by,
  "min": TokenIconURL_min_order_by,
  "stddev": TokenIconURL_stddev_order_by,
  "stddev_pop": TokenIconURL_stddev_pop_order_by,
  "stddev_samp": TokenIconURL_stddev_samp_order_by,
  "sum": TokenIconURL_sum_order_by,
  "var_pop": TokenIconURL_var_pop_order_by,
  "var_samp": TokenIconURL_var_samp_order_by,
  "variance": TokenIconURL_variance_order_by
}

TokenIconURL_avg_fields

Description

aggregate avg on columns

Fields
Field Name Description
blockNumber - Float
height - Float
width - Float
Example
{"blockNumber": 123.45, "height": 987.65, "width": 987.65}

TokenIconURL_avg_order_by

Description

order by avg() on columns of table "TokenIconURL"

Fields
Input Field Description
blockNumber - order_by
height - order_by
width - order_by
Example
{"blockNumber": "asc", "height": "asc", "width": "asc"}

TokenIconURL_bool_exp

Description

Boolean expression to filter rows from the table "TokenIconURL". All fields are combined with a logical 'AND'.

Example
{
  "_and": [TokenIconURL_bool_exp],
  "_not": TokenIconURL_bool_exp,
  "_or": [TokenIconURL_bool_exp],
  "blockNumber": Int_comparison_exp,
  "data": String_comparison_exp,
  "db_write_timestamp": timestamp_comparison_exp,
  "error": String_comparison_exp,
  "fileType": String_comparison_exp,
  "height": Int_comparison_exp,
  "id": String_comparison_exp,
  "method": String_comparison_exp,
  "src": String_comparison_exp,
  "token": Token_bool_exp,
  "token_id": String_comparison_exp,
  "url": String_comparison_exp,
  "verified": verificationstatus_comparison_exp,
  "width": Int_comparison_exp
}

TokenIconURL_max_fields

Description

aggregate max on columns

Fields
Field Name Description
blockNumber - Int
data - String
db_write_timestamp - timestamp
error - String
fileType - String
height - Int
id - String
method - String
src - String
token_id - String
url - String
verified - verificationstatus
width - Int
Example
{
  "blockNumber": 987,
  "data": "xyz789",
  "db_write_timestamp": timestamp,
  "error": "xyz789",
  "fileType": "abc123",
  "height": 123,
  "id": "abc123",
  "method": "xyz789",
  "src": "abc123",
  "token_id": "xyz789",
  "url": "xyz789",
  "verified": verificationstatus,
  "width": 123
}

TokenIconURL_max_order_by

Description

order by max() on columns of table "TokenIconURL"

Fields
Input Field Description
blockNumber - order_by
data - order_by
db_write_timestamp - order_by
error - order_by
fileType - order_by
height - order_by
id - order_by
method - order_by
src - order_by
token_id - order_by
url - order_by
verified - order_by
width - order_by
Example
{
  "blockNumber": "asc",
  "data": "asc",
  "db_write_timestamp": "asc",
  "error": "asc",
  "fileType": "asc",
  "height": "asc",
  "id": "asc",
  "method": "asc",
  "src": "asc",
  "token_id": "asc",
  "url": "asc",
  "verified": "asc",
  "width": "asc"
}

TokenIconURL_min_fields

Description

aggregate min on columns

Fields
Field Name Description
blockNumber - Int
data - String
db_write_timestamp - timestamp
error - String
fileType - String
height - Int
id - String
method - String
src - String
token_id - String
url - String
verified - verificationstatus
width - Int
Example
{
  "blockNumber": 123,
  "data": "abc123",
  "db_write_timestamp": timestamp,
  "error": "abc123",
  "fileType": "abc123",
  "height": 123,
  "id": "abc123",
  "method": "abc123",
  "src": "abc123",
  "token_id": "xyz789",
  "url": "abc123",
  "verified": verificationstatus,
  "width": 987
}

TokenIconURL_min_order_by

Description

order by min() on columns of table "TokenIconURL"

Fields
Input Field Description
blockNumber - order_by
data - order_by
db_write_timestamp - order_by
error - order_by
fileType - order_by
height - order_by
id - order_by
method - order_by
src - order_by
token_id - order_by
url - order_by
verified - order_by
width - order_by
Example
{
  "blockNumber": "asc",
  "data": "asc",
  "db_write_timestamp": "asc",
  "error": "asc",
  "fileType": "asc",
  "height": "asc",
  "id": "asc",
  "method": "asc",
  "src": "asc",
  "token_id": "asc",
  "url": "asc",
  "verified": "asc",
  "width": "asc"
}

TokenIconURL_order_by

Description

Ordering options when selecting data from "TokenIconURL".

Fields
Input Field Description
blockNumber - order_by
data - order_by
db_write_timestamp - order_by
error - order_by
fileType - order_by
height - order_by
id - order_by
method - order_by
src - order_by
token - Token_order_by
token_id - order_by
url - order_by
verified - order_by
width - order_by
Example
{
  "blockNumber": "asc",
  "data": "asc",
  "db_write_timestamp": "asc",
  "error": "asc",
  "fileType": "asc",
  "height": "asc",
  "id": "asc",
  "method": "asc",
  "src": "asc",
  "token": Token_order_by,
  "token_id": "asc",
  "url": "asc",
  "verified": "asc",
  "width": "asc"
}

TokenIconURL_select_column

Description

select columns of table "TokenIconURL"

Values
Enum Value Description

blockNumber

column name

data

column name

db_write_timestamp

column name

error

column name

fileType

column name

height

column name

id

column name

method

column name

src

column name

token_id

column name

url

column name

verified

column name

width

column name
Example
"blockNumber"

TokenIconURL_stddev_fields

Description

aggregate stddev on columns

Fields
Field Name Description
blockNumber - Float
height - Float
width - Float
Example
{"blockNumber": 123.45, "height": 123.45, "width": 123.45}

TokenIconURL_stddev_order_by

Description

order by stddev() on columns of table "TokenIconURL"

Fields
Input Field Description
blockNumber - order_by
height - order_by
width - order_by
Example
{"blockNumber": "asc", "height": "asc", "width": "asc"}

TokenIconURL_stddev_pop_fields

Description

aggregate stddev_pop on columns

Fields
Field Name Description
blockNumber - Float
height - Float
width - Float
Example
{"blockNumber": 987.65, "height": 123.45, "width": 987.65}

TokenIconURL_stddev_pop_order_by

Description

order by stddev_pop() on columns of table "TokenIconURL"

Fields
Input Field Description
blockNumber - order_by
height - order_by
width - order_by
Example
{"blockNumber": "asc", "height": "asc", "width": "asc"}

TokenIconURL_stddev_samp_fields

Description

aggregate stddev_samp on columns

Fields
Field Name Description
blockNumber - Float
height - Float
width - Float
Example
{"blockNumber": 123.45, "height": 123.45, "width": 123.45}

TokenIconURL_stddev_samp_order_by

Description

order by stddev_samp() on columns of table "TokenIconURL"

Fields
Input Field Description
blockNumber - order_by
height - order_by
width - order_by
Example
{"blockNumber": "asc", "height": "asc", "width": "asc"}

TokenIconURL_stream_cursor_input

Description

Streaming cursor of the table "TokenIconURL"

Fields
Input Field Description
initial_value - TokenIconURL_stream_cursor_value_input! Stream column input with initial value
ordering - cursor_ordering cursor ordering
Example
{
  "initial_value": TokenIconURL_stream_cursor_value_input,
  "ordering": "ASC"
}

TokenIconURL_stream_cursor_value_input

Description

Initial value of the column from where the streaming should start

Fields
Input Field Description
blockNumber - Int
data - String
db_write_timestamp - timestamp
error - String
fileType - String
height - Int
id - String
method - String
src - String
token_id - String
url - String
verified - verificationstatus
width - Int
Example
{
  "blockNumber": 123,
  "data": "abc123",
  "db_write_timestamp": timestamp,
  "error": "abc123",
  "fileType": "xyz789",
  "height": 987,
  "id": "xyz789",
  "method": "abc123",
  "src": "xyz789",
  "token_id": "xyz789",
  "url": "xyz789",
  "verified": verificationstatus,
  "width": 123
}

TokenIconURL_sum_fields

Description

aggregate sum on columns

Fields
Field Name Description
blockNumber - Int
height - Int
width - Int
Example
{"blockNumber": 987, "height": 987, "width": 987}

TokenIconURL_sum_order_by

Description

order by sum() on columns of table "TokenIconURL"

Fields
Input Field Description
blockNumber - order_by
height - order_by
width - order_by
Example
{"blockNumber": "asc", "height": "asc", "width": "asc"}

TokenIconURL_var_pop_fields

Description

aggregate var_pop on columns

Fields
Field Name Description
blockNumber - Float
height - Float
width - Float
Example
{"blockNumber": 987.65, "height": 987.65, "width": 987.65}

TokenIconURL_var_pop_order_by

Description

order by var_pop() on columns of table "TokenIconURL"

Fields
Input Field Description
blockNumber - order_by
height - order_by
width - order_by
Example
{"blockNumber": "asc", "height": "asc", "width": "asc"}

TokenIconURL_var_samp_fields

Description

aggregate var_samp on columns

Fields
Field Name Description
blockNumber - Float
height - Float
width - Float
Example
{"blockNumber": 987.65, "height": 123.45, "width": 123.45}

TokenIconURL_var_samp_order_by

Description

order by var_samp() on columns of table "TokenIconURL"

Fields
Input Field Description
blockNumber - order_by
height - order_by
width - order_by
Example
{"blockNumber": "asc", "height": "asc", "width": "asc"}

TokenIconURL_variance_fields

Description

aggregate variance on columns

Fields
Field Name Description
blockNumber - Float
height - Float
width - Float
Example
{"blockNumber": 987.65, "height": 987.65, "width": 987.65}

TokenIconURL_variance_order_by

Description

order by variance() on columns of table "TokenIconURL"

Fields
Input Field Description
blockNumber - order_by
height - order_by
width - order_by
Example
{"blockNumber": "asc", "height": "asc", "width": "asc"}

TokenImageURL

Description

columns and relationships of "TokenImageURL"

Fields
Field Name Description
blockNumber - Int!
data - String
db_write_timestamp - timestamp
error - String
fileType - String
height - Int
id - String!
index - Int
method - String
src - String
token - Token An object relationship
token_id - String
url - String
verified - verificationstatus!
width - Int
Example
{
  "blockNumber": 123,
  "data": "xyz789",
  "db_write_timestamp": timestamp,
  "error": "abc123",
  "fileType": "abc123",
  "height": 987,
  "id": "abc123",
  "index": 987,
  "method": "xyz789",
  "src": "xyz789",
  "token": Token,
  "token_id": "abc123",
  "url": "xyz789",
  "verified": verificationstatus,
  "width": 987
}

TokenImageURL_aggregate

Description

aggregated selection of "TokenImageURL"

Fields
Field Name Description
aggregate - TokenImageURL_aggregate_fields
nodes - [TokenImageURL!]!
Example
{
  "aggregate": TokenImageURL_aggregate_fields,
  "nodes": [TokenImageURL]
}

TokenImageURL_aggregate_bool_exp

Fields
Input Field Description
count - TokenImageURL_aggregate_bool_exp_count
Example
{"count": TokenImageURL_aggregate_bool_exp_count}

TokenImageURL_aggregate_bool_exp_count

Fields
Input Field Description
arguments - [TokenImageURL_select_column!]
distinct - Boolean
filter - TokenImageURL_bool_exp
predicate - Int_comparison_exp!
Example
{
  "arguments": ["blockNumber"],
  "distinct": false,
  "filter": TokenImageURL_bool_exp,
  "predicate": Int_comparison_exp
}

TokenImageURL_aggregate_fields

Description

aggregate fields of "TokenImageURL"

Example
{
  "avg": TokenImageURL_avg_fields,
  "count": 123,
  "max": TokenImageURL_max_fields,
  "min": TokenImageURL_min_fields,
  "stddev": TokenImageURL_stddev_fields,
  "stddev_pop": TokenImageURL_stddev_pop_fields,
  "stddev_samp": TokenImageURL_stddev_samp_fields,
  "sum": TokenImageURL_sum_fields,
  "var_pop": TokenImageURL_var_pop_fields,
  "var_samp": TokenImageURL_var_samp_fields,
  "variance": TokenImageURL_variance_fields
}

TokenImageURL_aggregate_order_by

Description

order by aggregate values of table "TokenImageURL"

Example
{
  "avg": TokenImageURL_avg_order_by,
  "count": "asc",
  "max": TokenImageURL_max_order_by,
  "min": TokenImageURL_min_order_by,
  "stddev": TokenImageURL_stddev_order_by,
  "stddev_pop": TokenImageURL_stddev_pop_order_by,
  "stddev_samp": TokenImageURL_stddev_samp_order_by,
  "sum": TokenImageURL_sum_order_by,
  "var_pop": TokenImageURL_var_pop_order_by,
  "var_samp": TokenImageURL_var_samp_order_by,
  "variance": TokenImageURL_variance_order_by
}

TokenImageURL_avg_fields

Description

aggregate avg on columns

Fields
Field Name Description
blockNumber - Float
height - Float
index - Float
width - Float
Example
{"blockNumber": 123.45, "height": 987.65, "index": 987.65, "width": 987.65}

TokenImageURL_avg_order_by

Description

order by avg() on columns of table "TokenImageURL"

Fields
Input Field Description
blockNumber - order_by
height - order_by
index - order_by
width - order_by
Example
{"blockNumber": "asc", "height": "asc", "index": "asc", "width": "asc"}

TokenImageURL_bool_exp

Description

Boolean expression to filter rows from the table "TokenImageURL". All fields are combined with a logical 'AND'.

Example
{
  "_and": [TokenImageURL_bool_exp],
  "_not": TokenImageURL_bool_exp,
  "_or": [TokenImageURL_bool_exp],
  "blockNumber": Int_comparison_exp,
  "data": String_comparison_exp,
  "db_write_timestamp": timestamp_comparison_exp,
  "error": String_comparison_exp,
  "fileType": String_comparison_exp,
  "height": Int_comparison_exp,
  "id": String_comparison_exp,
  "index": Int_comparison_exp,
  "method": String_comparison_exp,
  "src": String_comparison_exp,
  "token": Token_bool_exp,
  "token_id": String_comparison_exp,
  "url": String_comparison_exp,
  "verified": verificationstatus_comparison_exp,
  "width": Int_comparison_exp
}

TokenImageURL_max_fields

Description

aggregate max on columns

Fields
Field Name Description
blockNumber - Int
data - String
db_write_timestamp - timestamp
error - String
fileType - String
height - Int
id - String
index - Int
method - String
src - String
token_id - String
url - String
verified - verificationstatus
width - Int
Example
{
  "blockNumber": 987,
  "data": "xyz789",
  "db_write_timestamp": timestamp,
  "error": "xyz789",
  "fileType": "xyz789",
  "height": 987,
  "id": "abc123",
  "index": 123,
  "method": "abc123",
  "src": "xyz789",
  "token_id": "xyz789",
  "url": "xyz789",
  "verified": verificationstatus,
  "width": 987
}

TokenImageURL_max_order_by

Description

order by max() on columns of table "TokenImageURL"

Fields
Input Field Description
blockNumber - order_by
data - order_by
db_write_timestamp - order_by
error - order_by
fileType - order_by
height - order_by
id - order_by
index - order_by
method - order_by
src - order_by
token_id - order_by
url - order_by
verified - order_by
width - order_by
Example
{
  "blockNumber": "asc",
  "data": "asc",
  "db_write_timestamp": "asc",
  "error": "asc",
  "fileType": "asc",
  "height": "asc",
  "id": "asc",
  "index": "asc",
  "method": "asc",
  "src": "asc",
  "token_id": "asc",
  "url": "asc",
  "verified": "asc",
  "width": "asc"
}

TokenImageURL_min_fields

Description

aggregate min on columns

Fields
Field Name Description
blockNumber - Int
data - String
db_write_timestamp - timestamp
error - String
fileType - String
height - Int
id - String
index - Int
method - String
src - String
token_id - String
url - String
verified - verificationstatus
width - Int
Example
{
  "blockNumber": 987,
  "data": "abc123",
  "db_write_timestamp": timestamp,
  "error": "abc123",
  "fileType": "xyz789",
  "height": 987,
  "id": "xyz789",
  "index": 123,
  "method": "abc123",
  "src": "abc123",
  "token_id": "abc123",
  "url": "xyz789",
  "verified": verificationstatus,
  "width": 987
}

TokenImageURL_min_order_by

Description

order by min() on columns of table "TokenImageURL"

Fields
Input Field Description
blockNumber - order_by
data - order_by
db_write_timestamp - order_by
error - order_by
fileType - order_by
height - order_by
id - order_by
index - order_by
method - order_by
src - order_by
token_id - order_by
url - order_by
verified - order_by
width - order_by
Example
{
  "blockNumber": "asc",
  "data": "asc",
  "db_write_timestamp": "asc",
  "error": "asc",
  "fileType": "asc",
  "height": "asc",
  "id": "asc",
  "index": "asc",
  "method": "asc",
  "src": "asc",
  "token_id": "asc",
  "url": "asc",
  "verified": "asc",
  "width": "asc"
}

TokenImageURL_order_by

Description

Ordering options when selecting data from "TokenImageURL".

Fields
Input Field Description
blockNumber - order_by
data - order_by
db_write_timestamp - order_by
error - order_by
fileType - order_by
height - order_by
id - order_by
index - order_by
method - order_by
src - order_by
token - Token_order_by
token_id - order_by
url - order_by
verified - order_by
width - order_by
Example
{
  "blockNumber": "asc",
  "data": "asc",
  "db_write_timestamp": "asc",
  "error": "asc",
  "fileType": "asc",
  "height": "asc",
  "id": "asc",
  "index": "asc",
  "method": "asc",
  "src": "asc",
  "token": Token_order_by,
  "token_id": "asc",
  "url": "asc",
  "verified": "asc",
  "width": "asc"
}

TokenImageURL_select_column

Description

select columns of table "TokenImageURL"

Values
Enum Value Description

blockNumber

column name

data

column name

db_write_timestamp

column name

error

column name

fileType

column name

height

column name

id

column name

index

column name

method

column name

src

column name

token_id

column name

url

column name

verified

column name

width

column name
Example
"blockNumber"

TokenImageURL_stddev_fields

Description

aggregate stddev on columns

Fields
Field Name Description
blockNumber - Float
height - Float
index - Float
width - Float
Example
{"blockNumber": 987.65, "height": 987.65, "index": 987.65, "width": 987.65}

TokenImageURL_stddev_order_by

Description

order by stddev() on columns of table "TokenImageURL"

Fields
Input Field Description
blockNumber - order_by
height - order_by
index - order_by
width - order_by
Example
{"blockNumber": "asc", "height": "asc", "index": "asc", "width": "asc"}

TokenImageURL_stddev_pop_fields

Description

aggregate stddev_pop on columns

Fields
Field Name Description
blockNumber - Float
height - Float
index - Float
width - Float
Example
{"blockNumber": 987.65, "height": 987.65, "index": 123.45, "width": 987.65}

TokenImageURL_stddev_pop_order_by

Description

order by stddev_pop() on columns of table "TokenImageURL"

Fields
Input Field Description
blockNumber - order_by
height - order_by
index - order_by
width - order_by
Example
{"blockNumber": "asc", "height": "asc", "index": "asc", "width": "asc"}

TokenImageURL_stddev_samp_fields

Description

aggregate stddev_samp on columns

Fields
Field Name Description
blockNumber - Float
height - Float
index - Float
width - Float
Example
{"blockNumber": 123.45, "height": 123.45, "index": 123.45, "width": 987.65}

TokenImageURL_stddev_samp_order_by

Description

order by stddev_samp() on columns of table "TokenImageURL"

Fields
Input Field Description
blockNumber - order_by
height - order_by
index - order_by
width - order_by
Example
{"blockNumber": "asc", "height": "asc", "index": "asc", "width": "asc"}

TokenImageURL_stream_cursor_input

Description

Streaming cursor of the table "TokenImageURL"

Fields
Input Field Description
initial_value - TokenImageURL_stream_cursor_value_input! Stream column input with initial value
ordering - cursor_ordering cursor ordering
Example
{
  "initial_value": TokenImageURL_stream_cursor_value_input,
  "ordering": "ASC"
}

TokenImageURL_stream_cursor_value_input

Description

Initial value of the column from where the streaming should start

Fields
Input Field Description
blockNumber - Int
data - String
db_write_timestamp - timestamp
error - String
fileType - String
height - Int
id - String
index - Int
method - String
src - String
token_id - String
url - String
verified - verificationstatus
width - Int
Example
{
  "blockNumber": 123,
  "data": "xyz789",
  "db_write_timestamp": timestamp,
  "error": "abc123",
  "fileType": "abc123",
  "height": 987,
  "id": "xyz789",
  "index": 987,
  "method": "xyz789",
  "src": "xyz789",
  "token_id": "abc123",
  "url": "xyz789",
  "verified": verificationstatus,
  "width": 987
}

TokenImageURL_sum_fields

Description

aggregate sum on columns

Fields
Field Name Description
blockNumber - Int
height - Int
index - Int
width - Int
Example
{"blockNumber": 987, "height": 987, "index": 123, "width": 123}

TokenImageURL_sum_order_by

Description

order by sum() on columns of table "TokenImageURL"

Fields
Input Field Description
blockNumber - order_by
height - order_by
index - order_by
width - order_by
Example
{"blockNumber": "asc", "height": "asc", "index": "asc", "width": "asc"}

TokenImageURL_var_pop_fields

Description

aggregate var_pop on columns

Fields
Field Name Description
blockNumber - Float
height - Float
index - Float
width - Float
Example
{"blockNumber": 123.45, "height": 123.45, "index": 987.65, "width": 987.65}

TokenImageURL_var_pop_order_by

Description

order by var_pop() on columns of table "TokenImageURL"

Fields
Input Field Description
blockNumber - order_by
height - order_by
index - order_by
width - order_by
Example
{"blockNumber": "asc", "height": "asc", "index": "asc", "width": "asc"}

TokenImageURL_var_samp_fields

Description

aggregate var_samp on columns

Fields
Field Name Description
blockNumber - Float
height - Float
index - Float
width - Float
Example
{"blockNumber": 987.65, "height": 987.65, "index": 123.45, "width": 123.45}

TokenImageURL_var_samp_order_by

Description

order by var_samp() on columns of table "TokenImageURL"

Fields
Input Field Description
blockNumber - order_by
height - order_by
index - order_by
width - order_by
Example
{"blockNumber": "asc", "height": "asc", "index": "asc", "width": "asc"}

TokenImageURL_variance_fields

Description

aggregate variance on columns

Fields
Field Name Description
blockNumber - Float
height - Float
index - Float
width - Float
Example
{"blockNumber": 987.65, "height": 123.45, "index": 123.45, "width": 123.45}

TokenImageURL_variance_order_by

Description

order by variance() on columns of table "TokenImageURL"

Fields
Input Field Description
blockNumber - order_by
height - order_by
index - order_by
width - order_by
Example
{"blockNumber": "asc", "height": "asc", "index": "asc", "width": "asc"}

Token_aggregate

Description

aggregated selection of "Token"

Fields
Field Name Description
aggregate - Token_aggregate_fields
nodes - [Token!]!
Example
{
  "aggregate": Token_aggregate_fields,
  "nodes": [Token]
}

Token_aggregate_bool_exp

Fields
Input Field Description
bool_and - Token_aggregate_bool_exp_bool_and
bool_or - Token_aggregate_bool_exp_bool_or
count - Token_aggregate_bool_exp_count
Example
{
  "bool_and": Token_aggregate_bool_exp_bool_and,
  "bool_or": Token_aggregate_bool_exp_bool_or,
  "count": Token_aggregate_bool_exp_count
}

Token_aggregate_bool_exp_bool_and

Fields
Input Field Description
arguments - Token_select_column_Token_aggregate_bool_exp_bool_and_arguments_columns!
distinct - Boolean
filter - Token_bool_exp
predicate - Boolean_comparison_exp!
Example
{
  "arguments": "baseUriChanged",
  "distinct": false,
  "filter": Token_bool_exp,
  "predicate": Boolean_comparison_exp
}

Token_aggregate_bool_exp_bool_or

Fields
Input Field Description
arguments - Token_select_column_Token_aggregate_bool_exp_bool_or_arguments_columns!
distinct - Boolean
filter - Token_bool_exp
predicate - Boolean_comparison_exp!
Example
{
  "arguments": "baseUriChanged",
  "distinct": false,
  "filter": Token_bool_exp,
  "predicate": Boolean_comparison_exp
}

Token_aggregate_bool_exp_count

Fields
Input Field Description
arguments - [Token_select_column!]
distinct - Boolean
filter - Token_bool_exp
predicate - Int_comparison_exp!
Example
{
  "arguments": ["asset_id"],
  "distinct": true,
  "filter": Token_bool_exp,
  "predicate": Int_comparison_exp
}

Token_aggregate_fields

Description

aggregate fields of "Token"

Fields
Field Name Description
avg - Token_avg_fields
count - Int!
Arguments
distinct - Boolean
max - Token_max_fields
min - Token_min_fields
stddev - Token_stddev_fields
stddev_pop - Token_stddev_pop_fields
stddev_samp - Token_stddev_samp_fields
sum - Token_sum_fields
var_pop - Token_var_pop_fields
var_samp - Token_var_samp_fields
variance - Token_variance_fields
Example
{
  "avg": Token_avg_fields,
  "count": 987,
  "max": Token_max_fields,
  "min": Token_min_fields,
  "stddev": Token_stddev_fields,
  "stddev_pop": Token_stddev_pop_fields,
  "stddev_samp": Token_stddev_samp_fields,
  "sum": Token_sum_fields,
  "var_pop": Token_var_pop_fields,
  "var_samp": Token_var_samp_fields,
  "variance": Token_variance_fields
}

Token_aggregate_order_by

Description

order by aggregate values of table "Token"

Example
{
  "avg": Token_avg_order_by,
  "count": "asc",
  "max": Token_max_order_by,
  "min": Token_min_order_by,
  "stddev": Token_stddev_order_by,
  "stddev_pop": Token_stddev_pop_order_by,
  "stddev_samp": Token_stddev_samp_order_by,
  "sum": Token_sum_order_by,
  "var_pop": Token_var_pop_order_by,
  "var_samp": Token_var_samp_order_by,
  "variance": Token_variance_order_by
}

Token_avg_fields

Description

aggregate avg on columns

Fields
Field Name Description
blockNumber - Float
createdBlockNumber - Float
createdTimestamp - Float
createdTransactionIndex - Float
lsp4TokenType - Float
lsp8TokenIdFormat - Float
updatedBlockNumber - Float
updatedTimestamp - Float
updatedTransactionIndex - Float
Example
{
  "blockNumber": 123.45,
  "createdBlockNumber": 123.45,
  "createdTimestamp": 987.65,
  "createdTransactionIndex": 987.65,
  "lsp4TokenType": 123.45,
  "lsp8TokenIdFormat": 987.65,
  "updatedBlockNumber": 987.65,
  "updatedTimestamp": 123.45,
  "updatedTransactionIndex": 987.65
}

Token_avg_order_by

Description

order by avg() on columns of table "Token"

Fields
Input Field Description
blockNumber - order_by
createdBlockNumber - order_by
createdTimestamp - order_by
createdTransactionIndex - order_by
lsp4TokenType - order_by
lsp8TokenIdFormat - order_by
updatedBlockNumber - order_by
updatedTimestamp - order_by
updatedTransactionIndex - order_by
Example
{
  "blockNumber": "asc",
  "createdBlockNumber": "asc",
  "createdTimestamp": "asc",
  "createdTransactionIndex": "asc",
  "lsp4TokenType": "asc",
  "lsp8TokenIdFormat": "asc",
  "updatedBlockNumber": "asc",
  "updatedTimestamp": "asc",
  "updatedTransactionIndex": "asc"
}

Token_bool_exp

Description

Boolean expression to filter rows from the table "Token". All fields are combined with a logical 'AND'.

Fields
Input Field Description
_and - [Token_bool_exp!]
_not - Token_bool_exp
_or - [Token_bool_exp!]
appHistory - AppHistory_bool_exp
appHistory_aggregate - AppHistory_aggregate_bool_exp
appInstalls - AppInstall_bool_exp
appInstalls_aggregate - AppInstall_aggregate_bool_exp
asset - Asset_bool_exp
asset_id - String_comparison_exp
assets - TokenAssetURL_bool_exp
assets_ - String_array_comparison_exp
assets_aggregate - TokenAssetURL_aggregate_bool_exp
attributes - TokenAttribute_bool_exp
attributes_ - String_array_comparison_exp
attributes_aggregate - TokenAttribute_aggregate_bool_exp
backgroundImages - TokenBackgroundImageURL_bool_exp
backgroundImages_ - String_array_comparison_exp
baseAsset - Asset_bool_exp
baseAsset_id - String_comparison_exp
baseUriChanged - Boolean_comparison_exp
blockNumber - Int_comparison_exp
category - String_comparison_exp
createdBlockNumber - Int_comparison_exp
createdTimestamp - Int_comparison_exp
createdTransactionIndex - Int_comparison_exp
data - String_comparison_exp
db_write_timestamp - timestamp_comparison_exp
description - String_comparison_exp
error - String_comparison_exp
formattedTokenId - String_comparison_exp
holders - Hold_bool_exp
holders_aggregate - Hold_aggregate_bool_exp
icons - TokenIconURL_bool_exp
icons_ - String_array_comparison_exp
icons_aggregate - TokenIconURL_aggregate_bool_exp
id - String_comparison_exp
images - TokenImageURL_bool_exp
images_ - String_array_comparison_exp
images_aggregate - TokenImageURL_aggregate_bool_exp
links - TokenLink_bool_exp
links_ - String_array_comparison_exp
links_aggregate - TokenLink_aggregate_bool_exp
lsp4Creators - TokenCreators_bool_exp
lsp4CreatorsMap - TokenCreators_bool_exp
lsp4CreatorsMap_aggregate - TokenCreators_aggregate_bool_exp
lsp4Creators_ - String_array_comparison_exp
lsp4Creators_aggregate - TokenCreators_aggregate_bool_exp
lsp4TokenName - String_comparison_exp
lsp4TokenSymbol - String_comparison_exp
lsp4TokenType - Int_comparison_exp
lsp8ReferenceContract - Asset_bool_exp
lsp8ReferenceContractSelf - String_comparison_exp
lsp8ReferenceContract_id - String_comparison_exp
lsp8TokenIdFormat - Int_comparison_exp
method - String_comparison_exp
name - String_comparison_exp
src - String_comparison_exp
supportedStandardsLsp4DigitalAsset - Boolean_comparison_exp
tokenId - String_comparison_exp
transfers - Transfer_bool_exp
transfers_aggregate - Transfer_aggregate_bool_exp
updatedBlockNumber - Int_comparison_exp
updatedTimestamp - Int_comparison_exp
updatedTransactionIndex - Int_comparison_exp
url - String_comparison_exp
Example
{
  "_and": [Token_bool_exp],
  "_not": Token_bool_exp,
  "_or": [Token_bool_exp],
  "appHistory": AppHistory_bool_exp,
  "appHistory_aggregate": AppHistory_aggregate_bool_exp,
  "appInstalls": AppInstall_bool_exp,
  "appInstalls_aggregate": AppInstall_aggregate_bool_exp,
  "asset": Asset_bool_exp,
  "asset_id": String_comparison_exp,
  "assets": TokenAssetURL_bool_exp,
  "assets_": String_array_comparison_exp,
  "assets_aggregate": TokenAssetURL_aggregate_bool_exp,
  "attributes": TokenAttribute_bool_exp,
  "attributes_": String_array_comparison_exp,
  "attributes_aggregate": TokenAttribute_aggregate_bool_exp,
  "backgroundImages": TokenBackgroundImageURL_bool_exp,
  "backgroundImages_": String_array_comparison_exp,
  "baseAsset": Asset_bool_exp,
  "baseAsset_id": String_comparison_exp,
  "baseUriChanged": Boolean_comparison_exp,
  "blockNumber": Int_comparison_exp,
  "category": String_comparison_exp,
  "createdBlockNumber": Int_comparison_exp,
  "createdTimestamp": Int_comparison_exp,
  "createdTransactionIndex": Int_comparison_exp,
  "data": String_comparison_exp,
  "db_write_timestamp": timestamp_comparison_exp,
  "description": String_comparison_exp,
  "error": String_comparison_exp,
  "formattedTokenId": String_comparison_exp,
  "holders": Hold_bool_exp,
  "holders_aggregate": Hold_aggregate_bool_exp,
  "icons": TokenIconURL_bool_exp,
  "icons_": String_array_comparison_exp,
  "icons_aggregate": TokenIconURL_aggregate_bool_exp,
  "id": String_comparison_exp,
  "images": TokenImageURL_bool_exp,
  "images_": String_array_comparison_exp,
  "images_aggregate": TokenImageURL_aggregate_bool_exp,
  "links": TokenLink_bool_exp,
  "links_": String_array_comparison_exp,
  "links_aggregate": TokenLink_aggregate_bool_exp,
  "lsp4Creators": TokenCreators_bool_exp,
  "lsp4CreatorsMap": TokenCreators_bool_exp,
  "lsp4CreatorsMap_aggregate": TokenCreators_aggregate_bool_exp,
  "lsp4Creators_": String_array_comparison_exp,
  "lsp4Creators_aggregate": TokenCreators_aggregate_bool_exp,
  "lsp4TokenName": String_comparison_exp,
  "lsp4TokenSymbol": String_comparison_exp,
  "lsp4TokenType": Int_comparison_exp,
  "lsp8ReferenceContract": Asset_bool_exp,
  "lsp8ReferenceContractSelf": String_comparison_exp,
  "lsp8ReferenceContract_id": String_comparison_exp,
  "lsp8TokenIdFormat": Int_comparison_exp,
  "method": String_comparison_exp,
  "name": String_comparison_exp,
  "src": String_comparison_exp,
  "supportedStandardsLsp4DigitalAsset": Boolean_comparison_exp,
  "tokenId": String_comparison_exp,
  "transfers": Transfer_bool_exp,
  "transfers_aggregate": Transfer_aggregate_bool_exp,
  "updatedBlockNumber": Int_comparison_exp,
  "updatedTimestamp": Int_comparison_exp,
  "updatedTransactionIndex": Int_comparison_exp,
  "url": String_comparison_exp
}

Token_max_fields

Description

aggregate max on columns

Fields
Field Name Description
asset_id - String
assets_ - [String!]
attributes_ - [String!]
backgroundImages_ - [String!]
baseAsset_id - String
blockNumber - Int
category - String
createdBlockNumber - Int
createdTimestamp - Int
createdTransactionIndex - Int
data - String
db_write_timestamp - timestamp
description - String
error - String
formattedTokenId - String
icons_ - [String!]
id - String
images_ - [String!]
links_ - [String!]
lsp4Creators_ - [String!]
lsp4TokenName - String
lsp4TokenSymbol - String
lsp4TokenType - Int
lsp8ReferenceContractSelf - String
lsp8ReferenceContract_id - String
lsp8TokenIdFormat - Int
method - String
name - String
src - String
tokenId - String
updatedBlockNumber - Int
updatedTimestamp - Int
updatedTransactionIndex - Int
url - String
Example
{
  "asset_id": "abc123",
  "assets_": ["abc123"],
  "attributes_": ["xyz789"],
  "backgroundImages_": ["xyz789"],
  "baseAsset_id": "abc123",
  "blockNumber": 123,
  "category": "abc123",
  "createdBlockNumber": 123,
  "createdTimestamp": 123,
  "createdTransactionIndex": 123,
  "data": "abc123",
  "db_write_timestamp": timestamp,
  "description": "xyz789",
  "error": "xyz789",
  "formattedTokenId": "xyz789",
  "icons_": ["xyz789"],
  "id": "abc123",
  "images_": ["xyz789"],
  "links_": ["abc123"],
  "lsp4Creators_": ["xyz789"],
  "lsp4TokenName": "xyz789",
  "lsp4TokenSymbol": "xyz789",
  "lsp4TokenType": 987,
  "lsp8ReferenceContractSelf": "abc123",
  "lsp8ReferenceContract_id": "xyz789",
  "lsp8TokenIdFormat": 987,
  "method": "xyz789",
  "name": "xyz789",
  "src": "abc123",
  "tokenId": "abc123",
  "updatedBlockNumber": 987,
  "updatedTimestamp": 987,
  "updatedTransactionIndex": 123,
  "url": "xyz789"
}

Token_max_order_by

Description

order by max() on columns of table "Token"

Fields
Input Field Description
asset_id - order_by
assets_ - order_by
attributes_ - order_by
backgroundImages_ - order_by
baseAsset_id - order_by
blockNumber - order_by
category - order_by
createdBlockNumber - order_by
createdTimestamp - order_by
createdTransactionIndex - order_by
data - order_by
db_write_timestamp - order_by
description - order_by
error - order_by
formattedTokenId - order_by
icons_ - order_by
id - order_by
images_ - order_by
links_ - order_by
lsp4Creators_ - order_by
lsp4TokenName - order_by
lsp4TokenSymbol - order_by
lsp4TokenType - order_by
lsp8ReferenceContractSelf - order_by
lsp8ReferenceContract_id - order_by
lsp8TokenIdFormat - order_by
method - order_by
name - order_by
src - order_by
tokenId - order_by
updatedBlockNumber - order_by
updatedTimestamp - order_by
updatedTransactionIndex - order_by
url - order_by
Example
{
  "asset_id": "asc",
  "assets_": "asc",
  "attributes_": "asc",
  "backgroundImages_": "asc",
  "baseAsset_id": "asc",
  "blockNumber": "asc",
  "category": "asc",
  "createdBlockNumber": "asc",
  "createdTimestamp": "asc",
  "createdTransactionIndex": "asc",
  "data": "asc",
  "db_write_timestamp": "asc",
  "description": "asc",
  "error": "asc",
  "formattedTokenId": "asc",
  "icons_": "asc",
  "id": "asc",
  "images_": "asc",
  "links_": "asc",
  "lsp4Creators_": "asc",
  "lsp4TokenName": "asc",
  "lsp4TokenSymbol": "asc",
  "lsp4TokenType": "asc",
  "lsp8ReferenceContractSelf": "asc",
  "lsp8ReferenceContract_id": "asc",
  "lsp8TokenIdFormat": "asc",
  "method": "asc",
  "name": "asc",
  "src": "asc",
  "tokenId": "asc",
  "updatedBlockNumber": "asc",
  "updatedTimestamp": "asc",
  "updatedTransactionIndex": "asc",
  "url": "asc"
}

Token_min_fields

Description

aggregate min on columns

Fields
Field Name Description
asset_id - String
assets_ - [String!]
attributes_ - [String!]
backgroundImages_ - [String!]
baseAsset_id - String
blockNumber - Int
category - String
createdBlockNumber - Int
createdTimestamp - Int
createdTransactionIndex - Int
data - String
db_write_timestamp - timestamp
description - String
error - String
formattedTokenId - String
icons_ - [String!]
id - String
images_ - [String!]
links_ - [String!]
lsp4Creators_ - [String!]
lsp4TokenName - String
lsp4TokenSymbol - String
lsp4TokenType - Int
lsp8ReferenceContractSelf - String
lsp8ReferenceContract_id - String
lsp8TokenIdFormat - Int
method - String
name - String
src - String
tokenId - String
updatedBlockNumber - Int
updatedTimestamp - Int
updatedTransactionIndex - Int
url - String
Example
{
  "asset_id": "abc123",
  "assets_": ["abc123"],
  "attributes_": ["xyz789"],
  "backgroundImages_": ["xyz789"],
  "baseAsset_id": "abc123",
  "blockNumber": 987,
  "category": "abc123",
  "createdBlockNumber": 123,
  "createdTimestamp": 123,
  "createdTransactionIndex": 123,
  "data": "abc123",
  "db_write_timestamp": timestamp,
  "description": "xyz789",
  "error": "abc123",
  "formattedTokenId": "abc123",
  "icons_": ["abc123"],
  "id": "abc123",
  "images_": ["abc123"],
  "links_": ["xyz789"],
  "lsp4Creators_": ["xyz789"],
  "lsp4TokenName": "abc123",
  "lsp4TokenSymbol": "xyz789",
  "lsp4TokenType": 123,
  "lsp8ReferenceContractSelf": "abc123",
  "lsp8ReferenceContract_id": "abc123",
  "lsp8TokenIdFormat": 987,
  "method": "abc123",
  "name": "abc123",
  "src": "abc123",
  "tokenId": "abc123",
  "updatedBlockNumber": 987,
  "updatedTimestamp": 123,
  "updatedTransactionIndex": 987,
  "url": "abc123"
}

Token_min_order_by

Description

order by min() on columns of table "Token"

Fields
Input Field Description
asset_id - order_by
assets_ - order_by
attributes_ - order_by
backgroundImages_ - order_by
baseAsset_id - order_by
blockNumber - order_by
category - order_by
createdBlockNumber - order_by
createdTimestamp - order_by
createdTransactionIndex - order_by
data - order_by
db_write_timestamp - order_by
description - order_by
error - order_by
formattedTokenId - order_by
icons_ - order_by
id - order_by
images_ - order_by
links_ - order_by
lsp4Creators_ - order_by
lsp4TokenName - order_by
lsp4TokenSymbol - order_by
lsp4TokenType - order_by
lsp8ReferenceContractSelf - order_by
lsp8ReferenceContract_id - order_by
lsp8TokenIdFormat - order_by
method - order_by
name - order_by
src - order_by
tokenId - order_by
updatedBlockNumber - order_by
updatedTimestamp - order_by
updatedTransactionIndex - order_by
url - order_by
Example
{
  "asset_id": "asc",
  "assets_": "asc",
  "attributes_": "asc",
  "backgroundImages_": "asc",
  "baseAsset_id": "asc",
  "blockNumber": "asc",
  "category": "asc",
  "createdBlockNumber": "asc",
  "createdTimestamp": "asc",
  "createdTransactionIndex": "asc",
  "data": "asc",
  "db_write_timestamp": "asc",
  "description": "asc",
  "error": "asc",
  "formattedTokenId": "asc",
  "icons_": "asc",
  "id": "asc",
  "images_": "asc",
  "links_": "asc",
  "lsp4Creators_": "asc",
  "lsp4TokenName": "asc",
  "lsp4TokenSymbol": "asc",
  "lsp4TokenType": "asc",
  "lsp8ReferenceContractSelf": "asc",
  "lsp8ReferenceContract_id": "asc",
  "lsp8TokenIdFormat": "asc",
  "method": "asc",
  "name": "asc",
  "src": "asc",
  "tokenId": "asc",
  "updatedBlockNumber": "asc",
  "updatedTimestamp": "asc",
  "updatedTransactionIndex": "asc",
  "url": "asc"
}

Token_order_by

Description

Ordering options when selecting data from "Token".

Fields
Input Field Description
appHistory_aggregate - AppHistory_aggregate_order_by
appInstalls_aggregate - AppInstall_aggregate_order_by
asset - Asset_order_by
asset_id - order_by
assets_ - order_by
assets_aggregate - TokenAssetURL_aggregate_order_by
attributes_ - order_by
attributes_aggregate - TokenAttribute_aggregate_order_by
backgroundImages_ - order_by
backgroundImages_aggregate - TokenBackgroundImageURL_aggregate_order_by
baseAsset - Asset_order_by
baseAsset_id - order_by
baseUriChanged - order_by
blockNumber - order_by
category - order_by
createdBlockNumber - order_by
createdTimestamp - order_by
createdTransactionIndex - order_by
data - order_by
db_write_timestamp - order_by
description - order_by
error - order_by
formattedTokenId - order_by
holders_aggregate - Hold_aggregate_order_by
icons_ - order_by
icons_aggregate - TokenIconURL_aggregate_order_by
id - order_by
images_ - order_by
images_aggregate - TokenImageURL_aggregate_order_by
links_ - order_by
links_aggregate - TokenLink_aggregate_order_by
lsp4CreatorsMap_aggregate - TokenCreators_aggregate_order_by
lsp4Creators_ - order_by
lsp4Creators_aggregate - TokenCreators_aggregate_order_by
lsp4TokenName - order_by
lsp4TokenSymbol - order_by
lsp4TokenType - order_by
lsp8ReferenceContract - Asset_order_by
lsp8ReferenceContractSelf - order_by
lsp8ReferenceContract_id - order_by
lsp8TokenIdFormat - order_by
method - order_by
name - order_by
src - order_by
supportedStandardsLsp4DigitalAsset - order_by
tokenId - order_by
transfers_aggregate - Transfer_aggregate_order_by
updatedBlockNumber - order_by
updatedTimestamp - order_by
updatedTransactionIndex - order_by
url - order_by
Example
{
  "appHistory_aggregate": AppHistory_aggregate_order_by,
  "appInstalls_aggregate": AppInstall_aggregate_order_by,
  "asset": Asset_order_by,
  "asset_id": "asc",
  "assets_": "asc",
  "assets_aggregate": TokenAssetURL_aggregate_order_by,
  "attributes_": "asc",
  "attributes_aggregate": TokenAttribute_aggregate_order_by,
  "backgroundImages_": "asc",
  "backgroundImages_aggregate": TokenBackgroundImageURL_aggregate_order_by,
  "baseAsset": Asset_order_by,
  "baseAsset_id": "asc",
  "baseUriChanged": "asc",
  "blockNumber": "asc",
  "category": "asc",
  "createdBlockNumber": "asc",
  "createdTimestamp": "asc",
  "createdTransactionIndex": "asc",
  "data": "asc",
  "db_write_timestamp": "asc",
  "description": "asc",
  "error": "asc",
  "formattedTokenId": "asc",
  "holders_aggregate": Hold_aggregate_order_by,
  "icons_": "asc",
  "icons_aggregate": TokenIconURL_aggregate_order_by,
  "id": "asc",
  "images_": "asc",
  "images_aggregate": TokenImageURL_aggregate_order_by,
  "links_": "asc",
  "links_aggregate": TokenLink_aggregate_order_by,
  "lsp4CreatorsMap_aggregate": TokenCreators_aggregate_order_by,
  "lsp4Creators_": "asc",
  "lsp4Creators_aggregate": TokenCreators_aggregate_order_by,
  "lsp4TokenName": "asc",
  "lsp4TokenSymbol": "asc",
  "lsp4TokenType": "asc",
  "lsp8ReferenceContract": Asset_order_by,
  "lsp8ReferenceContractSelf": "asc",
  "lsp8ReferenceContract_id": "asc",
  "lsp8TokenIdFormat": "asc",
  "method": "asc",
  "name": "asc",
  "src": "asc",
  "supportedStandardsLsp4DigitalAsset": "asc",
  "tokenId": "asc",
  "transfers_aggregate": Transfer_aggregate_order_by,
  "updatedBlockNumber": "asc",
  "updatedTimestamp": "asc",
  "updatedTransactionIndex": "asc",
  "url": "asc"
}

Token_select_column

Description

select columns of table "Token"

Values
Enum Value Description

asset_id

column name

assets_

column name

attributes_

column name

backgroundImages_

column name

baseAsset_id

column name

baseUriChanged

column name

blockNumber

column name

category

column name

createdBlockNumber

column name

createdTimestamp

column name

createdTransactionIndex

column name

data

column name

db_write_timestamp

column name

description

column name

error

column name

formattedTokenId

column name

icons_

column name

id

column name

images_

column name

links_

column name

lsp4Creators_

column name

lsp4TokenName

column name

lsp4TokenSymbol

column name

lsp4TokenType

column name

lsp8ReferenceContractSelf

column name

lsp8ReferenceContract_id

column name

lsp8TokenIdFormat

column name

method

column name

name

column name

src

column name

supportedStandardsLsp4DigitalAsset

column name

tokenId

column name

updatedBlockNumber

column name

updatedTimestamp

column name

updatedTransactionIndex

column name

url

column name
Example
"asset_id"

Token_select_column_Token_aggregate_bool_exp_bool_and_arguments_columns

Description

select "Token_aggregate_bool_exp_bool_and_arguments_columns" columns of table "Token"

Values
Enum Value Description

baseUriChanged

column name

supportedStandardsLsp4DigitalAsset

column name
Example
"baseUriChanged"

Token_select_column_Token_aggregate_bool_exp_bool_or_arguments_columns

Description

select "Token_aggregate_bool_exp_bool_or_arguments_columns" columns of table "Token"

Values
Enum Value Description

baseUriChanged

column name

supportedStandardsLsp4DigitalAsset

column name
Example
"baseUriChanged"

Token_stddev_fields

Description

aggregate stddev on columns

Fields
Field Name Description
blockNumber - Float
createdBlockNumber - Float
createdTimestamp - Float
createdTransactionIndex - Float
lsp4TokenType - Float
lsp8TokenIdFormat - Float
updatedBlockNumber - Float
updatedTimestamp - Float
updatedTransactionIndex - Float
Example
{
  "blockNumber": 123.45,
  "createdBlockNumber": 123.45,
  "createdTimestamp": 123.45,
  "createdTransactionIndex": 987.65,
  "lsp4TokenType": 123.45,
  "lsp8TokenIdFormat": 987.65,
  "updatedBlockNumber": 123.45,
  "updatedTimestamp": 123.45,
  "updatedTransactionIndex": 987.65
}

Token_stddev_order_by

Description

order by stddev() on columns of table "Token"

Fields
Input Field Description
blockNumber - order_by
createdBlockNumber - order_by
createdTimestamp - order_by
createdTransactionIndex - order_by
lsp4TokenType - order_by
lsp8TokenIdFormat - order_by
updatedBlockNumber - order_by
updatedTimestamp - order_by
updatedTransactionIndex - order_by
Example
{
  "blockNumber": "asc",
  "createdBlockNumber": "asc",
  "createdTimestamp": "asc",
  "createdTransactionIndex": "asc",
  "lsp4TokenType": "asc",
  "lsp8TokenIdFormat": "asc",
  "updatedBlockNumber": "asc",
  "updatedTimestamp": "asc",
  "updatedTransactionIndex": "asc"
}

Token_stddev_pop_fields

Description

aggregate stddev_pop on columns

Fields
Field Name Description
blockNumber - Float
createdBlockNumber - Float
createdTimestamp - Float
createdTransactionIndex - Float
lsp4TokenType - Float
lsp8TokenIdFormat - Float
updatedBlockNumber - Float
updatedTimestamp - Float
updatedTransactionIndex - Float
Example
{
  "blockNumber": 123.45,
  "createdBlockNumber": 987.65,
  "createdTimestamp": 987.65,
  "createdTransactionIndex": 987.65,
  "lsp4TokenType": 123.45,
  "lsp8TokenIdFormat": 987.65,
  "updatedBlockNumber": 987.65,
  "updatedTimestamp": 123.45,
  "updatedTransactionIndex": 123.45
}

Token_stddev_pop_order_by

Description

order by stddev_pop() on columns of table "Token"

Fields
Input Field Description
blockNumber - order_by
createdBlockNumber - order_by
createdTimestamp - order_by
createdTransactionIndex - order_by
lsp4TokenType - order_by
lsp8TokenIdFormat - order_by
updatedBlockNumber - order_by
updatedTimestamp - order_by
updatedTransactionIndex - order_by
Example
{
  "blockNumber": "asc",
  "createdBlockNumber": "asc",
  "createdTimestamp": "asc",
  "createdTransactionIndex": "asc",
  "lsp4TokenType": "asc",
  "lsp8TokenIdFormat": "asc",
  "updatedBlockNumber": "asc",
  "updatedTimestamp": "asc",
  "updatedTransactionIndex": "asc"
}

Token_stddev_samp_fields

Description

aggregate stddev_samp on columns

Fields
Field Name Description
blockNumber - Float
createdBlockNumber - Float
createdTimestamp - Float
createdTransactionIndex - Float
lsp4TokenType - Float
lsp8TokenIdFormat - Float
updatedBlockNumber - Float
updatedTimestamp - Float
updatedTransactionIndex - Float
Example
{
  "blockNumber": 123.45,
  "createdBlockNumber": 123.45,
  "createdTimestamp": 123.45,
  "createdTransactionIndex": 987.65,
  "lsp4TokenType": 987.65,
  "lsp8TokenIdFormat": 987.65,
  "updatedBlockNumber": 987.65,
  "updatedTimestamp": 987.65,
  "updatedTransactionIndex": 123.45
}

Token_stddev_samp_order_by

Description

order by stddev_samp() on columns of table "Token"

Fields
Input Field Description
blockNumber - order_by
createdBlockNumber - order_by
createdTimestamp - order_by
createdTransactionIndex - order_by
lsp4TokenType - order_by
lsp8TokenIdFormat - order_by
updatedBlockNumber - order_by
updatedTimestamp - order_by
updatedTransactionIndex - order_by
Example
{
  "blockNumber": "asc",
  "createdBlockNumber": "asc",
  "createdTimestamp": "asc",
  "createdTransactionIndex": "asc",
  "lsp4TokenType": "asc",
  "lsp8TokenIdFormat": "asc",
  "updatedBlockNumber": "asc",
  "updatedTimestamp": "asc",
  "updatedTransactionIndex": "asc"
}

Token_stream_cursor_input

Description

Streaming cursor of the table "Token"

Fields
Input Field Description
initial_value - Token_stream_cursor_value_input! Stream column input with initial value
ordering - cursor_ordering cursor ordering
Example
{
  "initial_value": Token_stream_cursor_value_input,
  "ordering": "ASC"
}

Token_stream_cursor_value_input

Description

Initial value of the column from where the streaming should start

Fields
Input Field Description
asset_id - String
assets_ - [String!]
attributes_ - [String!]
backgroundImages_ - [String!]
baseAsset_id - String
baseUriChanged - Boolean
blockNumber - Int
category - String
createdBlockNumber - Int
createdTimestamp - Int
createdTransactionIndex - Int
data - String
db_write_timestamp - timestamp
description - String
error - String
formattedTokenId - String
icons_ - [String!]
id - String
images_ - [String!]
links_ - [String!]
lsp4Creators_ - [String!]
lsp4TokenName - String
lsp4TokenSymbol - String
lsp4TokenType - Int
lsp8ReferenceContractSelf - String
lsp8ReferenceContract_id - String
lsp8TokenIdFormat - Int
method - String
name - String
src - String
supportedStandardsLsp4DigitalAsset - Boolean
tokenId - String
updatedBlockNumber - Int
updatedTimestamp - Int
updatedTransactionIndex - Int
url - String
Example
{
  "asset_id": "abc123",
  "assets_": ["xyz789"],
  "attributes_": ["xyz789"],
  "backgroundImages_": ["abc123"],
  "baseAsset_id": "xyz789",
  "baseUriChanged": false,
  "blockNumber": 987,
  "category": "abc123",
  "createdBlockNumber": 123,
  "createdTimestamp": 123,
  "createdTransactionIndex": 123,
  "data": "abc123",
  "db_write_timestamp": timestamp,
  "description": "xyz789",
  "error": "abc123",
  "formattedTokenId": "xyz789",
  "icons_": ["xyz789"],
  "id": "xyz789",
  "images_": ["xyz789"],
  "links_": ["abc123"],
  "lsp4Creators_": ["xyz789"],
  "lsp4TokenName": "xyz789",
  "lsp4TokenSymbol": "abc123",
  "lsp4TokenType": 987,
  "lsp8ReferenceContractSelf": "xyz789",
  "lsp8ReferenceContract_id": "xyz789",
  "lsp8TokenIdFormat": 987,
  "method": "xyz789",
  "name": "xyz789",
  "src": "abc123",
  "supportedStandardsLsp4DigitalAsset": false,
  "tokenId": "abc123",
  "updatedBlockNumber": 123,
  "updatedTimestamp": 987,
  "updatedTransactionIndex": 987,
  "url": "abc123"
}

Token_sum_fields

Description

aggregate sum on columns

Fields
Field Name Description
blockNumber - Int
createdBlockNumber - Int
createdTimestamp - Int
createdTransactionIndex - Int
lsp4TokenType - Int
lsp8TokenIdFormat - Int
updatedBlockNumber - Int
updatedTimestamp - Int
updatedTransactionIndex - Int
Example
{
  "blockNumber": 987,
  "createdBlockNumber": 123,
  "createdTimestamp": 123,
  "createdTransactionIndex": 123,
  "lsp4TokenType": 987,
  "lsp8TokenIdFormat": 123,
  "updatedBlockNumber": 987,
  "updatedTimestamp": 987,
  "updatedTransactionIndex": 987
}

Token_sum_order_by

Description

order by sum() on columns of table "Token"

Fields
Input Field Description
blockNumber - order_by
createdBlockNumber - order_by
createdTimestamp - order_by
createdTransactionIndex - order_by
lsp4TokenType - order_by
lsp8TokenIdFormat - order_by
updatedBlockNumber - order_by
updatedTimestamp - order_by
updatedTransactionIndex - order_by
Example
{
  "blockNumber": "asc",
  "createdBlockNumber": "asc",
  "createdTimestamp": "asc",
  "createdTransactionIndex": "asc",
  "lsp4TokenType": "asc",
  "lsp8TokenIdFormat": "asc",
  "updatedBlockNumber": "asc",
  "updatedTimestamp": "asc",
  "updatedTransactionIndex": "asc"
}

Token_var_pop_fields

Description

aggregate var_pop on columns

Fields
Field Name Description
blockNumber - Float
createdBlockNumber - Float
createdTimestamp - Float
createdTransactionIndex - Float
lsp4TokenType - Float
lsp8TokenIdFormat - Float
updatedBlockNumber - Float
updatedTimestamp - Float
updatedTransactionIndex - Float
Example
{
  "blockNumber": 123.45,
  "createdBlockNumber": 123.45,
  "createdTimestamp": 987.65,
  "createdTransactionIndex": 987.65,
  "lsp4TokenType": 123.45,
  "lsp8TokenIdFormat": 987.65,
  "updatedBlockNumber": 987.65,
  "updatedTimestamp": 987.65,
  "updatedTransactionIndex": 987.65
}

Token_var_pop_order_by

Description

order by var_pop() on columns of table "Token"

Fields
Input Field Description
blockNumber - order_by
createdBlockNumber - order_by
createdTimestamp - order_by
createdTransactionIndex - order_by
lsp4TokenType - order_by
lsp8TokenIdFormat - order_by
updatedBlockNumber - order_by
updatedTimestamp - order_by
updatedTransactionIndex - order_by
Example
{
  "blockNumber": "asc",
  "createdBlockNumber": "asc",
  "createdTimestamp": "asc",
  "createdTransactionIndex": "asc",
  "lsp4TokenType": "asc",
  "lsp8TokenIdFormat": "asc",
  "updatedBlockNumber": "asc",
  "updatedTimestamp": "asc",
  "updatedTransactionIndex": "asc"
}

Token_var_samp_fields

Description

aggregate var_samp on columns

Fields
Field Name Description
blockNumber - Float
createdBlockNumber - Float
createdTimestamp - Float
createdTransactionIndex - Float
lsp4TokenType - Float
lsp8TokenIdFormat - Float
updatedBlockNumber - Float
updatedTimestamp - Float
updatedTransactionIndex - Float
Example
{
  "blockNumber": 987.65,
  "createdBlockNumber": 123.45,
  "createdTimestamp": 987.65,
  "createdTransactionIndex": 123.45,
  "lsp4TokenType": 987.65,
  "lsp8TokenIdFormat": 123.45,
  "updatedBlockNumber": 123.45,
  "updatedTimestamp": 123.45,
  "updatedTransactionIndex": 987.65
}

Token_var_samp_order_by

Description

order by var_samp() on columns of table "Token"

Fields
Input Field Description
blockNumber - order_by
createdBlockNumber - order_by
createdTimestamp - order_by
createdTransactionIndex - order_by
lsp4TokenType - order_by
lsp8TokenIdFormat - order_by
updatedBlockNumber - order_by
updatedTimestamp - order_by
updatedTransactionIndex - order_by
Example
{
  "blockNumber": "asc",
  "createdBlockNumber": "asc",
  "createdTimestamp": "asc",
  "createdTransactionIndex": "asc",
  "lsp4TokenType": "asc",
  "lsp8TokenIdFormat": "asc",
  "updatedBlockNumber": "asc",
  "updatedTimestamp": "asc",
  "updatedTransactionIndex": "asc"
}

Token_variance_fields

Description

aggregate variance on columns

Fields
Field Name Description
blockNumber - Float
createdBlockNumber - Float
createdTimestamp - Float
createdTransactionIndex - Float
lsp4TokenType - Float
lsp8TokenIdFormat - Float
updatedBlockNumber - Float
updatedTimestamp - Float
updatedTransactionIndex - Float
Example
{
  "blockNumber": 123.45,
  "createdBlockNumber": 123.45,
  "createdTimestamp": 123.45,
  "createdTransactionIndex": 123.45,
  "lsp4TokenType": 123.45,
  "lsp8TokenIdFormat": 987.65,
  "updatedBlockNumber": 987.65,
  "updatedTimestamp": 987.65,
  "updatedTransactionIndex": 987.65
}

Token_variance_order_by

Description

order by variance() on columns of table "Token"

Fields
Input Field Description
blockNumber - order_by
createdBlockNumber - order_by
createdTimestamp - order_by
createdTransactionIndex - order_by
lsp4TokenType - order_by
lsp8TokenIdFormat - order_by
updatedBlockNumber - order_by
updatedTimestamp - order_by
updatedTransactionIndex - order_by
Example
{
  "blockNumber": "asc",
  "createdBlockNumber": "asc",
  "createdTimestamp": "asc",
  "createdTransactionIndex": "asc",
  "lsp4TokenType": "asc",
  "lsp8TokenIdFormat": "asc",
  "updatedBlockNumber": "asc",
  "updatedTimestamp": "asc",
  "updatedTransactionIndex": "asc"
}

Transaction

Description

columns and relationships of "Transaction"

Fields
Field Name Description
blockNumber - Int!
cumulativeGasUsed - numeric!
db_write_timestamp - timestamp
effectiveGasPrice - numeric!
from - String
gas - numeric!
gasPrice - numeric!
gasUsed - numeric!
holds - [Hold!]! An array relationship
Arguments
distinct_on - [Hold_select_column!]

distinct select on columns

limit - Int

limit the number of rows returned

offset - Int

skip the first n rows. Use only with order_by

order_by - [Hold_order_by!]

sort the rows by one or more columns

where - Hold_bool_exp

filter the rows returned

holds_aggregate - Hold_aggregate! An aggregate relationship
Arguments
distinct_on - [Hold_select_column!]

distinct select on columns

limit - Int

limit the number of rows returned

offset - Int

skip the first n rows. Use only with order_by

order_by - [Hold_order_by!]

sort the rows by one or more columns

where - Hold_bool_exp

filter the rows returned

id - String!
input - String
isRelayer - Boolean
maxFeePerGas - numeric
maxPriorityFeePerGas - numeric
profile - Profile An object relationship
profile_id - String
timestamp - Int!
to - String
transactionIndex - Int
transfers - [Transfer!]! An array relationship
Arguments
distinct_on - [Transfer_select_column!]

distinct select on columns

limit - Int

limit the number of rows returned

offset - Int

skip the first n rows. Use only with order_by

order_by - [Transfer_order_by!]

sort the rows by one or more columns

where - Transfer_bool_exp

filter the rows returned

transfers_aggregate - Transfer_aggregate! An aggregate relationship
Arguments
distinct_on - [Transfer_select_column!]

distinct select on columns

limit - Int

limit the number of rows returned

offset - Int

skip the first n rows. Use only with order_by

order_by - [Transfer_order_by!]

sort the rows by one or more columns

where - Transfer_bool_exp

filter the rows returned

value - numeric!
Example
{
  "blockNumber": 987,
  "cumulativeGasUsed": numeric,
  "db_write_timestamp": timestamp,
  "effectiveGasPrice": numeric,
  "from": "xyz789",
  "gas": numeric,
  "gasPrice": numeric,
  "gasUsed": numeric,
  "holds": [Hold],
  "holds_aggregate": Hold_aggregate,
  "id": "abc123",
  "input": "abc123",
  "isRelayer": true,
  "maxFeePerGas": numeric,
  "maxPriorityFeePerGas": numeric,
  "profile": Profile,
  "profile_id": "abc123",
  "timestamp": 987,
  "to": "xyz789",
  "transactionIndex": 123,
  "transfers": [Transfer],
  "transfers_aggregate": Transfer_aggregate,
  "value": numeric
}

Transaction_aggregate

Description

aggregated selection of "Transaction"

Fields
Field Name Description
aggregate - Transaction_aggregate_fields
nodes - [Transaction!]!
Example
{
  "aggregate": Transaction_aggregate_fields,
  "nodes": [Transaction]
}

Transaction_aggregate_bool_exp

Example
{
  "bool_and": Transaction_aggregate_bool_exp_bool_and,
  "bool_or": Transaction_aggregate_bool_exp_bool_or,
  "count": Transaction_aggregate_bool_exp_count
}

Transaction_aggregate_bool_exp_bool_and

Example
{
  "arguments": "isRelayer",
  "distinct": true,
  "filter": Transaction_bool_exp,
  "predicate": Boolean_comparison_exp
}

Transaction_aggregate_bool_exp_bool_or

Example
{
  "arguments": "isRelayer",
  "distinct": false,
  "filter": Transaction_bool_exp,
  "predicate": Boolean_comparison_exp
}

Transaction_aggregate_bool_exp_count

Fields
Input Field Description
arguments - [Transaction_select_column!]
distinct - Boolean
filter - Transaction_bool_exp
predicate - Int_comparison_exp!
Example
{
  "arguments": ["blockNumber"],
  "distinct": true,
  "filter": Transaction_bool_exp,
  "predicate": Int_comparison_exp
}

Transaction_aggregate_fields

Description

aggregate fields of "Transaction"

Example
{
  "avg": Transaction_avg_fields,
  "count": 987,
  "max": Transaction_max_fields,
  "min": Transaction_min_fields,
  "stddev": Transaction_stddev_fields,
  "stddev_pop": Transaction_stddev_pop_fields,
  "stddev_samp": Transaction_stddev_samp_fields,
  "sum": Transaction_sum_fields,
  "var_pop": Transaction_var_pop_fields,
  "var_samp": Transaction_var_samp_fields,
  "variance": Transaction_variance_fields
}

Transaction_aggregate_order_by

Description

order by aggregate values of table "Transaction"

Example
{
  "avg": Transaction_avg_order_by,
  "count": "asc",
  "max": Transaction_max_order_by,
  "min": Transaction_min_order_by,
  "stddev": Transaction_stddev_order_by,
  "stddev_pop": Transaction_stddev_pop_order_by,
  "stddev_samp": Transaction_stddev_samp_order_by,
  "sum": Transaction_sum_order_by,
  "var_pop": Transaction_var_pop_order_by,
  "var_samp": Transaction_var_samp_order_by,
  "variance": Transaction_variance_order_by
}

Transaction_avg_fields

Description

aggregate avg on columns

Fields
Field Name Description
blockNumber - Float
cumulativeGasUsed - Float
effectiveGasPrice - Float
gas - Float
gasPrice - Float
gasUsed - Float
maxFeePerGas - Float
maxPriorityFeePerGas - Float
timestamp - Float
transactionIndex - Float
value - Float
Example
{
  "blockNumber": 123.45,
  "cumulativeGasUsed": 123.45,
  "effectiveGasPrice": 123.45,
  "gas": 123.45,
  "gasPrice": 123.45,
  "gasUsed": 987.65,
  "maxFeePerGas": 987.65,
  "maxPriorityFeePerGas": 123.45,
  "timestamp": 123.45,
  "transactionIndex": 123.45,
  "value": 987.65
}

Transaction_avg_order_by

Description

order by avg() on columns of table "Transaction"

Fields
Input Field Description
blockNumber - order_by
cumulativeGasUsed - order_by
effectiveGasPrice - order_by
gas - order_by
gasPrice - order_by
gasUsed - order_by
maxFeePerGas - order_by
maxPriorityFeePerGas - order_by
timestamp - order_by
transactionIndex - order_by
value - order_by
Example
{
  "blockNumber": "asc",
  "cumulativeGasUsed": "asc",
  "effectiveGasPrice": "asc",
  "gas": "asc",
  "gasPrice": "asc",
  "gasUsed": "asc",
  "maxFeePerGas": "asc",
  "maxPriorityFeePerGas": "asc",
  "timestamp": "asc",
  "transactionIndex": "asc",
  "value": "asc"
}

Transaction_bool_exp

Description

Boolean expression to filter rows from the table "Transaction". All fields are combined with a logical 'AND'.

Fields
Input Field Description
_and - [Transaction_bool_exp!]
_not - Transaction_bool_exp
_or - [Transaction_bool_exp!]
blockNumber - Int_comparison_exp
cumulativeGasUsed - numeric_comparison_exp
db_write_timestamp - timestamp_comparison_exp
effectiveGasPrice - numeric_comparison_exp
from - String_comparison_exp
gas - numeric_comparison_exp
gasPrice - numeric_comparison_exp
gasUsed - numeric_comparison_exp
holds - Hold_bool_exp
holds_aggregate - Hold_aggregate_bool_exp
id - String_comparison_exp
input - String_comparison_exp
isRelayer - Boolean_comparison_exp
maxFeePerGas - numeric_comparison_exp
maxPriorityFeePerGas - numeric_comparison_exp
profile - Profile_bool_exp
profile_id - String_comparison_exp
timestamp - Int_comparison_exp
to - String_comparison_exp
transactionIndex - Int_comparison_exp
transfers - Transfer_bool_exp
transfers_aggregate - Transfer_aggregate_bool_exp
value - numeric_comparison_exp
Example
{
  "_and": [Transaction_bool_exp],
  "_not": Transaction_bool_exp,
  "_or": [Transaction_bool_exp],
  "blockNumber": Int_comparison_exp,
  "cumulativeGasUsed": numeric_comparison_exp,
  "db_write_timestamp": timestamp_comparison_exp,
  "effectiveGasPrice": numeric_comparison_exp,
  "from": String_comparison_exp,
  "gas": numeric_comparison_exp,
  "gasPrice": numeric_comparison_exp,
  "gasUsed": numeric_comparison_exp,
  "holds": Hold_bool_exp,
  "holds_aggregate": Hold_aggregate_bool_exp,
  "id": String_comparison_exp,
  "input": String_comparison_exp,
  "isRelayer": Boolean_comparison_exp,
  "maxFeePerGas": numeric_comparison_exp,
  "maxPriorityFeePerGas": numeric_comparison_exp,
  "profile": Profile_bool_exp,
  "profile_id": String_comparison_exp,
  "timestamp": Int_comparison_exp,
  "to": String_comparison_exp,
  "transactionIndex": Int_comparison_exp,
  "transfers": Transfer_bool_exp,
  "transfers_aggregate": Transfer_aggregate_bool_exp,
  "value": numeric_comparison_exp
}

Transaction_max_fields

Description

aggregate max on columns

Fields
Field Name Description
blockNumber - Int
cumulativeGasUsed - numeric
db_write_timestamp - timestamp
effectiveGasPrice - numeric
from - String
gas - numeric
gasPrice - numeric
gasUsed - numeric
id - String
input - String
maxFeePerGas - numeric
maxPriorityFeePerGas - numeric
profile_id - String
timestamp - Int
to - String
transactionIndex - Int
value - numeric
Example
{
  "blockNumber": 123,
  "cumulativeGasUsed": numeric,
  "db_write_timestamp": timestamp,
  "effectiveGasPrice": numeric,
  "from": "xyz789",
  "gas": numeric,
  "gasPrice": numeric,
  "gasUsed": numeric,
  "id": "xyz789",
  "input": "abc123",
  "maxFeePerGas": numeric,
  "maxPriorityFeePerGas": numeric,
  "profile_id": "xyz789",
  "timestamp": 987,
  "to": "abc123",
  "transactionIndex": 123,
  "value": numeric
}

Transaction_max_order_by

Description

order by max() on columns of table "Transaction"

Fields
Input Field Description
blockNumber - order_by
cumulativeGasUsed - order_by
db_write_timestamp - order_by
effectiveGasPrice - order_by
from - order_by
gas - order_by
gasPrice - order_by
gasUsed - order_by
id - order_by
input - order_by
maxFeePerGas - order_by
maxPriorityFeePerGas - order_by
profile_id - order_by
timestamp - order_by
to - order_by
transactionIndex - order_by
value - order_by
Example
{
  "blockNumber": "asc",
  "cumulativeGasUsed": "asc",
  "db_write_timestamp": "asc",
  "effectiveGasPrice": "asc",
  "from": "asc",
  "gas": "asc",
  "gasPrice": "asc",
  "gasUsed": "asc",
  "id": "asc",
  "input": "asc",
  "maxFeePerGas": "asc",
  "maxPriorityFeePerGas": "asc",
  "profile_id": "asc",
  "timestamp": "asc",
  "to": "asc",
  "transactionIndex": "asc",
  "value": "asc"
}

Transaction_min_fields

Description

aggregate min on columns

Fields
Field Name Description
blockNumber - Int
cumulativeGasUsed - numeric
db_write_timestamp - timestamp
effectiveGasPrice - numeric
from - String
gas - numeric
gasPrice - numeric
gasUsed - numeric
id - String
input - String
maxFeePerGas - numeric
maxPriorityFeePerGas - numeric
profile_id - String
timestamp - Int
to - String
transactionIndex - Int
value - numeric
Example
{
  "blockNumber": 123,
  "cumulativeGasUsed": numeric,
  "db_write_timestamp": timestamp,
  "effectiveGasPrice": numeric,
  "from": "abc123",
  "gas": numeric,
  "gasPrice": numeric,
  "gasUsed": numeric,
  "id": "abc123",
  "input": "abc123",
  "maxFeePerGas": numeric,
  "maxPriorityFeePerGas": numeric,
  "profile_id": "xyz789",
  "timestamp": 123,
  "to": "abc123",
  "transactionIndex": 123,
  "value": numeric
}

Transaction_min_order_by

Description

order by min() on columns of table "Transaction"

Fields
Input Field Description
blockNumber - order_by
cumulativeGasUsed - order_by
db_write_timestamp - order_by
effectiveGasPrice - order_by
from - order_by
gas - order_by
gasPrice - order_by
gasUsed - order_by
id - order_by
input - order_by
maxFeePerGas - order_by
maxPriorityFeePerGas - order_by
profile_id - order_by
timestamp - order_by
to - order_by
transactionIndex - order_by
value - order_by
Example
{
  "blockNumber": "asc",
  "cumulativeGasUsed": "asc",
  "db_write_timestamp": "asc",
  "effectiveGasPrice": "asc",
  "from": "asc",
  "gas": "asc",
  "gasPrice": "asc",
  "gasUsed": "asc",
  "id": "asc",
  "input": "asc",
  "maxFeePerGas": "asc",
  "maxPriorityFeePerGas": "asc",
  "profile_id": "asc",
  "timestamp": "asc",
  "to": "asc",
  "transactionIndex": "asc",
  "value": "asc"
}

Transaction_order_by

Description

Ordering options when selecting data from "Transaction".

Fields
Input Field Description
blockNumber - order_by
cumulativeGasUsed - order_by
db_write_timestamp - order_by
effectiveGasPrice - order_by
from - order_by
gas - order_by
gasPrice - order_by
gasUsed - order_by
holds_aggregate - Hold_aggregate_order_by
id - order_by
input - order_by
isRelayer - order_by
maxFeePerGas - order_by
maxPriorityFeePerGas - order_by
profile - Profile_order_by
profile_id - order_by
timestamp - order_by
to - order_by
transactionIndex - order_by
transfers_aggregate - Transfer_aggregate_order_by
value - order_by
Example
{
  "blockNumber": "asc",
  "cumulativeGasUsed": "asc",
  "db_write_timestamp": "asc",
  "effectiveGasPrice": "asc",
  "from": "asc",
  "gas": "asc",
  "gasPrice": "asc",
  "gasUsed": "asc",
  "holds_aggregate": Hold_aggregate_order_by,
  "id": "asc",
  "input": "asc",
  "isRelayer": "asc",
  "maxFeePerGas": "asc",
  "maxPriorityFeePerGas": "asc",
  "profile": Profile_order_by,
  "profile_id": "asc",
  "timestamp": "asc",
  "to": "asc",
  "transactionIndex": "asc",
  "transfers_aggregate": Transfer_aggregate_order_by,
  "value": "asc"
}

Transaction_select_column

Description

select columns of table "Transaction"

Values
Enum Value Description

blockNumber

column name

cumulativeGasUsed

column name

db_write_timestamp

column name

effectiveGasPrice

column name

from

column name

gas

column name

gasPrice

column name

gasUsed

column name

id

column name

input

column name

isRelayer

column name

maxFeePerGas

column name

maxPriorityFeePerGas

column name

profile_id

column name

timestamp

column name

to

column name

transactionIndex

column name

value

column name
Example
"blockNumber"

Transaction_select_column_Transaction_aggregate_bool_exp_bool_and_arguments_columns

Description

select "Transaction_aggregate_bool_exp_bool_and_arguments_columns" columns of table "Transaction"

Values
Enum Value Description

isRelayer

column name
Example
"isRelayer"

Transaction_select_column_Transaction_aggregate_bool_exp_bool_or_arguments_columns

Description

select "Transaction_aggregate_bool_exp_bool_or_arguments_columns" columns of table "Transaction"

Values
Enum Value Description

isRelayer

column name
Example
"isRelayer"

Transaction_stddev_fields

Description

aggregate stddev on columns

Fields
Field Name Description
blockNumber - Float
cumulativeGasUsed - Float
effectiveGasPrice - Float
gas - Float
gasPrice - Float
gasUsed - Float
maxFeePerGas - Float
maxPriorityFeePerGas - Float
timestamp - Float
transactionIndex - Float
value - Float
Example
{
  "blockNumber": 987.65,
  "cumulativeGasUsed": 987.65,
  "effectiveGasPrice": 987.65,
  "gas": 987.65,
  "gasPrice": 987.65,
  "gasUsed": 987.65,
  "maxFeePerGas": 123.45,
  "maxPriorityFeePerGas": 123.45,
  "timestamp": 987.65,
  "transactionIndex": 987.65,
  "value": 123.45
}

Transaction_stddev_order_by

Description

order by stddev() on columns of table "Transaction"

Fields
Input Field Description
blockNumber - order_by
cumulativeGasUsed - order_by
effectiveGasPrice - order_by
gas - order_by
gasPrice - order_by
gasUsed - order_by
maxFeePerGas - order_by
maxPriorityFeePerGas - order_by
timestamp - order_by
transactionIndex - order_by
value - order_by
Example
{
  "blockNumber": "asc",
  "cumulativeGasUsed": "asc",
  "effectiveGasPrice": "asc",
  "gas": "asc",
  "gasPrice": "asc",
  "gasUsed": "asc",
  "maxFeePerGas": "asc",
  "maxPriorityFeePerGas": "asc",
  "timestamp": "asc",
  "transactionIndex": "asc",
  "value": "asc"
}

Transaction_stddev_pop_fields

Description

aggregate stddev_pop on columns

Fields
Field Name Description
blockNumber - Float
cumulativeGasUsed - Float
effectiveGasPrice - Float
gas - Float
gasPrice - Float
gasUsed - Float
maxFeePerGas - Float
maxPriorityFeePerGas - Float
timestamp - Float
transactionIndex - Float
value - Float
Example
{
  "blockNumber": 987.65,
  "cumulativeGasUsed": 123.45,
  "effectiveGasPrice": 123.45,
  "gas": 123.45,
  "gasPrice": 987.65,
  "gasUsed": 123.45,
  "maxFeePerGas": 123.45,
  "maxPriorityFeePerGas": 123.45,
  "timestamp": 123.45,
  "transactionIndex": 123.45,
  "value": 123.45
}

Transaction_stddev_pop_order_by

Description

order by stddev_pop() on columns of table "Transaction"

Fields
Input Field Description
blockNumber - order_by
cumulativeGasUsed - order_by
effectiveGasPrice - order_by
gas - order_by
gasPrice - order_by
gasUsed - order_by
maxFeePerGas - order_by
maxPriorityFeePerGas - order_by
timestamp - order_by
transactionIndex - order_by
value - order_by
Example
{
  "blockNumber": "asc",
  "cumulativeGasUsed": "asc",
  "effectiveGasPrice": "asc",
  "gas": "asc",
  "gasPrice": "asc",
  "gasUsed": "asc",
  "maxFeePerGas": "asc",
  "maxPriorityFeePerGas": "asc",
  "timestamp": "asc",
  "transactionIndex": "asc",
  "value": "asc"
}

Transaction_stddev_samp_fields

Description

aggregate stddev_samp on columns

Fields
Field Name Description
blockNumber - Float
cumulativeGasUsed - Float
effectiveGasPrice - Float
gas - Float
gasPrice - Float
gasUsed - Float
maxFeePerGas - Float
maxPriorityFeePerGas - Float
timestamp - Float
transactionIndex - Float
value - Float
Example
{
  "blockNumber": 987.65,
  "cumulativeGasUsed": 123.45,
  "effectiveGasPrice": 987.65,
  "gas": 987.65,
  "gasPrice": 123.45,
  "gasUsed": 987.65,
  "maxFeePerGas": 123.45,
  "maxPriorityFeePerGas": 987.65,
  "timestamp": 123.45,
  "transactionIndex": 123.45,
  "value": 987.65
}

Transaction_stddev_samp_order_by

Description

order by stddev_samp() on columns of table "Transaction"

Fields
Input Field Description
blockNumber - order_by
cumulativeGasUsed - order_by
effectiveGasPrice - order_by
gas - order_by
gasPrice - order_by
gasUsed - order_by
maxFeePerGas - order_by
maxPriorityFeePerGas - order_by
timestamp - order_by
transactionIndex - order_by
value - order_by
Example
{
  "blockNumber": "asc",
  "cumulativeGasUsed": "asc",
  "effectiveGasPrice": "asc",
  "gas": "asc",
  "gasPrice": "asc",
  "gasUsed": "asc",
  "maxFeePerGas": "asc",
  "maxPriorityFeePerGas": "asc",
  "timestamp": "asc",
  "transactionIndex": "asc",
  "value": "asc"
}

Transaction_stream_cursor_input

Description

Streaming cursor of the table "Transaction"

Fields
Input Field Description
initial_value - Transaction_stream_cursor_value_input! Stream column input with initial value
ordering - cursor_ordering cursor ordering
Example
{
  "initial_value": Transaction_stream_cursor_value_input,
  "ordering": "ASC"
}

Transaction_stream_cursor_value_input

Description

Initial value of the column from where the streaming should start

Fields
Input Field Description
blockNumber - Int
cumulativeGasUsed - numeric
db_write_timestamp - timestamp
effectiveGasPrice - numeric
from - String
gas - numeric
gasPrice - numeric
gasUsed - numeric
id - String
input - String
isRelayer - Boolean
maxFeePerGas - numeric
maxPriorityFeePerGas - numeric
profile_id - String
timestamp - Int
to - String
transactionIndex - Int
value - numeric
Example
{
  "blockNumber": 123,
  "cumulativeGasUsed": numeric,
  "db_write_timestamp": timestamp,
  "effectiveGasPrice": numeric,
  "from": "xyz789",
  "gas": numeric,
  "gasPrice": numeric,
  "gasUsed": numeric,
  "id": "abc123",
  "input": "xyz789",
  "isRelayer": false,
  "maxFeePerGas": numeric,
  "maxPriorityFeePerGas": numeric,
  "profile_id": "abc123",
  "timestamp": 123,
  "to": "abc123",
  "transactionIndex": 123,
  "value": numeric
}

Transaction_sum_fields

Description

aggregate sum on columns

Fields
Field Name Description
blockNumber - Int
cumulativeGasUsed - numeric
effectiveGasPrice - numeric
gas - numeric
gasPrice - numeric
gasUsed - numeric
maxFeePerGas - numeric
maxPriorityFeePerGas - numeric
timestamp - Int
transactionIndex - Int
value - numeric
Example
{
  "blockNumber": 123,
  "cumulativeGasUsed": numeric,
  "effectiveGasPrice": numeric,
  "gas": numeric,
  "gasPrice": numeric,
  "gasUsed": numeric,
  "maxFeePerGas": numeric,
  "maxPriorityFeePerGas": numeric,
  "timestamp": 123,
  "transactionIndex": 123,
  "value": numeric
}

Transaction_sum_order_by

Description

order by sum() on columns of table "Transaction"

Fields
Input Field Description
blockNumber - order_by
cumulativeGasUsed - order_by
effectiveGasPrice - order_by
gas - order_by
gasPrice - order_by
gasUsed - order_by
maxFeePerGas - order_by
maxPriorityFeePerGas - order_by
timestamp - order_by
transactionIndex - order_by
value - order_by
Example
{
  "blockNumber": "asc",
  "cumulativeGasUsed": "asc",
  "effectiveGasPrice": "asc",
  "gas": "asc",
  "gasPrice": "asc",
  "gasUsed": "asc",
  "maxFeePerGas": "asc",
  "maxPriorityFeePerGas": "asc",
  "timestamp": "asc",
  "transactionIndex": "asc",
  "value": "asc"
}

Transaction_var_pop_fields

Description

aggregate var_pop on columns

Fields
Field Name Description
blockNumber - Float
cumulativeGasUsed - Float
effectiveGasPrice - Float
gas - Float
gasPrice - Float
gasUsed - Float
maxFeePerGas - Float
maxPriorityFeePerGas - Float
timestamp - Float
transactionIndex - Float
value - Float
Example
{
  "blockNumber": 123.45,
  "cumulativeGasUsed": 987.65,
  "effectiveGasPrice": 987.65,
  "gas": 987.65,
  "gasPrice": 987.65,
  "gasUsed": 987.65,
  "maxFeePerGas": 123.45,
  "maxPriorityFeePerGas": 987.65,
  "timestamp": 987.65,
  "transactionIndex": 123.45,
  "value": 123.45
}

Transaction_var_pop_order_by

Description

order by var_pop() on columns of table "Transaction"

Fields
Input Field Description
blockNumber - order_by
cumulativeGasUsed - order_by
effectiveGasPrice - order_by
gas - order_by
gasPrice - order_by
gasUsed - order_by
maxFeePerGas - order_by
maxPriorityFeePerGas - order_by
timestamp - order_by
transactionIndex - order_by
value - order_by
Example
{
  "blockNumber": "asc",
  "cumulativeGasUsed": "asc",
  "effectiveGasPrice": "asc",
  "gas": "asc",
  "gasPrice": "asc",
  "gasUsed": "asc",
  "maxFeePerGas": "asc",
  "maxPriorityFeePerGas": "asc",
  "timestamp": "asc",
  "transactionIndex": "asc",
  "value": "asc"
}

Transaction_var_samp_fields

Description

aggregate var_samp on columns

Fields
Field Name Description
blockNumber - Float
cumulativeGasUsed - Float
effectiveGasPrice - Float
gas - Float
gasPrice - Float
gasUsed - Float
maxFeePerGas - Float
maxPriorityFeePerGas - Float
timestamp - Float
transactionIndex - Float
value - Float
Example
{
  "blockNumber": 123.45,
  "cumulativeGasUsed": 987.65,
  "effectiveGasPrice": 123.45,
  "gas": 123.45,
  "gasPrice": 987.65,
  "gasUsed": 123.45,
  "maxFeePerGas": 123.45,
  "maxPriorityFeePerGas": 987.65,
  "timestamp": 123.45,
  "transactionIndex": 123.45,
  "value": 123.45
}

Transaction_var_samp_order_by

Description

order by var_samp() on columns of table "Transaction"

Fields
Input Field Description
blockNumber - order_by
cumulativeGasUsed - order_by
effectiveGasPrice - order_by
gas - order_by
gasPrice - order_by
gasUsed - order_by
maxFeePerGas - order_by
maxPriorityFeePerGas - order_by
timestamp - order_by
transactionIndex - order_by
value - order_by
Example
{
  "blockNumber": "asc",
  "cumulativeGasUsed": "asc",
  "effectiveGasPrice": "asc",
  "gas": "asc",
  "gasPrice": "asc",
  "gasUsed": "asc",
  "maxFeePerGas": "asc",
  "maxPriorityFeePerGas": "asc",
  "timestamp": "asc",
  "transactionIndex": "asc",
  "value": "asc"
}

Transaction_variance_fields

Description

aggregate variance on columns

Fields
Field Name Description
blockNumber - Float
cumulativeGasUsed - Float
effectiveGasPrice - Float
gas - Float
gasPrice - Float
gasUsed - Float
maxFeePerGas - Float
maxPriorityFeePerGas - Float
timestamp - Float
transactionIndex - Float
value - Float
Example
{
  "blockNumber": 123.45,
  "cumulativeGasUsed": 987.65,
  "effectiveGasPrice": 987.65,
  "gas": 987.65,
  "gasPrice": 987.65,
  "gasUsed": 987.65,
  "maxFeePerGas": 987.65,
  "maxPriorityFeePerGas": 123.45,
  "timestamp": 987.65,
  "transactionIndex": 987.65,
  "value": 123.45
}

Transaction_variance_order_by

Description

order by variance() on columns of table "Transaction"

Fields
Input Field Description
blockNumber - order_by
cumulativeGasUsed - order_by
effectiveGasPrice - order_by
gas - order_by
gasPrice - order_by
gasUsed - order_by
maxFeePerGas - order_by
maxPriorityFeePerGas - order_by
timestamp - order_by
transactionIndex - order_by
value - order_by
Example
{
  "blockNumber": "asc",
  "cumulativeGasUsed": "asc",
  "effectiveGasPrice": "asc",
  "gas": "asc",
  "gasPrice": "asc",
  "gasUsed": "asc",
  "maxFeePerGas": "asc",
  "maxPriorityFeePerGas": "asc",
  "timestamp": "asc",
  "transactionIndex": "asc",
  "value": "asc"
}

Transfer

Description

columns and relationships of "Transfer"

Fields
Field Name Description
asset - Asset An object relationship
asset_id - String
blockNumber - Int!
db_write_timestamp - timestamp
from - Profile An object relationship
from_id - String
id - String!
timestamp - Int
to - Profile An object relationship
to_id - String
token - Token An object relationship
token_id - String
transaction - Transaction An object relationship
transaction_id - String!
value - numeric
Example
{
  "asset": Asset,
  "asset_id": "xyz789",
  "blockNumber": 987,
  "db_write_timestamp": timestamp,
  "from": Profile,
  "from_id": "xyz789",
  "id": "abc123",
  "timestamp": 123,
  "to": Profile,
  "to_id": "abc123",
  "token": Token,
  "token_id": "abc123",
  "transaction": Transaction,
  "transaction_id": "abc123",
  "value": numeric
}

Transfer_aggregate

Description

aggregated selection of "Transfer"

Fields
Field Name Description
aggregate - Transfer_aggregate_fields
nodes - [Transfer!]!
Example
{
  "aggregate": Transfer_aggregate_fields,
  "nodes": [Transfer]
}

Transfer_aggregate_bool_exp

Fields
Input Field Description
count - Transfer_aggregate_bool_exp_count
Example
{"count": Transfer_aggregate_bool_exp_count}

Transfer_aggregate_bool_exp_count

Fields
Input Field Description
arguments - [Transfer_select_column!]
distinct - Boolean
filter - Transfer_bool_exp
predicate - Int_comparison_exp!
Example
{
  "arguments": ["asset_id"],
  "distinct": false,
  "filter": Transfer_bool_exp,
  "predicate": Int_comparison_exp
}

Transfer_aggregate_fields

Description

aggregate fields of "Transfer"

Fields
Field Name Description
avg - Transfer_avg_fields
count - Int!
Arguments
distinct - Boolean
max - Transfer_max_fields
min - Transfer_min_fields
stddev - Transfer_stddev_fields
stddev_pop - Transfer_stddev_pop_fields
stddev_samp - Transfer_stddev_samp_fields
sum - Transfer_sum_fields
var_pop - Transfer_var_pop_fields
var_samp - Transfer_var_samp_fields
variance - Transfer_variance_fields
Example
{
  "avg": Transfer_avg_fields,
  "count": 123,
  "max": Transfer_max_fields,
  "min": Transfer_min_fields,
  "stddev": Transfer_stddev_fields,
  "stddev_pop": Transfer_stddev_pop_fields,
  "stddev_samp": Transfer_stddev_samp_fields,
  "sum": Transfer_sum_fields,
  "var_pop": Transfer_var_pop_fields,
  "var_samp": Transfer_var_samp_fields,
  "variance": Transfer_variance_fields
}

Transfer_aggregate_order_by

Description

order by aggregate values of table "Transfer"

Example
{
  "avg": Transfer_avg_order_by,
  "count": "asc",
  "max": Transfer_max_order_by,
  "min": Transfer_min_order_by,
  "stddev": Transfer_stddev_order_by,
  "stddev_pop": Transfer_stddev_pop_order_by,
  "stddev_samp": Transfer_stddev_samp_order_by,
  "sum": Transfer_sum_order_by,
  "var_pop": Transfer_var_pop_order_by,
  "var_samp": Transfer_var_samp_order_by,
  "variance": Transfer_variance_order_by
}

Transfer_avg_fields

Description

aggregate avg on columns

Fields
Field Name Description
blockNumber - Float
timestamp - Float
value - Float
Example
{"blockNumber": 123.45, "timestamp": 987.65, "value": 987.65}

Transfer_avg_order_by

Description

order by avg() on columns of table "Transfer"

Fields
Input Field Description
blockNumber - order_by
timestamp - order_by
value - order_by
Example
{"blockNumber": "asc", "timestamp": "asc", "value": "asc"}

Transfer_bool_exp

Description

Boolean expression to filter rows from the table "Transfer". All fields are combined with a logical 'AND'.

Example
{
  "_and": [Transfer_bool_exp],
  "_not": Transfer_bool_exp,
  "_or": [Transfer_bool_exp],
  "asset": Asset_bool_exp,
  "asset_id": String_comparison_exp,
  "blockNumber": Int_comparison_exp,
  "db_write_timestamp": timestamp_comparison_exp,
  "from": Profile_bool_exp,
  "from_id": String_comparison_exp,
  "id": String_comparison_exp,
  "timestamp": Int_comparison_exp,
  "to": Profile_bool_exp,
  "to_id": String_comparison_exp,
  "token": Token_bool_exp,
  "token_id": String_comparison_exp,
  "transaction": Transaction_bool_exp,
  "transaction_id": String_comparison_exp,
  "value": numeric_comparison_exp
}

Transfer_max_fields

Description

aggregate max on columns

Fields
Field Name Description
asset_id - String
blockNumber - Int
db_write_timestamp - timestamp
from_id - String
id - String
timestamp - Int
to_id - String
token_id - String
transaction_id - String
value - numeric
Example
{
  "asset_id": "abc123",
  "blockNumber": 987,
  "db_write_timestamp": timestamp,
  "from_id": "abc123",
  "id": "xyz789",
  "timestamp": 123,
  "to_id": "abc123",
  "token_id": "abc123",
  "transaction_id": "abc123",
  "value": numeric
}

Transfer_max_order_by

Description

order by max() on columns of table "Transfer"

Fields
Input Field Description
asset_id - order_by
blockNumber - order_by
db_write_timestamp - order_by
from_id - order_by
id - order_by
timestamp - order_by
to_id - order_by
token_id - order_by
transaction_id - order_by
value - order_by
Example
{
  "asset_id": "asc",
  "blockNumber": "asc",
  "db_write_timestamp": "asc",
  "from_id": "asc",
  "id": "asc",
  "timestamp": "asc",
  "to_id": "asc",
  "token_id": "asc",
  "transaction_id": "asc",
  "value": "asc"
}

Transfer_min_fields

Description

aggregate min on columns

Fields
Field Name Description
asset_id - String
blockNumber - Int
db_write_timestamp - timestamp
from_id - String
id - String
timestamp - Int
to_id - String
token_id - String
transaction_id - String
value - numeric
Example
{
  "asset_id": "xyz789",
  "blockNumber": 123,
  "db_write_timestamp": timestamp,
  "from_id": "xyz789",
  "id": "abc123",
  "timestamp": 123,
  "to_id": "abc123",
  "token_id": "abc123",
  "transaction_id": "xyz789",
  "value": numeric
}

Transfer_min_order_by

Description

order by min() on columns of table "Transfer"

Fields
Input Field Description
asset_id - order_by
blockNumber - order_by
db_write_timestamp - order_by
from_id - order_by
id - order_by
timestamp - order_by
to_id - order_by
token_id - order_by
transaction_id - order_by
value - order_by
Example
{
  "asset_id": "asc",
  "blockNumber": "asc",
  "db_write_timestamp": "asc",
  "from_id": "asc",
  "id": "asc",
  "timestamp": "asc",
  "to_id": "asc",
  "token_id": "asc",
  "transaction_id": "asc",
  "value": "asc"
}

Transfer_order_by

Description

Ordering options when selecting data from "Transfer".

Fields
Input Field Description
asset - Asset_order_by
asset_id - order_by
blockNumber - order_by
db_write_timestamp - order_by
from - Profile_order_by
from_id - order_by
id - order_by
timestamp - order_by
to - Profile_order_by
to_id - order_by
token - Token_order_by
token_id - order_by
transaction - Transaction_order_by
transaction_id - order_by
value - order_by
Example
{
  "asset": Asset_order_by,
  "asset_id": "asc",
  "blockNumber": "asc",
  "db_write_timestamp": "asc",
  "from": Profile_order_by,
  "from_id": "asc",
  "id": "asc",
  "timestamp": "asc",
  "to": Profile_order_by,
  "to_id": "asc",
  "token": Token_order_by,
  "token_id": "asc",
  "transaction": Transaction_order_by,
  "transaction_id": "asc",
  "value": "asc"
}

Transfer_select_column

Description

select columns of table "Transfer"

Values
Enum Value Description

asset_id

column name

blockNumber

column name

db_write_timestamp

column name

from_id

column name

id

column name

timestamp

column name

to_id

column name

token_id

column name

transaction_id

column name

value

column name
Example
"asset_id"

Transfer_stddev_fields

Description

aggregate stddev on columns

Fields
Field Name Description
blockNumber - Float
timestamp - Float
value - Float
Example
{"blockNumber": 123.45, "timestamp": 987.65, "value": 123.45}

Transfer_stddev_order_by

Description

order by stddev() on columns of table "Transfer"

Fields
Input Field Description
blockNumber - order_by
timestamp - order_by
value - order_by
Example
{"blockNumber": "asc", "timestamp": "asc", "value": "asc"}

Transfer_stddev_pop_fields

Description

aggregate stddev_pop on columns

Fields
Field Name Description
blockNumber - Float
timestamp - Float
value - Float
Example
{"blockNumber": 987.65, "timestamp": 987.65, "value": 123.45}

Transfer_stddev_pop_order_by

Description

order by stddev_pop() on columns of table "Transfer"

Fields
Input Field Description
blockNumber - order_by
timestamp - order_by
value - order_by
Example
{"blockNumber": "asc", "timestamp": "asc", "value": "asc"}

Transfer_stddev_samp_fields

Description

aggregate stddev_samp on columns

Fields
Field Name Description
blockNumber - Float
timestamp - Float
value - Float
Example
{"blockNumber": 987.65, "timestamp": 987.65, "value": 987.65}

Transfer_stddev_samp_order_by

Description

order by stddev_samp() on columns of table "Transfer"

Fields
Input Field Description
blockNumber - order_by
timestamp - order_by
value - order_by
Example
{"blockNumber": "asc", "timestamp": "asc", "value": "asc"}

Transfer_stream_cursor_input

Description

Streaming cursor of the table "Transfer"

Fields
Input Field Description
initial_value - Transfer_stream_cursor_value_input! Stream column input with initial value
ordering - cursor_ordering cursor ordering
Example
{
  "initial_value": Transfer_stream_cursor_value_input,
  "ordering": "ASC"
}

Transfer_stream_cursor_value_input

Description

Initial value of the column from where the streaming should start

Fields
Input Field Description
asset_id - String
blockNumber - Int
db_write_timestamp - timestamp
from_id - String
id - String
timestamp - Int
to_id - String
token_id - String
transaction_id - String
value - numeric
Example
{
  "asset_id": "abc123",
  "blockNumber": 987,
  "db_write_timestamp": timestamp,
  "from_id": "xyz789",
  "id": "xyz789",
  "timestamp": 123,
  "to_id": "abc123",
  "token_id": "xyz789",
  "transaction_id": "abc123",
  "value": numeric
}

Transfer_sum_fields

Description

aggregate sum on columns

Fields
Field Name Description
blockNumber - Int
timestamp - Int
value - numeric
Example
{"blockNumber": 123, "timestamp": 123, "value": numeric}

Transfer_sum_order_by

Description

order by sum() on columns of table "Transfer"

Fields
Input Field Description
blockNumber - order_by
timestamp - order_by
value - order_by
Example
{"blockNumber": "asc", "timestamp": "asc", "value": "asc"}

Transfer_var_pop_fields

Description

aggregate var_pop on columns

Fields
Field Name Description
blockNumber - Float
timestamp - Float
value - Float
Example
{"blockNumber": 987.65, "timestamp": 987.65, "value": 123.45}

Transfer_var_pop_order_by

Description

order by var_pop() on columns of table "Transfer"

Fields
Input Field Description
blockNumber - order_by
timestamp - order_by
value - order_by
Example
{"blockNumber": "asc", "timestamp": "asc", "value": "asc"}

Transfer_var_samp_fields

Description

aggregate var_samp on columns

Fields
Field Name Description
blockNumber - Float
timestamp - Float
value - Float
Example
{"blockNumber": 987.65, "timestamp": 987.65, "value": 123.45}

Transfer_var_samp_order_by

Description

order by var_samp() on columns of table "Transfer"

Fields
Input Field Description
blockNumber - order_by
timestamp - order_by
value - order_by
Example
{"blockNumber": "asc", "timestamp": "asc", "value": "asc"}

Transfer_variance_fields

Description

aggregate variance on columns

Fields
Field Name Description
blockNumber - Float
timestamp - Float
value - Float
Example
{"blockNumber": 123.45, "timestamp": 987.65, "value": 987.65}

Transfer_variance_order_by

Description

order by variance() on columns of table "Transfer"

Fields
Input Field Description
blockNumber - order_by
timestamp - order_by
value - order_by
Example
{"blockNumber": "asc", "timestamp": "asc", "value": "asc"}

asset_category_stats

Description

Category-level statistics computed from mv_asset_activity

Fields
Field Name Description
activity_score - numeric
avg_hot_score - numeric
category - String
category_score - numeric
is_active - Boolean
last_activity - Int
max_hot_score - numeric
popularity_score - numeric
total_assets - Int
total_holders - Int
transfer_count_3d - Int
transfer_count_7d - Int
trending_score - numeric
Example
{
  "activity_score": numeric,
  "avg_hot_score": numeric,
  "category": "abc123",
  "category_score": numeric,
  "is_active": true,
  "last_activity": 123,
  "max_hot_score": numeric,
  "popularity_score": numeric,
  "total_assets": 123,
  "total_holders": 987,
  "transfer_count_3d": 987,
  "transfer_count_7d": 987,
  "trending_score": numeric
}

asset_category_stats_aggregate

Description

aggregated selection of "asset_category_stats"

Fields
Field Name Description
aggregate - asset_category_stats_aggregate_fields
nodes - [asset_category_stats!]!
Example
{
  "aggregate": asset_category_stats_aggregate_fields,
  "nodes": [asset_category_stats]
}

asset_category_stats_aggregate_fields

Example
{
  "avg": asset_category_stats_avg_fields,
  "count": 123,
  "max": asset_category_stats_max_fields,
  "min": asset_category_stats_min_fields,
  "stddev": asset_category_stats_stddev_fields,
  "stddev_pop": asset_category_stats_stddev_pop_fields,
  "stddev_samp": asset_category_stats_stddev_samp_fields,
  "sum": asset_category_stats_sum_fields,
  "var_pop": asset_category_stats_var_pop_fields,
  "var_samp": asset_category_stats_var_samp_fields,
  "variance": asset_category_stats_variance_fields
}

asset_category_stats_avg_fields

Description

aggregate avg on columns

Fields
Field Name Description
activity_score - Float
avg_hot_score - Float
category_score - Float
last_activity - Float
max_hot_score - Float
popularity_score - Float
total_assets - Float
total_holders - Float
transfer_count_3d - Float
transfer_count_7d - Float
trending_score - Float
Example
{
  "activity_score": 123.45,
  "avg_hot_score": 987.65,
  "category_score": 987.65,
  "last_activity": 987.65,
  "max_hot_score": 987.65,
  "popularity_score": 123.45,
  "total_assets": 123.45,
  "total_holders": 123.45,
  "transfer_count_3d": 123.45,
  "transfer_count_7d": 123.45,
  "trending_score": 987.65
}

asset_category_stats_bool_exp

Description

Boolean expression to filter rows from the table "asset_category_stats". All fields are combined with a logical 'AND'.

Fields
Input Field Description
_and - [asset_category_stats_bool_exp!]
_not - asset_category_stats_bool_exp
_or - [asset_category_stats_bool_exp!]
activity_score - numeric_comparison_exp
avg_hot_score - numeric_comparison_exp
category - String_comparison_exp
category_score - numeric_comparison_exp
is_active - Boolean_comparison_exp
last_activity - Int_comparison_exp
max_hot_score - numeric_comparison_exp
popularity_score - numeric_comparison_exp
total_assets - Int_comparison_exp
total_holders - Int_comparison_exp
transfer_count_3d - Int_comparison_exp
transfer_count_7d - Int_comparison_exp
trending_score - numeric_comparison_exp
Example
{
  "_and": [asset_category_stats_bool_exp],
  "_not": asset_category_stats_bool_exp,
  "_or": [asset_category_stats_bool_exp],
  "activity_score": numeric_comparison_exp,
  "avg_hot_score": numeric_comparison_exp,
  "category": String_comparison_exp,
  "category_score": numeric_comparison_exp,
  "is_active": Boolean_comparison_exp,
  "last_activity": Int_comparison_exp,
  "max_hot_score": numeric_comparison_exp,
  "popularity_score": numeric_comparison_exp,
  "total_assets": Int_comparison_exp,
  "total_holders": Int_comparison_exp,
  "transfer_count_3d": Int_comparison_exp,
  "transfer_count_7d": Int_comparison_exp,
  "trending_score": numeric_comparison_exp
}

asset_category_stats_max_fields

Description

aggregate max on columns

Fields
Field Name Description
activity_score - numeric
avg_hot_score - numeric
category - String
category_score - numeric
last_activity - Int
max_hot_score - numeric
popularity_score - numeric
total_assets - Int
total_holders - Int
transfer_count_3d - Int
transfer_count_7d - Int
trending_score - numeric
Example
{
  "activity_score": numeric,
  "avg_hot_score": numeric,
  "category": "abc123",
  "category_score": numeric,
  "last_activity": 123,
  "max_hot_score": numeric,
  "popularity_score": numeric,
  "total_assets": 987,
  "total_holders": 987,
  "transfer_count_3d": 123,
  "transfer_count_7d": 987,
  "trending_score": numeric
}

asset_category_stats_min_fields

Description

aggregate min on columns

Fields
Field Name Description
activity_score - numeric
avg_hot_score - numeric
category - String
category_score - numeric
last_activity - Int
max_hot_score - numeric
popularity_score - numeric
total_assets - Int
total_holders - Int
transfer_count_3d - Int
transfer_count_7d - Int
trending_score - numeric
Example
{
  "activity_score": numeric,
  "avg_hot_score": numeric,
  "category": "xyz789",
  "category_score": numeric,
  "last_activity": 987,
  "max_hot_score": numeric,
  "popularity_score": numeric,
  "total_assets": 123,
  "total_holders": 123,
  "transfer_count_3d": 123,
  "transfer_count_7d": 123,
  "trending_score": numeric
}

asset_category_stats_order_by

Description

Ordering options when selecting data from "asset_category_stats".

Fields
Input Field Description
activity_score - order_by
avg_hot_score - order_by
category - order_by
category_score - order_by
is_active - order_by
last_activity - order_by
max_hot_score - order_by
popularity_score - order_by
total_assets - order_by
total_holders - order_by
transfer_count_3d - order_by
transfer_count_7d - order_by
trending_score - order_by
Example
{
  "activity_score": "asc",
  "avg_hot_score": "asc",
  "category": "asc",
  "category_score": "asc",
  "is_active": "asc",
  "last_activity": "asc",
  "max_hot_score": "asc",
  "popularity_score": "asc",
  "total_assets": "asc",
  "total_holders": "asc",
  "transfer_count_3d": "asc",
  "transfer_count_7d": "asc",
  "trending_score": "asc"
}

asset_category_stats_select_column

Description

select columns of table "asset_category_stats"

Values
Enum Value Description

activity_score

column name

avg_hot_score

column name

category

column name

category_score

column name

is_active

column name

last_activity

column name

max_hot_score

column name

popularity_score

column name

total_assets

column name

total_holders

column name

transfer_count_3d

column name

transfer_count_7d

column name

trending_score

column name
Example
"activity_score"

asset_category_stats_stddev_fields

Description

aggregate stddev on columns

Fields
Field Name Description
activity_score - Float
avg_hot_score - Float
category_score - Float
last_activity - Float
max_hot_score - Float
popularity_score - Float
total_assets - Float
total_holders - Float
transfer_count_3d - Float
transfer_count_7d - Float
trending_score - Float
Example
{
  "activity_score": 123.45,
  "avg_hot_score": 987.65,
  "category_score": 987.65,
  "last_activity": 123.45,
  "max_hot_score": 987.65,
  "popularity_score": 123.45,
  "total_assets": 123.45,
  "total_holders": 123.45,
  "transfer_count_3d": 123.45,
  "transfer_count_7d": 987.65,
  "trending_score": 123.45
}

asset_category_stats_stddev_pop_fields

Description

aggregate stddev_pop on columns

Fields
Field Name Description
activity_score - Float
avg_hot_score - Float
category_score - Float
last_activity - Float
max_hot_score - Float
popularity_score - Float
total_assets - Float
total_holders - Float
transfer_count_3d - Float
transfer_count_7d - Float
trending_score - Float
Example
{
  "activity_score": 987.65,
  "avg_hot_score": 987.65,
  "category_score": 987.65,
  "last_activity": 987.65,
  "max_hot_score": 987.65,
  "popularity_score": 987.65,
  "total_assets": 123.45,
  "total_holders": 987.65,
  "transfer_count_3d": 987.65,
  "transfer_count_7d": 987.65,
  "trending_score": 987.65
}

asset_category_stats_stddev_samp_fields

Description

aggregate stddev_samp on columns

Fields
Field Name Description
activity_score - Float
avg_hot_score - Float
category_score - Float
last_activity - Float
max_hot_score - Float
popularity_score - Float
total_assets - Float
total_holders - Float
transfer_count_3d - Float
transfer_count_7d - Float
trending_score - Float
Example
{
  "activity_score": 987.65,
  "avg_hot_score": 123.45,
  "category_score": 987.65,
  "last_activity": 987.65,
  "max_hot_score": 987.65,
  "popularity_score": 123.45,
  "total_assets": 987.65,
  "total_holders": 987.65,
  "transfer_count_3d": 987.65,
  "transfer_count_7d": 123.45,
  "trending_score": 987.65
}

asset_category_stats_stream_cursor_input

Description

Streaming cursor of the table "asset_category_stats"

Fields
Input Field Description
initial_value - asset_category_stats_stream_cursor_value_input! Stream column input with initial value
ordering - cursor_ordering cursor ordering
Example
{
  "initial_value": asset_category_stats_stream_cursor_value_input,
  "ordering": "ASC"
}

asset_category_stats_stream_cursor_value_input

Description

Initial value of the column from where the streaming should start

Fields
Input Field Description
activity_score - numeric
avg_hot_score - numeric
category - String
category_score - numeric
is_active - Boolean
last_activity - Int
max_hot_score - numeric
popularity_score - numeric
total_assets - Int
total_holders - Int
transfer_count_3d - Int
transfer_count_7d - Int
trending_score - numeric
Example
{
  "activity_score": numeric,
  "avg_hot_score": numeric,
  "category": "abc123",
  "category_score": numeric,
  "is_active": true,
  "last_activity": 987,
  "max_hot_score": numeric,
  "popularity_score": numeric,
  "total_assets": 987,
  "total_holders": 123,
  "transfer_count_3d": 123,
  "transfer_count_7d": 123,
  "trending_score": numeric
}

asset_category_stats_sum_fields

Description

aggregate sum on columns

Fields
Field Name Description
activity_score - numeric
avg_hot_score - numeric
category_score - numeric
last_activity - Int
max_hot_score - numeric
popularity_score - numeric
total_assets - Int
total_holders - Int
transfer_count_3d - Int
transfer_count_7d - Int
trending_score - numeric
Example
{
  "activity_score": numeric,
  "avg_hot_score": numeric,
  "category_score": numeric,
  "last_activity": 123,
  "max_hot_score": numeric,
  "popularity_score": numeric,
  "total_assets": 123,
  "total_holders": 987,
  "transfer_count_3d": 123,
  "transfer_count_7d": 123,
  "trending_score": numeric
}

asset_category_stats_var_pop_fields

Description

aggregate var_pop on columns

Fields
Field Name Description
activity_score - Float
avg_hot_score - Float
category_score - Float
last_activity - Float
max_hot_score - Float
popularity_score - Float
total_assets - Float
total_holders - Float
transfer_count_3d - Float
transfer_count_7d - Float
trending_score - Float
Example
{
  "activity_score": 987.65,
  "avg_hot_score": 987.65,
  "category_score": 123.45,
  "last_activity": 987.65,
  "max_hot_score": 987.65,
  "popularity_score": 987.65,
  "total_assets": 987.65,
  "total_holders": 987.65,
  "transfer_count_3d": 123.45,
  "transfer_count_7d": 123.45,
  "trending_score": 123.45
}

asset_category_stats_var_samp_fields

Description

aggregate var_samp on columns

Fields
Field Name Description
activity_score - Float
avg_hot_score - Float
category_score - Float
last_activity - Float
max_hot_score - Float
popularity_score - Float
total_assets - Float
total_holders - Float
transfer_count_3d - Float
transfer_count_7d - Float
trending_score - Float
Example
{
  "activity_score": 123.45,
  "avg_hot_score": 987.65,
  "category_score": 987.65,
  "last_activity": 123.45,
  "max_hot_score": 123.45,
  "popularity_score": 987.65,
  "total_assets": 987.65,
  "total_holders": 123.45,
  "transfer_count_3d": 987.65,
  "transfer_count_7d": 987.65,
  "trending_score": 123.45
}

asset_category_stats_variance_fields

Description

aggregate variance on columns

Fields
Field Name Description
activity_score - Float
avg_hot_score - Float
category_score - Float
last_activity - Float
max_hot_score - Float
popularity_score - Float
total_assets - Float
total_holders - Float
transfer_count_3d - Float
transfer_count_7d - Float
trending_score - Float
Example
{
  "activity_score": 123.45,
  "avg_hot_score": 987.65,
  "category_score": 123.45,
  "last_activity": 987.65,
  "max_hot_score": 987.65,
  "popularity_score": 987.65,
  "total_assets": 123.45,
  "total_holders": 987.65,
  "transfer_count_3d": 123.45,
  "transfer_count_7d": 123.45,
  "trending_score": 987.65
}

bigint

Example
bigint

bigint_comparison_exp

Description

Boolean expression to compare columns of type "bigint". All fields are combined with logical 'AND'.

Fields
Input Field Description
_eq - bigint
_gt - bigint
_gte - bigint
_in - [bigint!]
_is_null - Boolean
_lt - bigint
_lte - bigint
_neq - bigint
_nin - [bigint!]
Example
{
  "_eq": bigint,
  "_gt": bigint,
  "_gte": bigint,
  "_in": [bigint],
  "_is_null": true,
  "_lt": bigint,
  "_lte": bigint,
  "_neq": bigint,
  "_nin": [bigint]
}

chain_metadata

Description

columns and relationships of "chain_metadata"

Fields
Field Name Description
block_height - Int!
chain_id - Int!
end_block - Int
first_event_block_number - Int
is_hyper_sync - Boolean!
latest_fetched_block_number - Int!
latest_processed_block - Int
num_batches_fetched - Int!
num_events_processed - Int
start_block - Int!
timestamp_caught_up_to_head_or_endblock - timestamptz
Example
{
  "block_height": 123,
  "chain_id": 987,
  "end_block": 987,
  "first_event_block_number": 123,
  "is_hyper_sync": false,
  "latest_fetched_block_number": 987,
  "latest_processed_block": 987,
  "num_batches_fetched": 123,
  "num_events_processed": 123,
  "start_block": 987,
  "timestamp_caught_up_to_head_or_endblock": timestamptz
}

chain_metadata_aggregate

Description

aggregated selection of "chain_metadata"

Fields
Field Name Description
aggregate - chain_metadata_aggregate_fields
nodes - [chain_metadata!]!
Example
{
  "aggregate": chain_metadata_aggregate_fields,
  "nodes": [chain_metadata]
}

chain_metadata_aggregate_fields

Description

aggregate fields of "chain_metadata"

Example
{
  "avg": chain_metadata_avg_fields,
  "count": 123,
  "max": chain_metadata_max_fields,
  "min": chain_metadata_min_fields,
  "stddev": chain_metadata_stddev_fields,
  "stddev_pop": chain_metadata_stddev_pop_fields,
  "stddev_samp": chain_metadata_stddev_samp_fields,
  "sum": chain_metadata_sum_fields,
  "var_pop": chain_metadata_var_pop_fields,
  "var_samp": chain_metadata_var_samp_fields,
  "variance": chain_metadata_variance_fields
}

chain_metadata_avg_fields

Description

aggregate avg on columns

Fields
Field Name Description
block_height - Float
chain_id - Float
end_block - Float
first_event_block_number - Float
latest_fetched_block_number - Float
latest_processed_block - Float
num_batches_fetched - Float
num_events_processed - Float
start_block - Float
Example
{
  "block_height": 987.65,
  "chain_id": 123.45,
  "end_block": 987.65,
  "first_event_block_number": 987.65,
  "latest_fetched_block_number": 987.65,
  "latest_processed_block": 987.65,
  "num_batches_fetched": 123.45,
  "num_events_processed": 987.65,
  "start_block": 987.65
}

chain_metadata_bool_exp

Description

Boolean expression to filter rows from the table "chain_metadata". All fields are combined with a logical 'AND'.

Fields
Input Field Description
_and - [chain_metadata_bool_exp!]
_not - chain_metadata_bool_exp
_or - [chain_metadata_bool_exp!]
block_height - Int_comparison_exp
chain_id - Int_comparison_exp
end_block - Int_comparison_exp
first_event_block_number - Int_comparison_exp
is_hyper_sync - Boolean_comparison_exp
latest_fetched_block_number - Int_comparison_exp
latest_processed_block - Int_comparison_exp
num_batches_fetched - Int_comparison_exp
num_events_processed - Int_comparison_exp
start_block - Int_comparison_exp
timestamp_caught_up_to_head_or_endblock - timestamptz_comparison_exp
Example
{
  "_and": [chain_metadata_bool_exp],
  "_not": chain_metadata_bool_exp,
  "_or": [chain_metadata_bool_exp],
  "block_height": Int_comparison_exp,
  "chain_id": Int_comparison_exp,
  "end_block": Int_comparison_exp,
  "first_event_block_number": Int_comparison_exp,
  "is_hyper_sync": Boolean_comparison_exp,
  "latest_fetched_block_number": Int_comparison_exp,
  "latest_processed_block": Int_comparison_exp,
  "num_batches_fetched": Int_comparison_exp,
  "num_events_processed": Int_comparison_exp,
  "start_block": Int_comparison_exp,
  "timestamp_caught_up_to_head_or_endblock": timestamptz_comparison_exp
}

chain_metadata_max_fields

Description

aggregate max on columns

Fields
Field Name Description
block_height - Int
chain_id - Int
end_block - Int
first_event_block_number - Int
latest_fetched_block_number - Int
latest_processed_block - Int
num_batches_fetched - Int
num_events_processed - Int
start_block - Int
timestamp_caught_up_to_head_or_endblock - timestamptz
Example
{
  "block_height": 123,
  "chain_id": 123,
  "end_block": 987,
  "first_event_block_number": 987,
  "latest_fetched_block_number": 123,
  "latest_processed_block": 987,
  "num_batches_fetched": 987,
  "num_events_processed": 123,
  "start_block": 123,
  "timestamp_caught_up_to_head_or_endblock": timestamptz
}

chain_metadata_min_fields

Description

aggregate min on columns

Fields
Field Name Description
block_height - Int
chain_id - Int
end_block - Int
first_event_block_number - Int
latest_fetched_block_number - Int
latest_processed_block - Int
num_batches_fetched - Int
num_events_processed - Int
start_block - Int
timestamp_caught_up_to_head_or_endblock - timestamptz
Example
{
  "block_height": 123,
  "chain_id": 123,
  "end_block": 987,
  "first_event_block_number": 987,
  "latest_fetched_block_number": 123,
  "latest_processed_block": 123,
  "num_batches_fetched": 987,
  "num_events_processed": 123,
  "start_block": 123,
  "timestamp_caught_up_to_head_or_endblock": timestamptz
}

chain_metadata_order_by

Description

Ordering options when selecting data from "chain_metadata".

Fields
Input Field Description
block_height - order_by
chain_id - order_by
end_block - order_by
first_event_block_number - order_by
is_hyper_sync - order_by
latest_fetched_block_number - order_by
latest_processed_block - order_by
num_batches_fetched - order_by
num_events_processed - order_by
start_block - order_by
timestamp_caught_up_to_head_or_endblock - order_by
Example
{
  "block_height": "asc",
  "chain_id": "asc",
  "end_block": "asc",
  "first_event_block_number": "asc",
  "is_hyper_sync": "asc",
  "latest_fetched_block_number": "asc",
  "latest_processed_block": "asc",
  "num_batches_fetched": "asc",
  "num_events_processed": "asc",
  "start_block": "asc",
  "timestamp_caught_up_to_head_or_endblock": "asc"
}

chain_metadata_select_column

Description

select columns of table "chain_metadata"

Values
Enum Value Description

block_height

column name

chain_id

column name

end_block

column name

first_event_block_number

column name

is_hyper_sync

column name

latest_fetched_block_number

column name

latest_processed_block

column name

num_batches_fetched

column name

num_events_processed

column name

start_block

column name

timestamp_caught_up_to_head_or_endblock

column name
Example
"block_height"

chain_metadata_stddev_fields

Description

aggregate stddev on columns

Fields
Field Name Description
block_height - Float
chain_id - Float
end_block - Float
first_event_block_number - Float
latest_fetched_block_number - Float
latest_processed_block - Float
num_batches_fetched - Float
num_events_processed - Float
start_block - Float
Example
{
  "block_height": 987.65,
  "chain_id": 987.65,
  "end_block": 123.45,
  "first_event_block_number": 987.65,
  "latest_fetched_block_number": 123.45,
  "latest_processed_block": 987.65,
  "num_batches_fetched": 123.45,
  "num_events_processed": 123.45,
  "start_block": 123.45
}

chain_metadata_stddev_pop_fields

Description

aggregate stddev_pop on columns

Fields
Field Name Description
block_height - Float
chain_id - Float
end_block - Float
first_event_block_number - Float
latest_fetched_block_number - Float
latest_processed_block - Float
num_batches_fetched - Float
num_events_processed - Float
start_block - Float
Example
{
  "block_height": 987.65,
  "chain_id": 987.65,
  "end_block": 987.65,
  "first_event_block_number": 123.45,
  "latest_fetched_block_number": 987.65,
  "latest_processed_block": 987.65,
  "num_batches_fetched": 987.65,
  "num_events_processed": 987.65,
  "start_block": 987.65
}

chain_metadata_stddev_samp_fields

Description

aggregate stddev_samp on columns

Fields
Field Name Description
block_height - Float
chain_id - Float
end_block - Float
first_event_block_number - Float
latest_fetched_block_number - Float
latest_processed_block - Float
num_batches_fetched - Float
num_events_processed - Float
start_block - Float
Example
{
  "block_height": 123.45,
  "chain_id": 987.65,
  "end_block": 987.65,
  "first_event_block_number": 123.45,
  "latest_fetched_block_number": 123.45,
  "latest_processed_block": 987.65,
  "num_batches_fetched": 123.45,
  "num_events_processed": 987.65,
  "start_block": 987.65
}

chain_metadata_stream_cursor_input

Description

Streaming cursor of the table "chain_metadata"

Fields
Input Field Description
initial_value - chain_metadata_stream_cursor_value_input! Stream column input with initial value
ordering - cursor_ordering cursor ordering
Example
{
  "initial_value": chain_metadata_stream_cursor_value_input,
  "ordering": "ASC"
}

chain_metadata_stream_cursor_value_input

Description

Initial value of the column from where the streaming should start

Fields
Input Field Description
block_height - Int
chain_id - Int
end_block - Int
first_event_block_number - Int
is_hyper_sync - Boolean
latest_fetched_block_number - Int
latest_processed_block - Int
num_batches_fetched - Int
num_events_processed - Int
start_block - Int
timestamp_caught_up_to_head_or_endblock - timestamptz
Example
{
  "block_height": 987,
  "chain_id": 987,
  "end_block": 987,
  "first_event_block_number": 123,
  "is_hyper_sync": false,
  "latest_fetched_block_number": 123,
  "latest_processed_block": 987,
  "num_batches_fetched": 123,
  "num_events_processed": 987,
  "start_block": 987,
  "timestamp_caught_up_to_head_or_endblock": timestamptz
}

chain_metadata_sum_fields

Description

aggregate sum on columns

Fields
Field Name Description
block_height - Int
chain_id - Int
end_block - Int
first_event_block_number - Int
latest_fetched_block_number - Int
latest_processed_block - Int
num_batches_fetched - Int
num_events_processed - Int
start_block - Int
Example
{
  "block_height": 987,
  "chain_id": 123,
  "end_block": 987,
  "first_event_block_number": 987,
  "latest_fetched_block_number": 987,
  "latest_processed_block": 123,
  "num_batches_fetched": 123,
  "num_events_processed": 123,
  "start_block": 987
}

chain_metadata_var_pop_fields

Description

aggregate var_pop on columns

Fields
Field Name Description
block_height - Float
chain_id - Float
end_block - Float
first_event_block_number - Float
latest_fetched_block_number - Float
latest_processed_block - Float
num_batches_fetched - Float
num_events_processed - Float
start_block - Float
Example
{
  "block_height": 987.65,
  "chain_id": 987.65,
  "end_block": 123.45,
  "first_event_block_number": 987.65,
  "latest_fetched_block_number": 987.65,
  "latest_processed_block": 987.65,
  "num_batches_fetched": 987.65,
  "num_events_processed": 123.45,
  "start_block": 987.65
}

chain_metadata_var_samp_fields

Description

aggregate var_samp on columns

Fields
Field Name Description
block_height - Float
chain_id - Float
end_block - Float
first_event_block_number - Float
latest_fetched_block_number - Float
latest_processed_block - Float
num_batches_fetched - Float
num_events_processed - Float
start_block - Float
Example
{
  "block_height": 123.45,
  "chain_id": 987.65,
  "end_block": 987.65,
  "first_event_block_number": 987.65,
  "latest_fetched_block_number": 123.45,
  "latest_processed_block": 123.45,
  "num_batches_fetched": 987.65,
  "num_events_processed": 987.65,
  "start_block": 987.65
}

chain_metadata_variance_fields

Description

aggregate variance on columns

Fields
Field Name Description
block_height - Float
chain_id - Float
end_block - Float
first_event_block_number - Float
latest_fetched_block_number - Float
latest_processed_block - Float
num_batches_fetched - Float
num_events_processed - Float
start_block - Float
Example
{
  "block_height": 123.45,
  "chain_id": 123.45,
  "end_block": 987.65,
  "first_event_block_number": 987.65,
  "latest_fetched_block_number": 123.45,
  "latest_processed_block": 987.65,
  "num_batches_fetched": 123.45,
  "num_events_processed": 123.45,
  "start_block": 123.45
}

contract_type

Example
contract_type

contract_type_comparison_exp

Description

Boolean expression to compare columns of type "contract_type". All fields are combined with logical 'AND'.

Fields
Input Field Description
_eq - contract_type
_gt - contract_type
_gte - contract_type
_in - [contract_type!]
_is_null - Boolean
_lt - contract_type
_lte - contract_type
_neq - contract_type
_nin - [contract_type!]
Example
{
  "_eq": contract_type,
  "_gt": contract_type,
  "_gte": contract_type,
  "_in": [contract_type],
  "_is_null": false,
  "_lt": contract_type,
  "_lte": contract_type,
  "_neq": contract_type,
  "_nin": [contract_type]
}

cursor_ordering

Description

ordering argument of a cursor

Values
Enum Value Description

ASC

ascending ordering of the cursor

DESC

descending ordering of the cursor
Example
"ASC"

dynamic_contract_registry

Description

columns and relationships of "dynamic_contract_registry"

Fields
Field Name Description
block_timestamp - Int!
chain_id - Int!
contract_address - String!
contract_type - contract_type!
event_id - numeric!
Example
{
  "block_timestamp": 987,
  "chain_id": 123,
  "contract_address": "abc123",
  "contract_type": contract_type,
  "event_id": numeric
}

dynamic_contract_registry_aggregate

Description

aggregated selection of "dynamic_contract_registry"

Fields
Field Name Description
aggregate - dynamic_contract_registry_aggregate_fields
nodes - [dynamic_contract_registry!]!
Example
{
  "aggregate": dynamic_contract_registry_aggregate_fields,
  "nodes": [dynamic_contract_registry]
}

dynamic_contract_registry_aggregate_fields

Example
{
  "avg": dynamic_contract_registry_avg_fields,
  "count": 123,
  "max": dynamic_contract_registry_max_fields,
  "min": dynamic_contract_registry_min_fields,
  "stddev": dynamic_contract_registry_stddev_fields,
  "stddev_pop": dynamic_contract_registry_stddev_pop_fields,
  "stddev_samp": dynamic_contract_registry_stddev_samp_fields,
  "sum": dynamic_contract_registry_sum_fields,
  "var_pop": dynamic_contract_registry_var_pop_fields,
  "var_samp": dynamic_contract_registry_var_samp_fields,
  "variance": dynamic_contract_registry_variance_fields
}

dynamic_contract_registry_avg_fields

Description

aggregate avg on columns

Fields
Field Name Description
block_timestamp - Float
chain_id - Float
event_id - Float
Example
{"block_timestamp": 123.45, "chain_id": 987.65, "event_id": 987.65}

dynamic_contract_registry_bool_exp

Description

Boolean expression to filter rows from the table "dynamic_contract_registry". All fields are combined with a logical 'AND'.

Example
{
  "_and": [dynamic_contract_registry_bool_exp],
  "_not": dynamic_contract_registry_bool_exp,
  "_or": [dynamic_contract_registry_bool_exp],
  "block_timestamp": Int_comparison_exp,
  "chain_id": Int_comparison_exp,
  "contract_address": String_comparison_exp,
  "contract_type": contract_type_comparison_exp,
  "event_id": numeric_comparison_exp
}

dynamic_contract_registry_max_fields

Description

aggregate max on columns

Fields
Field Name Description
block_timestamp - Int
chain_id - Int
contract_address - String
contract_type - contract_type
event_id - numeric
Example
{
  "block_timestamp": 987,
  "chain_id": 123,
  "contract_address": "xyz789",
  "contract_type": contract_type,
  "event_id": numeric
}

dynamic_contract_registry_min_fields

Description

aggregate min on columns

Fields
Field Name Description
block_timestamp - Int
chain_id - Int
contract_address - String
contract_type - contract_type
event_id - numeric
Example
{
  "block_timestamp": 123,
  "chain_id": 123,
  "contract_address": "abc123",
  "contract_type": contract_type,
  "event_id": numeric
}

dynamic_contract_registry_order_by

Description

Ordering options when selecting data from "dynamic_contract_registry".

Fields
Input Field Description
block_timestamp - order_by
chain_id - order_by
contract_address - order_by
contract_type - order_by
event_id - order_by
Example
{
  "block_timestamp": "asc",
  "chain_id": "asc",
  "contract_address": "asc",
  "contract_type": "asc",
  "event_id": "asc"
}

dynamic_contract_registry_select_column

Description

select columns of table "dynamic_contract_registry"

Values
Enum Value Description

block_timestamp

column name

chain_id

column name

contract_address

column name

contract_type

column name

event_id

column name
Example
"block_timestamp"

dynamic_contract_registry_stddev_fields

Description

aggregate stddev on columns

Fields
Field Name Description
block_timestamp - Float
chain_id - Float
event_id - Float
Example
{"block_timestamp": 123.45, "chain_id": 123.45, "event_id": 123.45}

dynamic_contract_registry_stddev_pop_fields

Description

aggregate stddev_pop on columns

Fields
Field Name Description
block_timestamp - Float
chain_id - Float
event_id - Float
Example
{"block_timestamp": 123.45, "chain_id": 123.45, "event_id": 123.45}

dynamic_contract_registry_stddev_samp_fields

Description

aggregate stddev_samp on columns

Fields
Field Name Description
block_timestamp - Float
chain_id - Float
event_id - Float
Example
{"block_timestamp": 123.45, "chain_id": 987.65, "event_id": 123.45}

dynamic_contract_registry_stream_cursor_input

Description

Streaming cursor of the table "dynamic_contract_registry"

Fields
Input Field Description
initial_value - dynamic_contract_registry_stream_cursor_value_input! Stream column input with initial value
ordering - cursor_ordering cursor ordering
Example
{
  "initial_value": dynamic_contract_registry_stream_cursor_value_input,
  "ordering": "ASC"
}

dynamic_contract_registry_stream_cursor_value_input

Description

Initial value of the column from where the streaming should start

Fields
Input Field Description
block_timestamp - Int
chain_id - Int
contract_address - String
contract_type - contract_type
event_id - numeric
Example
{
  "block_timestamp": 123,
  "chain_id": 123,
  "contract_address": "abc123",
  "contract_type": contract_type,
  "event_id": numeric
}

dynamic_contract_registry_sum_fields

Description

aggregate sum on columns

Fields
Field Name Description
block_timestamp - Int
chain_id - Int
event_id - numeric
Example
{
  "block_timestamp": 987,
  "chain_id": 123,
  "event_id": numeric
}

dynamic_contract_registry_var_pop_fields

Description

aggregate var_pop on columns

Fields
Field Name Description
block_timestamp - Float
chain_id - Float
event_id - Float
Example
{"block_timestamp": 987.65, "chain_id": 987.65, "event_id": 987.65}

dynamic_contract_registry_var_samp_fields

Description

aggregate var_samp on columns

Fields
Field Name Description
block_timestamp - Float
chain_id - Float
event_id - Float
Example
{"block_timestamp": 123.45, "chain_id": 123.45, "event_id": 123.45}

dynamic_contract_registry_variance_fields

Description

aggregate variance on columns

Fields
Field Name Description
block_timestamp - Float
chain_id - Float
event_id - Float
Example
{"block_timestamp": 123.45, "chain_id": 123.45, "event_id": 987.65}

entity_history

Description

columns and relationships of "entity_history"

Fields
Field Name Description
block_number - Int!
block_timestamp - Int!
chain_id - Int!
entity_id - String!
entity_type - entity_type!
event - raw_events An object relationship
log_index - Int!
params - json
Arguments
path - String

JSON select path

previous_block_number - Int
previous_block_timestamp - Int
previous_chain_id - Int
previous_log_index - Int
Example
{
  "block_number": 987,
  "block_timestamp": 987,
  "chain_id": 123,
  "entity_id": "abc123",
  "entity_type": entity_type,
  "event": raw_events,
  "log_index": 987,
  "params": json,
  "previous_block_number": 123,
  "previous_block_timestamp": 987,
  "previous_chain_id": 987,
  "previous_log_index": 987
}

entity_history_aggregate

Description

aggregated selection of "entity_history"

Fields
Field Name Description
aggregate - entity_history_aggregate_fields
nodes - [entity_history!]!
Example
{
  "aggregate": entity_history_aggregate_fields,
  "nodes": [entity_history]
}

entity_history_aggregate_bool_exp

Fields
Input Field Description
count - entity_history_aggregate_bool_exp_count
Example
{"count": entity_history_aggregate_bool_exp_count}

entity_history_aggregate_bool_exp_count

Fields
Input Field Description
arguments - [entity_history_select_column!]
distinct - Boolean
filter - entity_history_bool_exp
predicate - Int_comparison_exp!
Example
{
  "arguments": ["block_number"],
  "distinct": true,
  "filter": entity_history_bool_exp,
  "predicate": Int_comparison_exp
}

entity_history_aggregate_fields

Description

aggregate fields of "entity_history"

Example
{
  "avg": entity_history_avg_fields,
  "count": 987,
  "max": entity_history_max_fields,
  "min": entity_history_min_fields,
  "stddev": entity_history_stddev_fields,
  "stddev_pop": entity_history_stddev_pop_fields,
  "stddev_samp": entity_history_stddev_samp_fields,
  "sum": entity_history_sum_fields,
  "var_pop": entity_history_var_pop_fields,
  "var_samp": entity_history_var_samp_fields,
  "variance": entity_history_variance_fields
}

entity_history_aggregate_order_by

Description

order by aggregate values of table "entity_history"

Example
{
  "avg": entity_history_avg_order_by,
  "count": "asc",
  "max": entity_history_max_order_by,
  "min": entity_history_min_order_by,
  "stddev": entity_history_stddev_order_by,
  "stddev_pop": entity_history_stddev_pop_order_by,
  "stddev_samp": entity_history_stddev_samp_order_by,
  "sum": entity_history_sum_order_by,
  "var_pop": entity_history_var_pop_order_by,
  "var_samp": entity_history_var_samp_order_by,
  "variance": entity_history_variance_order_by
}

entity_history_avg_fields

Description

aggregate avg on columns

Fields
Field Name Description
block_number - Float
block_timestamp - Float
chain_id - Float
log_index - Float
previous_block_number - Float
previous_block_timestamp - Float
previous_chain_id - Float
previous_log_index - Float
Example
{
  "block_number": 123.45,
  "block_timestamp": 987.65,
  "chain_id": 987.65,
  "log_index": 987.65,
  "previous_block_number": 123.45,
  "previous_block_timestamp": 987.65,
  "previous_chain_id": 987.65,
  "previous_log_index": 987.65
}

entity_history_avg_order_by

Description

order by avg() on columns of table "entity_history"

Fields
Input Field Description
block_number - order_by
block_timestamp - order_by
chain_id - order_by
log_index - order_by
previous_block_number - order_by
previous_block_timestamp - order_by
previous_chain_id - order_by
previous_log_index - order_by
Example
{
  "block_number": "asc",
  "block_timestamp": "asc",
  "chain_id": "asc",
  "log_index": "asc",
  "previous_block_number": "asc",
  "previous_block_timestamp": "asc",
  "previous_chain_id": "asc",
  "previous_log_index": "asc"
}

entity_history_bool_exp

Description

Boolean expression to filter rows from the table "entity_history". All fields are combined with a logical 'AND'.

Fields
Input Field Description
_and - [entity_history_bool_exp!]
_not - entity_history_bool_exp
_or - [entity_history_bool_exp!]
block_number - Int_comparison_exp
block_timestamp - Int_comparison_exp
chain_id - Int_comparison_exp
entity_id - String_comparison_exp
entity_type - entity_type_comparison_exp
event - raw_events_bool_exp
log_index - Int_comparison_exp
params - json_comparison_exp
previous_block_number - Int_comparison_exp
previous_block_timestamp - Int_comparison_exp
previous_chain_id - Int_comparison_exp
previous_log_index - Int_comparison_exp
Example
{
  "_and": [entity_history_bool_exp],
  "_not": entity_history_bool_exp,
  "_or": [entity_history_bool_exp],
  "block_number": Int_comparison_exp,
  "block_timestamp": Int_comparison_exp,
  "chain_id": Int_comparison_exp,
  "entity_id": String_comparison_exp,
  "entity_type": entity_type_comparison_exp,
  "event": raw_events_bool_exp,
  "log_index": Int_comparison_exp,
  "params": json_comparison_exp,
  "previous_block_number": Int_comparison_exp,
  "previous_block_timestamp": Int_comparison_exp,
  "previous_chain_id": Int_comparison_exp,
  "previous_log_index": Int_comparison_exp
}

entity_history_filter

Description

columns and relationships of "entity_history_filter"

Fields
Field Name Description
block_number - Int!
block_timestamp - Int!
chain_id - Int!
entity_id - String!
entity_type - entity_type!
event - raw_events An object relationship
log_index - Int!
new_val - json
Arguments
path - String

JSON select path

old_val - json
Arguments
path - String

JSON select path

previous_block_number - Int!
previous_log_index - Int!
Example
{
  "block_number": 123,
  "block_timestamp": 987,
  "chain_id": 123,
  "entity_id": "abc123",
  "entity_type": entity_type,
  "event": raw_events,
  "log_index": 987,
  "new_val": json,
  "old_val": json,
  "previous_block_number": 987,
  "previous_log_index": 123
}

entity_history_filter_aggregate

Description

aggregated selection of "entity_history_filter"

Fields
Field Name Description
aggregate - entity_history_filter_aggregate_fields
nodes - [entity_history_filter!]!
Example
{
  "aggregate": entity_history_filter_aggregate_fields,
  "nodes": [entity_history_filter]
}

entity_history_filter_aggregate_fields

Example
{
  "avg": entity_history_filter_avg_fields,
  "count": 123,
  "max": entity_history_filter_max_fields,
  "min": entity_history_filter_min_fields,
  "stddev": entity_history_filter_stddev_fields,
  "stddev_pop": entity_history_filter_stddev_pop_fields,
  "stddev_samp": entity_history_filter_stddev_samp_fields,
  "sum": entity_history_filter_sum_fields,
  "var_pop": entity_history_filter_var_pop_fields,
  "var_samp": entity_history_filter_var_samp_fields,
  "variance": entity_history_filter_variance_fields
}

entity_history_filter_avg_fields

Description

aggregate avg on columns

Fields
Field Name Description
block_number - Float
block_timestamp - Float
chain_id - Float
log_index - Float
previous_block_number - Float
previous_log_index - Float
Example
{
  "block_number": 123.45,
  "block_timestamp": 987.65,
  "chain_id": 123.45,
  "log_index": 123.45,
  "previous_block_number": 123.45,
  "previous_log_index": 123.45
}

entity_history_filter_bool_exp

Description

Boolean expression to filter rows from the table "entity_history_filter". All fields are combined with a logical 'AND'.

Fields
Input Field Description
_and - [entity_history_filter_bool_exp!]
_not - entity_history_filter_bool_exp
_or - [entity_history_filter_bool_exp!]
block_number - Int_comparison_exp
block_timestamp - Int_comparison_exp
chain_id - Int_comparison_exp
entity_id - String_comparison_exp
entity_type - entity_type_comparison_exp
event - raw_events_bool_exp
log_index - Int_comparison_exp
new_val - json_comparison_exp
old_val - json_comparison_exp
previous_block_number - Int_comparison_exp
previous_log_index - Int_comparison_exp
Example
{
  "_and": [entity_history_filter_bool_exp],
  "_not": entity_history_filter_bool_exp,
  "_or": [entity_history_filter_bool_exp],
  "block_number": Int_comparison_exp,
  "block_timestamp": Int_comparison_exp,
  "chain_id": Int_comparison_exp,
  "entity_id": String_comparison_exp,
  "entity_type": entity_type_comparison_exp,
  "event": raw_events_bool_exp,
  "log_index": Int_comparison_exp,
  "new_val": json_comparison_exp,
  "old_val": json_comparison_exp,
  "previous_block_number": Int_comparison_exp,
  "previous_log_index": Int_comparison_exp
}

entity_history_filter_max_fields

Description

aggregate max on columns

Fields
Field Name Description
block_number - Int
block_timestamp - Int
chain_id - Int
entity_id - String
entity_type - entity_type
log_index - Int
previous_block_number - Int
previous_log_index - Int
Example
{
  "block_number": 987,
  "block_timestamp": 123,
  "chain_id": 987,
  "entity_id": "abc123",
  "entity_type": entity_type,
  "log_index": 123,
  "previous_block_number": 987,
  "previous_log_index": 987
}

entity_history_filter_min_fields

Description

aggregate min on columns

Fields
Field Name Description
block_number - Int
block_timestamp - Int
chain_id - Int
entity_id - String
entity_type - entity_type
log_index - Int
previous_block_number - Int
previous_log_index - Int
Example
{
  "block_number": 123,
  "block_timestamp": 123,
  "chain_id": 987,
  "entity_id": "abc123",
  "entity_type": entity_type,
  "log_index": 987,
  "previous_block_number": 987,
  "previous_log_index": 987
}

entity_history_filter_order_by

Description

Ordering options when selecting data from "entity_history_filter".

Fields
Input Field Description
block_number - order_by
block_timestamp - order_by
chain_id - order_by
entity_id - order_by
entity_type - order_by
event - raw_events_order_by
log_index - order_by
new_val - order_by
old_val - order_by
previous_block_number - order_by
previous_log_index - order_by
Example
{
  "block_number": "asc",
  "block_timestamp": "asc",
  "chain_id": "asc",
  "entity_id": "asc",
  "entity_type": "asc",
  "event": raw_events_order_by,
  "log_index": "asc",
  "new_val": "asc",
  "old_val": "asc",
  "previous_block_number": "asc",
  "previous_log_index": "asc"
}

entity_history_filter_select_column

Description

select columns of table "entity_history_filter"

Values
Enum Value Description

block_number

column name

block_timestamp

column name

chain_id

column name

entity_id

column name

entity_type

column name

log_index

column name

new_val

column name

old_val

column name

previous_block_number

column name

previous_log_index

column name
Example
"block_number"

entity_history_filter_stddev_fields

Description

aggregate stddev on columns

Fields
Field Name Description
block_number - Float
block_timestamp - Float
chain_id - Float
log_index - Float
previous_block_number - Float
previous_log_index - Float
Example
{
  "block_number": 987.65,
  "block_timestamp": 987.65,
  "chain_id": 123.45,
  "log_index": 123.45,
  "previous_block_number": 987.65,
  "previous_log_index": 987.65
}

entity_history_filter_stddev_pop_fields

Description

aggregate stddev_pop on columns

Fields
Field Name Description
block_number - Float
block_timestamp - Float
chain_id - Float
log_index - Float
previous_block_number - Float
previous_log_index - Float
Example
{
  "block_number": 123.45,
  "block_timestamp": 987.65,
  "chain_id": 123.45,
  "log_index": 123.45,
  "previous_block_number": 123.45,
  "previous_log_index": 123.45
}

entity_history_filter_stddev_samp_fields

Description

aggregate stddev_samp on columns

Fields
Field Name Description
block_number - Float
block_timestamp - Float
chain_id - Float
log_index - Float
previous_block_number - Float
previous_log_index - Float
Example
{
  "block_number": 987.65,
  "block_timestamp": 987.65,
  "chain_id": 123.45,
  "log_index": 987.65,
  "previous_block_number": 987.65,
  "previous_log_index": 987.65
}

entity_history_filter_stream_cursor_input

Description

Streaming cursor of the table "entity_history_filter"

Fields
Input Field Description
initial_value - entity_history_filter_stream_cursor_value_input! Stream column input with initial value
ordering - cursor_ordering cursor ordering
Example
{
  "initial_value": entity_history_filter_stream_cursor_value_input,
  "ordering": "ASC"
}

entity_history_filter_stream_cursor_value_input

Description

Initial value of the column from where the streaming should start

Fields
Input Field Description
block_number - Int
block_timestamp - Int
chain_id - Int
entity_id - String
entity_type - entity_type
log_index - Int
new_val - json
old_val - json
previous_block_number - Int
previous_log_index - Int
Example
{
  "block_number": 987,
  "block_timestamp": 123,
  "chain_id": 987,
  "entity_id": "xyz789",
  "entity_type": entity_type,
  "log_index": 987,
  "new_val": json,
  "old_val": json,
  "previous_block_number": 123,
  "previous_log_index": 123
}

entity_history_filter_sum_fields

Description

aggregate sum on columns

Fields
Field Name Description
block_number - Int
block_timestamp - Int
chain_id - Int
log_index - Int
previous_block_number - Int
previous_log_index - Int
Example
{
  "block_number": 123,
  "block_timestamp": 987,
  "chain_id": 987,
  "log_index": 987,
  "previous_block_number": 123,
  "previous_log_index": 123
}

entity_history_filter_var_pop_fields

Description

aggregate var_pop on columns

Fields
Field Name Description
block_number - Float
block_timestamp - Float
chain_id - Float
log_index - Float
previous_block_number - Float
previous_log_index - Float
Example
{
  "block_number": 987.65,
  "block_timestamp": 123.45,
  "chain_id": 123.45,
  "log_index": 123.45,
  "previous_block_number": 123.45,
  "previous_log_index": 987.65
}

entity_history_filter_var_samp_fields

Description

aggregate var_samp on columns

Fields
Field Name Description
block_number - Float
block_timestamp - Float
chain_id - Float
log_index - Float
previous_block_number - Float
previous_log_index - Float
Example
{
  "block_number": 987.65,
  "block_timestamp": 123.45,
  "chain_id": 987.65,
  "log_index": 987.65,
  "previous_block_number": 987.65,
  "previous_log_index": 123.45
}

entity_history_filter_variance_fields

Description

aggregate variance on columns

Fields
Field Name Description
block_number - Float
block_timestamp - Float
chain_id - Float
log_index - Float
previous_block_number - Float
previous_log_index - Float
Example
{
  "block_number": 123.45,
  "block_timestamp": 987.65,
  "chain_id": 123.45,
  "log_index": 987.65,
  "previous_block_number": 123.45,
  "previous_log_index": 123.45
}

entity_history_max_fields

Description

aggregate max on columns

Fields
Field Name Description
block_number - Int
block_timestamp - Int
chain_id - Int
entity_id - String
entity_type - entity_type
log_index - Int
previous_block_number - Int
previous_block_timestamp - Int
previous_chain_id - Int
previous_log_index - Int
Example
{
  "block_number": 123,
  "block_timestamp": 123,
  "chain_id": 987,
  "entity_id": "abc123",
  "entity_type": entity_type,
  "log_index": 987,
  "previous_block_number": 123,
  "previous_block_timestamp": 987,
  "previous_chain_id": 123,
  "previous_log_index": 987
}

entity_history_max_order_by

Description

order by max() on columns of table "entity_history"

Fields
Input Field Description
block_number - order_by
block_timestamp - order_by
chain_id - order_by
entity_id - order_by
entity_type - order_by
log_index - order_by
previous_block_number - order_by
previous_block_timestamp - order_by
previous_chain_id - order_by
previous_log_index - order_by
Example
{
  "block_number": "asc",
  "block_timestamp": "asc",
  "chain_id": "asc",
  "entity_id": "asc",
  "entity_type": "asc",
  "log_index": "asc",
  "previous_block_number": "asc",
  "previous_block_timestamp": "asc",
  "previous_chain_id": "asc",
  "previous_log_index": "asc"
}

entity_history_min_fields

Description

aggregate min on columns

Fields
Field Name Description
block_number - Int
block_timestamp - Int
chain_id - Int
entity_id - String
entity_type - entity_type
log_index - Int
previous_block_number - Int
previous_block_timestamp - Int
previous_chain_id - Int
previous_log_index - Int
Example
{
  "block_number": 123,
  "block_timestamp": 123,
  "chain_id": 987,
  "entity_id": "abc123",
  "entity_type": entity_type,
  "log_index": 987,
  "previous_block_number": 123,
  "previous_block_timestamp": 987,
  "previous_chain_id": 987,
  "previous_log_index": 987
}

entity_history_min_order_by

Description

order by min() on columns of table "entity_history"

Fields
Input Field Description
block_number - order_by
block_timestamp - order_by
chain_id - order_by
entity_id - order_by
entity_type - order_by
log_index - order_by
previous_block_number - order_by
previous_block_timestamp - order_by
previous_chain_id - order_by
previous_log_index - order_by
Example
{
  "block_number": "asc",
  "block_timestamp": "asc",
  "chain_id": "asc",
  "entity_id": "asc",
  "entity_type": "asc",
  "log_index": "asc",
  "previous_block_number": "asc",
  "previous_block_timestamp": "asc",
  "previous_chain_id": "asc",
  "previous_log_index": "asc"
}

entity_history_order_by

Description

Ordering options when selecting data from "entity_history".

Fields
Input Field Description
block_number - order_by
block_timestamp - order_by
chain_id - order_by
entity_id - order_by
entity_type - order_by
event - raw_events_order_by
log_index - order_by
params - order_by
previous_block_number - order_by
previous_block_timestamp - order_by
previous_chain_id - order_by
previous_log_index - order_by
Example
{
  "block_number": "asc",
  "block_timestamp": "asc",
  "chain_id": "asc",
  "entity_id": "asc",
  "entity_type": "asc",
  "event": raw_events_order_by,
  "log_index": "asc",
  "params": "asc",
  "previous_block_number": "asc",
  "previous_block_timestamp": "asc",
  "previous_chain_id": "asc",
  "previous_log_index": "asc"
}

entity_history_select_column

Description

select columns of table "entity_history"

Values
Enum Value Description

block_number

column name

block_timestamp

column name

chain_id

column name

entity_id

column name

entity_type

column name

log_index

column name

params

column name

previous_block_number

column name

previous_block_timestamp

column name

previous_chain_id

column name

previous_log_index

column name
Example
"block_number"

entity_history_stddev_fields

Description

aggregate stddev on columns

Fields
Field Name Description
block_number - Float
block_timestamp - Float
chain_id - Float
log_index - Float
previous_block_number - Float
previous_block_timestamp - Float
previous_chain_id - Float
previous_log_index - Float
Example
{
  "block_number": 987.65,
  "block_timestamp": 123.45,
  "chain_id": 123.45,
  "log_index": 987.65,
  "previous_block_number": 123.45,
  "previous_block_timestamp": 987.65,
  "previous_chain_id": 123.45,
  "previous_log_index": 987.65
}

entity_history_stddev_order_by

Description

order by stddev() on columns of table "entity_history"

Fields
Input Field Description
block_number - order_by
block_timestamp - order_by
chain_id - order_by
log_index - order_by
previous_block_number - order_by
previous_block_timestamp - order_by
previous_chain_id - order_by
previous_log_index - order_by
Example
{
  "block_number": "asc",
  "block_timestamp": "asc",
  "chain_id": "asc",
  "log_index": "asc",
  "previous_block_number": "asc",
  "previous_block_timestamp": "asc",
  "previous_chain_id": "asc",
  "previous_log_index": "asc"
}

entity_history_stddev_pop_fields

Description

aggregate stddev_pop on columns

Fields
Field Name Description
block_number - Float
block_timestamp - Float
chain_id - Float
log_index - Float
previous_block_number - Float
previous_block_timestamp - Float
previous_chain_id - Float
previous_log_index - Float
Example
{
  "block_number": 987.65,
  "block_timestamp": 123.45,
  "chain_id": 123.45,
  "log_index": 123.45,
  "previous_block_number": 987.65,
  "previous_block_timestamp": 123.45,
  "previous_chain_id": 123.45,
  "previous_log_index": 123.45
}

entity_history_stddev_pop_order_by

Description

order by stddev_pop() on columns of table "entity_history"

Fields
Input Field Description
block_number - order_by
block_timestamp - order_by
chain_id - order_by
log_index - order_by
previous_block_number - order_by
previous_block_timestamp - order_by
previous_chain_id - order_by
previous_log_index - order_by
Example
{
  "block_number": "asc",
  "block_timestamp": "asc",
  "chain_id": "asc",
  "log_index": "asc",
  "previous_block_number": "asc",
  "previous_block_timestamp": "asc",
  "previous_chain_id": "asc",
  "previous_log_index": "asc"
}

entity_history_stddev_samp_fields

Description

aggregate stddev_samp on columns

Fields
Field Name Description
block_number - Float
block_timestamp - Float
chain_id - Float
log_index - Float
previous_block_number - Float
previous_block_timestamp - Float
previous_chain_id - Float
previous_log_index - Float
Example
{
  "block_number": 987.65,
  "block_timestamp": 987.65,
  "chain_id": 987.65,
  "log_index": 987.65,
  "previous_block_number": 987.65,
  "previous_block_timestamp": 123.45,
  "previous_chain_id": 123.45,
  "previous_log_index": 123.45
}

entity_history_stddev_samp_order_by

Description

order by stddev_samp() on columns of table "entity_history"

Fields
Input Field Description
block_number - order_by
block_timestamp - order_by
chain_id - order_by
log_index - order_by
previous_block_number - order_by
previous_block_timestamp - order_by
previous_chain_id - order_by
previous_log_index - order_by
Example
{
  "block_number": "asc",
  "block_timestamp": "asc",
  "chain_id": "asc",
  "log_index": "asc",
  "previous_block_number": "asc",
  "previous_block_timestamp": "asc",
  "previous_chain_id": "asc",
  "previous_log_index": "asc"
}

entity_history_stream_cursor_input

Description

Streaming cursor of the table "entity_history"

Fields
Input Field Description
initial_value - entity_history_stream_cursor_value_input! Stream column input with initial value
ordering - cursor_ordering cursor ordering
Example
{
  "initial_value": entity_history_stream_cursor_value_input,
  "ordering": "ASC"
}

entity_history_stream_cursor_value_input

Description

Initial value of the column from where the streaming should start

Fields
Input Field Description
block_number - Int
block_timestamp - Int
chain_id - Int
entity_id - String
entity_type - entity_type
log_index - Int
params - json
previous_block_number - Int
previous_block_timestamp - Int
previous_chain_id - Int
previous_log_index - Int
Example
{
  "block_number": 987,
  "block_timestamp": 123,
  "chain_id": 987,
  "entity_id": "abc123",
  "entity_type": entity_type,
  "log_index": 987,
  "params": json,
  "previous_block_number": 123,
  "previous_block_timestamp": 987,
  "previous_chain_id": 123,
  "previous_log_index": 123
}

entity_history_sum_fields

Description

aggregate sum on columns

Fields
Field Name Description
block_number - Int
block_timestamp - Int
chain_id - Int
log_index - Int
previous_block_number - Int
previous_block_timestamp - Int
previous_chain_id - Int
previous_log_index - Int
Example
{
  "block_number": 987,
  "block_timestamp": 123,
  "chain_id": 987,
  "log_index": 987,
  "previous_block_number": 123,
  "previous_block_timestamp": 123,
  "previous_chain_id": 987,
  "previous_log_index": 123
}

entity_history_sum_order_by

Description

order by sum() on columns of table "entity_history"

Fields
Input Field Description
block_number - order_by
block_timestamp - order_by
chain_id - order_by
log_index - order_by
previous_block_number - order_by
previous_block_timestamp - order_by
previous_chain_id - order_by
previous_log_index - order_by
Example
{
  "block_number": "asc",
  "block_timestamp": "asc",
  "chain_id": "asc",
  "log_index": "asc",
  "previous_block_number": "asc",
  "previous_block_timestamp": "asc",
  "previous_chain_id": "asc",
  "previous_log_index": "asc"
}

entity_history_var_pop_fields

Description

aggregate var_pop on columns

Fields
Field Name Description
block_number - Float
block_timestamp - Float
chain_id - Float
log_index - Float
previous_block_number - Float
previous_block_timestamp - Float
previous_chain_id - Float
previous_log_index - Float
Example
{
  "block_number": 987.65,
  "block_timestamp": 123.45,
  "chain_id": 987.65,
  "log_index": 987.65,
  "previous_block_number": 123.45,
  "previous_block_timestamp": 123.45,
  "previous_chain_id": 123.45,
  "previous_log_index": 123.45
}

entity_history_var_pop_order_by

Description

order by var_pop() on columns of table "entity_history"

Fields
Input Field Description
block_number - order_by
block_timestamp - order_by
chain_id - order_by
log_index - order_by
previous_block_number - order_by
previous_block_timestamp - order_by
previous_chain_id - order_by
previous_log_index - order_by
Example
{
  "block_number": "asc",
  "block_timestamp": "asc",
  "chain_id": "asc",
  "log_index": "asc",
  "previous_block_number": "asc",
  "previous_block_timestamp": "asc",
  "previous_chain_id": "asc",
  "previous_log_index": "asc"
}

entity_history_var_samp_fields

Description

aggregate var_samp on columns

Fields
Field Name Description
block_number - Float
block_timestamp - Float
chain_id - Float
log_index - Float
previous_block_number - Float
previous_block_timestamp - Float
previous_chain_id - Float
previous_log_index - Float
Example
{
  "block_number": 987.65,
  "block_timestamp": 987.65,
  "chain_id": 123.45,
  "log_index": 123.45,
  "previous_block_number": 987.65,
  "previous_block_timestamp": 123.45,
  "previous_chain_id": 987.65,
  "previous_log_index": 987.65
}

entity_history_var_samp_order_by

Description

order by var_samp() on columns of table "entity_history"

Fields
Input Field Description
block_number - order_by
block_timestamp - order_by
chain_id - order_by
log_index - order_by
previous_block_number - order_by
previous_block_timestamp - order_by
previous_chain_id - order_by
previous_log_index - order_by
Example
{
  "block_number": "asc",
  "block_timestamp": "asc",
  "chain_id": "asc",
  "log_index": "asc",
  "previous_block_number": "asc",
  "previous_block_timestamp": "asc",
  "previous_chain_id": "asc",
  "previous_log_index": "asc"
}

entity_history_variance_fields

Description

aggregate variance on columns

Fields
Field Name Description
block_number - Float
block_timestamp - Float
chain_id - Float
log_index - Float
previous_block_number - Float
previous_block_timestamp - Float
previous_chain_id - Float
previous_log_index - Float
Example
{
  "block_number": 123.45,
  "block_timestamp": 123.45,
  "chain_id": 987.65,
  "log_index": 987.65,
  "previous_block_number": 123.45,
  "previous_block_timestamp": 123.45,
  "previous_chain_id": 987.65,
  "previous_log_index": 987.65
}

entity_history_variance_order_by

Description

order by variance() on columns of table "entity_history"

Fields
Input Field Description
block_number - order_by
block_timestamp - order_by
chain_id - order_by
log_index - order_by
previous_block_number - order_by
previous_block_timestamp - order_by
previous_chain_id - order_by
previous_log_index - order_by
Example
{
  "block_number": "asc",
  "block_timestamp": "asc",
  "chain_id": "asc",
  "log_index": "asc",
  "previous_block_number": "asc",
  "previous_block_timestamp": "asc",
  "previous_chain_id": "asc",
  "previous_log_index": "asc"
}

entity_type

Example
entity_type

entity_type_comparison_exp

Description

Boolean expression to compare columns of type "entity_type". All fields are combined with logical 'AND'.

Fields
Input Field Description
_eq - entity_type
_gt - entity_type
_gte - entity_type
_in - [entity_type!]
_is_null - Boolean
_lt - entity_type
_lte - entity_type
_neq - entity_type
_nin - [entity_type!]
Example
{
  "_eq": entity_type,
  "_gt": entity_type,
  "_gte": entity_type,
  "_in": [entity_type],
  "_is_null": true,
  "_lt": entity_type,
  "_lte": entity_type,
  "_neq": entity_type,
  "_nin": [entity_type]
}

event_sync_state

Description

columns and relationships of "event_sync_state"

Fields
Field Name Description
block_number - Int!
block_timestamp - Int!
chain_id - Int!
log_index - Int!
transaction_index - Int!
Example
{
  "block_number": 987,
  "block_timestamp": 987,
  "chain_id": 987,
  "log_index": 987,
  "transaction_index": 987
}

event_sync_state_aggregate

Description

aggregated selection of "event_sync_state"

Fields
Field Name Description
aggregate - event_sync_state_aggregate_fields
nodes - [event_sync_state!]!
Example
{
  "aggregate": event_sync_state_aggregate_fields,
  "nodes": [event_sync_state]
}

event_sync_state_aggregate_fields

Example
{
  "avg": event_sync_state_avg_fields,
  "count": 987,
  "max": event_sync_state_max_fields,
  "min": event_sync_state_min_fields,
  "stddev": event_sync_state_stddev_fields,
  "stddev_pop": event_sync_state_stddev_pop_fields,
  "stddev_samp": event_sync_state_stddev_samp_fields,
  "sum": event_sync_state_sum_fields,
  "var_pop": event_sync_state_var_pop_fields,
  "var_samp": event_sync_state_var_samp_fields,
  "variance": event_sync_state_variance_fields
}

event_sync_state_avg_fields

Description

aggregate avg on columns

Fields
Field Name Description
block_number - Float
block_timestamp - Float
chain_id - Float
log_index - Float
transaction_index - Float
Example
{
  "block_number": 987.65,
  "block_timestamp": 123.45,
  "chain_id": 123.45,
  "log_index": 987.65,
  "transaction_index": 123.45
}

event_sync_state_bool_exp

Description

Boolean expression to filter rows from the table "event_sync_state". All fields are combined with a logical 'AND'.

Fields
Input Field Description
_and - [event_sync_state_bool_exp!]
_not - event_sync_state_bool_exp
_or - [event_sync_state_bool_exp!]
block_number - Int_comparison_exp
block_timestamp - Int_comparison_exp
chain_id - Int_comparison_exp
log_index - Int_comparison_exp
transaction_index - Int_comparison_exp
Example
{
  "_and": [event_sync_state_bool_exp],
  "_not": event_sync_state_bool_exp,
  "_or": [event_sync_state_bool_exp],
  "block_number": Int_comparison_exp,
  "block_timestamp": Int_comparison_exp,
  "chain_id": Int_comparison_exp,
  "log_index": Int_comparison_exp,
  "transaction_index": Int_comparison_exp
}

event_sync_state_max_fields

Description

aggregate max on columns

Fields
Field Name Description
block_number - Int
block_timestamp - Int
chain_id - Int
log_index - Int
transaction_index - Int
Example
{
  "block_number": 123,
  "block_timestamp": 987,
  "chain_id": 123,
  "log_index": 123,
  "transaction_index": 987
}

event_sync_state_min_fields

Description

aggregate min on columns

Fields
Field Name Description
block_number - Int
block_timestamp - Int
chain_id - Int
log_index - Int
transaction_index - Int
Example
{
  "block_number": 123,
  "block_timestamp": 987,
  "chain_id": 123,
  "log_index": 987,
  "transaction_index": 123
}

event_sync_state_order_by

Description

Ordering options when selecting data from "event_sync_state".

Fields
Input Field Description
block_number - order_by
block_timestamp - order_by
chain_id - order_by
log_index - order_by
transaction_index - order_by
Example
{
  "block_number": "asc",
  "block_timestamp": "asc",
  "chain_id": "asc",
  "log_index": "asc",
  "transaction_index": "asc"
}

event_sync_state_select_column

Description

select columns of table "event_sync_state"

Values
Enum Value Description

block_number

column name

block_timestamp

column name

chain_id

column name

log_index

column name

transaction_index

column name
Example
"block_number"

event_sync_state_stddev_fields

Description

aggregate stddev on columns

Fields
Field Name Description
block_number - Float
block_timestamp - Float
chain_id - Float
log_index - Float
transaction_index - Float
Example
{
  "block_number": 123.45,
  "block_timestamp": 987.65,
  "chain_id": 123.45,
  "log_index": 987.65,
  "transaction_index": 123.45
}

event_sync_state_stddev_pop_fields

Description

aggregate stddev_pop on columns

Fields
Field Name Description
block_number - Float
block_timestamp - Float
chain_id - Float
log_index - Float
transaction_index - Float
Example
{
  "block_number": 123.45,
  "block_timestamp": 123.45,
  "chain_id": 123.45,
  "log_index": 123.45,
  "transaction_index": 123.45
}

event_sync_state_stddev_samp_fields

Description

aggregate stddev_samp on columns

Fields
Field Name Description
block_number - Float
block_timestamp - Float
chain_id - Float
log_index - Float
transaction_index - Float
Example
{
  "block_number": 987.65,
  "block_timestamp": 123.45,
  "chain_id": 987.65,
  "log_index": 987.65,
  "transaction_index": 987.65
}

event_sync_state_stream_cursor_input

Description

Streaming cursor of the table "event_sync_state"

Fields
Input Field Description
initial_value - event_sync_state_stream_cursor_value_input! Stream column input with initial value
ordering - cursor_ordering cursor ordering
Example
{
  "initial_value": event_sync_state_stream_cursor_value_input,
  "ordering": "ASC"
}

event_sync_state_stream_cursor_value_input

Description

Initial value of the column from where the streaming should start

Fields
Input Field Description
block_number - Int
block_timestamp - Int
chain_id - Int
log_index - Int
transaction_index - Int
Example
{
  "block_number": 987,
  "block_timestamp": 987,
  "chain_id": 123,
  "log_index": 123,
  "transaction_index": 987
}

event_sync_state_sum_fields

Description

aggregate sum on columns

Fields
Field Name Description
block_number - Int
block_timestamp - Int
chain_id - Int
log_index - Int
transaction_index - Int
Example
{
  "block_number": 987,
  "block_timestamp": 123,
  "chain_id": 123,
  "log_index": 987,
  "transaction_index": 987
}

event_sync_state_var_pop_fields

Description

aggregate var_pop on columns

Fields
Field Name Description
block_number - Float
block_timestamp - Float
chain_id - Float
log_index - Float
transaction_index - Float
Example
{
  "block_number": 987.65,
  "block_timestamp": 123.45,
  "chain_id": 987.65,
  "log_index": 123.45,
  "transaction_index": 987.65
}

event_sync_state_var_samp_fields

Description

aggregate var_samp on columns

Fields
Field Name Description
block_number - Float
block_timestamp - Float
chain_id - Float
log_index - Float
transaction_index - Float
Example
{
  "block_number": 987.65,
  "block_timestamp": 123.45,
  "chain_id": 987.65,
  "log_index": 987.65,
  "transaction_index": 987.65
}

event_sync_state_variance_fields

Description

aggregate variance on columns

Fields
Field Name Description
block_number - Float
block_timestamp - Float
chain_id - Float
log_index - Float
transaction_index - Float
Example
{
  "block_number": 123.45,
  "block_timestamp": 987.65,
  "chain_id": 987.65,
  "log_index": 987.65,
  "transaction_index": 123.45
}

event_type

Example
event_type

event_type_comparison_exp

Description

Boolean expression to compare columns of type "event_type". All fields are combined with logical 'AND'.

Fields
Input Field Description
_eq - event_type
_gt - event_type
_gte - event_type
_in - [event_type!]
_is_null - Boolean
_lt - event_type
_lte - event_type
_neq - event_type
_nin - [event_type!]
Example
{
  "_eq": event_type,
  "_gt": event_type,
  "_gte": event_type,
  "_in": [event_type],
  "_is_null": false,
  "_lt": event_type,
  "_lte": event_type,
  "_neq": event_type,
  "_nin": [event_type]
}

get_entity_history_filter_args

Fields
Input Field Description
end_block - Int
end_chain_id - Int
end_log_index - Int
end_timestamp - Int
start_block - Int
start_chain_id - Int
start_log_index - Int
start_timestamp - Int
Example
{
  "end_block": 123,
  "end_chain_id": 123,
  "end_log_index": 123,
  "end_timestamp": 987,
  "start_block": 123,
  "start_chain_id": 987,
  "start_log_index": 123,
  "start_timestamp": 987
}

interactiontype

Example
interactiontype

interactiontype_comparison_exp

Description

Boolean expression to compare columns of type "interactiontype". All fields are combined with logical 'AND'.

Fields
Input Field Description
_eq - interactiontype
_gt - interactiontype
_gte - interactiontype
_in - [interactiontype!]
_is_null - Boolean
_lt - interactiontype
_lte - interactiontype
_neq - interactiontype
_nin - [interactiontype!]
Example
{
  "_eq": interactiontype,
  "_gt": interactiontype,
  "_gte": interactiontype,
  "_in": [interactiontype],
  "_is_null": true,
  "_lt": interactiontype,
  "_lte": interactiontype,
  "_neq": interactiontype,
  "_nin": [interactiontype]
}

json

Example
json

json_comparison_exp

Description

Boolean expression to compare columns of type "json". All fields are combined with logical 'AND'.

Fields
Input Field Description
_eq - json
_gt - json
_gte - json
_in - [json!]
_is_null - Boolean
_lt - json
_lte - json
_neq - json
_nin - [json!]
Example
{
  "_eq": json,
  "_gt": json,
  "_gte": json,
  "_in": [json],
  "_is_null": true,
  "_lt": json,
  "_lte": json,
  "_neq": json,
  "_nin": [json]
}

jsonb

Example
jsonb

jsonb_cast_exp

Fields
Input Field Description
String - String_comparison_exp
Example
{"String": String_comparison_exp}

jsonb_comparison_exp

Description

Boolean expression to compare columns of type "jsonb". All fields are combined with logical 'AND'.

Fields
Input Field Description
_cast - jsonb_cast_exp
_contained_in - jsonb is the column contained in the given json value
_contains - jsonb does the column contain the given json value at the top level
_eq - jsonb
_gt - jsonb
_gte - jsonb
_has_key - String does the string exist as a top-level key in the column
_has_keys_all - [String!] do all of these strings exist as top-level keys in the column
_has_keys_any - [String!] do any of these strings exist as top-level keys in the column
_in - [jsonb!]
_is_null - Boolean
_lt - jsonb
_lte - jsonb
_neq - jsonb
_nin - [jsonb!]
Example
{
  "_cast": jsonb_cast_exp,
  "_contained_in": jsonb,
  "_contains": jsonb,
  "_eq": jsonb,
  "_gt": jsonb,
  "_gte": jsonb,
  "_has_key": "abc123",
  "_has_keys_all": ["abc123"],
  "_has_keys_any": ["xyz789"],
  "_in": [jsonb],
  "_is_null": true,
  "_lt": jsonb,
  "_lte": jsonb,
  "_neq": jsonb,
  "_nin": [jsonb]
}

numeric

Example
numeric

numeric_comparison_exp

Description

Boolean expression to compare columns of type "numeric". All fields are combined with logical 'AND'.

Fields
Input Field Description
_eq - numeric
_gt - numeric
_gte - numeric
_in - [numeric!]
_is_null - Boolean
_lt - numeric
_lte - numeric
_neq - numeric
_nin - [numeric!]
Example
{
  "_eq": numeric,
  "_gt": numeric,
  "_gte": numeric,
  "_in": [numeric],
  "_is_null": true,
  "_lt": numeric,
  "_lte": numeric,
  "_neq": numeric,
  "_nin": [numeric]
}

order_by

Description

column ordering options

Values
Enum Value Description

asc

in ascending order, nulls last

asc_nulls_first

in ascending order, nulls first

asc_nulls_last

in ascending order, nulls last

desc

in descending order, nulls first

desc_nulls_first

in descending order, nulls first

desc_nulls_last

in descending order, nulls last
Example
"asc"

permissions

Example
permissions

permissions_array_comparison_exp

Description

Boolean expression to compare columns of type "permissions". All fields are combined with logical 'AND'.

Fields
Input Field Description
_contained_in - [permissions!] is the array contained in the given array value
_contains - [permissions!] does the array contain the given value
_eq - [permissions!]
_gt - [permissions!]
_gte - [permissions!]
_in - [permissions!]
_is_null - Boolean
_lt - [permissions!]
_lte - [permissions!]
_neq - [permissions!]
_nin - [permissions!]
Example
{
  "_contained_in": [permissions],
  "_contains": [permissions],
  "_eq": [permissions],
  "_gt": [permissions],
  "_gte": [permissions],
  "_in": [permissions],
  "_is_null": false,
  "_lt": [permissions],
  "_lte": [permissions],
  "_neq": [permissions],
  "_nin": [permissions]
}

persisted_state

Description

columns and relationships of "persisted_state"

Fields
Field Name Description
abi_files_hash - String!
config_hash - String!
envio_version - String!
handler_files_hash - String!
id - Int!
schema_hash - String!
Example
{
  "abi_files_hash": "abc123",
  "config_hash": "abc123",
  "envio_version": "xyz789",
  "handler_files_hash": "abc123",
  "id": 123,
  "schema_hash": "abc123"
}

persisted_state_aggregate

Description

aggregated selection of "persisted_state"

Fields
Field Name Description
aggregate - persisted_state_aggregate_fields
nodes - [persisted_state!]!
Example
{
  "aggregate": persisted_state_aggregate_fields,
  "nodes": [persisted_state]
}

persisted_state_aggregate_fields

Description

aggregate fields of "persisted_state"

Example
{
  "avg": persisted_state_avg_fields,
  "count": 987,
  "max": persisted_state_max_fields,
  "min": persisted_state_min_fields,
  "stddev": persisted_state_stddev_fields,
  "stddev_pop": persisted_state_stddev_pop_fields,
  "stddev_samp": persisted_state_stddev_samp_fields,
  "sum": persisted_state_sum_fields,
  "var_pop": persisted_state_var_pop_fields,
  "var_samp": persisted_state_var_samp_fields,
  "variance": persisted_state_variance_fields
}

persisted_state_avg_fields

Description

aggregate avg on columns

Fields
Field Name Description
id - Float
Example
{"id": 123.45}

persisted_state_bool_exp

Description

Boolean expression to filter rows from the table "persisted_state". All fields are combined with a logical 'AND'.

Fields
Input Field Description
_and - [persisted_state_bool_exp!]
_not - persisted_state_bool_exp
_or - [persisted_state_bool_exp!]
abi_files_hash - String_comparison_exp
config_hash - String_comparison_exp
envio_version - String_comparison_exp
handler_files_hash - String_comparison_exp
id - Int_comparison_exp
schema_hash - String_comparison_exp
Example
{
  "_and": [persisted_state_bool_exp],
  "_not": persisted_state_bool_exp,
  "_or": [persisted_state_bool_exp],
  "abi_files_hash": String_comparison_exp,
  "config_hash": String_comparison_exp,
  "envio_version": String_comparison_exp,
  "handler_files_hash": String_comparison_exp,
  "id": Int_comparison_exp,
  "schema_hash": String_comparison_exp
}

persisted_state_max_fields

Description

aggregate max on columns

Fields
Field Name Description
abi_files_hash - String
config_hash - String
envio_version - String
handler_files_hash - String
id - Int
schema_hash - String
Example
{
  "abi_files_hash": "xyz789",
  "config_hash": "xyz789",
  "envio_version": "xyz789",
  "handler_files_hash": "xyz789",
  "id": 123,
  "schema_hash": "abc123"
}

persisted_state_min_fields

Description

aggregate min on columns

Fields
Field Name Description
abi_files_hash - String
config_hash - String
envio_version - String
handler_files_hash - String
id - Int
schema_hash - String
Example
{
  "abi_files_hash": "xyz789",
  "config_hash": "abc123",
  "envio_version": "abc123",
  "handler_files_hash": "xyz789",
  "id": 123,
  "schema_hash": "abc123"
}

persisted_state_order_by

Description

Ordering options when selecting data from "persisted_state".

Fields
Input Field Description
abi_files_hash - order_by
config_hash - order_by
envio_version - order_by
handler_files_hash - order_by
id - order_by
schema_hash - order_by
Example
{
  "abi_files_hash": "asc",
  "config_hash": "asc",
  "envio_version": "asc",
  "handler_files_hash": "asc",
  "id": "asc",
  "schema_hash": "asc"
}

persisted_state_select_column

Description

select columns of table "persisted_state"

Values
Enum Value Description

abi_files_hash

column name

config_hash

column name

envio_version

column name

handler_files_hash

column name

id

column name

schema_hash

column name
Example
"abi_files_hash"

persisted_state_stddev_fields

Description

aggregate stddev on columns

Fields
Field Name Description
id - Float
Example
{"id": 123.45}

persisted_state_stddev_pop_fields

Description

aggregate stddev_pop on columns

Fields
Field Name Description
id - Float
Example
{"id": 987.65}

persisted_state_stddev_samp_fields

Description

aggregate stddev_samp on columns

Fields
Field Name Description
id - Float
Example
{"id": 123.45}

persisted_state_stream_cursor_input

Description

Streaming cursor of the table "persisted_state"

Fields
Input Field Description
initial_value - persisted_state_stream_cursor_value_input! Stream column input with initial value
ordering - cursor_ordering cursor ordering
Example
{
  "initial_value": persisted_state_stream_cursor_value_input,
  "ordering": "ASC"
}

persisted_state_stream_cursor_value_input

Description

Initial value of the column from where the streaming should start

Fields
Input Field Description
abi_files_hash - String
config_hash - String
envio_version - String
handler_files_hash - String
id - Int
schema_hash - String
Example
{
  "abi_files_hash": "abc123",
  "config_hash": "xyz789",
  "envio_version": "abc123",
  "handler_files_hash": "xyz789",
  "id": 123,
  "schema_hash": "xyz789"
}

persisted_state_sum_fields

Description

aggregate sum on columns

Fields
Field Name Description
id - Int
Example
{"id": 987}

persisted_state_var_pop_fields

Description

aggregate var_pop on columns

Fields
Field Name Description
id - Float
Example
{"id": 987.65}

persisted_state_var_samp_fields

Description

aggregate var_samp on columns

Fields
Field Name Description
id - Float
Example
{"id": 987.65}

persisted_state_variance_fields

Description

aggregate variance on columns

Fields
Field Name Description
id - Float
Example
{"id": 987.65}

raw_events

Description

columns and relationships of "raw_events"

Fields
Field Name Description
block_hash - String!
block_number - Int!
block_timestamp - Int!
chain_id - Int!
db_write_timestamp - timestamp
event_history - [entity_history!]! An array relationship
Arguments
distinct_on - [entity_history_select_column!]

distinct select on columns

limit - Int

limit the number of rows returned

offset - Int

skip the first n rows. Use only with order_by

order_by - [entity_history_order_by!]

sort the rows by one or more columns

where - entity_history_bool_exp

filter the rows returned

event_history_aggregate - entity_history_aggregate! An aggregate relationship
Arguments
distinct_on - [entity_history_select_column!]

distinct select on columns

limit - Int

limit the number of rows returned

offset - Int

skip the first n rows. Use only with order_by

order_by - [entity_history_order_by!]

sort the rows by one or more columns

where - entity_history_bool_exp

filter the rows returned

event_id - numeric!
event_type - event_type!
log_index - Int!
params - json!
Arguments
path - String

JSON select path

src_address - String!
transaction_hash - String!
transaction_index - Int!
Example
{
  "block_hash": "abc123",
  "block_number": 123,
  "block_timestamp": 987,
  "chain_id": 987,
  "db_write_timestamp": timestamp,
  "event_history": [entity_history],
  "event_history_aggregate": entity_history_aggregate,
  "event_id": numeric,
  "event_type": event_type,
  "log_index": 123,
  "params": json,
  "src_address": "abc123",
  "transaction_hash": "xyz789",
  "transaction_index": 123
}

raw_events_aggregate

Description

aggregated selection of "raw_events"

Fields
Field Name Description
aggregate - raw_events_aggregate_fields
nodes - [raw_events!]!
Example
{
  "aggregate": raw_events_aggregate_fields,
  "nodes": [raw_events]
}

raw_events_aggregate_fields

Description

aggregate fields of "raw_events"

Example
{
  "avg": raw_events_avg_fields,
  "count": 987,
  "max": raw_events_max_fields,
  "min": raw_events_min_fields,
  "stddev": raw_events_stddev_fields,
  "stddev_pop": raw_events_stddev_pop_fields,
  "stddev_samp": raw_events_stddev_samp_fields,
  "sum": raw_events_sum_fields,
  "var_pop": raw_events_var_pop_fields,
  "var_samp": raw_events_var_samp_fields,
  "variance": raw_events_variance_fields
}

raw_events_avg_fields

Description

aggregate avg on columns

Fields
Field Name Description
block_number - Float
block_timestamp - Float
chain_id - Float
event_id - Float
log_index - Float
transaction_index - Float
Example
{
  "block_number": 987.65,
  "block_timestamp": 123.45,
  "chain_id": 987.65,
  "event_id": 123.45,
  "log_index": 123.45,
  "transaction_index": 987.65
}

raw_events_bool_exp

Description

Boolean expression to filter rows from the table "raw_events". All fields are combined with a logical 'AND'.

Fields
Input Field Description
_and - [raw_events_bool_exp!]
_not - raw_events_bool_exp
_or - [raw_events_bool_exp!]
block_hash - String_comparison_exp
block_number - Int_comparison_exp
block_timestamp - Int_comparison_exp
chain_id - Int_comparison_exp
db_write_timestamp - timestamp_comparison_exp
event_history - entity_history_bool_exp
event_history_aggregate - entity_history_aggregate_bool_exp
event_id - numeric_comparison_exp
event_type - event_type_comparison_exp
log_index - Int_comparison_exp
params - json_comparison_exp
src_address - String_comparison_exp
transaction_hash - String_comparison_exp
transaction_index - Int_comparison_exp
Example
{
  "_and": [raw_events_bool_exp],
  "_not": raw_events_bool_exp,
  "_or": [raw_events_bool_exp],
  "block_hash": String_comparison_exp,
  "block_number": Int_comparison_exp,
  "block_timestamp": Int_comparison_exp,
  "chain_id": Int_comparison_exp,
  "db_write_timestamp": timestamp_comparison_exp,
  "event_history": entity_history_bool_exp,
  "event_history_aggregate": entity_history_aggregate_bool_exp,
  "event_id": numeric_comparison_exp,
  "event_type": event_type_comparison_exp,
  "log_index": Int_comparison_exp,
  "params": json_comparison_exp,
  "src_address": String_comparison_exp,
  "transaction_hash": String_comparison_exp,
  "transaction_index": Int_comparison_exp
}

raw_events_max_fields

Description

aggregate max on columns

Fields
Field Name Description
block_hash - String
block_number - Int
block_timestamp - Int
chain_id - Int
db_write_timestamp - timestamp
event_id - numeric
event_type - event_type
log_index - Int
src_address - String
transaction_hash - String
transaction_index - Int
Example
{
  "block_hash": "xyz789",
  "block_number": 123,
  "block_timestamp": 987,
  "chain_id": 123,
  "db_write_timestamp": timestamp,
  "event_id": numeric,
  "event_type": event_type,
  "log_index": 987,
  "src_address": "abc123",
  "transaction_hash": "abc123",
  "transaction_index": 987
}

raw_events_min_fields

Description

aggregate min on columns

Fields
Field Name Description
block_hash - String
block_number - Int
block_timestamp - Int
chain_id - Int
db_write_timestamp - timestamp
event_id - numeric
event_type - event_type
log_index - Int
src_address - String
transaction_hash - String
transaction_index - Int
Example
{
  "block_hash": "xyz789",
  "block_number": 123,
  "block_timestamp": 987,
  "chain_id": 987,
  "db_write_timestamp": timestamp,
  "event_id": numeric,
  "event_type": event_type,
  "log_index": 123,
  "src_address": "xyz789",
  "transaction_hash": "abc123",
  "transaction_index": 123
}

raw_events_order_by

Description

Ordering options when selecting data from "raw_events".

Fields
Input Field Description
block_hash - order_by
block_number - order_by
block_timestamp - order_by
chain_id - order_by
db_write_timestamp - order_by
event_history_aggregate - entity_history_aggregate_order_by
event_id - order_by
event_type - order_by
log_index - order_by
params - order_by
src_address - order_by
transaction_hash - order_by
transaction_index - order_by
Example
{
  "block_hash": "asc",
  "block_number": "asc",
  "block_timestamp": "asc",
  "chain_id": "asc",
  "db_write_timestamp": "asc",
  "event_history_aggregate": entity_history_aggregate_order_by,
  "event_id": "asc",
  "event_type": "asc",
  "log_index": "asc",
  "params": "asc",
  "src_address": "asc",
  "transaction_hash": "asc",
  "transaction_index": "asc"
}

raw_events_select_column

Description

select columns of table "raw_events"

Values
Enum Value Description

block_hash

column name

block_number

column name

block_timestamp

column name

chain_id

column name

db_write_timestamp

column name

event_id

column name

event_type

column name

log_index

column name

params

column name

src_address

column name

transaction_hash

column name

transaction_index

column name
Example
"block_hash"

raw_events_stddev_fields

Description

aggregate stddev on columns

Fields
Field Name Description
block_number - Float
block_timestamp - Float
chain_id - Float
event_id - Float
log_index - Float
transaction_index - Float
Example
{
  "block_number": 987.65,
  "block_timestamp": 123.45,
  "chain_id": 123.45,
  "event_id": 123.45,
  "log_index": 123.45,
  "transaction_index": 987.65
}

raw_events_stddev_pop_fields

Description

aggregate stddev_pop on columns

Fields
Field Name Description
block_number - Float
block_timestamp - Float
chain_id - Float
event_id - Float
log_index - Float
transaction_index - Float
Example
{
  "block_number": 987.65,
  "block_timestamp": 987.65,
  "chain_id": 987.65,
  "event_id": 987.65,
  "log_index": 123.45,
  "transaction_index": 123.45
}

raw_events_stddev_samp_fields

Description

aggregate stddev_samp on columns

Fields
Field Name Description
block_number - Float
block_timestamp - Float
chain_id - Float
event_id - Float
log_index - Float
transaction_index - Float
Example
{
  "block_number": 123.45,
  "block_timestamp": 987.65,
  "chain_id": 123.45,
  "event_id": 123.45,
  "log_index": 987.65,
  "transaction_index": 123.45
}

raw_events_stream_cursor_input

Description

Streaming cursor of the table "raw_events"

Fields
Input Field Description
initial_value - raw_events_stream_cursor_value_input! Stream column input with initial value
ordering - cursor_ordering cursor ordering
Example
{
  "initial_value": raw_events_stream_cursor_value_input,
  "ordering": "ASC"
}

raw_events_stream_cursor_value_input

Description

Initial value of the column from where the streaming should start

Fields
Input Field Description
block_hash - String
block_number - Int
block_timestamp - Int
chain_id - Int
db_write_timestamp - timestamp
event_id - numeric
event_type - event_type
log_index - Int
params - json
src_address - String
transaction_hash - String
transaction_index - Int
Example
{
  "block_hash": "xyz789",
  "block_number": 123,
  "block_timestamp": 123,
  "chain_id": 987,
  "db_write_timestamp": timestamp,
  "event_id": numeric,
  "event_type": event_type,
  "log_index": 123,
  "params": json,
  "src_address": "xyz789",
  "transaction_hash": "xyz789",
  "transaction_index": 987
}

raw_events_sum_fields

Description

aggregate sum on columns

Fields
Field Name Description
block_number - Int
block_timestamp - Int
chain_id - Int
event_id - numeric
log_index - Int
transaction_index - Int
Example
{
  "block_number": 987,
  "block_timestamp": 987,
  "chain_id": 987,
  "event_id": numeric,
  "log_index": 123,
  "transaction_index": 123
}

raw_events_var_pop_fields

Description

aggregate var_pop on columns

Fields
Field Name Description
block_number - Float
block_timestamp - Float
chain_id - Float
event_id - Float
log_index - Float
transaction_index - Float
Example
{
  "block_number": 123.45,
  "block_timestamp": 123.45,
  "chain_id": 987.65,
  "event_id": 987.65,
  "log_index": 123.45,
  "transaction_index": 123.45
}

raw_events_var_samp_fields

Description

aggregate var_samp on columns

Fields
Field Name Description
block_number - Float
block_timestamp - Float
chain_id - Float
event_id - Float
log_index - Float
transaction_index - Float
Example
{
  "block_number": 987.65,
  "block_timestamp": 987.65,
  "chain_id": 123.45,
  "event_id": 123.45,
  "log_index": 987.65,
  "transaction_index": 987.65
}

raw_events_variance_fields

Description

aggregate variance on columns

Fields
Field Name Description
block_number - Float
block_timestamp - Float
chain_id - Float
event_id - Float
log_index - Float
transaction_index - Float
Example
{
  "block_number": 987.65,
  "block_timestamp": 123.45,
  "chain_id": 987.65,
  "event_id": 987.65,
  "log_index": 123.45,
  "transaction_index": 123.45
}

search_all_args

Fields
Input Field Description
limit_count - Int
search_query - String
Example
{
  "limit_count": 123,
  "search_query": "xyz789"
}

search_all_result

Description

Empty table defining return type for search_all function

Fields
Field Name Description
asset - Asset An object relationship
asset_id - String
description - String
metadata - jsonb
Arguments
path - String

JSON select path

name - String
profile - Profile An object relationship
profile_id - String
result_type - String
score - numeric
token - Token An object relationship
token_id - String
Example
{
  "asset": Asset,
  "asset_id": "abc123",
  "description": "xyz789",
  "metadata": jsonb,
  "name": "abc123",
  "profile": Profile,
  "profile_id": "xyz789",
  "result_type": "xyz789",
  "score": numeric,
  "token": Token,
  "token_id": "xyz789"
}

search_all_result_bool_exp

Description

Boolean expression to filter rows from the table "search_all_result". All fields are combined with a logical 'AND'.

Example
{
  "_and": [search_all_result_bool_exp],
  "_not": search_all_result_bool_exp,
  "_or": [search_all_result_bool_exp],
  "asset": Asset_bool_exp,
  "asset_id": String_comparison_exp,
  "description": String_comparison_exp,
  "metadata": jsonb_comparison_exp,
  "name": String_comparison_exp,
  "profile": Profile_bool_exp,
  "profile_id": String_comparison_exp,
  "result_type": String_comparison_exp,
  "score": numeric_comparison_exp,
  "token": Token_bool_exp,
  "token_id": String_comparison_exp
}

search_all_result_order_by

Description

Ordering options when selecting data from "search_all_result".

Fields
Input Field Description
asset - Asset_order_by
asset_id - order_by
description - order_by
metadata - order_by
name - order_by
profile - Profile_order_by
profile_id - order_by
result_type - order_by
score - order_by
token - Token_order_by
token_id - order_by
Example
{
  "asset": Asset_order_by,
  "asset_id": "asc",
  "description": "asc",
  "metadata": "asc",
  "name": "asc",
  "profile": Profile_order_by,
  "profile_id": "asc",
  "result_type": "asc",
  "score": "asc",
  "token": Token_order_by,
  "token_id": "asc"
}

search_all_result_select_column

Description

select columns of table "search_all_result"

Values
Enum Value Description

asset_id

column name

description

column name

metadata

column name

name

column name

profile_id

column name

result_type

column name

score

column name

token_id

column name
Example
"asset_id"

search_all_result_stream_cursor_input

Description

Streaming cursor of the table "search_all_result"

Fields
Input Field Description
initial_value - search_all_result_stream_cursor_value_input! Stream column input with initial value
ordering - cursor_ordering cursor ordering
Example
{
  "initial_value": search_all_result_stream_cursor_value_input,
  "ordering": "ASC"
}

search_all_result_stream_cursor_value_input

Description

Initial value of the column from where the streaming should start

Fields
Input Field Description
asset_id - String
description - String
metadata - jsonb
name - String
profile_id - String
result_type - String
score - numeric
token_id - String
Example
{
  "asset_id": "abc123",
  "description": "abc123",
  "metadata": jsonb,
  "name": "abc123",
  "profile_id": "abc123",
  "result_type": "xyz789",
  "score": numeric,
  "token_id": "abc123"
}

search_assets_args

Fields
Input Field Description
filter_type - String
limit_count - Int
min_activity_days - Int
search_query - String
Example
{
  "filter_type": "xyz789",
  "limit_count": 987,
  "min_activity_days": 123,
  "search_query": "abc123"
}

search_assets_result

Description

Empty table defining return type for search_assets function

Fields
Field Name Description
active_holders_7d - Int
asset - Asset An object relationship
asset_id - String
collectible_score - numeric
concentration_ratio - numeric
description - String
holder_count - Int
hot_score - numeric
is_lsp7 - Boolean
last_transfer - Int
name - String
symbol - String
total_holdings - Int
total_supply - numeric
transfer_count_3d - Int
transfer_count_7d - Int
unique_holders - Int
Example
{
  "active_holders_7d": 987,
  "asset": Asset,
  "asset_id": "xyz789",
  "collectible_score": numeric,
  "concentration_ratio": numeric,
  "description": "abc123",
  "holder_count": 987,
  "hot_score": numeric,
  "is_lsp7": true,
  "last_transfer": 987,
  "name": "xyz789",
  "symbol": "abc123",
  "total_holdings": 123,
  "total_supply": numeric,
  "transfer_count_3d": 123,
  "transfer_count_7d": 123,
  "unique_holders": 123
}

search_assets_result_bool_exp

Description

Boolean expression to filter rows from the table "search_assets_result". All fields are combined with a logical 'AND'.

Fields
Input Field Description
_and - [search_assets_result_bool_exp!]
_not - search_assets_result_bool_exp
_or - [search_assets_result_bool_exp!]
active_holders_7d - Int_comparison_exp
asset - Asset_bool_exp
asset_id - String_comparison_exp
collectible_score - numeric_comparison_exp
concentration_ratio - numeric_comparison_exp
description - String_comparison_exp
holder_count - Int_comparison_exp
hot_score - numeric_comparison_exp
is_lsp7 - Boolean_comparison_exp
last_transfer - Int_comparison_exp
name - String_comparison_exp
symbol - String_comparison_exp
total_holdings - Int_comparison_exp
total_supply - numeric_comparison_exp
transfer_count_3d - Int_comparison_exp
transfer_count_7d - Int_comparison_exp
unique_holders - Int_comparison_exp
Example
{
  "_and": [search_assets_result_bool_exp],
  "_not": search_assets_result_bool_exp,
  "_or": [search_assets_result_bool_exp],
  "active_holders_7d": Int_comparison_exp,
  "asset": Asset_bool_exp,
  "asset_id": String_comparison_exp,
  "collectible_score": numeric_comparison_exp,
  "concentration_ratio": numeric_comparison_exp,
  "description": String_comparison_exp,
  "holder_count": Int_comparison_exp,
  "hot_score": numeric_comparison_exp,
  "is_lsp7": Boolean_comparison_exp,
  "last_transfer": Int_comparison_exp,
  "name": String_comparison_exp,
  "symbol": String_comparison_exp,
  "total_holdings": Int_comparison_exp,
  "total_supply": numeric_comparison_exp,
  "transfer_count_3d": Int_comparison_exp,
  "transfer_count_7d": Int_comparison_exp,
  "unique_holders": Int_comparison_exp
}

search_assets_result_order_by

Description

Ordering options when selecting data from "search_assets_result".

Fields
Input Field Description
active_holders_7d - order_by
asset - Asset_order_by
asset_id - order_by
collectible_score - order_by
concentration_ratio - order_by
description - order_by
holder_count - order_by
hot_score - order_by
is_lsp7 - order_by
last_transfer - order_by
name - order_by
symbol - order_by
total_holdings - order_by
total_supply - order_by
transfer_count_3d - order_by
transfer_count_7d - order_by
unique_holders - order_by
Example
{
  "active_holders_7d": "asc",
  "asset": Asset_order_by,
  "asset_id": "asc",
  "collectible_score": "asc",
  "concentration_ratio": "asc",
  "description": "asc",
  "holder_count": "asc",
  "hot_score": "asc",
  "is_lsp7": "asc",
  "last_transfer": "asc",
  "name": "asc",
  "symbol": "asc",
  "total_holdings": "asc",
  "total_supply": "asc",
  "transfer_count_3d": "asc",
  "transfer_count_7d": "asc",
  "unique_holders": "asc"
}

search_assets_result_select_column

Description

select columns of table "search_assets_result"

Values
Enum Value Description

active_holders_7d

column name

asset_id

column name

collectible_score

column name

concentration_ratio

column name

description

column name

holder_count

column name

hot_score

column name

is_lsp7

column name

last_transfer

column name

name

column name

symbol

column name

total_holdings

column name

total_supply

column name

transfer_count_3d

column name

transfer_count_7d

column name

unique_holders

column name
Example
"active_holders_7d"

search_assets_result_stream_cursor_input

Description

Streaming cursor of the table "search_assets_result"

Fields
Input Field Description
initial_value - search_assets_result_stream_cursor_value_input! Stream column input with initial value
ordering - cursor_ordering cursor ordering
Example
{
  "initial_value": search_assets_result_stream_cursor_value_input,
  "ordering": "ASC"
}

search_assets_result_stream_cursor_value_input

Description

Initial value of the column from where the streaming should start

Fields
Input Field Description
active_holders_7d - Int
asset_id - String
collectible_score - numeric
concentration_ratio - numeric
description - String
holder_count - Int
hot_score - numeric
is_lsp7 - Boolean
last_transfer - Int
name - String
symbol - String
total_holdings - Int
total_supply - numeric
transfer_count_3d - Int
transfer_count_7d - Int
unique_holders - Int
Example
{
  "active_holders_7d": 123,
  "asset_id": "xyz789",
  "collectible_score": numeric,
  "concentration_ratio": numeric,
  "description": "abc123",
  "holder_count": 987,
  "hot_score": numeric,
  "is_lsp7": true,
  "last_transfer": 987,
  "name": "xyz789",
  "symbol": "xyz789",
  "total_holdings": 123,
  "total_supply": numeric,
  "transfer_count_3d": 987,
  "transfer_count_7d": 123,
  "unique_holders": 987
}

search_assets_v2_args

Fields
Input Field Description
category_filter - String
filter_type - String
limit_count - Int
min_activity_days - Int
search_query - String
Example
{
  "category_filter": "abc123",
  "filter_type": "abc123",
  "limit_count": 123,
  "min_activity_days": 123,
  "search_query": "xyz789"
}

search_assets_v2_result

Description

Empty table defining return type for search_assets_v2 function

Fields
Field Name Description
active_holders_7d - Int
asset - Asset An object relationship
asset_id - String
collectible_score - numeric
concentration_ratio - numeric
description - String
holder_count - Int
hot_score - numeric
is_collectible - Boolean
is_lsp7 - Boolean
is_token - Boolean
last_transfer - Int
lsp4TokenType - Int
name - String
symbol - String
total_holdings - Int
total_supply - numeric
transfer_count_3d - Int
transfer_count_7d - Int
unique_holders - Int
Example
{
  "active_holders_7d": 987,
  "asset": Asset,
  "asset_id": "xyz789",
  "collectible_score": numeric,
  "concentration_ratio": numeric,
  "description": "abc123",
  "holder_count": 123,
  "hot_score": numeric,
  "is_collectible": true,
  "is_lsp7": false,
  "is_token": false,
  "last_transfer": 123,
  "lsp4TokenType": 123,
  "name": "xyz789",
  "symbol": "xyz789",
  "total_holdings": 987,
  "total_supply": numeric,
  "transfer_count_3d": 987,
  "transfer_count_7d": 987,
  "unique_holders": 123
}

search_assets_v2_result_bool_exp

Description

Boolean expression to filter rows from the table "search_assets_v2_result". All fields are combined with a logical 'AND'.

Fields
Input Field Description
_and - [search_assets_v2_result_bool_exp!]
_not - search_assets_v2_result_bool_exp
_or - [search_assets_v2_result_bool_exp!]
active_holders_7d - Int_comparison_exp
asset - Asset_bool_exp
asset_id - String_comparison_exp
collectible_score - numeric_comparison_exp
concentration_ratio - numeric_comparison_exp
description - String_comparison_exp
holder_count - Int_comparison_exp
hot_score - numeric_comparison_exp
is_collectible - Boolean_comparison_exp
is_lsp7 - Boolean_comparison_exp
is_token - Boolean_comparison_exp
last_transfer - Int_comparison_exp
lsp4TokenType - Int_comparison_exp
name - String_comparison_exp
symbol - String_comparison_exp
total_holdings - Int_comparison_exp
total_supply - numeric_comparison_exp
transfer_count_3d - Int_comparison_exp
transfer_count_7d - Int_comparison_exp
unique_holders - Int_comparison_exp
Example
{
  "_and": [search_assets_v2_result_bool_exp],
  "_not": search_assets_v2_result_bool_exp,
  "_or": [search_assets_v2_result_bool_exp],
  "active_holders_7d": Int_comparison_exp,
  "asset": Asset_bool_exp,
  "asset_id": String_comparison_exp,
  "collectible_score": numeric_comparison_exp,
  "concentration_ratio": numeric_comparison_exp,
  "description": String_comparison_exp,
  "holder_count": Int_comparison_exp,
  "hot_score": numeric_comparison_exp,
  "is_collectible": Boolean_comparison_exp,
  "is_lsp7": Boolean_comparison_exp,
  "is_token": Boolean_comparison_exp,
  "last_transfer": Int_comparison_exp,
  "lsp4TokenType": Int_comparison_exp,
  "name": String_comparison_exp,
  "symbol": String_comparison_exp,
  "total_holdings": Int_comparison_exp,
  "total_supply": numeric_comparison_exp,
  "transfer_count_3d": Int_comparison_exp,
  "transfer_count_7d": Int_comparison_exp,
  "unique_holders": Int_comparison_exp
}

search_assets_v2_result_order_by

Description

Ordering options when selecting data from "search_assets_v2_result".

Fields
Input Field Description
active_holders_7d - order_by
asset - Asset_order_by
asset_id - order_by
collectible_score - order_by
concentration_ratio - order_by
description - order_by
holder_count - order_by
hot_score - order_by
is_collectible - order_by
is_lsp7 - order_by
is_token - order_by
last_transfer - order_by
lsp4TokenType - order_by
name - order_by
symbol - order_by
total_holdings - order_by
total_supply - order_by
transfer_count_3d - order_by
transfer_count_7d - order_by
unique_holders - order_by
Example
{
  "active_holders_7d": "asc",
  "asset": Asset_order_by,
  "asset_id": "asc",
  "collectible_score": "asc",
  "concentration_ratio": "asc",
  "description": "asc",
  "holder_count": "asc",
  "hot_score": "asc",
  "is_collectible": "asc",
  "is_lsp7": "asc",
  "is_token": "asc",
  "last_transfer": "asc",
  "lsp4TokenType": "asc",
  "name": "asc",
  "symbol": "asc",
  "total_holdings": "asc",
  "total_supply": "asc",
  "transfer_count_3d": "asc",
  "transfer_count_7d": "asc",
  "unique_holders": "asc"
}

search_assets_v2_result_select_column

Description

select columns of table "search_assets_v2_result"

Values
Enum Value Description

active_holders_7d

column name

asset_id

column name

collectible_score

column name

concentration_ratio

column name

description

column name

holder_count

column name

hot_score

column name

is_collectible

column name

is_lsp7

column name

is_token

column name

last_transfer

column name

lsp4TokenType

column name

name

column name

symbol

column name

total_holdings

column name

total_supply

column name

transfer_count_3d

column name

transfer_count_7d

column name

unique_holders

column name
Example
"active_holders_7d"

search_assets_v2_result_stream_cursor_input

Description

Streaming cursor of the table "search_assets_v2_result"

Fields
Input Field Description
initial_value - search_assets_v2_result_stream_cursor_value_input! Stream column input with initial value
ordering - cursor_ordering cursor ordering
Example
{
  "initial_value": search_assets_v2_result_stream_cursor_value_input,
  "ordering": "ASC"
}

search_assets_v2_result_stream_cursor_value_input

Description

Initial value of the column from where the streaming should start

Fields
Input Field Description
active_holders_7d - Int
asset_id - String
collectible_score - numeric
concentration_ratio - numeric
description - String
holder_count - Int
hot_score - numeric
is_collectible - Boolean
is_lsp7 - Boolean
is_token - Boolean
last_transfer - Int
lsp4TokenType - Int
name - String
symbol - String
total_holdings - Int
total_supply - numeric
transfer_count_3d - Int
transfer_count_7d - Int
unique_holders - Int
Example
{
  "active_holders_7d": 123,
  "asset_id": "abc123",
  "collectible_score": numeric,
  "concentration_ratio": numeric,
  "description": "xyz789",
  "holder_count": 123,
  "hot_score": numeric,
  "is_collectible": true,
  "is_lsp7": false,
  "is_token": false,
  "last_transfer": 123,
  "lsp4TokenType": 123,
  "name": "abc123",
  "symbol": "xyz789",
  "total_holdings": 987,
  "total_supply": numeric,
  "transfer_count_3d": 123,
  "transfer_count_7d": 987,
  "unique_holders": 987
}

search_profiles_args

Fields
Input Field Description
search - String
Example
{"search": "xyz789"}

search_profiles_result

Description

Empty table defining return type for search_profiles_v2 function

Fields
Field Name Description
activity_score - numeric
combined_score - numeric
description - String
follower_count - Int
fullName - String
id - String
last_activity - Int
lsp7_collectible_count - Int
lsp7_token_count - Int
lsp8_nft_count - Int
name - String
popularity_score - numeric
profile - Profile An object relationship
recently_acquired_count - Int
tags - [String!]
total_asset_value - numeric
total_holds - Int
tx_count_3d - Int
tx_count_5d - Int
unique_assets_held - Int
unique_collections_held - Int
unique_tokens_held - Int
Example
{
  "activity_score": numeric,
  "combined_score": numeric,
  "description": "abc123",
  "follower_count": 123,
  "fullName": "abc123",
  "id": "xyz789",
  "last_activity": 123,
  "lsp7_collectible_count": 987,
  "lsp7_token_count": 987,
  "lsp8_nft_count": 987,
  "name": "xyz789",
  "popularity_score": numeric,
  "profile": Profile,
  "recently_acquired_count": 987,
  "tags": ["xyz789"],
  "total_asset_value": numeric,
  "total_holds": 987,
  "tx_count_3d": 987,
  "tx_count_5d": 123,
  "unique_assets_held": 987,
  "unique_collections_held": 123,
  "unique_tokens_held": 123
}

search_profiles_result_bool_exp

Description

Boolean expression to filter rows from the table "search_profiles_result". All fields are combined with a logical 'AND'.

Fields
Input Field Description
_and - [search_profiles_result_bool_exp!]
_not - search_profiles_result_bool_exp
_or - [search_profiles_result_bool_exp!]
activity_score - numeric_comparison_exp
combined_score - numeric_comparison_exp
description - String_comparison_exp
follower_count - Int_comparison_exp
fullName - String_comparison_exp
id - String_comparison_exp
last_activity - Int_comparison_exp
lsp7_collectible_count - Int_comparison_exp
lsp7_token_count - Int_comparison_exp
lsp8_nft_count - Int_comparison_exp
name - String_comparison_exp
popularity_score - numeric_comparison_exp
profile - Profile_bool_exp
recently_acquired_count - Int_comparison_exp
tags - String_array_comparison_exp
total_asset_value - numeric_comparison_exp
total_holds - Int_comparison_exp
tx_count_3d - Int_comparison_exp
tx_count_5d - Int_comparison_exp
unique_assets_held - Int_comparison_exp
unique_collections_held - Int_comparison_exp
unique_tokens_held - Int_comparison_exp
Example
{
  "_and": [search_profiles_result_bool_exp],
  "_not": search_profiles_result_bool_exp,
  "_or": [search_profiles_result_bool_exp],
  "activity_score": numeric_comparison_exp,
  "combined_score": numeric_comparison_exp,
  "description": String_comparison_exp,
  "follower_count": Int_comparison_exp,
  "fullName": String_comparison_exp,
  "id": String_comparison_exp,
  "last_activity": Int_comparison_exp,
  "lsp7_collectible_count": Int_comparison_exp,
  "lsp7_token_count": Int_comparison_exp,
  "lsp8_nft_count": Int_comparison_exp,
  "name": String_comparison_exp,
  "popularity_score": numeric_comparison_exp,
  "profile": Profile_bool_exp,
  "recently_acquired_count": Int_comparison_exp,
  "tags": String_array_comparison_exp,
  "total_asset_value": numeric_comparison_exp,
  "total_holds": Int_comparison_exp,
  "tx_count_3d": Int_comparison_exp,
  "tx_count_5d": Int_comparison_exp,
  "unique_assets_held": Int_comparison_exp,
  "unique_collections_held": Int_comparison_exp,
  "unique_tokens_held": Int_comparison_exp
}

search_profiles_result_order_by

Description

Ordering options when selecting data from "search_profiles_result".

Fields
Input Field Description
activity_score - order_by
combined_score - order_by
description - order_by
follower_count - order_by
fullName - order_by
id - order_by
last_activity - order_by
lsp7_collectible_count - order_by
lsp7_token_count - order_by
lsp8_nft_count - order_by
name - order_by
popularity_score - order_by
profile - Profile_order_by
recently_acquired_count - order_by
tags - order_by
total_asset_value - order_by
total_holds - order_by
tx_count_3d - order_by
tx_count_5d - order_by
unique_assets_held - order_by
unique_collections_held - order_by
unique_tokens_held - order_by
Example
{
  "activity_score": "asc",
  "combined_score": "asc",
  "description": "asc",
  "follower_count": "asc",
  "fullName": "asc",
  "id": "asc",
  "last_activity": "asc",
  "lsp7_collectible_count": "asc",
  "lsp7_token_count": "asc",
  "lsp8_nft_count": "asc",
  "name": "asc",
  "popularity_score": "asc",
  "profile": Profile_order_by,
  "recently_acquired_count": "asc",
  "tags": "asc",
  "total_asset_value": "asc",
  "total_holds": "asc",
  "tx_count_3d": "asc",
  "tx_count_5d": "asc",
  "unique_assets_held": "asc",
  "unique_collections_held": "asc",
  "unique_tokens_held": "asc"
}

search_profiles_result_select_column

Description

select columns of table "search_profiles_result"

Values
Enum Value Description

activity_score

column name

combined_score

column name

description

column name

follower_count

column name

fullName

column name

id

column name

last_activity

column name

lsp7_collectible_count

column name

lsp7_token_count

column name

lsp8_nft_count

column name

name

column name

popularity_score

column name

recently_acquired_count

column name

tags

column name

total_asset_value

column name

total_holds

column name

tx_count_3d

column name

tx_count_5d

column name

unique_assets_held

column name

unique_collections_held

column name

unique_tokens_held

column name
Example
"activity_score"

search_profiles_result_stream_cursor_input

Description

Streaming cursor of the table "search_profiles_result"

Fields
Input Field Description
initial_value - search_profiles_result_stream_cursor_value_input! Stream column input with initial value
ordering - cursor_ordering cursor ordering
Example
{
  "initial_value": search_profiles_result_stream_cursor_value_input,
  "ordering": "ASC"
}

search_profiles_result_stream_cursor_value_input

Description

Initial value of the column from where the streaming should start

Fields
Input Field Description
activity_score - numeric
combined_score - numeric
description - String
follower_count - Int
fullName - String
id - String
last_activity - Int
lsp7_collectible_count - Int
lsp7_token_count - Int
lsp8_nft_count - Int
name - String
popularity_score - numeric
recently_acquired_count - Int
tags - [String!]
total_asset_value - numeric
total_holds - Int
tx_count_3d - Int
tx_count_5d - Int
unique_assets_held - Int
unique_collections_held - Int
unique_tokens_held - Int
Example
{
  "activity_score": numeric,
  "combined_score": numeric,
  "description": "abc123",
  "follower_count": 987,
  "fullName": "abc123",
  "id": "xyz789",
  "last_activity": 123,
  "lsp7_collectible_count": 987,
  "lsp7_token_count": 123,
  "lsp8_nft_count": 123,
  "name": "xyz789",
  "popularity_score": numeric,
  "recently_acquired_count": 123,
  "tags": ["abc123"],
  "total_asset_value": numeric,
  "total_holds": 123,
  "tx_count_3d": 987,
  "tx_count_5d": 123,
  "unique_assets_held": 987,
  "unique_collections_held": 123,
  "unique_tokens_held": 987
}

search_profiles_v2_args

Fields
Input Field Description
filter_type - String
limit_count - Int
search_query - String
Example
{
  "filter_type": "abc123",
  "limit_count": 987,
  "search_query": "xyz789"
}

search_tokens_args

Fields
Input Field Description
filter_type - String
limit_count - Int
min_activity_days - Int
search_query - String
Example
{
  "filter_type": "abc123",
  "limit_count": 987,
  "min_activity_days": 987,
  "search_query": "abc123"
}

search_tokens_result

Description

Empty table defining return type for search_tokens function

Fields
Field Name Description
baseAsset - Asset An object relationship
baseAsset_id - String
current_owner - Profile An object relationship
current_owner_id - String
description - String
formattedTokenId - String
hot_score - numeric
last_transfer - Int
name - String
symbol - String
token - Token An object relationship
tokenId - String
token_id - String
transfer_count_3d - Int
transfer_count_7d - Int
Example
{
  "baseAsset": Asset,
  "baseAsset_id": "abc123",
  "current_owner": Profile,
  "current_owner_id": "xyz789",
  "description": "abc123",
  "formattedTokenId": "abc123",
  "hot_score": numeric,
  "last_transfer": 987,
  "name": "abc123",
  "symbol": "abc123",
  "token": Token,
  "tokenId": "abc123",
  "token_id": "xyz789",
  "transfer_count_3d": 987,
  "transfer_count_7d": 987
}

search_tokens_result_bool_exp

Description

Boolean expression to filter rows from the table "search_tokens_result". All fields are combined with a logical 'AND'.

Fields
Input Field Description
_and - [search_tokens_result_bool_exp!]
_not - search_tokens_result_bool_exp
_or - [search_tokens_result_bool_exp!]
baseAsset - Asset_bool_exp
baseAsset_id - String_comparison_exp
current_owner - Profile_bool_exp
current_owner_id - String_comparison_exp
description - String_comparison_exp
formattedTokenId - String_comparison_exp
hot_score - numeric_comparison_exp
last_transfer - Int_comparison_exp
name - String_comparison_exp
symbol - String_comparison_exp
token - Token_bool_exp
tokenId - String_comparison_exp
token_id - String_comparison_exp
transfer_count_3d - Int_comparison_exp
transfer_count_7d - Int_comparison_exp
Example
{
  "_and": [search_tokens_result_bool_exp],
  "_not": search_tokens_result_bool_exp,
  "_or": [search_tokens_result_bool_exp],
  "baseAsset": Asset_bool_exp,
  "baseAsset_id": String_comparison_exp,
  "current_owner": Profile_bool_exp,
  "current_owner_id": String_comparison_exp,
  "description": String_comparison_exp,
  "formattedTokenId": String_comparison_exp,
  "hot_score": numeric_comparison_exp,
  "last_transfer": Int_comparison_exp,
  "name": String_comparison_exp,
  "symbol": String_comparison_exp,
  "token": Token_bool_exp,
  "tokenId": String_comparison_exp,
  "token_id": String_comparison_exp,
  "transfer_count_3d": Int_comparison_exp,
  "transfer_count_7d": Int_comparison_exp
}

search_tokens_result_order_by

Description

Ordering options when selecting data from "search_tokens_result".

Fields
Input Field Description
baseAsset - Asset_order_by
baseAsset_id - order_by
current_owner - Profile_order_by
current_owner_id - order_by
description - order_by
formattedTokenId - order_by
hot_score - order_by
last_transfer - order_by
name - order_by
symbol - order_by
token - Token_order_by
tokenId - order_by
token_id - order_by
transfer_count_3d - order_by
transfer_count_7d - order_by
Example
{
  "baseAsset": Asset_order_by,
  "baseAsset_id": "asc",
  "current_owner": Profile_order_by,
  "current_owner_id": "asc",
  "description": "asc",
  "formattedTokenId": "asc",
  "hot_score": "asc",
  "last_transfer": "asc",
  "name": "asc",
  "symbol": "asc",
  "token": Token_order_by,
  "tokenId": "asc",
  "token_id": "asc",
  "transfer_count_3d": "asc",
  "transfer_count_7d": "asc"
}

search_tokens_result_select_column

Description

select columns of table "search_tokens_result"

Values
Enum Value Description

baseAsset_id

column name

current_owner_id

column name

description

column name

formattedTokenId

column name

hot_score

column name

last_transfer

column name

name

column name

symbol

column name

tokenId

column name

token_id

column name

transfer_count_3d

column name

transfer_count_7d

column name
Example
"baseAsset_id"

search_tokens_result_stream_cursor_input

Description

Streaming cursor of the table "search_tokens_result"

Fields
Input Field Description
initial_value - search_tokens_result_stream_cursor_value_input! Stream column input with initial value
ordering - cursor_ordering cursor ordering
Example
{
  "initial_value": search_tokens_result_stream_cursor_value_input,
  "ordering": "ASC"
}

search_tokens_result_stream_cursor_value_input

Description

Initial value of the column from where the streaming should start

Fields
Input Field Description
baseAsset_id - String
current_owner_id - String
description - String
formattedTokenId - String
hot_score - numeric
last_transfer - Int
name - String
symbol - String
tokenId - String
token_id - String
transfer_count_3d - Int
transfer_count_7d - Int
Example
{
  "baseAsset_id": "xyz789",
  "current_owner_id": "xyz789",
  "description": "abc123",
  "formattedTokenId": "xyz789",
  "hot_score": numeric,
  "last_transfer": 987,
  "name": "abc123",
  "symbol": "xyz789",
  "tokenId": "abc123",
  "token_id": "abc123",
  "transfer_count_3d": 987,
  "transfer_count_7d": 123
}

standards

Example
standards

standards_comparison_exp

Description

Boolean expression to compare columns of type "standards". All fields are combined with logical 'AND'.

Fields
Input Field Description
_eq - standards
_gt - standards
_gte - standards
_in - [standards!]
_is_null - Boolean
_lt - standards
_lte - standards
_neq - standards
_nin - [standards!]
Example
{
  "_eq": standards,
  "_gt": standards,
  "_gte": standards,
  "_in": [standards],
  "_is_null": false,
  "_lt": standards,
  "_lte": standards,
  "_neq": standards,
  "_nin": [standards]
}

timestamp

Example
timestamp

timestamp_comparison_exp

Description

Boolean expression to compare columns of type "timestamp". All fields are combined with logical 'AND'.

Fields
Input Field Description
_eq - timestamp
_gt - timestamp
_gte - timestamp
_in - [timestamp!]
_is_null - Boolean
_lt - timestamp
_lte - timestamp
_neq - timestamp
_nin - [timestamp!]
Example
{
  "_eq": timestamp,
  "_gt": timestamp,
  "_gte": timestamp,
  "_in": [timestamp],
  "_is_null": true,
  "_lt": timestamp,
  "_lte": timestamp,
  "_neq": timestamp,
  "_nin": [timestamp]
}

timestamptz

Example
timestamptz

timestamptz_comparison_exp

Description

Boolean expression to compare columns of type "timestamptz". All fields are combined with logical 'AND'.

Fields
Input Field Description
_eq - timestamptz
_gt - timestamptz
_gte - timestamptz
_in - [timestamptz!]
_is_null - Boolean
_lt - timestamptz
_lte - timestamptz
_neq - timestamptz
_nin - [timestamptz!]
Example
{
  "_eq": timestamptz,
  "_gt": timestamptz,
  "_gte": timestamptz,
  "_in": [timestamptz],
  "_is_null": false,
  "_lt": timestamptz,
  "_lte": timestamptz,
  "_neq": timestamptz,
  "_nin": [timestamptz]
}

tsvector

Example
tsvector

tsvector_comparison_exp

Description

Boolean expression to compare columns of type "tsvector". All fields are combined with logical 'AND'.

Fields
Input Field Description
_eq - tsvector
_gt - tsvector
_gte - tsvector
_in - [tsvector!]
_is_null - Boolean
_lt - tsvector
_lte - tsvector
_neq - tsvector
_nin - [tsvector!]
Example
{
  "_eq": tsvector,
  "_gt": tsvector,
  "_gte": tsvector,
  "_in": [tsvector],
  "_is_null": true,
  "_lt": tsvector,
  "_lte": tsvector,
  "_neq": tsvector,
  "_nin": [tsvector]
}

verificationstatus

Example
verificationstatus

verificationstatus_comparison_exp

Description

Boolean expression to compare columns of type "verificationstatus". All fields are combined with logical 'AND'.

Example
{
  "_eq": verificationstatus,
  "_gt": verificationstatus,
  "_gte": verificationstatus,
  "_in": [verificationstatus],
  "_is_null": true,
  "_lt": verificationstatus,
  "_lte": verificationstatus,
  "_neq": verificationstatus,
  "_nin": [verificationstatus]
}