LogoLogo
How can we help?
  • Getting Started
    • Introduction
    • Onboarding To Revelator
      • Setup Your Supply Chain
        • Page 1
      • Migrating your Catalog
      • Importing Your Catalog
      • Delivering your Catalog
      • Ingesting your Rights
      • Digital Sales Reporting
      • White Label
        • Creating your Sign up/Login page
        • Sending emails
        • Adding your brand
        • Adding a custom domain
        • Adding Custom Fonts
        • Setting up your default contracts
    • Account Settings
      • Workspace Settings
      • Team Management
      • Integrations
      • Payee Settings
      • Branding
      • NFT Storefront
      • Client Features
  • Platform
    • Catalog
      • Releases
        • Create a Release
        • Viewing a Release
          • Metadata
          • Tracks
          • Rights
          • Distribution
          • Analytics
      • Tracks
        • Rights
        • Create a Track
      • Videos
      • Channels
        • Connecting to an MCN
        • Assign Channel Ownership
        • Edit Video Metadata
      • Collectibles
      • Contributors
        • Managing Labels
        • Managing Artists
    • Rights
      • Manage Contracts
        • Create a Contract
        • Create a YouTube Channel Contract
    • Distribution
      • Distributing Releases
      • Inspecting Metadata
    • Finance
      • Importing DSP/Sales Reports
      • Viewing DSP/Sales Reports
      • Maching Catalog to Revenue
      • Adding adjustmens & FX rates
      • Approving Sales Reports
      • Reporting YouTube Channel Royalties
      • Revenue Analytics
    • Royalties
      • Payees
        • Creating New Payees
        • Managing Your Payees
        • Enabling Payee Portals
      • Royalty Tokens
        • Creating Royalty Tokens
        • Receiving Royalty Tokens
      • Royalty Runs
        • Creating Royalty Runs
        • Fixing Unallocated Revenue
      • Statements
        • Viewing a Statement
        • Approving Statements
  • Payments
    • Payments With Tipalti
      • Connecting Payees To Tipalti
      • Making Payments with Tipalti
      • Retry Failed Tipalti Payments
    • Payments With PayPal
      • Making Payments with PayPal
    • Transactions
    • Adding Payee Advances
    • Exporting Payee Balances for External Payout Providers
  • Analytics
    • Consumption
    • Engagement
    • Trends
    • Geo
  • Resources
    • Learn The Basics
    • Metadata Styleguide
    • Support
    • Developer API
Powered by GitBook
On this page
  • GraphQL API Reference
  • Queries
  • collectionEntities
  • collectionEntity
  • collectionEntityRelation
  • collectionEntityRelations
  • contactByNickName
  • contactByWalletAddress
  • contacts
  • getEntityByTokenPayload
  • networkConfigByNameV2
  • networkConfigs
  • networkConfigsV2
  • publicNetworkConfigsV2
  • testConfig
  • Mutations
  • createContact
  • createOneCollectionEntity
  • createRelation
  • createS3Url
  • deleteContact
  • deleteManyCollectionEntities
  • deleteManyRelations
  • deleteOneCollectionEntity
  • deleteOneRelation
  • updateContact
  • updateManyCollectionEntities
  • updateOneCollectionEntity
  • Types
  • Boolean
  • CollectionEntity
  • CollectionEntityConnection
  • CollectionEntityDeleteFilter
  • CollectionEntityDeleteResponse
  • CollectionEntityFilter
  • CollectionEntityFilterRedirectDomainFilter
  • CollectionEntityFilterTenantFilter
  • CollectionEntityRelation
  • CollectionEntityRelationConnection
  • CollectionEntityRelationDeleteFilter
  • CollectionEntityRelationDeleteResponse
  • CollectionEntityRelationFilter
  • CollectionEntityRelationFilterNetworkConfigFilter
  • CollectionEntityRelationFilterTenantFilter
  • CollectionEntityRelationSort
  • CollectionEntityRelationSortFields
  • CollectionEntityRelationType
  • CollectionEntityRelationTypeFilterComparison
  • CollectionEntitySort
  • CollectionEntitySortFields
  • CollectionEntityType
  • CollectionEntityTypeFilterComparison
  • CollectionEntityUpdateFilter
  • ContactDto
  • ContactsDto
  • CreateCollectionEntity
  • CreateCollectionEntityRelation
  • CreateOneCollectionEntityInput
  • CurrenciesModel
  • CurrencyModel
  • DateFieldComparison
  • DateFieldComparisonBetween
  • DateTime
  • DeleteManyCollectionEntitiesInput
  • DeleteManyCollectionEntityRelationsInput
  • DeleteManyResponse
  • DeleteOneCollectionEntityInput
  • DeleteOneCollectionEntityRelationInput
  • FileType
  • Float
  • ID
  • IDFilterComparison
  • Int
  • IntFieldComparison
  • IntFieldComparisonBetween
  • NetworkCapabilities
  • NetworkCapabilitiesFilterComparison
  • NetworkCapabilitiesModel
  • NetworkCapability
  • NetworkCapabilityFilter
  • NetworkCapabilitySort
  • NetworkCapabilitySortFields
  • NetworkConfig
  • NetworkConfigConnection
  • NetworkConfigFilter
  • NetworkConfigFilterNetworkCapabilityFilter
  • NetworkConfigPublicModel
  • NetworkConfigSort
  • NetworkConfigSortFields
  • NetworkConfigV2Model
  • NetworkName
  • NetworkNameFilterComparison
  • NumberFieldComparison
  • NumberFieldComparisonBetween
  • OffsetPageInfo
  • OffsetPaging
  • RedirectDomain
  • RedirectDomainFilter
  • RedirectDomainSort
  • RedirectDomainSortFields
  • S3LinkReq
  • S3LinkRes
  • SortDirection
  • SortNulls
  • String
  • StringFieldComparison
  • Tenant
  • UpdateCollectionEntity
  • UpdateManyCollectionEntitiesInput
  • UpdateManyResponse
  • UpdateOneCollectionEntityInput

Was this helpful?

  1. Resources
  2. web3
  3. stage

storefront-service-api

Last updated 1 month ago

Was this helpful?

GraphQL API Reference

GraphQl endpoints for storefront-service!

API Endpoints

# devel:
https://storefront-service.devel.original.works
# staging:
https://storefront-service.stage.original.works
# prod:
https://storefront-service.original.works

Queries

collectionEntities

Response

Returns a

Arguments

Name
Description

Specify to filter the records returned. Default = {}

Limit or page results. Default = {limit: 10}

Specify to sort results. Default = []

Example

Query

query CollectionEntities(
  $filter: CollectionEntityFilter!,
  $paging: OffsetPaging!,
  $sorting: [CollectionEntitySort!]!
) {
  collectionEntities(
    filter: $filter,
    paging: $paging,
    sorting: $sorting
  ) {
    nodes {
      avatarUrl
      bannerUrl
      createdAt
      description
      email
      entityUri
      id
      name
      networkConfigs {
        ...NetworkConfigFragment
      }
      redirectDomains {
        ...RedirectDomainFragment
      }
      tenant {
        ...TenantFragment
      }
      tenantId
      type
      updatedAt
    }
    pageInfo {
      hasNextPage
      hasPreviousPage
    }
    totalCount
  }
}

Variables

{"filter": {}, "paging": {"limit": 10}, "sorting": [""]}

Response

{
  "data": {
    "collectionEntities": {
      "nodes": [CollectionEntity],
      "pageInfo": OffsetPageInfo,
      "totalCount": 123
    }
  }
}

collectionEntity

Response

Arguments

Name
Description

The id of the record to find.

Example

Query

query CollectionEntity($id: ID!) {
  collectionEntity(id: $id) {
    avatarUrl
    bannerUrl
    createdAt
    description
    email
    entityUri
    id
    name
    networkConfigs {
      activitiesSubgraphUrl
      agreementFactoryAddress
      agreementSubgraphUrl
      alchemyApiKey
      capabilities {
        ...NetworkCapabilityFragment
      }
      chainId
      createdAt
      defaultStripeFeeInPercent
      dmmAddress
      feeManagerAddress
      id
      jsonRpcUrl
      lendingContractAddress
      marketAddress
      marketOwner
      nativeCoin
      nativeCoinDecimals
      networkName
      nftSubgraphUrl
      payeeVaultFactoryAddress
      paymentBatcherFactoryAddress
      studioPublicJsonRpcUrl
      updatedAt
    }
    redirectDomains {
      domain
    }
    tenant {
      createdAt
      id
      minPaymentBatcherBalanceInUSDC
      name
      paymentBatcherAddress
      tenantUri
      updatedAt
    }
    tenantId
    type
    updatedAt
  }
}

Variables

{"id": "4"}

Response

{
  "data": {
    "collectionEntity": {
      "avatarUrl": "abc123",
      "bannerUrl": "xyz789",
      "createdAt": "2007-12-03T10:15:30Z",
      "description": "abc123",
      "email": "abc123",
      "entityUri": "xyz789",
      "id": "4",
      "name": "xyz789",
      "networkConfigs": [NetworkConfig],
      "redirectDomains": [RedirectDomain],
      "tenant": Tenant,
      "tenantId": "4",
      "type": "ARTIST",
      "updatedAt": "2007-12-03T10:15:30Z"
    }
  }
}

collectionEntityRelation

Response

Arguments

Name
Description

The id of the record to find.

Example

Query

query CollectionEntityRelation($id: ID!) {
  collectionEntityRelation(id: $id) {
    childEntityId
    createdAt
    id
    network {
      activitiesSubgraphUrl
      agreementFactoryAddress
      agreementSubgraphUrl
      alchemyApiKey
      capabilities {
        ...NetworkCapabilityFragment
      }
      chainId
      createdAt
      defaultStripeFeeInPercent
      dmmAddress
      feeManagerAddress
      id
      jsonRpcUrl
      lendingContractAddress
      marketAddress
      marketOwner
      nativeCoin
      nativeCoinDecimals
      networkName
      nftSubgraphUrl
      payeeVaultFactoryAddress
      paymentBatcherFactoryAddress
      studioPublicJsonRpcUrl
      updatedAt
    }
    parentEntityId
    relationType
    tenant {
      createdAt
      id
      minPaymentBatcherBalanceInUSDC
      name
      paymentBatcherAddress
      tenantUri
      updatedAt
    }
    tenantId
    updatedAt
  }
}

Variables

{"id": "4"}

Response

{
  "data": {
    "collectionEntityRelation": {
      "childEntityId": "xyz789",
      "createdAt": "2007-12-03T10:15:30Z",
      "id": "4",
      "network": NetworkConfig,
      "parentEntityId": "xyz789",
      "relationType": "ENTERPIRSE_ARTIST",
      "tenant": Tenant,
      "tenantId": "abc123",
      "updatedAt": "2007-12-03T10:15:30Z"
    }
  }
}

collectionEntityRelations

Response

Arguments

Name
Description

Specify to filter the records returned. Default = {}

Limit or page results. Default = {limit: 10}

Specify to sort results. Default = []

Example

Query

query CollectionEntityRelations(
  $filter: CollectionEntityRelationFilter!,
  $paging: OffsetPaging!,
  $sorting: [CollectionEntityRelationSort!]!
) {
  collectionEntityRelations(
    filter: $filter,
    paging: $paging,
    sorting: $sorting
  ) {
    nodes {
      childEntityId
      createdAt
      id
      network {
        ...NetworkConfigFragment
      }
      parentEntityId
      relationType
      tenant {
        ...TenantFragment
      }
      tenantId
      updatedAt
    }
    pageInfo {
      hasNextPage
      hasPreviousPage
    }
    totalCount
  }
}

Variables

{"filter": {}, "paging": {"limit": 10}, "sorting": [""]}

Response

{
  "data": {
    "collectionEntityRelations": {
      "nodes": [CollectionEntityRelation],
      "pageInfo": OffsetPageInfo,
      "totalCount": 987
    }
  }
}

contactByNickName

Description

Returns a contact by nickname.

Response

Arguments

Name
Description

nick name of a contact

Example

Query

query ContactByNickName($nickName: String!) {
  contactByNickName(nickName: $nickName) {
    createdAt
    id
    nickName
    ownerUri
    updatedAt
    walletAddress
  }
}

Variables

{"nickName": "xyz789"}

Response

{
  "data": {
    "contactByNickName": {
      "createdAt": "2007-12-03T10:15:30Z",
      "id": 987.65,
      "nickName": "xyz789",
      "ownerUri": "abc123",
      "updatedAt": "2007-12-03T10:15:30Z",
      "walletAddress": "abc123"
    }
  }
}

contactByWalletAddress

Description

Returns a contact by wallet address.

Response

Arguments

Name
Description

wallet address of a contact

Example

Query

query ContactByWalletAddress($walletAddress: String!) {
  contactByWalletAddress(walletAddress: $walletAddress) {
    createdAt
    id
    nickName
    ownerUri
    updatedAt
    walletAddress
  }
}

Variables

{"walletAddress": "abc123"}

Response

{
  "data": {
    "contactByWalletAddress": {
      "createdAt": "2007-12-03T10:15:30Z",
      "id": 987.65,
      "nickName": "xyz789",
      "ownerUri": "xyz789",
      "updatedAt": "2007-12-03T10:15:30Z",
      "walletAddress": "abc123"
    }
  }
}

contacts

Description

Returns contacts of a contactBook entity.

Response

Example

Query

query Contacts {
  contacts {
    count
    items {
      createdAt
      id
      nickName
      ownerUri
      updatedAt
      walletAddress
    }
  }
}

Response

{
  "data": {
    "contacts": {"count": 987.65, "items": [ContactDto]}
  }
}

getEntityByTokenPayload

Response

Example

Query

query GetEntityByTokenPayload {
  getEntityByTokenPayload {
    avatarUrl
    bannerUrl
    createdAt
    description
    email
    entityUri
    id
    name
    networkConfigs {
      activitiesSubgraphUrl
      agreementFactoryAddress
      agreementSubgraphUrl
      alchemyApiKey
      capabilities {
        ...NetworkCapabilityFragment
      }
      chainId
      createdAt
      defaultStripeFeeInPercent
      dmmAddress
      feeManagerAddress
      id
      jsonRpcUrl
      lendingContractAddress
      marketAddress
      marketOwner
      nativeCoin
      nativeCoinDecimals
      networkName
      nftSubgraphUrl
      payeeVaultFactoryAddress
      paymentBatcherFactoryAddress
      studioPublicJsonRpcUrl
      updatedAt
    }
    redirectDomains {
      domain
    }
    tenant {
      createdAt
      id
      minPaymentBatcherBalanceInUSDC
      name
      paymentBatcherAddress
      tenantUri
      updatedAt
    }
    tenantId
    type
    updatedAt
  }
}

Response

{
  "data": {
    "getEntityByTokenPayload": {
      "avatarUrl": "xyz789",
      "bannerUrl": "xyz789",
      "createdAt": "2007-12-03T10:15:30Z",
      "description": "abc123",
      "email": "xyz789",
      "entityUri": "abc123",
      "id": "4",
      "name": "xyz789",
      "networkConfigs": [NetworkConfig],
      "redirectDomains": [RedirectDomain],
      "tenant": Tenant,
      "tenantId": "4",
      "type": "ARTIST",
      "updatedAt": "2007-12-03T10:15:30Z"
    }
  }
}

networkConfigByNameV2

Description

Returns networkConfig for given network name

Response

Arguments

Name
Description

Example

Query

query NetworkConfigByNameV2($networkName: NetworkName!) {
  networkConfigByNameV2(networkName: $networkName) {
    agreementFactoryAddress
    agreementSubgraphUrl
    capabilities {
      networkCapability
    }
    chainId
    createdAt
    currencies {
      lendingToken {
        ...CurrencyModelFragment
      }
      nativeCoin {
        ...CurrencyModelFragment
      }
      otherCurrencies {
        ...CurrencyModelFragment
      }
    }
    explorer
    feeManagerAddress
    id
    ipfsEndpoint
    isTestNet
    jsonRpcUrl
    lendingContractAddress
    marketAddress
    marketOwner
    networkName
    nftSubgraphUrl
    updatedAt
  }
}

Variables

{"networkName": "amoy"}

Response

{
  "data": {
    "networkConfigByNameV2": {
      "agreementFactoryAddress": "xyz789",
      "agreementSubgraphUrl": "abc123",
      "capabilities": [NetworkCapabilitiesModel],
      "chainId": 987.65,
      "createdAt": "2007-12-03T10:15:30Z",
      "currencies": CurrenciesModel,
      "explorer": "abc123",
      "feeManagerAddress": "abc123",
      "id": "abc123",
      "ipfsEndpoint": "abc123",
      "isTestNet": true,
      "jsonRpcUrl": "xyz789",
      "lendingContractAddress": "xyz789",
      "marketAddress": "abc123",
      "marketOwner": "abc123",
      "networkName": "amoy",
      "nftSubgraphUrl": "abc123",
      "updatedAt": "2007-12-03T10:15:30Z"
    }
  }
}

networkConfigs

Response

Arguments

Name
Description

Specify to filter the records returned. Default = {}

Limit or page results. Default = {limit: 10}

Specify to sort results. Default = []

Example

Query

query NetworkConfigs(
  $filter: NetworkConfigFilter!,
  $paging: OffsetPaging!,
  $sorting: [NetworkConfigSort!]!
) {
  networkConfigs(
    filter: $filter,
    paging: $paging,
    sorting: $sorting
  ) {
    nodes {
      activitiesSubgraphUrl
      agreementFactoryAddress
      agreementSubgraphUrl
      alchemyApiKey
      capabilities {
        ...NetworkCapabilityFragment
      }
      chainId
      createdAt
      defaultStripeFeeInPercent
      dmmAddress
      feeManagerAddress
      id
      jsonRpcUrl
      lendingContractAddress
      marketAddress
      marketOwner
      nativeCoin
      nativeCoinDecimals
      networkName
      nftSubgraphUrl
      payeeVaultFactoryAddress
      paymentBatcherFactoryAddress
      studioPublicJsonRpcUrl
      updatedAt
    }
    pageInfo {
      hasNextPage
      hasPreviousPage
    }
    totalCount
  }
}

Variables

{"filter": {}, "paging": {"limit": 10}, "sorting": [""]}

Response

{
  "data": {
    "networkConfigs": {
      "nodes": [NetworkConfig],
      "pageInfo": OffsetPageInfo,
      "totalCount": 987
    }
  }
}

networkConfigsV2

Description

Returns list of networkConfigs

Response

Example

Query

query NetworkConfigsV2 {
  networkConfigsV2 {
    agreementFactoryAddress
    agreementSubgraphUrl
    capabilities {
      networkCapability
    }
    chainId
    createdAt
    currencies {
      lendingToken {
        ...CurrencyModelFragment
      }
      nativeCoin {
        ...CurrencyModelFragment
      }
      otherCurrencies {
        ...CurrencyModelFragment
      }
    }
    explorer
    feeManagerAddress
    id
    ipfsEndpoint
    isTestNet
    jsonRpcUrl
    lendingContractAddress
    marketAddress
    marketOwner
    networkName
    nftSubgraphUrl
    updatedAt
  }
}

Response

{
  "data": {
    "networkConfigsV2": [
      {
        "agreementFactoryAddress": "xyz789",
        "agreementSubgraphUrl": "abc123",
        "capabilities": [NetworkCapabilitiesModel],
        "chainId": 123.45,
        "createdAt": "2007-12-03T10:15:30Z",
        "currencies": CurrenciesModel,
        "explorer": "xyz789",
        "feeManagerAddress": "xyz789",
        "id": "xyz789",
        "ipfsEndpoint": "abc123",
        "isTestNet": true,
        "jsonRpcUrl": "xyz789",
        "lendingContractAddress": "xyz789",
        "marketAddress": "xyz789",
        "marketOwner": "xyz789",
        "networkName": "amoy",
        "nftSubgraphUrl": "abc123",
        "updatedAt": "2007-12-03T10:15:30Z"
      }
    ]
  }
}

publicNetworkConfigsV2

Description

Returns list of networkConfigs without sensitive data

Response

Example

Query

query PublicNetworkConfigsV2 {
  publicNetworkConfigsV2 {
    capabilities {
      networkCapability
    }
    chainId
    isTestNet
    networkName
    studioPublicJsonRpcUrl
  }
}

Response

{
  "data": {
    "publicNetworkConfigsV2": [
      {
        "capabilities": [NetworkCapabilitiesModel],
        "chainId": 123.45,
        "isTestNet": true,
        "networkName": "amoy",
        "studioPublicJsonRpcUrl": "abc123"
      }
    ]
  }
}

testConfig

Response

Example

Query

query TestConfig {
  testConfig
}

Response

{"data": {"testConfig": "abc123"}}

Mutations

createContact

Description

Create contact record. Returns record of the contactBook entity.

Response

Arguments

Name
Description

nick name of a contact

wallet address of a contact

Example

Query

mutation CreateContact(
  $nickName: String!,
  $walletAddress: String!
) {
  createContact(
    nickName: $nickName,
    walletAddress: $walletAddress
  ) {
    createdAt
    id
    nickName
    ownerUri
    updatedAt
    walletAddress
  }
}

Variables

{
  "nickName": "xyz789",
  "walletAddress": "abc123"
}

Response

{
  "data": {
    "createContact": {
      "createdAt": "2007-12-03T10:15:30Z",
      "id": 987.65,
      "nickName": "xyz789",
      "ownerUri": "abc123",
      "updatedAt": "2007-12-03T10:15:30Z",
      "walletAddress": "xyz789"
    }
  }
}

createOneCollectionEntity

Response

Arguments

Name
Description

Example

Query

mutation CreateOneCollectionEntity($input: CreateOneCollectionEntityInput!) {
  createOneCollectionEntity(input: $input) {
    avatarUrl
    bannerUrl
    createdAt
    description
    email
    entityUri
    id
    name
    networkConfigs {
      activitiesSubgraphUrl
      agreementFactoryAddress
      agreementSubgraphUrl
      alchemyApiKey
      capabilities {
        ...NetworkCapabilityFragment
      }
      chainId
      createdAt
      defaultStripeFeeInPercent
      dmmAddress
      feeManagerAddress
      id
      jsonRpcUrl
      lendingContractAddress
      marketAddress
      marketOwner
      nativeCoin
      nativeCoinDecimals
      networkName
      nftSubgraphUrl
      payeeVaultFactoryAddress
      paymentBatcherFactoryAddress
      studioPublicJsonRpcUrl
      updatedAt
    }
    redirectDomains {
      domain
    }
    tenant {
      createdAt
      id
      minPaymentBatcherBalanceInUSDC
      name
      paymentBatcherAddress
      tenantUri
      updatedAt
    }
    tenantId
    type
    updatedAt
  }
}

Variables

{"input": CreateOneCollectionEntityInput}

Response

{
  "data": {
    "createOneCollectionEntity": {
      "avatarUrl": "abc123",
      "bannerUrl": "abc123",
      "createdAt": "2007-12-03T10:15:30Z",
      "description": "abc123",
      "email": "abc123",
      "entityUri": "abc123",
      "id": "4",
      "name": "abc123",
      "networkConfigs": [NetworkConfig],
      "redirectDomains": [RedirectDomain],
      "tenant": Tenant,
      "tenantId": "4",
      "type": "ARTIST",
      "updatedAt": "2007-12-03T10:15:30Z"
    }
  }
}

createRelation

Response

Arguments

Name
Description

Example

Query

mutation CreateRelation($createRelation: CreateCollectionEntityRelation!) {
  createRelation(createRelation: $createRelation) {
    childEntityId
    createdAt
    id
    network {
      activitiesSubgraphUrl
      agreementFactoryAddress
      agreementSubgraphUrl
      alchemyApiKey
      capabilities {
        ...NetworkCapabilityFragment
      }
      chainId
      createdAt
      defaultStripeFeeInPercent
      dmmAddress
      feeManagerAddress
      id
      jsonRpcUrl
      lendingContractAddress
      marketAddress
      marketOwner
      nativeCoin
      nativeCoinDecimals
      networkName
      nftSubgraphUrl
      payeeVaultFactoryAddress
      paymentBatcherFactoryAddress
      studioPublicJsonRpcUrl
      updatedAt
    }
    parentEntityId
    relationType
    tenant {
      createdAt
      id
      minPaymentBatcherBalanceInUSDC
      name
      paymentBatcherAddress
      tenantUri
      updatedAt
    }
    tenantId
    updatedAt
  }
}

Variables

{"createRelation": CreateCollectionEntityRelation}

Response

{
  "data": {
    "createRelation": {
      "childEntityId": "xyz789",
      "createdAt": "2007-12-03T10:15:30Z",
      "id": "4",
      "network": NetworkConfig,
      "parentEntityId": "xyz789",
      "relationType": "ENTERPIRSE_ARTIST",
      "tenant": Tenant,
      "tenantId": "xyz789",
      "updatedAt": "2007-12-03T10:15:30Z"
    }
  }
}

createS3Url

Description

🔒 JWT Token

Creates an s3 url for enterprise's avatar or banner

Response

Arguments

Name
Description

🔒 JWT Token

defines fileName and contentType

Example

Query

mutation CreateS3Url($s3ReqDto: S3LinkReq!) {
  createS3Url(s3ReqDto: $s3ReqDto) {
    uploadUrl
  }
}

Variables

{"s3ReqDto": S3LinkReq}

Response

{
  "data": {
    "createS3Url": {"uploadUrl": "xyz789"}
  }
}

deleteContact

Description

Delete contact record. Returns record of the contactBook entity.

Response

Arguments

Name
Description

id of a contact

Example

Query

mutation DeleteContact($id: Float!) {
  deleteContact(id: $id) {
    createdAt
    id
    nickName
    ownerUri
    updatedAt
    walletAddress
  }
}

Variables

{"id": 987.65}

Response

{
  "data": {
    "deleteContact": {
      "createdAt": "2007-12-03T10:15:30Z",
      "id": 987.65,
      "nickName": "xyz789",
      "ownerUri": "abc123",
      "updatedAt": "2007-12-03T10:15:30Z",
      "walletAddress": "abc123"
    }
  }
}

deleteManyCollectionEntities

Response

Arguments

Name
Description

Example

Query

mutation DeleteManyCollectionEntities($input: DeleteManyCollectionEntitiesInput!) {
  deleteManyCollectionEntities(input: $input) {
    deletedCount
  }
}

Variables

{"input": DeleteManyCollectionEntitiesInput}

Response

{"data": {"deleteManyCollectionEntities": {"deletedCount": 123}}}

deleteManyRelations

Response

Arguments

Name
Description

Example

Query

mutation DeleteManyRelations($input: DeleteManyCollectionEntityRelationsInput!) {
  deleteManyRelations(input: $input) {
    deletedCount
  }
}

Variables

{"input": DeleteManyCollectionEntityRelationsInput}

Response

{"data": {"deleteManyRelations": {"deletedCount": 987}}}

deleteOneCollectionEntity

Response

Arguments

Name
Description

Example

Query

mutation DeleteOneCollectionEntity($input: DeleteOneCollectionEntityInput!) {
  deleteOneCollectionEntity(input: $input) {
    avatarUrl
    bannerUrl
    createdAt
    description
    email
    entityUri
    id
    name
    tenantId
    type
    updatedAt
  }
}

Variables

{"input": DeleteOneCollectionEntityInput}

Response

{
  "data": {
    "deleteOneCollectionEntity": {
      "avatarUrl": "xyz789",
      "bannerUrl": "xyz789",
      "createdAt": "2007-12-03T10:15:30Z",
      "description": "abc123",
      "email": "abc123",
      "entityUri": "xyz789",
      "id": "4",
      "name": "abc123",
      "tenantId": 4,
      "type": "ARTIST",
      "updatedAt": "2007-12-03T10:15:30Z"
    }
  }
}

deleteOneRelation

Response

Arguments

Name
Description

Example

Query

mutation DeleteOneRelation($input: DeleteOneCollectionEntityRelationInput!) {
  deleteOneRelation(input: $input) {
    childEntityId
    createdAt
    id
    parentEntityId
    relationType
    tenantId
    updatedAt
  }
}

Variables

{"input": DeleteOneCollectionEntityRelationInput}

Response

{
  "data": {
    "deleteOneRelation": {
      "childEntityId": "abc123",
      "createdAt": "2007-12-03T10:15:30Z",
      "id": "4",
      "parentEntityId": "abc123",
      "relationType": "ENTERPIRSE_ARTIST",
      "tenantId": "xyz789",
      "updatedAt": "2007-12-03T10:15:30Z"
    }
  }
}

updateContact

Description

Update contact record. Returns record of the contactBook entity.

Response

Arguments

Name
Description

id of a contact

nick name of a contact

wallet address of a contact

Example

Query

mutation UpdateContact(
  $id: Float!,
  $nickName: String,
  $walletAddress: String
) {
  updateContact(
    id: $id,
    nickName: $nickName,
    walletAddress: $walletAddress
  ) {
    createdAt
    id
    nickName
    ownerUri
    updatedAt
    walletAddress
  }
}

Variables

{
  "id": 987.65,
  "nickName": "abc123",
  "walletAddress": "abc123"
}

Response

{
  "data": {
    "updateContact": {
      "createdAt": "2007-12-03T10:15:30Z",
      "id": 123.45,
      "nickName": "abc123",
      "ownerUri": "abc123",
      "updatedAt": "2007-12-03T10:15:30Z",
      "walletAddress": "xyz789"
    }
  }
}

updateManyCollectionEntities

Response

Arguments

Name
Description

Example

Query

mutation UpdateManyCollectionEntities($input: UpdateManyCollectionEntitiesInput!) {
  updateManyCollectionEntities(input: $input) {
    updatedCount
  }
}

Variables

{"input": UpdateManyCollectionEntitiesInput}

Response

{"data": {"updateManyCollectionEntities": {"updatedCount": 987}}}

updateOneCollectionEntity

Response

Arguments

Name
Description

Example

Query

mutation UpdateOneCollectionEntity($input: UpdateOneCollectionEntityInput!) {
  updateOneCollectionEntity(input: $input) {
    avatarUrl
    bannerUrl
    createdAt
    description
    email
    entityUri
    id
    name
    networkConfigs {
      activitiesSubgraphUrl
      agreementFactoryAddress
      agreementSubgraphUrl
      alchemyApiKey
      capabilities {
        ...NetworkCapabilityFragment
      }
      chainId
      createdAt
      defaultStripeFeeInPercent
      dmmAddress
      feeManagerAddress
      id
      jsonRpcUrl
      lendingContractAddress
      marketAddress
      marketOwner
      nativeCoin
      nativeCoinDecimals
      networkName
      nftSubgraphUrl
      payeeVaultFactoryAddress
      paymentBatcherFactoryAddress
      studioPublicJsonRpcUrl
      updatedAt
    }
    redirectDomains {
      domain
    }
    tenant {
      createdAt
      id
      minPaymentBatcherBalanceInUSDC
      name
      paymentBatcherAddress
      tenantUri
      updatedAt
    }
    tenantId
    type
    updatedAt
  }
}

Variables

{"input": UpdateOneCollectionEntityInput}

Response

{
  "data": {
    "updateOneCollectionEntity": {
      "avatarUrl": "xyz789",
      "bannerUrl": "abc123",
      "createdAt": "2007-12-03T10:15:30Z",
      "description": "xyz789",
      "email": "abc123",
      "entityUri": "xyz789",
      "id": 4,
      "name": "xyz789",
      "networkConfigs": [NetworkConfig],
      "redirectDomains": [RedirectDomain],
      "tenant": Tenant,
      "tenantId": "4",
      "type": "ARTIST",
      "updatedAt": "2007-12-03T10:15:30Z"
    }
  }
}

Types

Boolean

Description

The Boolean scalar type represents true or false.

Example

true

CollectionEntity

Description

represents an element of the hierarchy within the enterprise.

Fields

Field Name
Description

avatar url, displayed on the storefront.

banner url, displayed on the storefront.

Time at which the object was created.

Entity description.

collection entity email.

Identifier of the entity. This value corresponds to the ID from the revelator database.

Auto-incrementing identifier.

Entity name.

Arguments

Specify to filter the records returned.

Specify to sort results.

Arguments

Specify to filter the records returned.

Specify to sort results.

Tenant ID to which artists, enterprise and labels belong.

Specifies the type of entry. Represents the hierarchy level within the enterprise.

Time at which the object was last updated.

Example

{
  "avatarUrl": "abc123",
  "bannerUrl": "xyz789",
  "createdAt": "2007-12-03T10:15:30Z",
  "description": "xyz789",
  "email": "abc123",
  "entityUri": "xyz789",
  "id": "4",
  "name": "abc123",
  "networkConfigs": [NetworkConfig],
  "redirectDomains": [RedirectDomain],
  "tenant": Tenant,
  "tenantId": 4,
  "type": "ARTIST",
  "updatedAt": "2007-12-03T10:15:30Z"
}

CollectionEntityConnection

Fields

Field Name
Description

Array of nodes.

Paging information

Fetch total count of records

Example

{
  "nodes": [CollectionEntity],
  "pageInfo": OffsetPageInfo,
  "totalCount": 987
}

CollectionEntityDeleteFilter

Fields

Input Field
Description

Example

{
  "and": [CollectionEntityDeleteFilter],
  "avatarUrl": StringFieldComparison,
  "bannerUrl": StringFieldComparison,
  "createdAt": DateFieldComparison,
  "description": StringFieldComparison,
  "email": StringFieldComparison,
  "entityUri": StringFieldComparison,
  "id": IDFilterComparison,
  "name": StringFieldComparison,
  "or": [CollectionEntityDeleteFilter],
  "tenantId": IDFilterComparison,
  "type": CollectionEntityTypeFilterComparison,
  "updatedAt": DateFieldComparison
}

CollectionEntityDeleteResponse

Fields

Field Name
Description

avatar url, displayed on the storefront.

banner url, displayed on the storefront.

Time at which the object was created.

Entity description.

collection entity email.

Identifier of the entity. This value corresponds to the ID from the revelator database.

Auto-incrementing identifier.

Entity name.

Tenant ID to which artists, enterprise and labels belong.

Specifies the type of entry. Represents the hierarchy level within the enterprise.

Time at which the object was last updated.

Example

{
  "avatarUrl": "xyz789",
  "bannerUrl": "xyz789",
  "createdAt": "2007-12-03T10:15:30Z",
  "description": "xyz789",
  "email": "abc123",
  "entityUri": "abc123",
  "id": 4,
  "name": "abc123",
  "tenantId": "4",
  "type": "ARTIST",
  "updatedAt": "2007-12-03T10:15:30Z"
}

CollectionEntityFilter

Fields

Input Field
Description

Example

{
  "and": [CollectionEntityFilter],
  "avatarUrl": StringFieldComparison,
  "bannerUrl": StringFieldComparison,
  "createdAt": DateFieldComparison,
  "description": StringFieldComparison,
  "email": StringFieldComparison,
  "entityUri": StringFieldComparison,
  "id": IDFilterComparison,
  "name": StringFieldComparison,
  "or": [CollectionEntityFilter],
  "redirectDomains": CollectionEntityFilterRedirectDomainFilter,
  "tenant": CollectionEntityFilterTenantFilter,
  "tenantId": IDFilterComparison,
  "type": CollectionEntityTypeFilterComparison,
  "updatedAt": DateFieldComparison
}

CollectionEntityFilterRedirectDomainFilter

Fields

Input Field
Description

Example

{
  "and": [CollectionEntityFilterRedirectDomainFilter],
  "domain": StringFieldComparison,
  "or": [CollectionEntityFilterRedirectDomainFilter]
}

CollectionEntityFilterTenantFilter

Fields

Input Field
Description

Example

{
  "and": [CollectionEntityFilterTenantFilter],
  "createdAt": DateFieldComparison,
  "id": IDFilterComparison,
  "minPaymentBatcherBalanceInUSDC": NumberFieldComparison,
  "name": StringFieldComparison,
  "or": [CollectionEntityFilterTenantFilter],
  "paymentBatcherAddress": StringFieldComparison,
  "tenantUri": StringFieldComparison,
  "updatedAt": DateFieldComparison
}

CollectionEntityRelation

Description

represents a relationship between two entities.

Fields

Field Name
Description

Relationship child ID.

Time at which the object was created.

Auto-incrementing identifier.

Relationship parent ID.

Specifies the type of the relation. For example: LABEL -> ARTIST.

Tenant ID to which artists, enterprise and labels belong.

Time at which the object was last updated.

Example

{
  "childEntityId": "abc123",
  "createdAt": "2007-12-03T10:15:30Z",
  "id": 4,
  "network": NetworkConfig,
  "parentEntityId": "xyz789",
  "relationType": "ENTERPIRSE_ARTIST",
  "tenant": Tenant,
  "tenantId": "xyz789",
  "updatedAt": "2007-12-03T10:15:30Z"
}

CollectionEntityRelationConnection

Fields

Field Name
Description

Array of nodes.

Paging information

Fetch total count of records

Example

{
  "nodes": [CollectionEntityRelation],
  "pageInfo": OffsetPageInfo,
  "totalCount": 123
}

CollectionEntityRelationDeleteFilter

Fields

Input Field
Description

Example

{
  "and": [CollectionEntityRelationDeleteFilter],
  "childEntityId": StringFieldComparison,
  "createdAt": DateFieldComparison,
  "id": IDFilterComparison,
  "or": [CollectionEntityRelationDeleteFilter],
  "parentEntityId": StringFieldComparison,
  "relationType": CollectionEntityRelationTypeFilterComparison,
  "tenantId": StringFieldComparison,
  "updatedAt": DateFieldComparison
}

CollectionEntityRelationDeleteResponse

Fields

Field Name
Description

Relationship child ID.

Time at which the object was created.

Auto-incrementing identifier.

Relationship parent ID.

Specifies the type of the relation. For example: LABEL -> ARTIST.

Tenant ID to which artists, enterprise and labels belong.

Time at which the object was last updated.

Example

{
  "childEntityId": "xyz789",
  "createdAt": "2007-12-03T10:15:30Z",
  "id": "4",
  "parentEntityId": "xyz789",
  "relationType": "ENTERPIRSE_ARTIST",
  "tenantId": "xyz789",
  "updatedAt": "2007-12-03T10:15:30Z"
}

CollectionEntityRelationFilter

Fields

Input Field
Description

Example

{
  "and": [CollectionEntityRelationFilter],
  "childEntityId": StringFieldComparison,
  "createdAt": DateFieldComparison,
  "id": IDFilterComparison,
  "network": CollectionEntityRelationFilterNetworkConfigFilter,
  "or": [CollectionEntityRelationFilter],
  "parentEntityId": StringFieldComparison,
  "relationType": CollectionEntityRelationTypeFilterComparison,
  "tenant": CollectionEntityRelationFilterTenantFilter,
  "tenantId": StringFieldComparison,
  "updatedAt": DateFieldComparison
}

CollectionEntityRelationFilterNetworkConfigFilter

Fields

Input Field
Description

Example

{
  "activitiesSubgraphUrl": StringFieldComparison,
  "agreementFactoryAddress": StringFieldComparison,
  "agreementSubgraphUrl": StringFieldComparison,
  "alchemyApiKey": StringFieldComparison,
  "and": [
    CollectionEntityRelationFilterNetworkConfigFilter
  ],
  "chainId": IntFieldComparison,
  "createdAt": DateFieldComparison,
  "defaultStripeFeeInPercent": IntFieldComparison,
  "dmmAddress": StringFieldComparison,
  "feeManagerAddress": StringFieldComparison,
  "id": IDFilterComparison,
  "jsonRpcUrl": StringFieldComparison,
  "lendingContractAddress": StringFieldComparison,
  "marketAddress": StringFieldComparison,
  "marketOwner": StringFieldComparison,
  "nativeCoin": StringFieldComparison,
  "nativeCoinDecimals": IntFieldComparison,
  "networkName": NetworkNameFilterComparison,
  "nftSubgraphUrl": StringFieldComparison,
  "or": [
    CollectionEntityRelationFilterNetworkConfigFilter
  ],
  "payeeVaultFactoryAddress": StringFieldComparison,
  "paymentBatcherFactoryAddress": StringFieldComparison,
  "studioPublicJsonRpcUrl": StringFieldComparison,
  "updatedAt": DateFieldComparison
}

CollectionEntityRelationFilterTenantFilter

Fields

Input Field
Description

Example

{
  "and": [CollectionEntityRelationFilterTenantFilter],
  "createdAt": DateFieldComparison,
  "id": IDFilterComparison,
  "minPaymentBatcherBalanceInUSDC": NumberFieldComparison,
  "name": StringFieldComparison,
  "or": [CollectionEntityRelationFilterTenantFilter],
  "paymentBatcherAddress": StringFieldComparison,
  "tenantUri": StringFieldComparison,
  "updatedAt": DateFieldComparison
}

CollectionEntityRelationSort

Fields

Input Field
Description

Example

{"direction": "ASC", "field": "childEntityId", "nulls": "NULLS_FIRST"}

CollectionEntityRelationSortFields

Values

Enum Value
Description

childEntityId

createdAt

id

parentEntityId

relationType

tenantId

updatedAt

Example

"childEntityId"

CollectionEntityRelationType

Values

Enum Value
Description

ENTERPIRSE_ARTIST

ENTERPIRSE_LABEL

LABEL_ARTIST

TENANT_ENTERPRISE

Example

"ENTERPIRSE_ARTIST"

CollectionEntityRelationTypeFilterComparison

Fields

Input Field
Description

Example

{
  "eq": "ENTERPIRSE_ARTIST",
  "gt": "ENTERPIRSE_ARTIST",
  "gte": "ENTERPIRSE_ARTIST",
  "iLike": "ENTERPIRSE_ARTIST",
  "in": ["ENTERPIRSE_ARTIST"],
  "is": false,
  "isNot": true,
  "like": "ENTERPIRSE_ARTIST",
  "lt": "ENTERPIRSE_ARTIST",
  "lte": "ENTERPIRSE_ARTIST",
  "neq": "ENTERPIRSE_ARTIST",
  "notILike": "ENTERPIRSE_ARTIST",
  "notIn": ["ENTERPIRSE_ARTIST"],
  "notLike": "ENTERPIRSE_ARTIST"
}

CollectionEntitySort

Fields

Input Field
Description

Example

{"direction": "ASC", "field": "avatarUrl", "nulls": "NULLS_FIRST"}

CollectionEntitySortFields

Values

Enum Value
Description

avatarUrl

bannerUrl

createdAt

description

email

entityUri

id

name

tenantId

type

updatedAt

Example

"avatarUrl"

CollectionEntityType

Values

Enum Value
Description

ARTIST

ENTERPRISE

LABEL

Example

"ARTIST"

CollectionEntityTypeFilterComparison

Fields

Input Field
Description

Example

{
  "eq": "ARTIST",
  "gt": "ARTIST",
  "gte": "ARTIST",
  "iLike": "ARTIST",
  "in": ["ARTIST"],
  "is": false,
  "isNot": true,
  "like": "ARTIST",
  "lt": "ARTIST",
  "lte": "ARTIST",
  "neq": "ARTIST",
  "notILike": "ARTIST",
  "notIn": ["ARTIST"],
  "notLike": "ARTIST"
}

CollectionEntityUpdateFilter

Fields

Input Field
Description

Example

{
  "and": [CollectionEntityUpdateFilter],
  "avatarUrl": StringFieldComparison,
  "bannerUrl": StringFieldComparison,
  "createdAt": DateFieldComparison,
  "description": StringFieldComparison,
  "email": StringFieldComparison,
  "entityUri": StringFieldComparison,
  "id": IDFilterComparison,
  "name": StringFieldComparison,
  "or": [CollectionEntityUpdateFilter],
  "tenantId": IDFilterComparison,
  "type": CollectionEntityTypeFilterComparison,
  "updatedAt": DateFieldComparison
}

ContactDto

Description

contact object

Fields

Field Name
Description

Time at which the object was created.

Unique identifier for the contact.

Name of a contact.

Revelator unique identifier for an enterprise.

Time at which the object was last updated.

Wallet address of a contact.

Example

{
  "createdAt": "2007-12-03T10:15:30Z",
  "id": 123.45,
  "nickName": "abc123",
  "ownerUri": "abc123",
  "updatedAt": "2007-12-03T10:15:30Z",
  "walletAddress": "abc123"
}

ContactsDto

Fields

Field Name
Description

Example

{"count": 987.65, "items": [ContactDto]}

CreateCollectionEntity

Fields

Input Field
Description

avatar url, displayed on the storefront.

banner url, displayed on the storefront.

Entity description.

collection entity email.

Identifier of the entity. This value corresponds to the ID from the revelator database.

Entity name.

Specifies the type of entry. Represents the hierarchy level within the enterprise.

Example

{
  "avatarUrl": "abc123",
  "bannerUrl": "abc123",
  "description": "xyz789",
  "email": "abc123",
  "entityUri": "abc123",
  "name": "abc123",
  "networkNames": ["amoy"],
  "type": "ARTIST"
}

CreateCollectionEntityRelation

Fields

Input Field
Description

Relationship child ID.

Relationship parent ID.

Specifies the type of the relation. For example: LABEL -> ARTIST.

Example

{
  "childEntityId": "abc123",
  "parentEntityId": "xyz789",
  "relationType": "ENTERPIRSE_ARTIST"
}

CreateOneCollectionEntityInput

Fields

Input Field
Description

The record to create

Example

{"collectionEntity": CreateCollectionEntity}

CurrenciesModel

Fields

Field Name
Description

Example

{
  "lendingToken": CurrencyModel,
  "nativeCoin": CurrencyModel,
  "otherCurrencies": [CurrencyModel]
}

CurrencyModel

Fields

Field Name
Description

Example

{
  "address": "xyz789",
  "decimals": 123.45,
  "symbol": "abc123"
}

DateFieldComparison

Fields

Input Field
Description

Example

{
  "between": DateFieldComparisonBetween,
  "eq": "2007-12-03T10:15:30Z",
  "gt": "2007-12-03T10:15:30Z",
  "gte": "2007-12-03T10:15:30Z",
  "in": ["2007-12-03T10:15:30Z"],
  "is": false,
  "isNot": true,
  "lt": "2007-12-03T10:15:30Z",
  "lte": "2007-12-03T10:15:30Z",
  "neq": "2007-12-03T10:15:30Z",
  "notBetween": DateFieldComparisonBetween,
  "notIn": ["2007-12-03T10:15:30Z"]
}

DateFieldComparisonBetween

Fields

Input Field
Description

Example

{
  "lower": "2007-12-03T10:15:30Z",
  "upper": "2007-12-03T10:15:30Z"
}

DateTime

Description

A date-time string at UTC, such as 2019-12-03T09:54:33Z, compliant with the date-time format.

Example

"2007-12-03T10:15:30Z"

DeleteManyCollectionEntitiesInput

Fields

Input Field
Description

Filter to find records to delete

Example

{"filter": CollectionEntityDeleteFilter}

DeleteManyCollectionEntityRelationsInput

Fields

Input Field
Description

Filter to find records to delete

Example

{"filter": CollectionEntityRelationDeleteFilter}

DeleteManyResponse

Fields

Field Name
Description

The number of records deleted.

Example

{"deletedCount": 987}

DeleteOneCollectionEntityInput

Fields

Input Field
Description

The id of the record to delete.

Example

{"id": "4"}

DeleteOneCollectionEntityRelationInput

Fields

Input Field
Description

The id of the record to delete.

Example

{"id": "4"}

FileType

Values

Enum Value
Description

ENTITY_AVATAR

ENTITY_BANNER

Example

"ENTITY_AVATAR"

Float

Description

Example

987.65

ID

Description

The ID scalar type represents a unique identifier, often used to refetch an object or as key for a cache. The ID type appears in a JSON response as a String; however, it is not intended to be human-readable. When expected as an input type, any string (such as "4") or integer (such as 4) input value will be accepted as an ID.

Example

"4"

IDFilterComparison

Fields

Input Field
Description

Example

{
  "eq": 4,
  "gt": 4,
  "gte": 4,
  "iLike": "4",
  "in": [4],
  "is": true,
  "isNot": false,
  "like": "4",
  "lt": 4,
  "lte": 4,
  "neq": 4,
  "notILike": 4,
  "notIn": [4],
  "notLike": "4"
}

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

987

IntFieldComparison

Fields

Input Field
Description

Example

{
  "between": IntFieldComparisonBetween,
  "eq": 123,
  "gt": 123,
  "gte": 987,
  "in": [123],
  "is": false,
  "isNot": false,
  "lt": 123,
  "lte": 987,
  "neq": 123,
  "notBetween": IntFieldComparisonBetween,
  "notIn": [987]
}

IntFieldComparisonBetween

Fields

Input Field
Description

Example

{"lower": 123, "upper": 987}

NetworkCapabilities

Values

Enum Value
Description

Agreements

NFT

Example

"Agreements"

NetworkCapabilitiesFilterComparison

Fields

Input Field
Description

Example

{
  "eq": "Agreements",
  "gt": "Agreements",
  "gte": "Agreements",
  "iLike": "Agreements",
  "in": ["Agreements"],
  "is": true,
  "isNot": true,
  "like": "Agreements",
  "lt": "Agreements",
  "lte": "Agreements",
  "neq": "Agreements",
  "notILike": "Agreements",
  "notIn": ["Agreements"],
  "notLike": "Agreements"
}

NetworkCapabilitiesModel

Fields

Field Name
Description

List of capabilities | describe what can be done on a given chain.

Example

{"networkCapability": "Agreements"}

NetworkCapability

Description

Network capability

Fields

Field Name
Description

List of capabilities | describe what can be done on a given chain.

Example

{"networkCapability": "Agreements"}

NetworkCapabilityFilter

Fields

Input Field
Description

Example

{
  "and": [NetworkCapabilityFilter],
  "networkCapability": NetworkCapabilitiesFilterComparison,
  "or": [NetworkCapabilityFilter]
}

NetworkCapabilitySort

Fields

Input Field
Description

Example

{"direction": "ASC", "field": "networkCapability", "nulls": "NULLS_FIRST"}

NetworkCapabilitySortFields

Values

Enum Value
Description

networkCapability

Example

"networkCapability"

NetworkConfig

Description

Network configuration object

Fields

Field Name
Description

activities subgraph url address

agreement factory eth address

agreements subgraph url address

Alchemy API key

Arguments

Specify to filter the records returned.

Specify to sort results.

blockchain identifier

Time at which the object was created.

Default stripe fee %

Dynamic Modular Metadata contract address

fee manager contract eth address

Auto-incrementing identifier.

json rpc url address use to connect to the node

lending contract eth address

Nft-market eth contract address

Nft-market owner eth address

Native currency code

Native currency decimal value

Name of the blockchain network on which the transaction occurs

Nft-subgraph url address

Address of Payment Batcher Factory contract

Address of Payment Batcher Factory contract

json rpc url address for studio frontend app use to connect to the node

Time at which the object was last updated.

Example

{
  "activitiesSubgraphUrl": "xyz789",
  "agreementFactoryAddress": "abc123",
  "agreementSubgraphUrl": "xyz789",
  "alchemyApiKey": "xyz789",
  "capabilities": [NetworkCapability],
  "chainId": 123,
  "createdAt": "2007-12-03T10:15:30Z",
  "defaultStripeFeeInPercent": 987,
  "dmmAddress": "abc123",
  "feeManagerAddress": "abc123",
  "id": "4",
  "jsonRpcUrl": "xyz789",
  "lendingContractAddress": "xyz789",
  "marketAddress": "xyz789",
  "marketOwner": "xyz789",
  "nativeCoin": "xyz789",
  "nativeCoinDecimals": 123,
  "networkName": "amoy",
  "nftSubgraphUrl": "abc123",
  "payeeVaultFactoryAddress": "abc123",
  "paymentBatcherFactoryAddress": "xyz789",
  "studioPublicJsonRpcUrl": "abc123",
  "updatedAt": "2007-12-03T10:15:30Z"
}

NetworkConfigConnection

Fields

Field Name
Description

Array of nodes.

Paging information

Fetch total count of records

Example

{
  "nodes": [NetworkConfig],
  "pageInfo": OffsetPageInfo,
  "totalCount": 123
}

NetworkConfigFilter

Fields

Input Field
Description

Example

{
  "activitiesSubgraphUrl": StringFieldComparison,
  "agreementFactoryAddress": StringFieldComparison,
  "agreementSubgraphUrl": StringFieldComparison,
  "alchemyApiKey": StringFieldComparison,
  "and": [NetworkConfigFilter],
  "capabilities": NetworkConfigFilterNetworkCapabilityFilter,
  "chainId": IntFieldComparison,
  "createdAt": DateFieldComparison,
  "defaultStripeFeeInPercent": IntFieldComparison,
  "dmmAddress": StringFieldComparison,
  "feeManagerAddress": StringFieldComparison,
  "id": IDFilterComparison,
  "jsonRpcUrl": StringFieldComparison,
  "lendingContractAddress": StringFieldComparison,
  "marketAddress": StringFieldComparison,
  "marketOwner": StringFieldComparison,
  "nativeCoin": StringFieldComparison,
  "nativeCoinDecimals": IntFieldComparison,
  "networkName": NetworkNameFilterComparison,
  "nftSubgraphUrl": StringFieldComparison,
  "or": [NetworkConfigFilter],
  "payeeVaultFactoryAddress": StringFieldComparison,
  "paymentBatcherFactoryAddress": StringFieldComparison,
  "studioPublicJsonRpcUrl": StringFieldComparison,
  "updatedAt": DateFieldComparison
}

NetworkConfigFilterNetworkCapabilityFilter

Fields

Input Field
Description

Example

{
  "and": [NetworkConfigFilterNetworkCapabilityFilter],
  "networkCapability": NetworkCapabilitiesFilterComparison,
  "or": [NetworkConfigFilterNetworkCapabilityFilter]
}

NetworkConfigPublicModel

Fields

Field Name
Description

List of capabilities | describe what can be done on a given chain.

blockchain identifier

is blockchain a testnet

Name of the blockchain network on which the transaction occurs

json rpc url address for studio frontend app use to connect to the node

Example

{
  "capabilities": [NetworkCapabilitiesModel],
  "chainId": 123.45,
  "isTestNet": false,
  "networkName": "amoy",
  "studioPublicJsonRpcUrl": "abc123"
}

NetworkConfigSort

Fields

Input Field
Description

Example

{"direction": "ASC", "field": "activitiesSubgraphUrl", "nulls": "NULLS_FIRST"}

NetworkConfigSortFields

Values

Enum Value
Description

activitiesSubgraphUrl

agreementFactoryAddress

agreementSubgraphUrl

alchemyApiKey

chainId

createdAt

defaultStripeFeeInPercent

dmmAddress

feeManagerAddress

id

jsonRpcUrl

lendingContractAddress

marketAddress

marketOwner

nativeCoin

nativeCoinDecimals

networkName

nftSubgraphUrl

payeeVaultFactoryAddress

paymentBatcherFactoryAddress

studioPublicJsonRpcUrl

updatedAt

Example

"activitiesSubgraphUrl"

NetworkConfigV2Model

Fields

Field Name
Description

agreement factory eth address

agreements subgraph url address

List of capabilities | describe what can be done on a given chain.

blockchain identifier

Time at which the object was created.

blockchain explorer for review transactions

fee manager contract eth address

Auto-incrementing identifier.

ipfs endpoint url use to upload files and factsheets

is blockchain a testnet

json rpc url address use to connect to the node

lending contract eth address

Nft-market eth contract address

Nft-market owner eth address

Name of the blockchain network on which the transaction occurs

Nft-subgraph url address

Time at which the object was last updated.

Example

{
  "agreementFactoryAddress": "abc123",
  "agreementSubgraphUrl": "abc123",
  "capabilities": [NetworkCapabilitiesModel],
  "chainId": 987.65,
  "createdAt": "2007-12-03T10:15:30Z",
  "currencies": CurrenciesModel,
  "explorer": "xyz789",
  "feeManagerAddress": "xyz789",
  "id": "xyz789",
  "ipfsEndpoint": "abc123",
  "isTestNet": false,
  "jsonRpcUrl": "abc123",
  "lendingContractAddress": "abc123",
  "marketAddress": "abc123",
  "marketOwner": "abc123",
  "networkName": "amoy",
  "nftSubgraphUrl": "xyz789",
  "updatedAt": "2007-12-03T10:15:30Z"
}

NetworkName

Values

Enum Value
Description

amoy

base

baseSepolia

binance

bnbtest

ethereum

goerli

kovan

local

mainnet

mumbai

ownet

polygon

ropsten

sepolia

shibuya

test

Example

"amoy"

NetworkNameFilterComparison

Fields

Input Field
Description

Example

{
  "eq": "amoy",
  "gt": "amoy",
  "gte": "amoy",
  "iLike": "amoy",
  "in": ["amoy"],
  "is": false,
  "isNot": false,
  "like": "amoy",
  "lt": "amoy",
  "lte": "amoy",
  "neq": "amoy",
  "notILike": "amoy",
  "notIn": ["amoy"],
  "notLike": "amoy"
}

NumberFieldComparison

Fields

Input Field
Description

Example

{
  "between": NumberFieldComparisonBetween,
  "eq": 123.45,
  "gt": 987.65,
  "gte": 123.45,
  "in": [123.45],
  "is": true,
  "isNot": true,
  "lt": 987.65,
  "lte": 123.45,
  "neq": 123.45,
  "notBetween": NumberFieldComparisonBetween,
  "notIn": [123.45]
}

NumberFieldComparisonBetween

Fields

Input Field
Description

Example

{"lower": 123.45, "upper": 123.45}

OffsetPageInfo

Fields

Field Name
Description

true if paging forward and there are more records.

true if paging backwards and there are more records.

Example

{"hasNextPage": true, "hasPreviousPage": false}

OffsetPaging

Fields

Input Field
Description

Limit the number of records returned

Offset to start returning records from

Example

{"limit": 987, "offset": 987}

RedirectDomain

Fields

Field Name
Description

Example

{"domain": "xyz789"}

RedirectDomainFilter

Fields

Input Field
Description

Example

{
  "and": [RedirectDomainFilter],
  "domain": StringFieldComparison,
  "or": [RedirectDomainFilter]
}

RedirectDomainSort

Fields

Input Field
Description

Example

{"direction": "ASC", "field": "domain", "nulls": "NULLS_FIRST"}

RedirectDomainSortFields

Values

Enum Value
Description

domain

Example

"domain"

S3LinkReq

Fields

Input Field
Description

mime type of the file -> image/jpeg

The ID of the record to update

the file name must contain its extension -> [name].jpg

indicates the type of image uploaded (banner or avatar).

Example

{
  "contentType": "abc123",
  "entityId": "abc123",
  "fileName": "abc123",
  "imageType": "ENTITY_AVATAR"
}

S3LinkRes

Fields

Field Name
Description

Example

{"uploadUrl": "xyz789"}

SortDirection

Description

Sort Directions

Values

Enum Value
Description

ASC

DESC

Example

"ASC"

SortNulls

Description

Sort Nulls Options

Values

Enum Value
Description

NULLS_FIRST

NULLS_LAST

Example

"NULLS_FIRST"

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"

StringFieldComparison

Fields

Input Field
Description

Example

{
  "eq": "xyz789",
  "gt": "abc123",
  "gte": "abc123",
  "iLike": "xyz789",
  "in": ["abc123"],
  "is": true,
  "isNot": true,
  "like": "abc123",
  "lt": "xyz789",
  "lte": "abc123",
  "neq": "xyz789",
  "notILike": "abc123",
  "notIn": ["abc123"],
  "notLike": "abc123"
}

Tenant

Description

Tenant ID to which artists, enterprise and labels belong.

Fields

Field Name
Description

Time at which the object was created.

Auto-incrementing identifier.

Min payment batcher balance value

Tenant name.

Address of the contract user by tenant to make royalty payments.

Identifier of the tenant. This value corresponds to the tenant ID from the revelator database.

Time at which the object was last updated.

Example

{
  "createdAt": "2007-12-03T10:15:30Z",
  "id": "4",
  "minPaymentBatcherBalanceInUSDC": 123.45,
  "name": "xyz789",
  "paymentBatcherAddress": "xyz789",
  "tenantUri": "abc123",
  "updatedAt": "2007-12-03T10:15:30Z"
}

UpdateCollectionEntity

Fields

Input Field
Description

avatar url, displayed on the storefront.

banner url, displayed on the storefront.

Entity description.

collection entity email.

Identifier of the entity. This value corresponds to the ID from the revelator database.

Entity name.

Example

{
  "avatarUrl": "abc123",
  "bannerUrl": "abc123",
  "description": "abc123",
  "email": "xyz789",
  "entityUri": "abc123",
  "name": "xyz789"
}

UpdateManyCollectionEntitiesInput

Fields

Input Field
Description

Filter used to find fields to update

The update to apply to all records found using the filter

Example

{
  "filter": CollectionEntityUpdateFilter,
  "update": UpdateCollectionEntity
}

UpdateManyResponse

Fields

Field Name
Description

The number of records updated.

Example

{"updatedCount": 987}

UpdateOneCollectionEntityInput

Fields

Input Field
Description

The id of the record to update

The update to apply.

Example

{
  "id": "4",
  "update": UpdateCollectionEntity
}

filter -

paging -

sorting -

Returns a

id -

Returns a

id -

Returns a

filter -

paging -

sorting -

Returns a

nickName -

Returns a

walletAddress -

Returns a

Returns a

Returns a

networkName -

Returns a

filter -

paging -

sorting -

Returns

Returns

Returns a

Returns a

nickName -

walletAddress -

Returns a

input -

Returns a

createRelation -

Returns a

s3ReqDto -

Returns a

id -

Returns a

input -

Returns a

input -

Returns a

input -

Returns a

input -

Returns a

id -

nickName -

walletAddress -

Returns an

input -

Returns a

input -

avatarUrl -

bannerUrl -

createdAt -

description -

email -

entityUri -

id -

name -

networkConfigs -

filter -

sorting -

redirectDomains -

filter -

sorting -

tenant -

tenantId -

type -

updatedAt -

nodes -

pageInfo -

totalCount -

and -

avatarUrl -

bannerUrl -

createdAt -

description -

email -

entityUri -

id -

name -

or -

tenantId -

type -

updatedAt -

avatarUrl -

bannerUrl -

createdAt -

description -

email -

entityUri -

id -

name -

tenantId -

type -

updatedAt -

and -

avatarUrl -

bannerUrl -

createdAt -

description -

email -

entityUri -

id -

name -

or -

redirectDomains -

tenant -

tenantId -

type -

updatedAt -

and -

domain -

or -

and -

createdAt -

id -

minPaymentBatcherBalanceInUSDC -

name -

or -

paymentBatcherAddress -

tenantUri -

updatedAt -

childEntityId -

createdAt -

id -

network -

parentEntityId -

relationType -

tenant -

tenantId -

updatedAt -

nodes -

pageInfo -

totalCount -

and -

childEntityId -

createdAt -

id -

or -

parentEntityId -

relationType -

tenantId -

updatedAt -

childEntityId -

createdAt -

id -

parentEntityId -

relationType -

tenantId -

updatedAt -

and -

childEntityId -

createdAt -

id -

network -

or -

parentEntityId -

relationType -

tenant -

tenantId -

updatedAt -

activitiesSubgraphUrl -

agreementFactoryAddress -

agreementSubgraphUrl -

alchemyApiKey -

and -

chainId -

createdAt -

defaultStripeFeeInPercent -

dmmAddress -

feeManagerAddress -

id -

jsonRpcUrl -

lendingContractAddress -

marketAddress -

marketOwner -

nativeCoin -

nativeCoinDecimals -

networkName -

nftSubgraphUrl -

or -

payeeVaultFactoryAddress -

paymentBatcherFactoryAddress -

studioPublicJsonRpcUrl -

updatedAt -

and -

createdAt -

id -

minPaymentBatcherBalanceInUSDC -

name -

or -

paymentBatcherAddress -

tenantUri -

updatedAt -

direction -

field -

nulls -

eq -

gt -

gte -

iLike -

in -

is -

isNot -

like -

lt -

lte -

neq -

notILike -

notIn -

notLike -

direction -

field -

nulls -

eq -

gt -

gte -

iLike -

in -

is -

isNot -

like -

lt -

lte -

neq -

notILike -

notIn -

notLike -

and -

avatarUrl -

bannerUrl -

createdAt -

description -

email -

entityUri -

id -

name -

or -

tenantId -

type -

updatedAt -

createdAt -

id -

nickName -

ownerUri -

updatedAt -

walletAddress -

count -

items -

avatarUrl -

bannerUrl -

description -

email -

entityUri -

name -

networkNames -

type -

childEntityId -

parentEntityId -

relationType -

collectionEntity -

lendingToken -

nativeCoin -

otherCurrencies -

address -

decimals -

symbol -

between -

eq -

gt -

gte -

in -

is -

isNot -

lt -

lte -

neq -

notBetween -

notIn -

lower -

upper -

filter -

filter -

deletedCount -

id -

id -

The Float scalar type represents signed double-precision fractional values as specified by .

eq -

gt -

gte -

iLike -

in -

is -

isNot -

like -

lt -

lte -

neq -

notILike -

notIn -

notLike -

between -

eq -

gt -

gte -

in -

is -

isNot -

lt -

lte -

neq -

notBetween -

notIn -

lower -

upper -

eq -

gt -

gte -

iLike -

in -

is -

isNot -

like -

lt -

lte -

neq -

notILike -

notIn -

notLike -

networkCapability -

networkCapability -

and -

networkCapability -

or -

direction -

field -

nulls -

activitiesSubgraphUrl -

agreementFactoryAddress -

agreementSubgraphUrl -

alchemyApiKey -

capabilities -

filter -

sorting -

chainId -

createdAt -

defaultStripeFeeInPercent -

dmmAddress -

feeManagerAddress -

id -

jsonRpcUrl -

lendingContractAddress -

marketAddress -

marketOwner -

nativeCoin -

nativeCoinDecimals -

networkName -

nftSubgraphUrl -

payeeVaultFactoryAddress -

paymentBatcherFactoryAddress -

studioPublicJsonRpcUrl -

updatedAt -

nodes -

pageInfo -

totalCount -

activitiesSubgraphUrl -

agreementFactoryAddress -

agreementSubgraphUrl -

alchemyApiKey -

and -

capabilities -

chainId -

createdAt -

defaultStripeFeeInPercent -

dmmAddress -

feeManagerAddress -

id -

jsonRpcUrl -

lendingContractAddress -

marketAddress -

marketOwner -

nativeCoin -

nativeCoinDecimals -

networkName -

nftSubgraphUrl -

or -

payeeVaultFactoryAddress -

paymentBatcherFactoryAddress -

studioPublicJsonRpcUrl -

updatedAt -

and -

networkCapability -

or -

capabilities -

chainId -

isTestNet -

networkName -

studioPublicJsonRpcUrl -

direction -

field -

nulls -

agreementFactoryAddress -

agreementSubgraphUrl -

capabilities -

chainId -

createdAt -

currencies -

explorer -

feeManagerAddress -

id -

ipfsEndpoint -

isTestNet -

jsonRpcUrl -

lendingContractAddress -

marketAddress -

marketOwner -

networkName -

nftSubgraphUrl -

updatedAt -

eq -

gt -

gte -

iLike -

in -

is -

isNot -

like -

lt -

lte -

neq -

notILike -

notIn -

notLike -

between -

eq -

gt -

gte -

in -

is -

isNot -

lt -

lte -

neq -

notBetween -

notIn -

lower -

upper -

hasNextPage -

hasPreviousPage -

limit -

offset -

domain -

and -

domain -

or -

direction -

field -

nulls -

contentType -

entityId -

fileName -

imageType -

uploadUrl -

eq -

gt -

gte -

iLike -

in -

is -

isNot -

like -

lt -

lte -

neq -

notILike -

notIn -

notLike -

createdAt -

id -

minPaymentBatcherBalanceInUSDC -

name -

paymentBatcherAddress -

tenantUri -

updatedAt -

avatarUrl -

bannerUrl -

description -

email -

entityUri -

name -

filter -

update -

updatedCount -

id -

update -

IEEE 754
Documentation by Anvil SpectaQL
CollectionEntityConnection!
Queries
CollectionEntity!
Queries
CollectionEntityRelation!
Queries
CollectionEntityRelationConnection!
Queries
ContactDto!
Queries
ContactDto!
Queries
ContactsDto!
Queries
CollectionEntity!
Queries
NetworkConfigV2Model!
Queries
NetworkConfigConnection!
Queries
[NetworkConfigV2Model!]!
Queries
[NetworkConfigPublicModel!]!
Queries
String!
ContactDto!
Mutations
CollectionEntity!
Mutations
CollectionEntityRelation!
Mutations
S3LinkRes!
Mutations
ContactDto!
Mutations
DeleteManyResponse!
Mutations
DeleteManyResponse!
Mutations
CollectionEntityDeleteResponse!
Mutations
CollectionEntityRelationDeleteResponse!
Mutations
ContactDto!
Mutations
UpdateManyResponse!
Mutations
CollectionEntity!
Types
Types
Types
Types
Types
Types
Types
Types
Types
Types
Types
Types
Types
Types
Types
Types
Types
Types
Types
Types
Types
Types
Types
Types
Types
Types
Types
Types
Types
Types
Types
Types
Types
Types
Types
Types
Types
Types
Types
Types
Types
Types
Types
Types
Types
Types
Types
Types
Types
Types
Types
Types
Types
Types
Types
Types
Types
Types
Types
Types
Types
Types
Types
Types
Types
Types
Types
Types
Types
Types
Types
Types
Types
Types
Types
Types
Types
Types
Types
Types
Types
CollectionEntityFilter!
OffsetPaging!
[CollectionEntitySort!]!
ID!
ID!
CollectionEntityRelationFilter!
OffsetPaging!
[CollectionEntityRelationSort!]!
String!
String!
NetworkName!
NetworkConfigFilter!
OffsetPaging!
[NetworkConfigSort!]!
String!
String!
CreateOneCollectionEntityInput!
CreateCollectionEntityRelation!
S3LinkReq!
Float!
DeleteManyCollectionEntitiesInput!
DeleteManyCollectionEntityRelationsInput!
DeleteOneCollectionEntityInput!
DeleteOneCollectionEntityRelationInput!
Float!
String
String
UpdateManyCollectionEntitiesInput!
UpdateOneCollectionEntityInput!
String
String
DateTime!
String
String
String
ID!
String!
[NetworkConfig!]!
NetworkConfigFilter!
[NetworkConfigSort!]!
[RedirectDomain!]!
RedirectDomainFilter!
[RedirectDomainSort!]!
Tenant!
ID!
CollectionEntityType!
DateTime!
[CollectionEntity!]!
OffsetPageInfo!
Int!
[CollectionEntityDeleteFilter!]
StringFieldComparison
StringFieldComparison
DateFieldComparison
StringFieldComparison
StringFieldComparison
StringFieldComparison
IDFilterComparison
StringFieldComparison
[CollectionEntityDeleteFilter!]
IDFilterComparison
CollectionEntityTypeFilterComparison
DateFieldComparison
String
String
DateTime
String
String
String
ID
String
ID
CollectionEntityType
DateTime
[CollectionEntityFilter!]
StringFieldComparison
StringFieldComparison
DateFieldComparison
StringFieldComparison
StringFieldComparison
StringFieldComparison
IDFilterComparison
StringFieldComparison
[CollectionEntityFilter!]
CollectionEntityFilterRedirectDomainFilter
CollectionEntityFilterTenantFilter
IDFilterComparison
CollectionEntityTypeFilterComparison
DateFieldComparison
[CollectionEntityFilterRedirectDomainFilter!]
StringFieldComparison
[CollectionEntityFilterRedirectDomainFilter!]
[CollectionEntityFilterTenantFilter!]
DateFieldComparison
IDFilterComparison
NumberFieldComparison
StringFieldComparison
[CollectionEntityFilterTenantFilter!]
StringFieldComparison
StringFieldComparison
DateFieldComparison
String!
DateTime!
ID!
NetworkConfig!
String!
CollectionEntityRelationType!
Tenant!
String!
DateTime!
[CollectionEntityRelation!]!
OffsetPageInfo!
Int!
[CollectionEntityRelationDeleteFilter!]
StringFieldComparison
DateFieldComparison
IDFilterComparison
[CollectionEntityRelationDeleteFilter!]
StringFieldComparison
CollectionEntityRelationTypeFilterComparison
StringFieldComparison
DateFieldComparison
String
DateTime
ID
String
CollectionEntityRelationType
String
DateTime
[CollectionEntityRelationFilter!]
StringFieldComparison
DateFieldComparison
IDFilterComparison
CollectionEntityRelationFilterNetworkConfigFilter
[CollectionEntityRelationFilter!]
StringFieldComparison
CollectionEntityRelationTypeFilterComparison
CollectionEntityRelationFilterTenantFilter
StringFieldComparison
DateFieldComparison
StringFieldComparison
StringFieldComparison
StringFieldComparison
StringFieldComparison
[CollectionEntityRelationFilterNetworkConfigFilter!]
IntFieldComparison
DateFieldComparison
IntFieldComparison
StringFieldComparison
StringFieldComparison
IDFilterComparison
StringFieldComparison
StringFieldComparison
StringFieldComparison
StringFieldComparison
StringFieldComparison
IntFieldComparison
NetworkNameFilterComparison
StringFieldComparison
[CollectionEntityRelationFilterNetworkConfigFilter!]
StringFieldComparison
StringFieldComparison
StringFieldComparison
DateFieldComparison
[CollectionEntityRelationFilterTenantFilter!]
DateFieldComparison
IDFilterComparison
NumberFieldComparison
StringFieldComparison
[CollectionEntityRelationFilterTenantFilter!]
StringFieldComparison
StringFieldComparison
DateFieldComparison
SortDirection!
CollectionEntityRelationSortFields!
SortNulls
CollectionEntityRelationType
CollectionEntityRelationType
CollectionEntityRelationType
CollectionEntityRelationType
[CollectionEntityRelationType!]
Boolean
Boolean
CollectionEntityRelationType
CollectionEntityRelationType
CollectionEntityRelationType
CollectionEntityRelationType
CollectionEntityRelationType
[CollectionEntityRelationType!]
CollectionEntityRelationType
SortDirection!
CollectionEntitySortFields!
SortNulls
CollectionEntityType
CollectionEntityType
CollectionEntityType
CollectionEntityType
[CollectionEntityType!]
Boolean
Boolean
CollectionEntityType
CollectionEntityType
CollectionEntityType
CollectionEntityType
CollectionEntityType
[CollectionEntityType!]
CollectionEntityType
[CollectionEntityUpdateFilter!]
StringFieldComparison
StringFieldComparison
DateFieldComparison
StringFieldComparison
StringFieldComparison
StringFieldComparison
IDFilterComparison
StringFieldComparison
[CollectionEntityUpdateFilter!]
IDFilterComparison
CollectionEntityTypeFilterComparison
DateFieldComparison
DateTime!
Float!
String!
String!
DateTime!
String!
Float!
[ContactDto!]!
String
String
String
String
String
String!
[NetworkName!]!
CollectionEntityType!
String!
String!
CollectionEntityRelationType!
CreateCollectionEntity!
CurrencyModel!
CurrencyModel!
[CurrencyModel!]!
String!
Float!
String!
DateFieldComparisonBetween
DateTime
DateTime
DateTime
[DateTime!]
Boolean
Boolean
DateTime
DateTime
DateTime
DateFieldComparisonBetween
[DateTime!]
DateTime!
DateTime!
CollectionEntityDeleteFilter!
CollectionEntityRelationDeleteFilter!
Int!
ID!
ID!
ID
ID
ID
ID
[ID!]
Boolean
Boolean
ID
ID
ID
ID
ID
[ID!]
ID
IntFieldComparisonBetween
Int
Int
Int
[Int!]
Boolean
Boolean
Int
Int
Int
IntFieldComparisonBetween
[Int!]
Int!
Int!
NetworkCapabilities
NetworkCapabilities
NetworkCapabilities
NetworkCapabilities
[NetworkCapabilities!]
Boolean
Boolean
NetworkCapabilities
NetworkCapabilities
NetworkCapabilities
NetworkCapabilities
NetworkCapabilities
[NetworkCapabilities!]
NetworkCapabilities
NetworkCapabilities!
NetworkCapabilities!
[NetworkCapabilityFilter!]
NetworkCapabilitiesFilterComparison
[NetworkCapabilityFilter!]
SortDirection!
NetworkCapabilitySortFields!
SortNulls
String!
String!
String!
String!
[NetworkCapability!]!
NetworkCapabilityFilter!
[NetworkCapabilitySort!]!
Int!
DateTime!
Int!
String
String!
ID!
String!
String!
String
String
String!
Int!
NetworkName!
String
String
String
String!
DateTime!
[NetworkConfig!]!
OffsetPageInfo!
Int!
StringFieldComparison
StringFieldComparison
StringFieldComparison
StringFieldComparison
[NetworkConfigFilter!]
NetworkConfigFilterNetworkCapabilityFilter
IntFieldComparison
DateFieldComparison
IntFieldComparison
StringFieldComparison
StringFieldComparison
IDFilterComparison
StringFieldComparison
StringFieldComparison
StringFieldComparison
StringFieldComparison
StringFieldComparison
IntFieldComparison
NetworkNameFilterComparison
StringFieldComparison
[NetworkConfigFilter!]
StringFieldComparison
StringFieldComparison
StringFieldComparison
DateFieldComparison
[NetworkConfigFilterNetworkCapabilityFilter!]
NetworkCapabilitiesFilterComparison
[NetworkConfigFilterNetworkCapabilityFilter!]
[NetworkCapabilitiesModel!]!
Float!
Boolean!
NetworkName!
String!
SortDirection!
NetworkConfigSortFields!
SortNulls
String!
String!
[NetworkCapabilitiesModel!]!
Float!
DateTime!
CurrenciesModel
String!
String!
String!
String!
Boolean!
String!
String!
String
String
NetworkName!
String
DateTime!
NetworkName
NetworkName
NetworkName
NetworkName
[NetworkName!]
Boolean
Boolean
NetworkName
NetworkName
NetworkName
NetworkName
NetworkName
[NetworkName!]
NetworkName
NumberFieldComparisonBetween
Float
Float
Float
[Float!]
Boolean
Boolean
Float
Float
Float
NumberFieldComparisonBetween
[Float!]
Float!
Float!
Boolean
Boolean
Int
Int
String!
[RedirectDomainFilter!]
StringFieldComparison
[RedirectDomainFilter!]
SortDirection!
RedirectDomainSortFields!
SortNulls
String!
String!
String!
FileType!
String!
String
String
String
String
[String!]
Boolean
Boolean
String
String
String
String
String
[String!]
String
DateTime!
ID!
Float
String!
String
String!
DateTime!
String
String
String
String
String
String
CollectionEntityUpdateFilter!
UpdateCollectionEntity!
Int!
ID!
UpdateCollectionEntity!