├── .gitignore
├── CHANGELOG.md
├── README.md
├── babel.config.js
├── docs
├── APIs
│ ├── _category_.json
│ ├── authentication
│ │ ├── _category_.json
│ │ ├── api-key.md
│ │ ├── register-signing-key.md
│ │ └── user-login.md
│ ├── mutation
│ │ ├── _category_.json
│ │ ├── collect-essence.md
│ │ ├── follow.md
│ │ ├── middleware-essence.md
│ │ ├── middleware-subscribe.md
│ │ ├── register-essence.md
│ │ └── subscribe.md
│ ├── query
│ │ ├── _category_.json
│ │ ├── address.md
│ │ ├── collected-essences.md
│ │ ├── following-relationships.md
│ │ ├── identity.md
│ │ ├── profiles.md
│ │ ├── subscribing-relationships.md
│ │ └── verify-essence-metadata.md
│ └── recommendation-engine
│ │ ├── _category_.json
│ │ ├── feed.md
│ │ ├── labels.md
│ │ └── recommendation.md
├── build-with-cyberconnect.md
├── cheat-sheet.md
├── concepts
│ ├── _category_.json
│ ├── connection.md
│ ├── content.md
│ ├── identity.md
│ ├── metadata.md
│ ├── middleware.md
│ └── overview.md
├── overview
│ ├── _category_.json
│ ├── interest-graph-engine.md
│ └── social-data-network.md
├── protocol
│ ├── _category_.json
│ ├── design-principles.md
│ ├── interest-graph-engine
│ │ ├── _category_.json
│ │ ├── data-indexing.md
│ │ └── recommendation.md
│ └── social-data-network
│ │ ├── _category_.json
│ │ ├── data-infrastructure.md
│ │ └── smart-contract.md
├── reference
│ ├── _category_.json
│ ├── directives
│ │ ├── _category_.yml
│ │ ├── api-key-required.mdx
│ │ ├── authenticated.mdx
│ │ ├── deprecated.mdx
│ │ ├── go-field.mdx
│ │ ├── go-model.mdx
│ │ ├── go-tag.mdx
│ │ ├── include.mdx
│ │ ├── skip.mdx
│ │ └── specified-by.mdx
│ ├── enums
│ │ ├── _category_.yml
│ │ ├── avatar-type.mdx
│ │ ├── middleware-type.mdx
│ │ ├── name-type.mdx
│ │ ├── order-direction.mdx
│ │ ├── profile-order-field.mdx
│ │ └── profile-type.mdx
│ ├── graphql.md
│ ├── inputs
│ │ ├── _category_.yml
│ │ ├── attribute.mdx
│ │ ├── collect-essence-typed-data-options.mdx
│ │ ├── collect-order.mdx
│ │ ├── collect-paid-mw-params.mdx
│ │ ├── collect-permission-mw-params.mdx
│ │ ├── create-apikey-input.mdx
│ │ ├── create-collect-essence-typed-data-input.mdx
│ │ ├── create-register-essence-typed-data-input.mdx
│ │ ├── create-set-essence-data-typed-data-input.mdx
│ │ ├── create-set-subscribe-data-typed-data-input.mdx
│ │ ├── create-subscribe-typed-data-input.mdx
│ │ ├── custom-mw-params.mdx
│ │ ├── essence-middleware.mdx
│ │ ├── essence-order.mdx
│ │ ├── follow-input.mdx
│ │ ├── follow-order.mdx
│ │ ├── login-get-message-input.mdx
│ │ ├── login-verify-input.mdx
│ │ ├── media.mdx
│ │ ├── profile-order.mdx
│ │ ├── register-essence-typed-data-options.mdx
│ │ ├── register-signing-key-input.mdx
│ │ ├── relay-input.mdx
│ │ ├── subscribe-middleware.mdx
│ │ ├── subscribe-order.mdx
│ │ ├── subscribe-paid-mw-params.mdx
│ │ ├── typed-data-options.mdx
│ │ ├── unfollow-input.mdx
│ │ ├── verify-essence-metadata-input.mdx
│ │ └── wallet-order.mdx
│ ├── interfaces
│ │ ├── _category_.yml
│ │ ├── contract.mdx
│ │ └── node.mdx
│ ├── mutations
│ │ ├── _category_.yml
│ │ ├── create-apikey.mdx
│ │ ├── create-collect-essence-typed-data.mdx
│ │ ├── create-register-essence-typed-data.mdx
│ │ ├── create-set-essence-data-typed-data.mdx
│ │ ├── create-set-subscribe-data-typed-data.mdx
│ │ ├── create-subscribe-typed-data.mdx
│ │ ├── follow.mdx
│ │ ├── login-get-message.mdx
│ │ ├── login-verify.mdx
│ │ ├── register-signing-key.mdx
│ │ ├── relay.mdx
│ │ └── unfollow.mdx
│ ├── objects
│ │ ├── _category_.yml
│ │ ├── address.mdx
│ │ ├── blockchain-time.mdx
│ │ ├── collect-connection.mdx
│ │ ├── collect-edge.mdx
│ │ ├── collect.mdx
│ │ ├── create-apikey-result.mdx
│ │ ├── create-collect-essence-typed-data-result.mdx
│ │ ├── create-register-essence-typed-data-result.mdx
│ │ ├── create-set-essence-data-typed-data-result.mdx
│ │ ├── create-set-subscribe-data-typed-data-result.mdx
│ │ ├── create-subscribe-typed-data-result.mdx
│ │ ├── ensinfo.mdx
│ │ ├── erc1155.mdx
│ │ ├── erc20.mdx
│ │ ├── erc721.mdx
│ │ ├── erctransfer-card.mdx
│ │ ├── essence-connection.mdx
│ │ ├── essence-edge.mdx
│ │ ├── essence.mdx
│ │ ├── follow-connection.mdx
│ │ ├── follow-edge.mdx
│ │ ├── follow-response.mdx
│ │ ├── follow-stats.mdx
│ │ ├── follow.mdx
│ │ ├── github-info.mdx
│ │ ├── identity.mdx
│ │ ├── label.mdx
│ │ ├── login-get-message-result.mdx
│ │ ├── login-verify-result.mdx
│ │ ├── metadata-detail.mdx
│ │ ├── middleware-info.mdx
│ │ ├── namespace.mdx
│ │ ├── page-info.mdx
│ │ ├── profile-connection.mdx
│ │ ├── profile-edge.mdx
│ │ ├── profile.mdx
│ │ ├── project-level-interaction.mdx
│ │ ├── recommendation.mdx
│ │ ├── register-key-response.mdx
│ │ ├── relay-result.mdx
│ │ ├── relay-transaction.mdx
│ │ ├── social-info.mdx
│ │ ├── subscribe-connection.mdx
│ │ ├── subscribe-edge.mdx
│ │ ├── subscribe.mdx
│ │ ├── system-status.mdx
│ │ ├── token-info.mdx
│ │ ├── token-recommendation.mdx
│ │ ├── twitter-info.mdx
│ │ ├── typed-data.mdx
│ │ ├── unfollow-response.mdx
│ │ ├── user-recommendation.mdx
│ │ ├── verify-essence-metadata-result.mdx
│ │ ├── wallet-connection.mdx
│ │ ├── wallet-edge.mdx
│ │ ├── wallet-metadata.mdx
│ │ └── wallet.mdx
│ ├── queries
│ │ ├── _category_.yml
│ │ ├── address.mdx
│ │ ├── batch-get-addresses.mdx
│ │ ├── essence-by-filter.mdx
│ │ ├── node.mdx
│ │ ├── nodes.mdx
│ │ ├── profile-by-handle.mdx
│ │ ├── profile-by-id.mdx
│ │ ├── profiles-by-handles.mdx
│ │ ├── profiles-by-ids.mdx
│ │ ├── profiles.mdx
│ │ ├── synced-at.mdx
│ │ ├── system-status.mdx
│ │ └── verify-essence-metadata.mdx
│ ├── scalars
│ │ ├── _category_.yml
│ │ ├── address-evm.mdx
│ │ ├── boolean.mdx
│ │ ├── caip10-id.mdx
│ │ ├── chain-id.mdx
│ │ ├── contract-address-evm.mdx
│ │ ├── cursor.mdx
│ │ ├── float.mdx
│ │ ├── id.mdx
│ │ ├── int.mdx
│ │ ├── profile-id.mdx
│ │ ├── string.mdx
│ │ └── url.mdx
│ ├── sidebar-schema.js
│ └── unions
│ │ ├── _category_.yml
│ │ └── token.mdx
├── tutorials
│ ├── _category_.json
│ ├── build-badge-app
│ │ ├── _category_.json
│ │ ├── authentication.md
│ │ ├── collect-a-badge.md
│ │ ├── create-a-badge.md
│ │ ├── create-a-profile.md
│ │ └── quick_setup.md
│ ├── build-content-app
│ │ ├── _category_.json
│ │ ├── authentication.md
│ │ ├── collect-a-post.md
│ │ ├── create-a-post.md
│ │ ├── create-a-profile.md
│ │ ├── middelware-for-subscribe.md
│ │ ├── middleware-for-post.md
│ │ ├── quick_setup.md
│ │ └── subscribe-to-profile.md
│ └── create-nft-with-backend
│ │ ├── _category_.json
│ │ └── overview.md
└── welcome.md
├── docusaurus.config.js
├── i18n
└── zh
│ ├── code.json
│ └── docusaurus-plugin-content-docs
│ ├── current.json
│ ├── current
│ ├── changelog
│ │ ├── 0.3.0.md
│ │ ├── 0.4.0.md
│ │ ├── 0.5.0.md
│ │ ├── 0.6.0.md
│ │ ├── 0.7.0.md
│ │ ├── 0.8.0.md
│ │ └── _category_.json
│ ├── concepts
│ │ ├── _category_.json
│ │ ├── bidirectional-connection.mdx
│ │ ├── connection.mdx
│ │ ├── identity.md
│ │ ├── notification.md
│ │ ├── recommend.md
│ │ └── social-graph.md
│ ├── cyberconnect-api
│ │ ├── _category_.json
│ │ ├── graphql-api
│ │ │ ├── _category_.json
│ │ │ ├── connections.mdx
│ │ │ ├── identity.mdx
│ │ │ ├── nft-owners.mdx
│ │ │ ├── rankings.mdx
│ │ │ └── recommendations.mdx
│ │ ├── overview.md
│ │ ├── playground.mdx
│ │ ├── reference
│ │ │ ├── _category_.json
│ │ │ ├── directives
│ │ │ │ ├── _category_.yml
│ │ │ │ ├── admin.mdx
│ │ │ │ ├── deprecated.mdx
│ │ │ │ ├── include.mdx
│ │ │ │ ├── skip.mdx
│ │ │ │ └── specified-by.mdx
│ │ │ ├── enums
│ │ │ │ ├── _category_.yml
│ │ │ │ ├── connection-type.mdx
│ │ │ │ ├── network.mdx
│ │ │ │ ├── recomm-filter.mdx
│ │ │ │ ├── recommendation-response-result.mdx
│ │ │ │ └── tag.mdx
│ │ │ ├── graphql.md
│ │ │ ├── inputs
│ │ │ │ ├── _category_.yml
│ │ │ │ └── tags-input.mdx
│ │ │ ├── interfaces
│ │ │ │ └── node.mdx
│ │ │ ├── objects
│ │ │ │ ├── _category_.yml
│ │ │ │ ├── connect.mdx
│ │ │ │ ├── connection-identity-page.mdx
│ │ │ │ ├── connection.mdx
│ │ │ │ ├── follow-status.mdx
│ │ │ │ ├── github.mdx
│ │ │ │ ├── nftowner.mdx
│ │ │ │ ├── page-info.mdx
│ │ │ │ ├── popular-page.mdx
│ │ │ │ ├── popular.mdx
│ │ │ │ ├── ranking.mdx
│ │ │ │ ├── recommendation-page.mdx
│ │ │ │ ├── recommendation-response.mdx
│ │ │ │ ├── recommendation.mdx
│ │ │ │ ├── social.mdx
│ │ │ │ ├── twitter.mdx
│ │ │ │ ├── user-identity-page.mdx
│ │ │ │ └── user-identity.mdx
│ │ │ ├── queries
│ │ │ │ ├── _category_.yml
│ │ │ │ ├── connections.mdx
│ │ │ │ ├── following-alias.mdx
│ │ │ │ ├── identity.mdx
│ │ │ │ ├── nft-owners.mdx
│ │ │ │ ├── proof.mdx
│ │ │ │ ├── rankings.mdx
│ │ │ │ └── recommendations.mdx
│ │ │ ├── scalars
│ │ │ │ ├── _category_.yml
│ │ │ │ ├── boolean.mdx
│ │ │ │ ├── id.mdx
│ │ │ │ ├── int.mdx
│ │ │ │ └── string.mdx
│ │ │ └── sidebar-schema.js
│ │ └── rest-api
│ │ │ ├── _category_.json
│ │ │ ├── avatar.md
│ │ │ └── profile.md
│ ├── cyberconnect-sdk
│ │ ├── _category_.json
│ │ ├── connect-with-follow-button.md
│ │ ├── connect-with-ios-sdk.md
│ │ ├── connect-with-js-sdk.md
│ │ ├── connect-with-social-verifier.md
│ │ └── overview.md
│ ├── get-started
│ │ ├── Scaffold-Eth-Starter-Kit
│ │ │ ├── create-connection.mdx
│ │ │ ├── intro.mdx
│ │ │ └── read-profile.mdx
│ │ ├── _category_.json
│ │ ├── create-a-connection.mdx
│ │ ├── overview.mdx
│ │ ├── quick-setup.mdx
│ │ ├── read-a-profile.mdx
│ │ ├── read-connections.mdx
│ │ ├── read-identity.mdx
│ │ ├── read-nft-ownership.mdx
│ │ ├── read-notifications.mdx
│ │ ├── read-recommendations.mdx
│ │ └── verify-a-twitter-account.mdx
│ ├── overview
│ │ ├── _category_.json
│ │ ├── build-with-cyberconnect.mdx
│ │ ├── cheat-sheet.mdx
│ │ ├── community.mdx
│ │ ├── showcase.mdx
│ │ └── what-is-cyberconnect.md
│ ├── protocol
│ │ ├── _category_.json
│ │ ├── cyberconnect-indexer.md
│ │ ├── proof-of-connection.mdx
│ │ └── technical-framework.md
│ ├── resources
│ │ ├── _category_.json
│ │ ├── repositories.mdx
│ │ └── terminology
│ │ │ ├── _category_.json
│ │ │ ├── namespace.mdx
│ │ │ └── pagination.md
│ ├── tutorials
│ │ └── _category_.json
│ └── welcome.mdx
│ ├── version-0.10.0
│ ├── changelog
│ │ ├── 0.3.0.md
│ │ ├── 0.4.0.md
│ │ ├── 0.5.0.md
│ │ ├── 0.6.0.md
│ │ ├── 0.7.0.md
│ │ ├── 0.8.0.md
│ │ └── _category_.json
│ ├── concepts
│ │ ├── _category_.json
│ │ ├── bidirectional-connection.mdx
│ │ ├── connection.mdx
│ │ ├── identity.md
│ │ ├── notification.md
│ │ ├── recommend.md
│ │ └── social-graph.md
│ ├── cyberconnect-api
│ │ ├── _category_.json
│ │ ├── graphql-api
│ │ │ ├── _category_.json
│ │ │ ├── connections.mdx
│ │ │ ├── identity.mdx
│ │ │ ├── nft-owners.mdx
│ │ │ ├── rankings.mdx
│ │ │ └── recommendations.mdx
│ │ ├── overview.md
│ │ ├── playground.mdx
│ │ ├── reference
│ │ │ ├── _category_.json
│ │ │ ├── directives
│ │ │ │ ├── _category_.yml
│ │ │ │ ├── admin.mdx
│ │ │ │ ├── deprecated.mdx
│ │ │ │ ├── include.mdx
│ │ │ │ ├── skip.mdx
│ │ │ │ └── specified-by.mdx
│ │ │ ├── enums
│ │ │ │ ├── _category_.yml
│ │ │ │ ├── connection-type.mdx
│ │ │ │ ├── network.mdx
│ │ │ │ ├── recomm-filter.mdx
│ │ │ │ ├── recommendation-response-result.mdx
│ │ │ │ └── tag.mdx
│ │ │ ├── graphql.md
│ │ │ ├── inputs
│ │ │ │ ├── _category_.yml
│ │ │ │ └── tags-input.mdx
│ │ │ ├── interfaces
│ │ │ │ └── node.mdx
│ │ │ ├── objects
│ │ │ │ ├── _category_.yml
│ │ │ │ ├── connect.mdx
│ │ │ │ ├── connection-identity-page.mdx
│ │ │ │ ├── connection.mdx
│ │ │ │ ├── follow-status.mdx
│ │ │ │ ├── github.mdx
│ │ │ │ ├── nftowner.mdx
│ │ │ │ ├── page-info.mdx
│ │ │ │ ├── popular-page.mdx
│ │ │ │ ├── popular.mdx
│ │ │ │ ├── ranking.mdx
│ │ │ │ ├── recommendation-page.mdx
│ │ │ │ ├── recommendation-response.mdx
│ │ │ │ ├── recommendation.mdx
│ │ │ │ ├── social.mdx
│ │ │ │ ├── twitter.mdx
│ │ │ │ ├── user-identity-page.mdx
│ │ │ │ └── user-identity.mdx
│ │ │ ├── queries
│ │ │ │ ├── _category_.yml
│ │ │ │ ├── connections.mdx
│ │ │ │ ├── following-alias.mdx
│ │ │ │ ├── identity.mdx
│ │ │ │ ├── nft-owners.mdx
│ │ │ │ ├── proof.mdx
│ │ │ │ ├── rankings.mdx
│ │ │ │ └── recommendations.mdx
│ │ │ ├── scalars
│ │ │ │ ├── _category_.yml
│ │ │ │ ├── boolean.mdx
│ │ │ │ ├── id.mdx
│ │ │ │ ├── int.mdx
│ │ │ │ └── string.mdx
│ │ │ └── sidebar-schema.js
│ │ └── rest-api
│ │ │ ├── _category_.json
│ │ │ ├── avatar.md
│ │ │ └── profile.md
│ ├── cyberconnect-sdk
│ │ ├── _category_.json
│ │ ├── connect-with-follow-button.md
│ │ ├── connect-with-ios-sdk.md
│ │ ├── connect-with-js-sdk.md
│ │ ├── connect-with-social-verifier.md
│ │ └── overview.md
│ ├── get-started
│ │ ├── Scaffold-Eth-Starter-Kit
│ │ │ ├── create-connection.mdx
│ │ │ ├── intro.mdx
│ │ │ └── read-profile.mdx
│ │ ├── _category_.json
│ │ ├── create-a-connection.mdx
│ │ ├── overview.mdx
│ │ ├── quick-setup.mdx
│ │ ├── read-a-profile.mdx
│ │ ├── read-connections.mdx
│ │ ├── read-identity.mdx
│ │ ├── read-nft-ownership.mdx
│ │ ├── read-notifications.mdx
│ │ ├── read-recommendations.mdx
│ │ └── verify-a-twitter-account.mdx
│ ├── overview
│ │ ├── _category_.json
│ │ ├── build-with-cyberconnect.mdx
│ │ ├── cheat-sheet.mdx
│ │ ├── community.mdx
│ │ ├── showcase.mdx
│ │ └── what-is-cyberconnect.md
│ ├── protocol
│ │ ├── _category_.json
│ │ ├── cyberconnect-indexer.md
│ │ ├── proof-of-connection.mdx
│ │ └── technical-framework.md
│ ├── resources
│ │ ├── _category_.json
│ │ ├── repositories.mdx
│ │ └── terminology
│ │ │ ├── _category_.json
│ │ │ ├── namespace.mdx
│ │ │ └── pagination.md
│ ├── tutorials
│ │ └── _category_.json
│ └── welcome.mdx
│ ├── version-0.4.0.json
│ ├── version-0.5.0.json
│ ├── version-0.5.0
│ ├── changelog
│ │ ├── 0.3.0.md
│ │ ├── 0.4.0.md
│ │ └── _category_.json
│ ├── concepts
│ │ ├── _category_.json
│ │ ├── connection.mdx
│ │ ├── identity.md
│ │ ├── recommend.md
│ │ └── social-graph.md
│ ├── cyberconnect-api
│ │ ├── _category_.json
│ │ ├── graphql-api
│ │ │ ├── _category_.json
│ │ │ ├── connections.mdx
│ │ │ ├── identity.mdx
│ │ │ ├── nft-owners.mdx
│ │ │ ├── rankings.mdx
│ │ │ └── recommendations.mdx
│ │ ├── overview.md
│ │ ├── playground.mdx
│ │ ├── reference
│ │ │ ├── _category_.json
│ │ │ ├── directives
│ │ │ │ ├── _category_.yml
│ │ │ │ ├── admin.mdx
│ │ │ │ ├── deprecated.mdx
│ │ │ │ ├── include.mdx
│ │ │ │ ├── skip.mdx
│ │ │ │ └── specified-by.mdx
│ │ │ ├── enums
│ │ │ │ ├── _category_.yml
│ │ │ │ ├── connection-type.mdx
│ │ │ │ ├── network.mdx
│ │ │ │ ├── recomm-filter.mdx
│ │ │ │ ├── recommendation-response-result.mdx
│ │ │ │ └── tag.mdx
│ │ │ ├── graphql.md
│ │ │ ├── inputs
│ │ │ │ ├── _category_.yml
│ │ │ │ └── tags-input.mdx
│ │ │ ├── interfaces
│ │ │ │ └── node.mdx
│ │ │ ├── objects
│ │ │ │ ├── _category_.yml
│ │ │ │ ├── connect.mdx
│ │ │ │ ├── connection-identity-page.mdx
│ │ │ │ ├── connection.mdx
│ │ │ │ ├── follow-status.mdx
│ │ │ │ ├── github.mdx
│ │ │ │ ├── nftowner.mdx
│ │ │ │ ├── page-info.mdx
│ │ │ │ ├── popular-page.mdx
│ │ │ │ ├── popular.mdx
│ │ │ │ ├── ranking.mdx
│ │ │ │ ├── recommendation-page.mdx
│ │ │ │ ├── recommendation-response.mdx
│ │ │ │ ├── recommendation.mdx
│ │ │ │ ├── social.mdx
│ │ │ │ ├── twitter.mdx
│ │ │ │ ├── user-identity-page.mdx
│ │ │ │ └── user-identity.mdx
│ │ │ ├── queries
│ │ │ │ ├── _category_.yml
│ │ │ │ ├── connections.mdx
│ │ │ │ ├── following-alias.mdx
│ │ │ │ ├── identity.mdx
│ │ │ │ ├── nft-owners.mdx
│ │ │ │ ├── proof.mdx
│ │ │ │ ├── rankings.mdx
│ │ │ │ └── recommendations.mdx
│ │ │ ├── scalars
│ │ │ │ ├── _category_.yml
│ │ │ │ ├── boolean.mdx
│ │ │ │ ├── id.mdx
│ │ │ │ ├── int.mdx
│ │ │ │ └── string.mdx
│ │ │ └── sidebar-schema.js
│ │ └── rest-api
│ │ │ ├── _category_.json
│ │ │ ├── avatar.md
│ │ │ └── profile.md
│ ├── cyberconnect-sdk
│ │ ├── _category_.json
│ │ ├── connect-with-follow-button.md
│ │ ├── connect-with-ios-sdk.md
│ │ ├── connect-with-js-sdk.md
│ │ ├── connect-with-social-verifier.md
│ │ └── overview.md
│ ├── get-started
│ │ ├── _category_.json
│ │ ├── create-a-connection.mdx
│ │ ├── overview.mdx
│ │ ├── quick-setup.mdx
│ │ ├── read-a-profile.mdx
│ │ ├── read-connections.mdx
│ │ ├── read-identity.mdx
│ │ ├── read-nft-ownership.mdx
│ │ ├── read-recommendations.mdx
│ │ └── verify-a-twitter-account.mdx
│ ├── overview
│ │ ├── _category_.json
│ │ ├── build-with-cyberconnect.mdx
│ │ ├── cheat-sheet.mdx
│ │ ├── community.mdx
│ │ └── what-is-cyberconnect.md
│ ├── protocol
│ │ ├── _category_.json
│ │ ├── cyberconnect-indexer.md
│ │ ├── proof-of-connection.mdx
│ │ └── technical-framework.md
│ ├── resources
│ │ ├── _category_.json
│ │ ├── repositories.mdx
│ │ └── terminology
│ │ │ ├── _category_.json
│ │ │ ├── namespace.mdx
│ │ │ └── pagination.md
│ ├── tutorials
│ │ └── _category_.json
│ └── welcome.mdx
│ ├── version-0.6.0.json
│ ├── version-0.6.0
│ ├── changelog
│ │ ├── 0.3.0.md
│ │ ├── 0.4.0.md
│ │ ├── 0.5.0.md
│ │ ├── 0.6.0.md
│ │ └── _category_.json
│ ├── concepts
│ │ ├── _category_.json
│ │ ├── bidirectional-connection.mdx
│ │ ├── connection.mdx
│ │ ├── identity.md
│ │ ├── notification.md
│ │ ├── recommend.md
│ │ └── social-graph.md
│ ├── cyberconnect-api
│ │ ├── _category_.json
│ │ ├── graphql-api
│ │ │ ├── _category_.json
│ │ │ ├── connections.mdx
│ │ │ ├── identity.mdx
│ │ │ ├── nft-owners.mdx
│ │ │ ├── rankings.mdx
│ │ │ └── recommendations.mdx
│ │ ├── overview.md
│ │ ├── playground.mdx
│ │ ├── reference
│ │ │ ├── _category_.json
│ │ │ ├── directives
│ │ │ │ ├── _category_.yml
│ │ │ │ ├── admin.mdx
│ │ │ │ ├── deprecated.mdx
│ │ │ │ ├── include.mdx
│ │ │ │ ├── skip.mdx
│ │ │ │ └── specified-by.mdx
│ │ │ ├── enums
│ │ │ │ ├── _category_.yml
│ │ │ │ ├── connection-type.mdx
│ │ │ │ ├── network.mdx
│ │ │ │ ├── recomm-filter.mdx
│ │ │ │ ├── recommendation-response-result.mdx
│ │ │ │ └── tag.mdx
│ │ │ ├── graphql.md
│ │ │ ├── inputs
│ │ │ │ ├── _category_.yml
│ │ │ │ └── tags-input.mdx
│ │ │ ├── interfaces
│ │ │ │ └── node.mdx
│ │ │ ├── objects
│ │ │ │ ├── _category_.yml
│ │ │ │ ├── connect.mdx
│ │ │ │ ├── connection-identity-page.mdx
│ │ │ │ ├── connection.mdx
│ │ │ │ ├── follow-status.mdx
│ │ │ │ ├── github.mdx
│ │ │ │ ├── nftowner.mdx
│ │ │ │ ├── page-info.mdx
│ │ │ │ ├── popular-page.mdx
│ │ │ │ ├── popular.mdx
│ │ │ │ ├── ranking.mdx
│ │ │ │ ├── recommendation-page.mdx
│ │ │ │ ├── recommendation-response.mdx
│ │ │ │ ├── recommendation.mdx
│ │ │ │ ├── social.mdx
│ │ │ │ ├── twitter.mdx
│ │ │ │ ├── user-identity-page.mdx
│ │ │ │ └── user-identity.mdx
│ │ │ ├── queries
│ │ │ │ ├── _category_.yml
│ │ │ │ ├── connections.mdx
│ │ │ │ ├── following-alias.mdx
│ │ │ │ ├── identity.mdx
│ │ │ │ ├── nft-owners.mdx
│ │ │ │ ├── proof.mdx
│ │ │ │ ├── rankings.mdx
│ │ │ │ └── recommendations.mdx
│ │ │ ├── scalars
│ │ │ │ ├── _category_.yml
│ │ │ │ ├── boolean.mdx
│ │ │ │ ├── id.mdx
│ │ │ │ ├── int.mdx
│ │ │ │ └── string.mdx
│ │ │ └── sidebar-schema.js
│ │ └── rest-api
│ │ │ ├── _category_.json
│ │ │ ├── avatar.md
│ │ │ └── profile.md
│ ├── cyberconnect-sdk
│ │ ├── _category_.json
│ │ ├── connect-with-follow-button.md
│ │ ├── connect-with-ios-sdk.md
│ │ ├── connect-with-js-sdk.md
│ │ ├── connect-with-social-verifier.md
│ │ └── overview.md
│ ├── get-started
│ │ ├── _category_.json
│ │ ├── create-a-connection.mdx
│ │ ├── overview.mdx
│ │ ├── quick-setup.mdx
│ │ ├── read-a-profile.mdx
│ │ ├── read-connections.mdx
│ │ ├── read-identity.mdx
│ │ ├── read-nft-ownership.mdx
│ │ ├── read-recommendations.mdx
│ │ └── verify-a-twitter-account.mdx
│ ├── overview
│ │ ├── _category_.json
│ │ ├── build-with-cyberconnect.mdx
│ │ ├── cheat-sheet.mdx
│ │ ├── community.mdx
│ │ └── what-is-cyberconnect.md
│ ├── protocol
│ │ ├── _category_.json
│ │ ├── cyberconnect-indexer.md
│ │ ├── proof-of-connection.mdx
│ │ └── technical-framework.md
│ ├── resources
│ │ ├── _category_.json
│ │ ├── repositories.mdx
│ │ └── terminology
│ │ │ ├── _category_.json
│ │ │ ├── namespace.mdx
│ │ │ └── pagination.md
│ ├── tutorials
│ │ └── _category_.json
│ └── welcome.mdx
│ ├── version-0.7.0.json
│ ├── version-0.7.0
│ ├── changelog
│ │ ├── 0.3.0.md
│ │ ├── 0.4.0.md
│ │ ├── 0.5.0.md
│ │ ├── 0.6.0.md
│ │ ├── 0.7.0.md
│ │ └── _category_.json
│ ├── concepts
│ │ ├── _category_.json
│ │ ├── bidirectional-connection.mdx
│ │ ├── connection.mdx
│ │ ├── identity.md
│ │ ├── notification.md
│ │ ├── recommend.md
│ │ └── social-graph.md
│ ├── cyberconnect-api
│ │ ├── _category_.json
│ │ ├── graphql-api
│ │ │ ├── _category_.json
│ │ │ ├── connections.mdx
│ │ │ ├── identity.mdx
│ │ │ ├── nft-owners.mdx
│ │ │ ├── rankings.mdx
│ │ │ └── recommendations.mdx
│ │ ├── overview.md
│ │ ├── playground.mdx
│ │ ├── reference
│ │ │ ├── _category_.json
│ │ │ ├── directives
│ │ │ │ ├── _category_.yml
│ │ │ │ ├── admin.mdx
│ │ │ │ ├── deprecated.mdx
│ │ │ │ ├── include.mdx
│ │ │ │ ├── skip.mdx
│ │ │ │ └── specified-by.mdx
│ │ │ ├── enums
│ │ │ │ ├── _category_.yml
│ │ │ │ ├── connection-type.mdx
│ │ │ │ ├── network.mdx
│ │ │ │ ├── recomm-filter.mdx
│ │ │ │ ├── recommendation-response-result.mdx
│ │ │ │ └── tag.mdx
│ │ │ ├── graphql.md
│ │ │ ├── inputs
│ │ │ │ ├── _category_.yml
│ │ │ │ └── tags-input.mdx
│ │ │ ├── interfaces
│ │ │ │ └── node.mdx
│ │ │ ├── objects
│ │ │ │ ├── _category_.yml
│ │ │ │ ├── connect.mdx
│ │ │ │ ├── connection-identity-page.mdx
│ │ │ │ ├── connection.mdx
│ │ │ │ ├── follow-status.mdx
│ │ │ │ ├── github.mdx
│ │ │ │ ├── nftowner.mdx
│ │ │ │ ├── page-info.mdx
│ │ │ │ ├── popular-page.mdx
│ │ │ │ ├── popular.mdx
│ │ │ │ ├── ranking.mdx
│ │ │ │ ├── recommendation-page.mdx
│ │ │ │ ├── recommendation-response.mdx
│ │ │ │ ├── recommendation.mdx
│ │ │ │ ├── social.mdx
│ │ │ │ ├── twitter.mdx
│ │ │ │ ├── user-identity-page.mdx
│ │ │ │ └── user-identity.mdx
│ │ │ ├── queries
│ │ │ │ ├── _category_.yml
│ │ │ │ ├── connections.mdx
│ │ │ │ ├── following-alias.mdx
│ │ │ │ ├── identity.mdx
│ │ │ │ ├── nft-owners.mdx
│ │ │ │ ├── proof.mdx
│ │ │ │ ├── rankings.mdx
│ │ │ │ └── recommendations.mdx
│ │ │ ├── scalars
│ │ │ │ ├── _category_.yml
│ │ │ │ ├── boolean.mdx
│ │ │ │ ├── id.mdx
│ │ │ │ ├── int.mdx
│ │ │ │ └── string.mdx
│ │ │ └── sidebar-schema.js
│ │ └── rest-api
│ │ │ ├── _category_.json
│ │ │ ├── avatar.md
│ │ │ └── profile.md
│ ├── cyberconnect-sdk
│ │ ├── _category_.json
│ │ ├── connect-with-follow-button.md
│ │ ├── connect-with-ios-sdk.md
│ │ ├── connect-with-js-sdk.md
│ │ ├── connect-with-social-verifier.md
│ │ └── overview.md
│ ├── get-started
│ │ ├── Scaffold-Eth-Starter-Kit
│ │ │ ├── create-connection.mdx
│ │ │ ├── intro.mdx
│ │ │ └── read-profile.mdx
│ │ ├── _category_.json
│ │ ├── create-a-connection.mdx
│ │ ├── overview.mdx
│ │ ├── quick-setup.mdx
│ │ ├── read-a-profile.mdx
│ │ ├── read-connections.mdx
│ │ ├── read-identity.mdx
│ │ ├── read-nft-ownership.mdx
│ │ ├── read-notifications.mdx
│ │ ├── read-recommendations.mdx
│ │ └── verify-a-twitter-account.mdx
│ ├── overview
│ │ ├── _category_.json
│ │ ├── build-with-cyberconnect.mdx
│ │ ├── cheat-sheet.mdx
│ │ ├── community.mdx
│ │ └── what-is-cyberconnect.md
│ ├── protocol
│ │ ├── _category_.json
│ │ ├── cyberconnect-indexer.md
│ │ ├── proof-of-connection.mdx
│ │ └── technical-framework.md
│ ├── resources
│ │ ├── _category_.json
│ │ ├── repositories.mdx
│ │ └── terminology
│ │ │ ├── _category_.json
│ │ │ ├── namespace.mdx
│ │ │ └── pagination.md
│ ├── tutorials
│ │ └── _category_.json
│ └── welcome.mdx
│ ├── version-0.8.0.json
│ ├── version-0.8.0
│ ├── changelog
│ │ ├── 0.3.0.md
│ │ ├── 0.4.0.md
│ │ ├── 0.5.0.md
│ │ ├── 0.6.0.md
│ │ ├── 0.7.0.md
│ │ ├── 0.8.0.md
│ │ └── _category_.json
│ ├── concepts
│ │ ├── _category_.json
│ │ ├── bidirectional-connection.mdx
│ │ ├── connection.mdx
│ │ ├── identity.md
│ │ ├── notification.md
│ │ ├── recommend.md
│ │ └── social-graph.md
│ ├── cyberconnect-api
│ │ ├── _category_.json
│ │ ├── graphql-api
│ │ │ ├── _category_.json
│ │ │ ├── connections.mdx
│ │ │ ├── identity.mdx
│ │ │ ├── nft-owners.mdx
│ │ │ ├── rankings.mdx
│ │ │ └── recommendations.mdx
│ │ ├── overview.md
│ │ ├── playground.mdx
│ │ ├── reference
│ │ │ ├── _category_.json
│ │ │ ├── directives
│ │ │ │ ├── _category_.yml
│ │ │ │ ├── admin.mdx
│ │ │ │ ├── deprecated.mdx
│ │ │ │ ├── include.mdx
│ │ │ │ ├── skip.mdx
│ │ │ │ └── specified-by.mdx
│ │ │ ├── enums
│ │ │ │ ├── _category_.yml
│ │ │ │ ├── connection-type.mdx
│ │ │ │ ├── network.mdx
│ │ │ │ ├── recomm-filter.mdx
│ │ │ │ ├── recommendation-response-result.mdx
│ │ │ │ └── tag.mdx
│ │ │ ├── graphql.md
│ │ │ ├── inputs
│ │ │ │ ├── _category_.yml
│ │ │ │ └── tags-input.mdx
│ │ │ ├── interfaces
│ │ │ │ └── node.mdx
│ │ │ ├── objects
│ │ │ │ ├── _category_.yml
│ │ │ │ ├── connect.mdx
│ │ │ │ ├── connection-identity-page.mdx
│ │ │ │ ├── connection.mdx
│ │ │ │ ├── follow-status.mdx
│ │ │ │ ├── github.mdx
│ │ │ │ ├── nftowner.mdx
│ │ │ │ ├── page-info.mdx
│ │ │ │ ├── popular-page.mdx
│ │ │ │ ├── popular.mdx
│ │ │ │ ├── ranking.mdx
│ │ │ │ ├── recommendation-page.mdx
│ │ │ │ ├── recommendation-response.mdx
│ │ │ │ ├── recommendation.mdx
│ │ │ │ ├── social.mdx
│ │ │ │ ├── twitter.mdx
│ │ │ │ ├── user-identity-page.mdx
│ │ │ │ └── user-identity.mdx
│ │ │ ├── queries
│ │ │ │ ├── _category_.yml
│ │ │ │ ├── connections.mdx
│ │ │ │ ├── following-alias.mdx
│ │ │ │ ├── identity.mdx
│ │ │ │ ├── nft-owners.mdx
│ │ │ │ ├── proof.mdx
│ │ │ │ ├── rankings.mdx
│ │ │ │ └── recommendations.mdx
│ │ │ ├── scalars
│ │ │ │ ├── _category_.yml
│ │ │ │ ├── boolean.mdx
│ │ │ │ ├── id.mdx
│ │ │ │ ├── int.mdx
│ │ │ │ └── string.mdx
│ │ │ └── sidebar-schema.js
│ │ └── rest-api
│ │ │ ├── _category_.json
│ │ │ ├── avatar.md
│ │ │ └── profile.md
│ ├── cyberconnect-sdk
│ │ ├── _category_.json
│ │ ├── connect-with-follow-button.md
│ │ ├── connect-with-ios-sdk.md
│ │ ├── connect-with-js-sdk.md
│ │ ├── connect-with-social-verifier.md
│ │ └── overview.md
│ ├── get-started
│ │ ├── Scaffold-Eth-Starter-Kit
│ │ │ ├── create-connection.mdx
│ │ │ ├── intro.mdx
│ │ │ └── read-profile.mdx
│ │ ├── _category_.json
│ │ ├── create-a-connection.mdx
│ │ ├── overview.mdx
│ │ ├── quick-setup.mdx
│ │ ├── read-a-profile.mdx
│ │ ├── read-connections.mdx
│ │ ├── read-identity.mdx
│ │ ├── read-nft-ownership.mdx
│ │ ├── read-notifications.mdx
│ │ ├── read-recommendations.mdx
│ │ └── verify-a-twitter-account.mdx
│ ├── overview
│ │ ├── _category_.json
│ │ ├── build-with-cyberconnect.mdx
│ │ ├── cheat-sheet.mdx
│ │ ├── community.mdx
│ │ ├── showcase.mdx
│ │ └── what-is-cyberconnect.md
│ ├── protocol
│ │ ├── _category_.json
│ │ ├── cyberconnect-indexer.md
│ │ ├── proof-of-connection.mdx
│ │ └── technical-framework.md
│ ├── resources
│ │ ├── _category_.json
│ │ ├── repositories.mdx
│ │ └── terminology
│ │ │ ├── _category_.json
│ │ │ ├── namespace.mdx
│ │ │ └── pagination.md
│ ├── tutorials
│ │ └── _category_.json
│ └── welcome.mdx
│ ├── version-0.9.0
│ ├── changelog
│ │ ├── 0.3.0.md
│ │ ├── 0.4.0.md
│ │ ├── 0.5.0.md
│ │ ├── 0.6.0.md
│ │ ├── 0.7.0.md
│ │ ├── 0.8.0.md
│ │ └── _category_.json
│ ├── concepts
│ │ ├── _category_.json
│ │ ├── bidirectional-connection.mdx
│ │ ├── connection.mdx
│ │ ├── identity.md
│ │ ├── notification.md
│ │ ├── recommend.md
│ │ └── social-graph.md
│ ├── cyberconnect-api
│ │ ├── _category_.json
│ │ ├── graphql-api
│ │ │ ├── _category_.json
│ │ │ ├── connections.mdx
│ │ │ ├── identity.mdx
│ │ │ ├── nft-owners.mdx
│ │ │ ├── rankings.mdx
│ │ │ └── recommendations.mdx
│ │ ├── overview.md
│ │ ├── playground.mdx
│ │ ├── reference
│ │ │ ├── _category_.json
│ │ │ ├── directives
│ │ │ │ ├── _category_.yml
│ │ │ │ ├── admin.mdx
│ │ │ │ ├── deprecated.mdx
│ │ │ │ ├── include.mdx
│ │ │ │ ├── skip.mdx
│ │ │ │ └── specified-by.mdx
│ │ │ ├── enums
│ │ │ │ ├── _category_.yml
│ │ │ │ ├── connection-type.mdx
│ │ │ │ ├── network.mdx
│ │ │ │ ├── recomm-filter.mdx
│ │ │ │ ├── recommendation-response-result.mdx
│ │ │ │ └── tag.mdx
│ │ │ ├── graphql.md
│ │ │ ├── inputs
│ │ │ │ ├── _category_.yml
│ │ │ │ └── tags-input.mdx
│ │ │ ├── interfaces
│ │ │ │ └── node.mdx
│ │ │ ├── objects
│ │ │ │ ├── _category_.yml
│ │ │ │ ├── connect.mdx
│ │ │ │ ├── connection-identity-page.mdx
│ │ │ │ ├── connection.mdx
│ │ │ │ ├── follow-status.mdx
│ │ │ │ ├── github.mdx
│ │ │ │ ├── nftowner.mdx
│ │ │ │ ├── page-info.mdx
│ │ │ │ ├── popular-page.mdx
│ │ │ │ ├── popular.mdx
│ │ │ │ ├── ranking.mdx
│ │ │ │ ├── recommendation-page.mdx
│ │ │ │ ├── recommendation-response.mdx
│ │ │ │ ├── recommendation.mdx
│ │ │ │ ├── social.mdx
│ │ │ │ ├── twitter.mdx
│ │ │ │ ├── user-identity-page.mdx
│ │ │ │ └── user-identity.mdx
│ │ │ ├── queries
│ │ │ │ ├── _category_.yml
│ │ │ │ ├── connections.mdx
│ │ │ │ ├── following-alias.mdx
│ │ │ │ ├── identity.mdx
│ │ │ │ ├── nft-owners.mdx
│ │ │ │ ├── proof.mdx
│ │ │ │ ├── rankings.mdx
│ │ │ │ └── recommendations.mdx
│ │ │ ├── scalars
│ │ │ │ ├── _category_.yml
│ │ │ │ ├── boolean.mdx
│ │ │ │ ├── id.mdx
│ │ │ │ ├── int.mdx
│ │ │ │ └── string.mdx
│ │ │ └── sidebar-schema.js
│ │ └── rest-api
│ │ │ ├── _category_.json
│ │ │ ├── avatar.md
│ │ │ └── profile.md
│ ├── cyberconnect-sdk
│ │ ├── _category_.json
│ │ ├── connect-with-follow-button.md
│ │ ├── connect-with-ios-sdk.md
│ │ ├── connect-with-js-sdk.md
│ │ ├── connect-with-social-verifier.md
│ │ └── overview.md
│ ├── get-started
│ │ ├── Scaffold-Eth-Starter-Kit
│ │ │ ├── create-connection.mdx
│ │ │ ├── intro.mdx
│ │ │ └── read-profile.mdx
│ │ ├── _category_.json
│ │ ├── create-a-connection.mdx
│ │ ├── overview.mdx
│ │ ├── quick-setup.mdx
│ │ ├── read-a-profile.mdx
│ │ ├── read-connections.mdx
│ │ ├── read-identity.mdx
│ │ ├── read-nft-ownership.mdx
│ │ ├── read-notifications.mdx
│ │ ├── read-recommendations.mdx
│ │ └── verify-a-twitter-account.mdx
│ ├── overview
│ │ ├── _category_.json
│ │ ├── build-with-cyberconnect.mdx
│ │ ├── cheat-sheet.mdx
│ │ ├── community.mdx
│ │ ├── showcase.mdx
│ │ └── what-is-cyberconnect.md
│ ├── protocol
│ │ ├── _category_.json
│ │ ├── cyberconnect-indexer.md
│ │ ├── proof-of-connection.mdx
│ │ └── technical-framework.md
│ ├── resources
│ │ ├── _category_.json
│ │ ├── repositories.mdx
│ │ └── terminology
│ │ │ ├── _category_.json
│ │ │ ├── namespace.mdx
│ │ │ └── pagination.md
│ ├── tutorials
│ │ └── _category_.json
│ └── welcome.mdx
│ ├── version-V1
│ ├── changelog
│ │ ├── 0.3.0.md
│ │ ├── 0.4.0.md
│ │ ├── 0.5.0.md
│ │ ├── 0.6.0.md
│ │ ├── 0.7.0.md
│ │ ├── 0.8.0.md
│ │ └── _category_.json
│ ├── concepts
│ │ ├── _category_.json
│ │ ├── bidirectional-connection.mdx
│ │ ├── connection.mdx
│ │ ├── identity.md
│ │ ├── notification.md
│ │ ├── recommend.md
│ │ └── social-graph.md
│ ├── cyberconnect-api
│ │ ├── _category_.json
│ │ ├── graphql-api
│ │ │ ├── _category_.json
│ │ │ ├── connections.mdx
│ │ │ ├── identity.mdx
│ │ │ ├── nft-owners.mdx
│ │ │ ├── rankings.mdx
│ │ │ └── recommendations.mdx
│ │ ├── overview.md
│ │ ├── playground.mdx
│ │ ├── reference
│ │ │ ├── _category_.json
│ │ │ ├── directives
│ │ │ │ ├── _category_.yml
│ │ │ │ ├── admin.mdx
│ │ │ │ ├── deprecated.mdx
│ │ │ │ ├── include.mdx
│ │ │ │ ├── skip.mdx
│ │ │ │ └── specified-by.mdx
│ │ │ ├── enums
│ │ │ │ ├── _category_.yml
│ │ │ │ ├── connection-type.mdx
│ │ │ │ ├── network.mdx
│ │ │ │ ├── recomm-filter.mdx
│ │ │ │ ├── recommendation-response-result.mdx
│ │ │ │ └── tag.mdx
│ │ │ ├── graphql.md
│ │ │ ├── inputs
│ │ │ │ ├── _category_.yml
│ │ │ │ └── tags-input.mdx
│ │ │ ├── interfaces
│ │ │ │ └── node.mdx
│ │ │ ├── objects
│ │ │ │ ├── _category_.yml
│ │ │ │ ├── connect.mdx
│ │ │ │ ├── connection-identity-page.mdx
│ │ │ │ ├── connection.mdx
│ │ │ │ ├── follow-status.mdx
│ │ │ │ ├── github.mdx
│ │ │ │ ├── nftowner.mdx
│ │ │ │ ├── page-info.mdx
│ │ │ │ ├── popular-page.mdx
│ │ │ │ ├── popular.mdx
│ │ │ │ ├── ranking.mdx
│ │ │ │ ├── recommendation-page.mdx
│ │ │ │ ├── recommendation-response.mdx
│ │ │ │ ├── recommendation.mdx
│ │ │ │ ├── social.mdx
│ │ │ │ ├── twitter.mdx
│ │ │ │ ├── user-identity-page.mdx
│ │ │ │ └── user-identity.mdx
│ │ │ ├── queries
│ │ │ │ ├── _category_.yml
│ │ │ │ ├── connections.mdx
│ │ │ │ ├── following-alias.mdx
│ │ │ │ ├── identity.mdx
│ │ │ │ ├── nft-owners.mdx
│ │ │ │ ├── proof.mdx
│ │ │ │ ├── rankings.mdx
│ │ │ │ └── recommendations.mdx
│ │ │ ├── scalars
│ │ │ │ ├── _category_.yml
│ │ │ │ ├── boolean.mdx
│ │ │ │ ├── id.mdx
│ │ │ │ ├── int.mdx
│ │ │ │ └── string.mdx
│ │ │ └── sidebar-schema.js
│ │ └── rest-api
│ │ │ ├── _category_.json
│ │ │ ├── avatar.md
│ │ │ └── profile.md
│ ├── cyberconnect-sdk
│ │ ├── _category_.json
│ │ ├── connect-with-follow-button.md
│ │ ├── connect-with-ios-sdk.md
│ │ ├── connect-with-js-sdk.md
│ │ ├── connect-with-social-verifier.md
│ │ └── overview.md
│ ├── get-started
│ │ ├── Scaffold-Eth-Starter-Kit
│ │ │ ├── create-connection.mdx
│ │ │ ├── intro.mdx
│ │ │ └── read-profile.mdx
│ │ ├── _category_.json
│ │ ├── create-a-connection.mdx
│ │ ├── overview.mdx
│ │ ├── quick-setup.mdx
│ │ ├── read-a-profile.mdx
│ │ ├── read-connections.mdx
│ │ ├── read-identity.mdx
│ │ ├── read-nft-ownership.mdx
│ │ ├── read-notifications.mdx
│ │ ├── read-recommendations.mdx
│ │ └── verify-a-twitter-account.mdx
│ ├── overview
│ │ ├── _category_.json
│ │ ├── build-with-cyberconnect.mdx
│ │ ├── cheat-sheet.mdx
│ │ ├── community.mdx
│ │ ├── showcase.mdx
│ │ └── what-is-cyberconnect.md
│ ├── protocol
│ │ ├── _category_.json
│ │ ├── cyberconnect-indexer.md
│ │ ├── proof-of-connection.mdx
│ │ └── technical-framework.md
│ ├── resources
│ │ ├── _category_.json
│ │ ├── repositories.mdx
│ │ └── terminology
│ │ │ ├── _category_.json
│ │ │ ├── namespace.mdx
│ │ │ └── pagination.md
│ ├── tutorials
│ │ └── _category_.json
│ └── welcome.mdx
│ └── version-V2
│ ├── changelog
│ ├── 0.3.0.md
│ ├── 0.4.0.md
│ ├── 0.5.0.md
│ ├── 0.6.0.md
│ ├── 0.7.0.md
│ ├── 0.8.0.md
│ └── _category_.json
│ ├── concepts
│ ├── _category_.json
│ ├── bidirectional-connection.mdx
│ ├── connection.mdx
│ ├── identity.md
│ ├── notification.md
│ ├── recommend.md
│ └── social-graph.md
│ ├── cyberconnect-api
│ ├── _category_.json
│ ├── graphql-api
│ │ ├── _category_.json
│ │ ├── connections.mdx
│ │ ├── identity.mdx
│ │ ├── nft-owners.mdx
│ │ ├── rankings.mdx
│ │ └── recommendations.mdx
│ ├── overview.md
│ ├── playground.mdx
│ ├── reference
│ │ ├── _category_.json
│ │ ├── directives
│ │ │ ├── _category_.yml
│ │ │ ├── admin.mdx
│ │ │ ├── deprecated.mdx
│ │ │ ├── include.mdx
│ │ │ ├── skip.mdx
│ │ │ └── specified-by.mdx
│ │ ├── enums
│ │ │ ├── _category_.yml
│ │ │ ├── connection-type.mdx
│ │ │ ├── network.mdx
│ │ │ ├── recomm-filter.mdx
│ │ │ ├── recommendation-response-result.mdx
│ │ │ └── tag.mdx
│ │ ├── graphql.md
│ │ ├── inputs
│ │ │ ├── _category_.yml
│ │ │ └── tags-input.mdx
│ │ ├── interfaces
│ │ │ └── node.mdx
│ │ ├── objects
│ │ │ ├── _category_.yml
│ │ │ ├── connect.mdx
│ │ │ ├── connection-identity-page.mdx
│ │ │ ├── connection.mdx
│ │ │ ├── follow-status.mdx
│ │ │ ├── github.mdx
│ │ │ ├── nftowner.mdx
│ │ │ ├── page-info.mdx
│ │ │ ├── popular-page.mdx
│ │ │ ├── popular.mdx
│ │ │ ├── ranking.mdx
│ │ │ ├── recommendation-page.mdx
│ │ │ ├── recommendation-response.mdx
│ │ │ ├── recommendation.mdx
│ │ │ ├── social.mdx
│ │ │ ├── twitter.mdx
│ │ │ ├── user-identity-page.mdx
│ │ │ └── user-identity.mdx
│ │ ├── queries
│ │ │ ├── _category_.yml
│ │ │ ├── connections.mdx
│ │ │ ├── following-alias.mdx
│ │ │ ├── identity.mdx
│ │ │ ├── nft-owners.mdx
│ │ │ ├── proof.mdx
│ │ │ ├── rankings.mdx
│ │ │ └── recommendations.mdx
│ │ ├── scalars
│ │ │ ├── _category_.yml
│ │ │ ├── boolean.mdx
│ │ │ ├── id.mdx
│ │ │ ├── int.mdx
│ │ │ └── string.mdx
│ │ └── sidebar-schema.js
│ └── rest-api
│ │ ├── _category_.json
│ │ ├── avatar.md
│ │ └── profile.md
│ ├── cyberconnect-sdk
│ ├── _category_.json
│ ├── connect-with-follow-button.md
│ ├── connect-with-ios-sdk.md
│ ├── connect-with-js-sdk.md
│ ├── connect-with-social-verifier.md
│ └── overview.md
│ ├── get-started
│ ├── Scaffold-Eth-Starter-Kit
│ │ ├── create-connection.mdx
│ │ ├── intro.mdx
│ │ └── read-profile.mdx
│ ├── _category_.json
│ ├── create-a-connection.mdx
│ ├── overview.mdx
│ ├── quick-setup.mdx
│ ├── read-a-profile.mdx
│ ├── read-connections.mdx
│ ├── read-identity.mdx
│ ├── read-nft-ownership.mdx
│ ├── read-notifications.mdx
│ ├── read-recommendations.mdx
│ └── verify-a-twitter-account.mdx
│ ├── overview
│ ├── _category_.json
│ ├── build-with-cyberconnect.mdx
│ ├── cheat-sheet.mdx
│ ├── community.mdx
│ ├── showcase.mdx
│ └── what-is-cyberconnect.md
│ ├── protocol
│ ├── _category_.json
│ ├── cyberconnect-indexer.md
│ ├── proof-of-connection.mdx
│ └── technical-framework.md
│ ├── resources
│ ├── _category_.json
│ ├── repositories.mdx
│ └── terminology
│ │ ├── _category_.json
│ │ ├── namespace.mdx
│ │ └── pagination.md
│ ├── tutorials
│ └── _category_.json
│ └── welcome.mdx
├── package.json
├── sidebars.js
├── src
├── components
│ ├── ApolloCard
│ │ └── index.tsx
│ ├── ConnectCards
│ │ ├── index.tsx
│ │ └── styles.module.css
│ ├── ContributorCards
│ │ ├── index.tsx
│ │ └── styles.module.css
│ ├── FeatureCards
│ │ ├── index.tsx
│ │ └── styles.module.css
│ ├── PostmanCard
│ │ ├── index.tsx
│ │ └── styles.module.css
│ ├── ProjectCards
│ │ ├── index.tsx
│ │ └── styles.module.css
│ ├── ShowcaseCards
│ │ ├── index.tsx
│ │ └── styles.module.css
│ ├── TwitterCards
│ │ ├── index.tsx
│ │ └── styles.module.css
│ ├── UsecaseCards
│ │ ├── index.tsx
│ │ └── styles.module.css
│ ├── UsecaseCardsV2
│ │ ├── index.tsx
│ │ └── styles.module.css
│ └── WelcomeCard
│ │ ├── index.tsx
│ │ └── styles.module.css
├── css
│ └── custom.css
└── theme
│ └── Footer
│ └── index.js
├── static
├── .nojekyll
└── img
│ ├── favicon.ico
│ ├── logo-custom.svg
│ ├── logo-white.svg
│ ├── ogimage.png
│ ├── v0.2.0
│ ├── link.svg
│ ├── overview
│ │ ├── bress.png
│ │ ├── buildspace.jpg
│ │ ├── convospace.png
│ │ ├── etherloop.jpg
│ │ ├── grape.png
│ │ ├── helloworld.png
│ │ ├── light.jpg
│ │ ├── metajam.png
│ │ ├── nftscan.png
│ │ ├── projectgalaxy.png
│ │ ├── reveal.png
│ │ ├── treasureland.png
│ │ └── unipass.png
│ ├── protocol
│ │ ├── indexer1.png
│ │ ├── indexer2.png
│ │ ├── proof.png
│ │ ├── proof1.png
│ │ └── proof2.png
│ └── resources
│ │ └── namespace.png
│ ├── v0.3.0
│ ├── cyberconnect-api
│ │ └── avatar.png
│ ├── icons
│ │ ├── active
│ │ │ ├── arrow_back.svg
│ │ │ ├── arrow_forward.svg
│ │ │ ├── assignment.svg
│ │ │ ├── auto_stories.svg
│ │ │ ├── cloud.svg
│ │ │ ├── construction.svg
│ │ │ ├── lightbulb.svg
│ │ │ ├── settings.svg
│ │ │ ├── smart_toy.svg
│ │ │ └── waving_hand.svg
│ │ ├── connect
│ │ │ ├── arrow_upward.svg
│ │ │ ├── bookmark.svg
│ │ │ ├── flag.svg
│ │ │ ├── how_to_reg.svg
│ │ │ └── thumb_up_off.svg
│ │ ├── default
│ │ │ ├── arrow_drop_down.svg
│ │ │ ├── assignment.svg
│ │ │ ├── auto_stories.svg
│ │ │ ├── cloud.svg
│ │ │ ├── construction.svg
│ │ │ ├── lightbulb.svg
│ │ │ ├── settings.svg
│ │ │ ├── smart_toy.svg
│ │ │ └── waving_hand.svg
│ │ └── usecase
│ │ │ ├── account_circle.svg
│ │ │ ├── assistant.svg
│ │ │ ├── ballot.svg
│ │ │ ├── bar_chart.svg
│ │ │ ├── beenhere.svg
│ │ │ ├── favorite.svg
│ │ │ ├── how_to_vote.svg
│ │ │ ├── intersect.svg
│ │ │ ├── monetization_on.svg
│ │ │ ├── notifications.svg
│ │ │ ├── scatter_plot.svg
│ │ │ ├── search.svg
│ │ │ ├── sms.svg
│ │ │ └── sports_esports.svg
│ ├── link.svg
│ ├── logo-zypsy.svg
│ └── overview
│ │ └── ethshanghai.jpg
│ ├── v0.4.0
│ ├── icons
│ │ ├── active
│ │ │ ├── arrow_back.svg
│ │ │ ├── arrow_forward.svg
│ │ │ ├── assignment.svg
│ │ │ ├── auto_stories.svg
│ │ │ ├── cloud.svg
│ │ │ ├── construction.svg
│ │ │ ├── lightbulb.svg
│ │ │ ├── published_with_changes.svg
│ │ │ ├── search.svg
│ │ │ ├── settings.svg
│ │ │ ├── smart_toy.svg
│ │ │ ├── video_settings.svg
│ │ │ └── waving_hand.svg
│ │ ├── connect
│ │ │ ├── arrow_upward.svg
│ │ │ ├── bookmark.svg
│ │ │ ├── flag.svg
│ │ │ ├── how_to_reg.svg
│ │ │ └── thumb_up_off.svg
│ │ ├── default
│ │ │ ├── arrow_drop_down.svg
│ │ │ ├── assignment.svg
│ │ │ ├── auto_stories.svg
│ │ │ ├── cloud.svg
│ │ │ ├── construction.svg
│ │ │ ├── lightbulb.svg
│ │ │ ├── published_with_changes.svg
│ │ │ ├── search.svg
│ │ │ ├── settings.svg
│ │ │ ├── smart_toy.svg
│ │ │ ├── video_settings.svg
│ │ │ └── waving_hand.svg
│ │ ├── project
│ │ │ ├── github.svg
│ │ │ └── npm.svg
│ │ └── usecase
│ │ │ ├── account_circle.svg
│ │ │ ├── assistant.svg
│ │ │ ├── ballot.svg
│ │ │ ├── bar_chart.svg
│ │ │ ├── beenhere.svg
│ │ │ ├── favorite.svg
│ │ │ ├── how_to_vote.svg
│ │ │ ├── intersect.svg
│ │ │ ├── monetization_on.svg
│ │ │ ├── notifications.svg
│ │ │ ├── scatter_plot.svg
│ │ │ ├── search.svg
│ │ │ ├── sms.svg
│ │ │ └── sports_esports.svg
│ ├── link.svg
│ └── logo-zypsy.svg
│ ├── v0.5.0
│ ├── bidirectional-connection-workflow.png
│ └── gifs
│ │ ├── connect.gif
│ │ └── follow.gif
│ ├── v0.7.0
│ ├── gifs
│ │ └── read-notification.gif
│ └── tutorial-scaffold-eth
│ │ ├── finished-demo.gif
│ │ ├── finished.png
│ │ ├── profile-identity.png
│ │ └── search-profile-identity.png
│ ├── v0.8.0
│ ├── convo-space.png
│ ├── grape-network.png
│ ├── light.png
│ ├── project-galaxy.png
│ └── treasureland.jpeg
│ ├── v0.9.0
│ ├── cce-1.png
│ ├── cce-2.png
│ ├── cce-3.png
│ ├── cce-4.png
│ └── cce-5.png
│ └── v2
│ ├── blog.png
│ ├── build-badge-app-collect-a-badge-nft.png
│ ├── build-badge-app-collect-a-badge-tx.png
│ ├── build-badge-app-create-a-badge-tx.png
│ ├── build-badge-app-create-a-badge-tx2.png
│ ├── build-content-app-collect-a-post-nft.png
│ ├── build-content-app-collect-a-post-tx.png
│ ├── build-content-app-create-a-post-tx.png
│ ├── build-content-app-create-a-post-tx2.png
│ ├── build-content-app-create-a-profile-nft.png
│ ├── build-content-app-create-a-profile-tx.png
│ ├── build-content-app-middleware-for-post-nft.png
│ ├── build-content-app-middleware-for-post-tx.png
│ ├── build-content-app-middleware-for-post-tx2.png
│ ├── build-content-app-middleware-for-subscribe-tx.png
│ ├── build-content-app-middleware-for-subscribe-tx2.png
│ ├── build-content-app-subscribe-to-profile-nft.png
│ ├── build-content-app-subscribe-to-profile-tx.png
│ ├── cc_proxy_relayer.png
│ ├── contract-labels-comparison.png
│ ├── cyberhunt.png
│ ├── gp_sm.png
│ ├── indexerv2.png
│ ├── linkedlist.png
│ ├── overview.png
│ ├── project-labels-comparison.png
│ ├── query_schema.png
│ ├── recommendation.png
│ ├── sbt.png
│ └── siwe.png
├── tsconfig.json
├── version.js
├── versioned_docs
├── version-0.10.0
│ ├── changelog
│ │ ├── 0.10.0.md
│ │ ├── 0.3.0.md
│ │ ├── 0.4.0.md
│ │ ├── 0.5.0.md
│ │ ├── 0.6.0.md
│ │ ├── 0.7.0.md
│ │ ├── 0.8.0.md
│ │ ├── 0.9.0.md
│ │ └── _category_.json
│ ├── concepts
│ │ ├── _category_.json
│ │ ├── bidirectional-connection.mdx
│ │ ├── connection.mdx
│ │ ├── identity.md
│ │ ├── notification.md
│ │ ├── recommend.md
│ │ └── social-graph.md
│ ├── cyberconnect-api
│ │ ├── _category_.json
│ │ ├── graphql-api
│ │ │ ├── _category_.json
│ │ │ ├── bidirectional-connections.mdx
│ │ │ ├── connections.mdx
│ │ │ ├── identity.mdx
│ │ │ ├── nft-owners.mdx
│ │ │ ├── rankings.mdx
│ │ │ └── recommendations.mdx
│ │ ├── overview.md
│ │ ├── playground.mdx
│ │ ├── reference
│ │ │ ├── _category_.json
│ │ │ ├── directives
│ │ │ │ ├── _category_.yml
│ │ │ │ ├── admin.mdx
│ │ │ │ ├── deprecated.mdx
│ │ │ │ ├── include.mdx
│ │ │ │ ├── skip.mdx
│ │ │ │ └── specified-by.mdx
│ │ │ ├── enums
│ │ │ │ ├── _category_.yml
│ │ │ │ ├── bi-conn-instruction.mdx
│ │ │ │ ├── bi-conn-state.mdx
│ │ │ │ ├── connection-type.mdx
│ │ │ │ ├── direction.mdx
│ │ │ │ ├── network.mdx
│ │ │ │ ├── notification-type.mdx
│ │ │ │ ├── recomm-filter.mdx
│ │ │ │ ├── recommendation-response-result.mdx
│ │ │ │ └── tag.mdx
│ │ │ ├── graphql.md
│ │ │ ├── inputs
│ │ │ │ ├── _category_.yml
│ │ │ │ └── tags-input.mdx
│ │ │ ├── interfaces
│ │ │ │ ├── _category_.yml
│ │ │ │ ├── event.mdx
│ │ │ │ ├── node.mdx
│ │ │ │ └── notification.mdx
│ │ │ ├── objects
│ │ │ │ ├── _category_.yml
│ │ │ │ ├── bi-conn-event.mdx
│ │ │ │ ├── bidirectional-connection.mdx
│ │ │ │ ├── connect.mdx
│ │ │ │ ├── connection-event.mdx
│ │ │ │ ├── connection-identity-page.mdx
│ │ │ │ ├── connection.mdx
│ │ │ │ ├── event-page.mdx
│ │ │ │ ├── follow-status.mdx
│ │ │ │ ├── github.mdx
│ │ │ │ ├── nftowner.mdx
│ │ │ │ ├── notification-page.mdx
│ │ │ │ ├── page-info.mdx
│ │ │ │ ├── popular-page.mdx
│ │ │ │ ├── popular.mdx
│ │ │ │ ├── proof.mdx
│ │ │ │ ├── ranking.mdx
│ │ │ │ ├── recommendation-page.mdx
│ │ │ │ ├── recommendation-response.mdx
│ │ │ │ ├── recommendation.mdx
│ │ │ │ ├── signing-key-auth.mdx
│ │ │ │ ├── social.mdx
│ │ │ │ ├── twitter.mdx
│ │ │ │ ├── user-identity-page.mdx
│ │ │ │ └── user-identity.mdx
│ │ │ ├── queries
│ │ │ │ ├── _category_.yml
│ │ │ │ ├── bidirectional-connection-event.mdx
│ │ │ │ ├── bidirectional-connection-events.mdx
│ │ │ │ ├── bidirectional-connections.mdx
│ │ │ │ ├── connection-event.mdx
│ │ │ │ ├── connection-events.mdx
│ │ │ │ ├── connections.mdx
│ │ │ │ ├── following-alias.mdx
│ │ │ │ ├── identity.mdx
│ │ │ │ ├── nft-owners.mdx
│ │ │ │ ├── proof.mdx
│ │ │ │ ├── rankings.mdx
│ │ │ │ └── recommendations.mdx
│ │ │ ├── scalars
│ │ │ │ ├── _category_.yml
│ │ │ │ ├── boolean.mdx
│ │ │ │ ├── id.mdx
│ │ │ │ ├── int.mdx
│ │ │ │ └── string.mdx
│ │ │ └── sidebar-schema.js
│ │ └── rest-api
│ │ │ ├── _category_.json
│ │ │ ├── avatar.md
│ │ │ └── profile.md
│ ├── cyberconnect-explorer.mdx
│ ├── cyberconnect-sdk
│ │ ├── _category_.json
│ │ ├── connect-with-android-sdk.md
│ │ ├── connect-with-follow-button.md
│ │ ├── connect-with-ios-sdk.md
│ │ ├── connect-with-js-sdk.md
│ │ ├── connect-with-social-verifier.md
│ │ └── overview.md
│ ├── get-started
│ │ ├── Scaffold-Eth-Starter-Kit
│ │ │ ├── create-connection.mdx
│ │ │ ├── intro.mdx
│ │ │ └── read-profile.mdx
│ │ ├── _category_.json
│ │ ├── create-a-connection.mdx
│ │ ├── overview.mdx
│ │ ├── quick-setup.mdx
│ │ ├── read-a-profile.mdx
│ │ ├── read-connections.mdx
│ │ ├── read-identity.mdx
│ │ ├── read-nft-ownership.mdx
│ │ ├── read-notifications.mdx
│ │ ├── read-recommendations.mdx
│ │ └── verify-a-twitter-account.mdx
│ ├── overview
│ │ ├── _category_.json
│ │ ├── build-with-cyberconnect.mdx
│ │ ├── cheat-sheet.mdx
│ │ ├── community.mdx
│ │ ├── showcase.mdx
│ │ └── what-is-cyberconnect.md
│ ├── protocol
│ │ ├── _category_.json
│ │ ├── cyberconnect-indexer.md
│ │ ├── proof-of-connection.mdx
│ │ └── technical-framework.md
│ ├── resources
│ │ ├── _category_.json
│ │ ├── repositories.mdx
│ │ └── terminology
│ │ │ ├── _category_.json
│ │ │ ├── namespace.mdx
│ │ │ └── pagination.md
│ └── welcome.mdx
├── version-0.2.0
│ ├── 1. welcome.mdx
│ ├── 2. overview
│ │ ├── 1. what-is-cyberconnect.md
│ │ ├── 2. build-with-cyberconnect.mdx
│ │ ├── 3. community.mdx
│ │ ├── 4. cheat-sheet.mdx
│ │ └── _category_.json
│ ├── 3. concepts
│ │ ├── 1. social-graph.md
│ │ ├── 2. identity.md
│ │ ├── 3. connection.mdx
│ │ ├── 4. recommend.md
│ │ └── _category_.json
│ ├── 4. get-started
│ │ ├── 1. overview.mdx
│ │ ├── 2. quick-setup.mdx
│ │ ├── 3. create-a-connection.mdx
│ │ ├── 4. verify-a-twitter-account.mdx
│ │ ├── 5. read-identity.mdx
│ │ ├── 6. read-connections.mdx
│ │ ├── 7. read-recommendations.mdx
│ │ ├── 8. read-nft-ownership.mdx
│ │ └── _category_.json
│ ├── 5. cyberconnect-sdk
│ │ ├── 1. overview.md
│ │ ├── 2. connect-with-js-sdk.md
│ │ ├── 3. connect-with-follow-button.md
│ │ ├── 4. connect-with-social-verifier.md
│ │ └── _category_.json
│ ├── 6. cyberconnect-api
│ │ ├── 1. overview.md
│ │ ├── 2. endpoints
│ │ │ ├── 1. identity.mdx
│ │ │ ├── 2. connection.mdx
│ │ │ ├── 3. recommendations.mdx
│ │ │ ├── 4. rankings.mdx
│ │ │ ├── 5. nft-owners.mdx
│ │ │ └── _category_.json
│ │ ├── 3. playground.mdx
│ │ └── _category_.json
│ ├── 7. protocol
│ │ ├── 1. technical-framework.md
│ │ ├── 2. cyberconnect-indexer.md
│ │ ├── 3. proof-of-connection.mdx
│ │ └── _category_.json
│ ├── 8. tutorials
│ │ └── _category_.json
│ └── 9. resources
│ │ ├── 1. repositories.mdx
│ │ ├── 3. terminology
│ │ ├── 1. namespace.mdx
│ │ ├── 2. pagination.md
│ │ └── _category_.json
│ │ └── _category_.json
├── version-0.3.0
│ ├── concepts
│ │ ├── _category_.json
│ │ ├── connection.mdx
│ │ ├── identity.md
│ │ ├── recommend.md
│ │ └── social-graph.md
│ ├── cyberconnect-api
│ │ ├── _category_.json
│ │ ├── graphql-api
│ │ │ ├── _category_.json
│ │ │ ├── connections.mdx
│ │ │ ├── identity.mdx
│ │ │ ├── nft-owners.mdx
│ │ │ ├── rankings.mdx
│ │ │ └── recommendations.mdx
│ │ ├── overview.md
│ │ ├── playground.mdx
│ │ ├── reference
│ │ │ ├── _category_.json
│ │ │ ├── directives
│ │ │ │ ├── _category_.yml
│ │ │ │ ├── admin.mdx
│ │ │ │ ├── deprecated.mdx
│ │ │ │ ├── include.mdx
│ │ │ │ ├── skip.mdx
│ │ │ │ └── specified-by.mdx
│ │ │ ├── enums
│ │ │ │ ├── _category_.yml
│ │ │ │ ├── connection-type.mdx
│ │ │ │ ├── network.mdx
│ │ │ │ ├── recomm-filter.mdx
│ │ │ │ ├── recommendation-response-result.mdx
│ │ │ │ └── tag.mdx
│ │ │ ├── graphql.md
│ │ │ ├── inputs
│ │ │ │ ├── _category_.yml
│ │ │ │ └── tags-input.mdx
│ │ │ ├── interfaces
│ │ │ │ └── node.mdx
│ │ │ ├── objects
│ │ │ │ ├── _category_.yml
│ │ │ │ ├── connect.mdx
│ │ │ │ ├── connection-identity-page.mdx
│ │ │ │ ├── connection.mdx
│ │ │ │ ├── follow-status.mdx
│ │ │ │ ├── github.mdx
│ │ │ │ ├── nftowner.mdx
│ │ │ │ ├── page-info.mdx
│ │ │ │ ├── popular-page.mdx
│ │ │ │ ├── popular.mdx
│ │ │ │ ├── ranking.mdx
│ │ │ │ ├── recommendation-page.mdx
│ │ │ │ ├── recommendation-response.mdx
│ │ │ │ ├── recommendation.mdx
│ │ │ │ ├── social.mdx
│ │ │ │ ├── twitter.mdx
│ │ │ │ ├── user-identity-page.mdx
│ │ │ │ └── user-identity.mdx
│ │ │ ├── queries
│ │ │ │ ├── _category_.yml
│ │ │ │ ├── connections.mdx
│ │ │ │ ├── following-alias.mdx
│ │ │ │ ├── identity.mdx
│ │ │ │ ├── nft-owners.mdx
│ │ │ │ ├── proof.mdx
│ │ │ │ ├── rankings.mdx
│ │ │ │ └── recommendations.mdx
│ │ │ ├── scalars
│ │ │ │ ├── _category_.yml
│ │ │ │ ├── boolean.mdx
│ │ │ │ ├── id.mdx
│ │ │ │ ├── int.mdx
│ │ │ │ └── string.mdx
│ │ │ └── sidebar-schema.js
│ │ └── rest-api
│ │ │ ├── _category_.json
│ │ │ ├── avatar.md
│ │ │ └── profile.md
│ ├── cyberconnect-sdk
│ │ ├── _category_.json
│ │ ├── connect-with-follow-button.md
│ │ ├── connect-with-js-sdk.md
│ │ ├── connect-with-social-verifier.md
│ │ └── overview.md
│ ├── get-started
│ │ ├── _category_.json
│ │ ├── create-a-connection.mdx
│ │ ├── overview.mdx
│ │ ├── quick-setup.mdx
│ │ ├── read-connections.mdx
│ │ ├── read-identity.mdx
│ │ ├── read-nft-ownership.mdx
│ │ ├── read-recommendations.mdx
│ │ └── verify-a-twitter-account.mdx
│ ├── overview
│ │ ├── _category_.json
│ │ ├── build-with-cyberconnect.mdx
│ │ ├── cheat-sheet.mdx
│ │ ├── community.mdx
│ │ └── what-is-cyberconnect.md
│ ├── protocol
│ │ ├── _category_.json
│ │ ├── cyberconnect-indexer.md
│ │ ├── proof-of-connection.mdx
│ │ └── technical-framework.md
│ ├── resources
│ │ ├── _category_.json
│ │ ├── repositories.mdx
│ │ └── terminology
│ │ │ ├── _category_.json
│ │ │ ├── namespace.mdx
│ │ │ └── pagination.md
│ ├── tutorials
│ │ └── _category_.json
│ └── welcome.mdx
├── version-0.4.0
│ ├── changelog
│ │ ├── 0.3.0.md
│ │ ├── 0.4.0.md
│ │ └── _category_.json
│ ├── concepts
│ │ ├── _category_.json
│ │ ├── connection.mdx
│ │ ├── identity.md
│ │ ├── recommend.md
│ │ └── social-graph.md
│ ├── cyberconnect-api
│ │ ├── _category_.json
│ │ ├── graphql-api
│ │ │ ├── _category_.json
│ │ │ ├── connections.mdx
│ │ │ ├── identity.mdx
│ │ │ ├── nft-owners.mdx
│ │ │ ├── rankings.mdx
│ │ │ └── recommendations.mdx
│ │ ├── overview.md
│ │ ├── playground.mdx
│ │ ├── reference
│ │ │ ├── _category_.json
│ │ │ ├── directives
│ │ │ │ ├── _category_.yml
│ │ │ │ ├── admin.mdx
│ │ │ │ ├── deprecated.mdx
│ │ │ │ ├── include.mdx
│ │ │ │ ├── skip.mdx
│ │ │ │ └── specified-by.mdx
│ │ │ ├── enums
│ │ │ │ ├── _category_.yml
│ │ │ │ ├── connection-type.mdx
│ │ │ │ ├── network.mdx
│ │ │ │ ├── recomm-filter.mdx
│ │ │ │ ├── recommendation-response-result.mdx
│ │ │ │ └── tag.mdx
│ │ │ ├── graphql.md
│ │ │ ├── inputs
│ │ │ │ ├── _category_.yml
│ │ │ │ └── tags-input.mdx
│ │ │ ├── interfaces
│ │ │ │ └── node.mdx
│ │ │ ├── objects
│ │ │ │ ├── _category_.yml
│ │ │ │ ├── connect.mdx
│ │ │ │ ├── connection-identity-page.mdx
│ │ │ │ ├── connection.mdx
│ │ │ │ ├── follow-status.mdx
│ │ │ │ ├── github.mdx
│ │ │ │ ├── nftowner.mdx
│ │ │ │ ├── page-info.mdx
│ │ │ │ ├── popular-page.mdx
│ │ │ │ ├── popular.mdx
│ │ │ │ ├── ranking.mdx
│ │ │ │ ├── recommendation-page.mdx
│ │ │ │ ├── recommendation-response.mdx
│ │ │ │ ├── recommendation.mdx
│ │ │ │ ├── social.mdx
│ │ │ │ ├── twitter.mdx
│ │ │ │ ├── user-identity-page.mdx
│ │ │ │ └── user-identity.mdx
│ │ │ ├── queries
│ │ │ │ ├── _category_.yml
│ │ │ │ ├── connections.mdx
│ │ │ │ ├── following-alias.mdx
│ │ │ │ ├── identity.mdx
│ │ │ │ ├── nft-owners.mdx
│ │ │ │ ├── proof.mdx
│ │ │ │ ├── rankings.mdx
│ │ │ │ └── recommendations.mdx
│ │ │ ├── scalars
│ │ │ │ ├── _category_.yml
│ │ │ │ ├── boolean.mdx
│ │ │ │ ├── id.mdx
│ │ │ │ ├── int.mdx
│ │ │ │ └── string.mdx
│ │ │ └── sidebar-schema.js
│ │ └── rest-api
│ │ │ ├── _category_.json
│ │ │ ├── avatar.md
│ │ │ └── profile.md
│ ├── cyberconnect-sdk
│ │ ├── _category_.json
│ │ ├── connect-with-follow-button.md
│ │ ├── connect-with-ios-sdk.md
│ │ ├── connect-with-js-sdk.md
│ │ ├── connect-with-social-verifier.md
│ │ └── overview.md
│ ├── get-started
│ │ ├── _category_.json
│ │ ├── create-a-connection.mdx
│ │ ├── overview.mdx
│ │ ├── quick-setup.mdx
│ │ ├── read-a-profile.mdx
│ │ ├── read-connections.mdx
│ │ ├── read-identity.mdx
│ │ ├── read-nft-ownership.mdx
│ │ ├── read-recommendations.mdx
│ │ └── verify-a-twitter-account.mdx
│ ├── overview
│ │ ├── _category_.json
│ │ ├── build-with-cyberconnect.mdx
│ │ ├── cheat-sheet.mdx
│ │ ├── community.mdx
│ │ └── what-is-cyberconnect.md
│ ├── protocol
│ │ ├── _category_.json
│ │ ├── cyberconnect-indexer.md
│ │ ├── proof-of-connection.mdx
│ │ └── technical-framework.md
│ ├── resources
│ │ ├── _category_.json
│ │ ├── repositories.mdx
│ │ └── terminology
│ │ │ ├── _category_.json
│ │ │ ├── namespace.mdx
│ │ │ └── pagination.md
│ ├── tutorials
│ │ └── _category_.json
│ └── welcome.mdx
├── version-0.5.0
│ ├── changelog
│ │ ├── 0.3.0.md
│ │ ├── 0.4.0.md
│ │ ├── 0.5.0.md
│ │ └── _category_.json
│ ├── concepts
│ │ ├── _category_.json
│ │ ├── bidirectional-connection.mdx
│ │ ├── connection.mdx
│ │ ├── identity.md
│ │ ├── notification.md
│ │ ├── recommend.md
│ │ └── social-graph.md
│ ├── cyberconnect-api
│ │ ├── _category_.json
│ │ ├── graphql-api
│ │ │ ├── _category_.json
│ │ │ ├── bidirectional-connections.mdx
│ │ │ ├── connections.mdx
│ │ │ ├── identity.mdx
│ │ │ ├── nft-owners.mdx
│ │ │ ├── rankings.mdx
│ │ │ └── recommendations.mdx
│ │ ├── overview.md
│ │ ├── playground.mdx
│ │ ├── reference
│ │ │ ├── _category_.json
│ │ │ ├── directives
│ │ │ │ ├── _category_.yml
│ │ │ │ ├── admin.mdx
│ │ │ │ ├── deprecated.mdx
│ │ │ │ ├── include.mdx
│ │ │ │ ├── skip.mdx
│ │ │ │ └── specified-by.mdx
│ │ │ ├── enums
│ │ │ │ ├── _category_.yml
│ │ │ │ ├── connection-type.mdx
│ │ │ │ ├── network.mdx
│ │ │ │ ├── recomm-filter.mdx
│ │ │ │ ├── recommendation-response-result.mdx
│ │ │ │ └── tag.mdx
│ │ │ ├── graphql.md
│ │ │ ├── inputs
│ │ │ │ ├── _category_.yml
│ │ │ │ └── tags-input.mdx
│ │ │ ├── interfaces
│ │ │ │ └── node.mdx
│ │ │ ├── objects
│ │ │ │ ├── _category_.yml
│ │ │ │ ├── connect.mdx
│ │ │ │ ├── connection-identity-page.mdx
│ │ │ │ ├── connection.mdx
│ │ │ │ ├── follow-status.mdx
│ │ │ │ ├── github.mdx
│ │ │ │ ├── nftowner.mdx
│ │ │ │ ├── page-info.mdx
│ │ │ │ ├── popular-page.mdx
│ │ │ │ ├── popular.mdx
│ │ │ │ ├── ranking.mdx
│ │ │ │ ├── recommendation-page.mdx
│ │ │ │ ├── recommendation-response.mdx
│ │ │ │ ├── recommendation.mdx
│ │ │ │ ├── social.mdx
│ │ │ │ ├── twitter.mdx
│ │ │ │ ├── user-identity-page.mdx
│ │ │ │ └── user-identity.mdx
│ │ │ ├── queries
│ │ │ │ ├── _category_.yml
│ │ │ │ ├── connections.mdx
│ │ │ │ ├── following-alias.mdx
│ │ │ │ ├── identity.mdx
│ │ │ │ ├── nft-owners.mdx
│ │ │ │ ├── proof.mdx
│ │ │ │ ├── rankings.mdx
│ │ │ │ └── recommendations.mdx
│ │ │ ├── scalars
│ │ │ │ ├── _category_.yml
│ │ │ │ ├── boolean.mdx
│ │ │ │ ├── id.mdx
│ │ │ │ ├── int.mdx
│ │ │ │ └── string.mdx
│ │ │ └── sidebar-schema.js
│ │ └── rest-api
│ │ │ ├── _category_.json
│ │ │ ├── avatar.md
│ │ │ └── profile.md
│ ├── cyberconnect-sdk
│ │ ├── _category_.json
│ │ ├── connect-with-follow-button.md
│ │ ├── connect-with-ios-sdk.md
│ │ ├── connect-with-js-sdk.md
│ │ ├── connect-with-social-verifier.md
│ │ └── overview.md
│ ├── get-started
│ │ ├── _category_.json
│ │ ├── create-a-connection.mdx
│ │ ├── overview.mdx
│ │ ├── quick-setup.mdx
│ │ ├── read-a-profile.mdx
│ │ ├── read-connections.mdx
│ │ ├── read-identity.mdx
│ │ ├── read-nft-ownership.mdx
│ │ ├── read-recommendations.mdx
│ │ └── verify-a-twitter-account.mdx
│ ├── overview
│ │ ├── _category_.json
│ │ ├── build-with-cyberconnect.mdx
│ │ ├── cheat-sheet.mdx
│ │ ├── community.mdx
│ │ └── what-is-cyberconnect.md
│ ├── protocol
│ │ ├── _category_.json
│ │ ├── cyberconnect-indexer.md
│ │ ├── proof-of-connection.mdx
│ │ └── technical-framework.md
│ ├── resources
│ │ ├── _category_.json
│ │ ├── repositories.mdx
│ │ └── terminology
│ │ │ ├── _category_.json
│ │ │ ├── namespace.mdx
│ │ │ └── pagination.md
│ ├── tutorials
│ │ └── _category_.json
│ └── welcome.mdx
├── version-0.6.0
│ ├── changelog
│ │ ├── 0.3.0.md
│ │ ├── 0.4.0.md
│ │ ├── 0.5.0.md
│ │ ├── 0.6.0.md
│ │ └── _category_.json
│ ├── concepts
│ │ ├── _category_.json
│ │ ├── bidirectional-connection.mdx
│ │ ├── connection.mdx
│ │ ├── identity.md
│ │ ├── notification.md
│ │ ├── recommend.md
│ │ └── social-graph.md
│ ├── cyberconnect-api
│ │ ├── _category_.json
│ │ ├── graphql-api
│ │ │ ├── _category_.json
│ │ │ ├── bidirectional-connections.mdx
│ │ │ ├── connections.mdx
│ │ │ ├── identity.mdx
│ │ │ ├── nft-owners.mdx
│ │ │ ├── rankings.mdx
│ │ │ └── recommendations.mdx
│ │ ├── overview.md
│ │ ├── playground.mdx
│ │ ├── reference
│ │ │ ├── _category_.json
│ │ │ ├── directives
│ │ │ │ ├── _category_.yml
│ │ │ │ ├── admin.mdx
│ │ │ │ ├── deprecated.mdx
│ │ │ │ ├── include.mdx
│ │ │ │ ├── skip.mdx
│ │ │ │ └── specified-by.mdx
│ │ │ ├── enums
│ │ │ │ ├── _category_.yml
│ │ │ │ ├── bi-conn-instruction.mdx
│ │ │ │ ├── bi-conn-state.mdx
│ │ │ │ ├── connection-type.mdx
│ │ │ │ ├── direction.mdx
│ │ │ │ ├── network.mdx
│ │ │ │ ├── notification-type.mdx
│ │ │ │ ├── recomm-filter.mdx
│ │ │ │ ├── recommendation-response-result.mdx
│ │ │ │ └── tag.mdx
│ │ │ ├── graphql.md
│ │ │ ├── inputs
│ │ │ │ ├── _category_.yml
│ │ │ │ └── tags-input.mdx
│ │ │ ├── interfaces
│ │ │ │ ├── _category_.yml
│ │ │ │ ├── event.mdx
│ │ │ │ ├── node.mdx
│ │ │ │ └── notification.mdx
│ │ │ ├── objects
│ │ │ │ ├── _category_.yml
│ │ │ │ ├── bi-conn-event.mdx
│ │ │ │ ├── bidirectional-connection.mdx
│ │ │ │ ├── connect.mdx
│ │ │ │ ├── connection-event.mdx
│ │ │ │ ├── connection-identity-page.mdx
│ │ │ │ ├── connection.mdx
│ │ │ │ ├── event-page.mdx
│ │ │ │ ├── follow-status.mdx
│ │ │ │ ├── github.mdx
│ │ │ │ ├── nftowner.mdx
│ │ │ │ ├── notification-page.mdx
│ │ │ │ ├── page-info.mdx
│ │ │ │ ├── popular-page.mdx
│ │ │ │ ├── popular.mdx
│ │ │ │ ├── proof.mdx
│ │ │ │ ├── ranking.mdx
│ │ │ │ ├── recommendation-page.mdx
│ │ │ │ ├── recommendation-response.mdx
│ │ │ │ ├── recommendation.mdx
│ │ │ │ ├── signing-key-auth.mdx
│ │ │ │ ├── social.mdx
│ │ │ │ ├── twitter.mdx
│ │ │ │ ├── user-identity-page.mdx
│ │ │ │ └── user-identity.mdx
│ │ │ ├── queries
│ │ │ │ ├── _category_.yml
│ │ │ │ ├── bidirectional-connection-event.mdx
│ │ │ │ ├── bidirectional-connection-events.mdx
│ │ │ │ ├── bidirectional-connections.mdx
│ │ │ │ ├── connection-event.mdx
│ │ │ │ ├── connection-events.mdx
│ │ │ │ ├── connections.mdx
│ │ │ │ ├── following-alias.mdx
│ │ │ │ ├── identity.mdx
│ │ │ │ ├── nft-owners.mdx
│ │ │ │ ├── proof.mdx
│ │ │ │ ├── rankings.mdx
│ │ │ │ └── recommendations.mdx
│ │ │ ├── scalars
│ │ │ │ ├── _category_.yml
│ │ │ │ ├── boolean.mdx
│ │ │ │ ├── id.mdx
│ │ │ │ ├── int.mdx
│ │ │ │ └── string.mdx
│ │ │ └── sidebar-schema.js
│ │ └── rest-api
│ │ │ ├── _category_.json
│ │ │ ├── avatar.md
│ │ │ └── profile.md
│ ├── cyberconnect-sdk
│ │ ├── _category_.json
│ │ ├── connect-with-follow-button.md
│ │ ├── connect-with-ios-sdk.md
│ │ ├── connect-with-js-sdk.md
│ │ ├── connect-with-social-verifier.md
│ │ └── overview.md
│ ├── get-started
│ │ ├── _category_.json
│ │ ├── create-a-connection.mdx
│ │ ├── overview.mdx
│ │ ├── quick-setup.mdx
│ │ ├── read-a-profile.mdx
│ │ ├── read-connections.mdx
│ │ ├── read-identity.mdx
│ │ ├── read-nft-ownership.mdx
│ │ ├── read-recommendations.mdx
│ │ └── verify-a-twitter-account.mdx
│ ├── overview
│ │ ├── _category_.json
│ │ ├── build-with-cyberconnect.mdx
│ │ ├── cheat-sheet.mdx
│ │ ├── community.mdx
│ │ └── what-is-cyberconnect.md
│ ├── protocol
│ │ ├── _category_.json
│ │ ├── cyberconnect-indexer.md
│ │ ├── proof-of-connection.mdx
│ │ └── technical-framework.md
│ ├── resources
│ │ ├── _category_.json
│ │ ├── repositories.mdx
│ │ └── terminology
│ │ │ ├── _category_.json
│ │ │ ├── namespace.mdx
│ │ │ └── pagination.md
│ ├── tutorials
│ │ └── _category_.json
│ └── welcome.mdx
├── version-0.7.0
│ ├── changelog
│ │ ├── 0.3.0.md
│ │ ├── 0.4.0.md
│ │ ├── 0.5.0.md
│ │ ├── 0.6.0.md
│ │ ├── 0.7.0.md
│ │ └── _category_.json
│ ├── concepts
│ │ ├── _category_.json
│ │ ├── bidirectional-connection.mdx
│ │ ├── connection.mdx
│ │ ├── identity.md
│ │ ├── notification.md
│ │ ├── recommend.md
│ │ └── social-graph.md
│ ├── cyberconnect-api
│ │ ├── _category_.json
│ │ ├── graphql-api
│ │ │ ├── _category_.json
│ │ │ ├── bidirectional-connections.mdx
│ │ │ ├── connections.mdx
│ │ │ ├── identity.mdx
│ │ │ ├── nft-owners.mdx
│ │ │ ├── rankings.mdx
│ │ │ └── recommendations.mdx
│ │ ├── overview.md
│ │ ├── playground.mdx
│ │ ├── reference
│ │ │ ├── _category_.json
│ │ │ ├── directives
│ │ │ │ ├── _category_.yml
│ │ │ │ ├── admin.mdx
│ │ │ │ ├── deprecated.mdx
│ │ │ │ ├── include.mdx
│ │ │ │ ├── skip.mdx
│ │ │ │ └── specified-by.mdx
│ │ │ ├── enums
│ │ │ │ ├── _category_.yml
│ │ │ │ ├── bi-conn-instruction.mdx
│ │ │ │ ├── bi-conn-state.mdx
│ │ │ │ ├── connection-type.mdx
│ │ │ │ ├── direction.mdx
│ │ │ │ ├── network.mdx
│ │ │ │ ├── notification-type.mdx
│ │ │ │ ├── recomm-filter.mdx
│ │ │ │ ├── recommendation-response-result.mdx
│ │ │ │ └── tag.mdx
│ │ │ ├── graphql.md
│ │ │ ├── inputs
│ │ │ │ ├── _category_.yml
│ │ │ │ └── tags-input.mdx
│ │ │ ├── interfaces
│ │ │ │ ├── _category_.yml
│ │ │ │ ├── event.mdx
│ │ │ │ ├── node.mdx
│ │ │ │ └── notification.mdx
│ │ │ ├── objects
│ │ │ │ ├── _category_.yml
│ │ │ │ ├── bi-conn-event.mdx
│ │ │ │ ├── bidirectional-connection.mdx
│ │ │ │ ├── connect.mdx
│ │ │ │ ├── connection-event.mdx
│ │ │ │ ├── connection-identity-page.mdx
│ │ │ │ ├── connection.mdx
│ │ │ │ ├── event-page.mdx
│ │ │ │ ├── follow-status.mdx
│ │ │ │ ├── github.mdx
│ │ │ │ ├── nftowner.mdx
│ │ │ │ ├── notification-page.mdx
│ │ │ │ ├── page-info.mdx
│ │ │ │ ├── popular-page.mdx
│ │ │ │ ├── popular.mdx
│ │ │ │ ├── proof.mdx
│ │ │ │ ├── ranking.mdx
│ │ │ │ ├── recommendation-page.mdx
│ │ │ │ ├── recommendation-response.mdx
│ │ │ │ ├── recommendation.mdx
│ │ │ │ ├── signing-key-auth.mdx
│ │ │ │ ├── social.mdx
│ │ │ │ ├── twitter.mdx
│ │ │ │ ├── user-identity-page.mdx
│ │ │ │ └── user-identity.mdx
│ │ │ ├── queries
│ │ │ │ ├── _category_.yml
│ │ │ │ ├── bidirectional-connection-event.mdx
│ │ │ │ ├── bidirectional-connection-events.mdx
│ │ │ │ ├── bidirectional-connections.mdx
│ │ │ │ ├── connection-event.mdx
│ │ │ │ ├── connection-events.mdx
│ │ │ │ ├── connections.mdx
│ │ │ │ ├── following-alias.mdx
│ │ │ │ ├── identity.mdx
│ │ │ │ ├── nft-owners.mdx
│ │ │ │ ├── proof.mdx
│ │ │ │ ├── rankings.mdx
│ │ │ │ └── recommendations.mdx
│ │ │ ├── scalars
│ │ │ │ ├── _category_.yml
│ │ │ │ ├── boolean.mdx
│ │ │ │ ├── id.mdx
│ │ │ │ ├── int.mdx
│ │ │ │ └── string.mdx
│ │ │ └── sidebar-schema.js
│ │ └── rest-api
│ │ │ ├── _category_.json
│ │ │ ├── avatar.md
│ │ │ └── profile.md
│ ├── cyberconnect-sdk
│ │ ├── _category_.json
│ │ ├── connect-with-follow-button.md
│ │ ├── connect-with-ios-sdk.md
│ │ ├── connect-with-js-sdk.md
│ │ ├── connect-with-social-verifier.md
│ │ └── overview.md
│ ├── get-started
│ │ ├── Scaffold-Eth-Starter-Kit
│ │ │ ├── create-connection.mdx
│ │ │ ├── intro.mdx
│ │ │ └── read-profile.mdx
│ │ ├── _category_.json
│ │ ├── create-a-connection.mdx
│ │ ├── overview.mdx
│ │ ├── quick-setup.mdx
│ │ ├── read-a-profile.mdx
│ │ ├── read-connections.mdx
│ │ ├── read-identity.mdx
│ │ ├── read-nft-ownership.mdx
│ │ ├── read-notifications.mdx
│ │ ├── read-recommendations.mdx
│ │ └── verify-a-twitter-account.mdx
│ ├── overview
│ │ ├── _category_.json
│ │ ├── build-with-cyberconnect.mdx
│ │ ├── cheat-sheet.mdx
│ │ ├── community.mdx
│ │ └── what-is-cyberconnect.md
│ ├── protocol
│ │ ├── _category_.json
│ │ ├── cyberconnect-indexer.md
│ │ ├── proof-of-connection.mdx
│ │ └── technical-framework.md
│ ├── resources
│ │ ├── _category_.json
│ │ ├── repositories.mdx
│ │ └── terminology
│ │ │ ├── _category_.json
│ │ │ ├── namespace.mdx
│ │ │ └── pagination.md
│ ├── tutorials
│ │ └── _category_.json
│ └── welcome.mdx
├── version-0.8.0
│ ├── changelog
│ │ ├── 0.3.0.md
│ │ ├── 0.4.0.md
│ │ ├── 0.5.0.md
│ │ ├── 0.6.0.md
│ │ ├── 0.7.0.md
│ │ ├── 0.8.0.md
│ │ └── _category_.json
│ ├── concepts
│ │ ├── _category_.json
│ │ ├── bidirectional-connection.mdx
│ │ ├── connection.mdx
│ │ ├── identity.md
│ │ ├── notification.md
│ │ ├── recommend.md
│ │ └── social-graph.md
│ ├── cyberconnect-api
│ │ ├── _category_.json
│ │ ├── graphql-api
│ │ │ ├── _category_.json
│ │ │ ├── bidirectional-connections.mdx
│ │ │ ├── connections.mdx
│ │ │ ├── identity.mdx
│ │ │ ├── nft-owners.mdx
│ │ │ ├── rankings.mdx
│ │ │ └── recommendations.mdx
│ │ ├── overview.md
│ │ ├── playground.mdx
│ │ ├── reference
│ │ │ ├── _category_.json
│ │ │ ├── directives
│ │ │ │ ├── _category_.yml
│ │ │ │ ├── admin.mdx
│ │ │ │ ├── deprecated.mdx
│ │ │ │ ├── include.mdx
│ │ │ │ ├── skip.mdx
│ │ │ │ └── specified-by.mdx
│ │ │ ├── enums
│ │ │ │ ├── _category_.yml
│ │ │ │ ├── bi-conn-instruction.mdx
│ │ │ │ ├── bi-conn-state.mdx
│ │ │ │ ├── connection-type.mdx
│ │ │ │ ├── direction.mdx
│ │ │ │ ├── network.mdx
│ │ │ │ ├── notification-type.mdx
│ │ │ │ ├── recomm-filter.mdx
│ │ │ │ ├── recommendation-response-result.mdx
│ │ │ │ └── tag.mdx
│ │ │ ├── graphql.md
│ │ │ ├── inputs
│ │ │ │ ├── _category_.yml
│ │ │ │ └── tags-input.mdx
│ │ │ ├── interfaces
│ │ │ │ ├── _category_.yml
│ │ │ │ ├── event.mdx
│ │ │ │ ├── node.mdx
│ │ │ │ └── notification.mdx
│ │ │ ├── objects
│ │ │ │ ├── _category_.yml
│ │ │ │ ├── bi-conn-event.mdx
│ │ │ │ ├── bidirectional-connection.mdx
│ │ │ │ ├── connect.mdx
│ │ │ │ ├── connection-event.mdx
│ │ │ │ ├── connection-identity-page.mdx
│ │ │ │ ├── connection.mdx
│ │ │ │ ├── event-page.mdx
│ │ │ │ ├── follow-status.mdx
│ │ │ │ ├── github.mdx
│ │ │ │ ├── nftowner.mdx
│ │ │ │ ├── notification-page.mdx
│ │ │ │ ├── page-info.mdx
│ │ │ │ ├── popular-page.mdx
│ │ │ │ ├── popular.mdx
│ │ │ │ ├── proof.mdx
│ │ │ │ ├── ranking.mdx
│ │ │ │ ├── recommendation-page.mdx
│ │ │ │ ├── recommendation-response.mdx
│ │ │ │ ├── recommendation.mdx
│ │ │ │ ├── signing-key-auth.mdx
│ │ │ │ ├── social.mdx
│ │ │ │ ├── twitter.mdx
│ │ │ │ ├── user-identity-page.mdx
│ │ │ │ └── user-identity.mdx
│ │ │ ├── queries
│ │ │ │ ├── _category_.yml
│ │ │ │ ├── bidirectional-connection-event.mdx
│ │ │ │ ├── bidirectional-connection-events.mdx
│ │ │ │ ├── bidirectional-connections.mdx
│ │ │ │ ├── connection-event.mdx
│ │ │ │ ├── connection-events.mdx
│ │ │ │ ├── connections.mdx
│ │ │ │ ├── following-alias.mdx
│ │ │ │ ├── identity.mdx
│ │ │ │ ├── nft-owners.mdx
│ │ │ │ ├── proof.mdx
│ │ │ │ ├── rankings.mdx
│ │ │ │ └── recommendations.mdx
│ │ │ ├── scalars
│ │ │ │ ├── _category_.yml
│ │ │ │ ├── boolean.mdx
│ │ │ │ ├── id.mdx
│ │ │ │ ├── int.mdx
│ │ │ │ └── string.mdx
│ │ │ └── sidebar-schema.js
│ │ └── rest-api
│ │ │ ├── _category_.json
│ │ │ ├── avatar.md
│ │ │ └── profile.md
│ ├── cyberconnect-sdk
│ │ ├── _category_.json
│ │ ├── connect-with-follow-button.md
│ │ ├── connect-with-ios-sdk.md
│ │ ├── connect-with-js-sdk.md
│ │ ├── connect-with-social-verifier.md
│ │ └── overview.md
│ ├── get-started
│ │ ├── Scaffold-Eth-Starter-Kit
│ │ │ ├── create-connection.mdx
│ │ │ ├── intro.mdx
│ │ │ └── read-profile.mdx
│ │ ├── _category_.json
│ │ ├── create-a-connection.mdx
│ │ ├── overview.mdx
│ │ ├── quick-setup.mdx
│ │ ├── read-a-profile.mdx
│ │ ├── read-connections.mdx
│ │ ├── read-identity.mdx
│ │ ├── read-nft-ownership.mdx
│ │ ├── read-notifications.mdx
│ │ ├── read-recommendations.mdx
│ │ └── verify-a-twitter-account.mdx
│ ├── overview
│ │ ├── _category_.json
│ │ ├── build-with-cyberconnect.mdx
│ │ ├── cheat-sheet.mdx
│ │ ├── community.mdx
│ │ ├── showcase.mdx
│ │ └── what-is-cyberconnect.md
│ ├── protocol
│ │ ├── _category_.json
│ │ ├── cyberconnect-indexer.md
│ │ ├── proof-of-connection.mdx
│ │ └── technical-framework.md
│ ├── resources
│ │ ├── _category_.json
│ │ ├── repositories.mdx
│ │ └── terminology
│ │ │ ├── _category_.json
│ │ │ ├── namespace.mdx
│ │ │ └── pagination.md
│ ├── tutorials
│ │ └── _category_.json
│ └── welcome.mdx
├── version-0.9.0
│ ├── changelog
│ │ ├── 0.3.0.md
│ │ ├── 0.4.0.md
│ │ ├── 0.5.0.md
│ │ ├── 0.6.0.md
│ │ ├── 0.7.0.md
│ │ ├── 0.8.0.md
│ │ ├── 0.9.0.md
│ │ └── _category_.json
│ ├── concepts
│ │ ├── _category_.json
│ │ ├── bidirectional-connection.mdx
│ │ ├── connection.mdx
│ │ ├── identity.md
│ │ ├── notification.md
│ │ ├── recommend.md
│ │ └── social-graph.md
│ ├── cyberconnect-api
│ │ ├── _category_.json
│ │ ├── graphql-api
│ │ │ ├── _category_.json
│ │ │ ├── bidirectional-connections.mdx
│ │ │ ├── connections.mdx
│ │ │ ├── identity.mdx
│ │ │ ├── nft-owners.mdx
│ │ │ ├── rankings.mdx
│ │ │ └── recommendations.mdx
│ │ ├── overview.md
│ │ ├── playground.mdx
│ │ ├── reference
│ │ │ ├── _category_.json
│ │ │ ├── directives
│ │ │ │ ├── _category_.yml
│ │ │ │ ├── admin.mdx
│ │ │ │ ├── deprecated.mdx
│ │ │ │ ├── include.mdx
│ │ │ │ ├── skip.mdx
│ │ │ │ └── specified-by.mdx
│ │ │ ├── enums
│ │ │ │ ├── _category_.yml
│ │ │ │ ├── bi-conn-instruction.mdx
│ │ │ │ ├── bi-conn-state.mdx
│ │ │ │ ├── connection-type.mdx
│ │ │ │ ├── direction.mdx
│ │ │ │ ├── network.mdx
│ │ │ │ ├── notification-type.mdx
│ │ │ │ ├── recomm-filter.mdx
│ │ │ │ ├── recommendation-response-result.mdx
│ │ │ │ └── tag.mdx
│ │ │ ├── graphql.md
│ │ │ ├── inputs
│ │ │ │ ├── _category_.yml
│ │ │ │ └── tags-input.mdx
│ │ │ ├── interfaces
│ │ │ │ ├── _category_.yml
│ │ │ │ ├── event.mdx
│ │ │ │ ├── node.mdx
│ │ │ │ └── notification.mdx
│ │ │ ├── objects
│ │ │ │ ├── _category_.yml
│ │ │ │ ├── bi-conn-event.mdx
│ │ │ │ ├── bidirectional-connection.mdx
│ │ │ │ ├── connect.mdx
│ │ │ │ ├── connection-event.mdx
│ │ │ │ ├── connection-identity-page.mdx
│ │ │ │ ├── connection.mdx
│ │ │ │ ├── event-page.mdx
│ │ │ │ ├── follow-status.mdx
│ │ │ │ ├── github.mdx
│ │ │ │ ├── nftowner.mdx
│ │ │ │ ├── notification-page.mdx
│ │ │ │ ├── page-info.mdx
│ │ │ │ ├── popular-page.mdx
│ │ │ │ ├── popular.mdx
│ │ │ │ ├── proof.mdx
│ │ │ │ ├── ranking.mdx
│ │ │ │ ├── recommendation-page.mdx
│ │ │ │ ├── recommendation-response.mdx
│ │ │ │ ├── recommendation.mdx
│ │ │ │ ├── signing-key-auth.mdx
│ │ │ │ ├── social.mdx
│ │ │ │ ├── twitter.mdx
│ │ │ │ ├── user-identity-page.mdx
│ │ │ │ └── user-identity.mdx
│ │ │ ├── queries
│ │ │ │ ├── _category_.yml
│ │ │ │ ├── bidirectional-connection-event.mdx
│ │ │ │ ├── bidirectional-connection-events.mdx
│ │ │ │ ├── bidirectional-connections.mdx
│ │ │ │ ├── connection-event.mdx
│ │ │ │ ├── connection-events.mdx
│ │ │ │ ├── connections.mdx
│ │ │ │ ├── following-alias.mdx
│ │ │ │ ├── identity.mdx
│ │ │ │ ├── nft-owners.mdx
│ │ │ │ ├── proof.mdx
│ │ │ │ ├── rankings.mdx
│ │ │ │ └── recommendations.mdx
│ │ │ ├── scalars
│ │ │ │ ├── _category_.yml
│ │ │ │ ├── boolean.mdx
│ │ │ │ ├── id.mdx
│ │ │ │ ├── int.mdx
│ │ │ │ └── string.mdx
│ │ │ └── sidebar-schema.js
│ │ └── rest-api
│ │ │ ├── _category_.json
│ │ │ ├── avatar.md
│ │ │ └── profile.md
│ ├── cyberconnect-explorer.mdx
│ ├── cyberconnect-sdk
│ │ ├── _category_.json
│ │ ├── connect-with-follow-button.md
│ │ ├── connect-with-ios-sdk.md
│ │ ├── connect-with-js-sdk.md
│ │ ├── connect-with-social-verifier.md
│ │ └── overview.md
│ ├── get-started
│ │ ├── Scaffold-Eth-Starter-Kit
│ │ │ ├── create-connection.mdx
│ │ │ ├── intro.mdx
│ │ │ └── read-profile.mdx
│ │ ├── _category_.json
│ │ ├── create-a-connection.mdx
│ │ ├── overview.mdx
│ │ ├── quick-setup.mdx
│ │ ├── read-a-profile.mdx
│ │ ├── read-connections.mdx
│ │ ├── read-identity.mdx
│ │ ├── read-nft-ownership.mdx
│ │ ├── read-notifications.mdx
│ │ ├── read-recommendations.mdx
│ │ └── verify-a-twitter-account.mdx
│ ├── overview
│ │ ├── _category_.json
│ │ ├── build-with-cyberconnect.mdx
│ │ ├── cheat-sheet.mdx
│ │ ├── community.mdx
│ │ ├── showcase.mdx
│ │ └── what-is-cyberconnect.md
│ ├── protocol
│ │ ├── _category_.json
│ │ ├── cyberconnect-indexer.md
│ │ ├── proof-of-connection.mdx
│ │ └── technical-framework.md
│ ├── resources
│ │ ├── _category_.json
│ │ ├── repositories.mdx
│ │ └── terminology
│ │ │ ├── _category_.json
│ │ │ ├── namespace.mdx
│ │ │ └── pagination.md
│ └── welcome.mdx
├── version-V1
│ ├── changelog
│ │ ├── 0.10.0.md
│ │ ├── 0.3.0.md
│ │ ├── 0.4.0.md
│ │ ├── 0.5.0.md
│ │ ├── 0.6.0.md
│ │ ├── 0.7.0.md
│ │ ├── 0.8.0.md
│ │ ├── 0.9.0.md
│ │ └── _category_.json
│ ├── concepts
│ │ ├── _category_.json
│ │ ├── bidirectional-connection.mdx
│ │ ├── connection.mdx
│ │ ├── identity.md
│ │ ├── notification.md
│ │ ├── recommend.md
│ │ └── social-graph.md
│ ├── cyberconnect-api
│ │ ├── _category_.json
│ │ ├── graphql-api
│ │ │ ├── _category_.json
│ │ │ ├── bidirectional-connections.mdx
│ │ │ ├── connections.mdx
│ │ │ ├── identity.mdx
│ │ │ ├── nft-owners.mdx
│ │ │ ├── rankings.mdx
│ │ │ └── recommendations.mdx
│ │ ├── overview.md
│ │ ├── playground.mdx
│ │ ├── reference
│ │ │ ├── _category_.json
│ │ │ ├── directives
│ │ │ │ ├── _category_.yml
│ │ │ │ ├── admin.mdx
│ │ │ │ ├── deprecated.mdx
│ │ │ │ ├── include.mdx
│ │ │ │ ├── skip.mdx
│ │ │ │ └── specified-by.mdx
│ │ │ ├── enums
│ │ │ │ ├── _category_.yml
│ │ │ │ ├── bi-conn-instruction.mdx
│ │ │ │ ├── bi-conn-state.mdx
│ │ │ │ ├── connection-type.mdx
│ │ │ │ ├── direction.mdx
│ │ │ │ ├── network.mdx
│ │ │ │ ├── notification-type.mdx
│ │ │ │ ├── recomm-filter.mdx
│ │ │ │ ├── recommendation-response-result.mdx
│ │ │ │ └── tag.mdx
│ │ │ ├── graphql.md
│ │ │ ├── inputs
│ │ │ │ ├── _category_.yml
│ │ │ │ └── tags-input.mdx
│ │ │ ├── interfaces
│ │ │ │ ├── _category_.yml
│ │ │ │ ├── event.mdx
│ │ │ │ ├── node.mdx
│ │ │ │ └── notification.mdx
│ │ │ ├── objects
│ │ │ │ ├── _category_.yml
│ │ │ │ ├── bi-conn-event.mdx
│ │ │ │ ├── bidirectional-connection.mdx
│ │ │ │ ├── connect.mdx
│ │ │ │ ├── connection-event.mdx
│ │ │ │ ├── connection-identity-page.mdx
│ │ │ │ ├── connection.mdx
│ │ │ │ ├── event-page.mdx
│ │ │ │ ├── follow-status.mdx
│ │ │ │ ├── github.mdx
│ │ │ │ ├── nftowner.mdx
│ │ │ │ ├── notification-page.mdx
│ │ │ │ ├── page-info.mdx
│ │ │ │ ├── popular-page.mdx
│ │ │ │ ├── popular.mdx
│ │ │ │ ├── proof.mdx
│ │ │ │ ├── ranking.mdx
│ │ │ │ ├── recommendation-page.mdx
│ │ │ │ ├── recommendation-response.mdx
│ │ │ │ ├── recommendation.mdx
│ │ │ │ ├── signing-key-auth.mdx
│ │ │ │ ├── social.mdx
│ │ │ │ ├── twitter.mdx
│ │ │ │ ├── user-identity-page.mdx
│ │ │ │ └── user-identity.mdx
│ │ │ ├── queries
│ │ │ │ ├── _category_.yml
│ │ │ │ ├── bidirectional-connection-event.mdx
│ │ │ │ ├── bidirectional-connection-events.mdx
│ │ │ │ ├── bidirectional-connections.mdx
│ │ │ │ ├── connection-event.mdx
│ │ │ │ ├── connection-events.mdx
│ │ │ │ ├── connections.mdx
│ │ │ │ ├── following-alias.mdx
│ │ │ │ ├── identity.mdx
│ │ │ │ ├── nft-owners.mdx
│ │ │ │ ├── proof.mdx
│ │ │ │ ├── rankings.mdx
│ │ │ │ └── recommendations.mdx
│ │ │ ├── scalars
│ │ │ │ ├── _category_.yml
│ │ │ │ ├── boolean.mdx
│ │ │ │ ├── id.mdx
│ │ │ │ ├── int.mdx
│ │ │ │ └── string.mdx
│ │ │ └── sidebar-schema.js
│ │ └── rest-api
│ │ │ ├── _category_.json
│ │ │ ├── avatar.md
│ │ │ └── profile.md
│ ├── cyberconnect-explorer.mdx
│ ├── cyberconnect-sdk
│ │ ├── _category_.json
│ │ ├── connect-with-android-sdk.md
│ │ ├── connect-with-follow-button.md
│ │ ├── connect-with-ios-sdk.md
│ │ ├── connect-with-js-sdk.md
│ │ ├── connect-with-social-verifier.md
│ │ └── overview.md
│ ├── get-started
│ │ ├── Scaffold-Eth-Starter-Kit
│ │ │ ├── create-connection.mdx
│ │ │ ├── intro.mdx
│ │ │ └── read-profile.mdx
│ │ ├── _category_.json
│ │ ├── create-a-connection.mdx
│ │ ├── overview.mdx
│ │ ├── quick-setup.mdx
│ │ ├── read-a-profile.mdx
│ │ ├── read-connections.mdx
│ │ ├── read-identity.mdx
│ │ ├── read-nft-ownership.mdx
│ │ ├── read-notifications.mdx
│ │ ├── read-recommendations.mdx
│ │ └── verify-a-twitter-account.mdx
│ ├── overview
│ │ ├── _category_.json
│ │ ├── build-with-cyberconnect.mdx
│ │ ├── cheat-sheet.mdx
│ │ ├── community.mdx
│ │ ├── showcase.mdx
│ │ └── what-is-cyberconnect.md
│ ├── protocol
│ │ ├── _category_.json
│ │ ├── cyberconnect-indexer.md
│ │ ├── proof-of-connection.mdx
│ │ └── technical-framework.md
│ ├── resources
│ │ ├── _category_.json
│ │ ├── repositories.mdx
│ │ └── terminology
│ │ │ ├── _category_.json
│ │ │ ├── namespace.mdx
│ │ │ └── pagination.md
│ └── welcome.mdx
└── version-V2
│ ├── APIs
│ ├── CyberHunt.md
│ ├── _category_.json
│ ├── authentication
│ │ ├── _category_.json
│ │ ├── api-key.md
│ │ ├── register-signing-key.md
│ │ └── user-login.md
│ ├── mutation
│ │ ├── _category_.json
│ │ ├── collect-essence.md
│ │ ├── follow.md
│ │ ├── middleware-essence.md
│ │ ├── middleware-subscribe.md
│ │ ├── register-essence.md
│ │ └── subscribe.md
│ ├── query
│ │ ├── _category_.json
│ │ ├── address.md
│ │ ├── collected-essences.md
│ │ ├── following-relationships.md
│ │ ├── identity.md
│ │ ├── profiles.md
│ │ ├── subscribing-relationships.md
│ │ └── verify-essence-metadata.md
│ └── recommendation-engine
│ │ ├── _category_.json
│ │ ├── feed.md
│ │ ├── labels.md
│ │ └── recommendation.md
│ ├── build-with-cyberconnect.md
│ ├── cheat-sheet.md
│ ├── concepts
│ ├── _category_.json
│ ├── connection.md
│ ├── content.md
│ ├── identity.md
│ ├── metadata.md
│ ├── middleware.md
│ └── overview.md
│ ├── overview
│ ├── _category_.json
│ ├── interest-graph-engine.md
│ └── social-data-network.md
│ ├── protocol
│ ├── _category_.json
│ ├── design-principles.md
│ ├── interest-graph-engine
│ │ ├── _category_.json
│ │ ├── data-indexing.md
│ │ └── recommendation.md
│ └── social-data-network
│ │ ├── _category_.json
│ │ ├── data-infrastructure.md
│ │ └── smart-contract.md
│ ├── reference
│ ├── _category_.json
│ ├── directives
│ │ ├── _category_.yml
│ │ ├── api-key-required.mdx
│ │ ├── authenticated.mdx
│ │ ├── deprecated.mdx
│ │ ├── go-field.mdx
│ │ ├── go-model.mdx
│ │ ├── go-tag.mdx
│ │ ├── include.mdx
│ │ ├── skip.mdx
│ │ └── specified-by.mdx
│ ├── enums
│ │ ├── _category_.yml
│ │ ├── avatar-type.mdx
│ │ ├── middleware-type.mdx
│ │ ├── name-type.mdx
│ │ ├── order-direction.mdx
│ │ ├── profile-order-field.mdx
│ │ └── profile-type.mdx
│ ├── graphql.md
│ ├── inputs
│ │ ├── _category_.yml
│ │ ├── attribute.mdx
│ │ ├── collect-essence-typed-data-options.mdx
│ │ ├── collect-order.mdx
│ │ ├── collect-paid-mw-params.mdx
│ │ ├── collect-permission-mw-params.mdx
│ │ ├── create-apikey-input.mdx
│ │ ├── create-collect-essence-typed-data-input.mdx
│ │ ├── create-register-essence-typed-data-input.mdx
│ │ ├── create-set-essence-data-typed-data-input.mdx
│ │ ├── create-set-subscribe-data-typed-data-input.mdx
│ │ ├── create-subscribe-typed-data-input.mdx
│ │ ├── custom-mw-params.mdx
│ │ ├── essence-middleware.mdx
│ │ ├── essence-order.mdx
│ │ ├── follow-input.mdx
│ │ ├── follow-order.mdx
│ │ ├── login-get-message-input.mdx
│ │ ├── login-verify-input.mdx
│ │ ├── media.mdx
│ │ ├── profile-order.mdx
│ │ ├── register-essence-typed-data-options.mdx
│ │ ├── register-signing-key-input.mdx
│ │ ├── relay-input.mdx
│ │ ├── subscribe-middleware.mdx
│ │ ├── subscribe-order.mdx
│ │ ├── subscribe-paid-mw-params.mdx
│ │ ├── typed-data-options.mdx
│ │ ├── unfollow-input.mdx
│ │ ├── verify-essence-metadata-input.mdx
│ │ └── wallet-order.mdx
│ ├── interfaces
│ │ ├── _category_.yml
│ │ ├── contract.mdx
│ │ └── node.mdx
│ ├── mutations
│ │ ├── _category_.yml
│ │ ├── create-apikey.mdx
│ │ ├── create-collect-essence-typed-data.mdx
│ │ ├── create-register-essence-typed-data.mdx
│ │ ├── create-set-essence-data-typed-data.mdx
│ │ ├── create-set-subscribe-data-typed-data.mdx
│ │ ├── create-subscribe-typed-data.mdx
│ │ ├── follow.mdx
│ │ ├── login-get-message.mdx
│ │ ├── login-verify.mdx
│ │ ├── register-signing-key.mdx
│ │ ├── relay.mdx
│ │ └── unfollow.mdx
│ ├── objects
│ │ ├── _category_.yml
│ │ ├── address.mdx
│ │ ├── blockchain-time.mdx
│ │ ├── collect-connection.mdx
│ │ ├── collect-edge.mdx
│ │ ├── collect.mdx
│ │ ├── create-apikey-result.mdx
│ │ ├── create-collect-essence-typed-data-result.mdx
│ │ ├── create-register-essence-typed-data-result.mdx
│ │ ├── create-set-essence-data-typed-data-result.mdx
│ │ ├── create-set-subscribe-data-typed-data-result.mdx
│ │ ├── create-subscribe-typed-data-result.mdx
│ │ ├── ensinfo.mdx
│ │ ├── erc1155.mdx
│ │ ├── erc20.mdx
│ │ ├── erc721.mdx
│ │ ├── erctransfer-card.mdx
│ │ ├── essence-connection.mdx
│ │ ├── essence-edge.mdx
│ │ ├── essence.mdx
│ │ ├── follow-connection.mdx
│ │ ├── follow-edge.mdx
│ │ ├── follow-response.mdx
│ │ ├── follow-stats.mdx
│ │ ├── follow.mdx
│ │ ├── github-info.mdx
│ │ ├── identity.mdx
│ │ ├── label.mdx
│ │ ├── login-get-message-result.mdx
│ │ ├── login-verify-result.mdx
│ │ ├── metadata-detail.mdx
│ │ ├── middleware-info.mdx
│ │ ├── namespace.mdx
│ │ ├── page-info.mdx
│ │ ├── profile-connection.mdx
│ │ ├── profile-edge.mdx
│ │ ├── profile.mdx
│ │ ├── project-level-interaction.mdx
│ │ ├── recommendation.mdx
│ │ ├── register-key-response.mdx
│ │ ├── relay-result.mdx
│ │ ├── relay-transaction.mdx
│ │ ├── social-info.mdx
│ │ ├── subscribe-connection.mdx
│ │ ├── subscribe-edge.mdx
│ │ ├── subscribe.mdx
│ │ ├── system-status.mdx
│ │ ├── token-info.mdx
│ │ ├── token-recommendation.mdx
│ │ ├── twitter-info.mdx
│ │ ├── typed-data.mdx
│ │ ├── unfollow-response.mdx
│ │ ├── user-recommendation.mdx
│ │ ├── verify-essence-metadata-result.mdx
│ │ ├── wallet-connection.mdx
│ │ ├── wallet-edge.mdx
│ │ ├── wallet-metadata.mdx
│ │ └── wallet.mdx
│ ├── queries
│ │ ├── _category_.yml
│ │ ├── address.mdx
│ │ ├── batch-get-addresses.mdx
│ │ ├── essence-by-filter.mdx
│ │ ├── node.mdx
│ │ ├── nodes.mdx
│ │ ├── profile-by-handle.mdx
│ │ ├── profile-by-id.mdx
│ │ ├── profiles-by-handles.mdx
│ │ ├── profiles-by-ids.mdx
│ │ ├── profiles.mdx
│ │ ├── synced-at.mdx
│ │ ├── system-status.mdx
│ │ └── verify-essence-metadata.mdx
│ ├── scalars
│ │ ├── _category_.yml
│ │ ├── address-evm.mdx
│ │ ├── boolean.mdx
│ │ ├── caip10-id.mdx
│ │ ├── chain-id.mdx
│ │ ├── contract-address-evm.mdx
│ │ ├── cursor.mdx
│ │ ├── float.mdx
│ │ ├── id.mdx
│ │ ├── int.mdx
│ │ ├── profile-id.mdx
│ │ ├── string.mdx
│ │ └── url.mdx
│ ├── sidebar-schema.js
│ └── unions
│ │ ├── _category_.yml
│ │ └── token.mdx
│ ├── tutorials
│ ├── _category_.json
│ ├── build-badge-app
│ │ ├── _category_.json
│ │ ├── authentication.md
│ │ ├── collect-a-badge.md
│ │ ├── create-a-badge.md
│ │ ├── create-a-profile.md
│ │ └── quick_setup.md
│ ├── build-content-app
│ │ ├── _category_.json
│ │ ├── authentication.md
│ │ ├── collect-a-post.md
│ │ ├── create-a-post.md
│ │ ├── create-a-profile.md
│ │ ├── middelware-for-subscribe.md
│ │ ├── middleware-for-post.md
│ │ ├── quick_setup.md
│ │ └── subscribe-to-profile.md
│ └── create-nft-with-backend
│ │ ├── _category_.json
│ │ └── overview.md
│ └── welcome.md
├── versioned_sidebars
├── version-0.10.0-sidebars.json
├── version-0.2.0-sidebars.json
├── version-0.3.0-sidebars.json
├── version-0.4.0-sidebars.json
├── version-0.5.0-sidebars.json
├── version-0.6.0-sidebars.json
├── version-0.7.0-sidebars.json
├── version-0.8.0-sidebars.json
├── version-0.9.0-sidebars.json
├── version-V1-sidebars.json
└── version-V2-sidebars.json
├── versions.json
└── yarn.lock
/.gitignore:
--------------------------------------------------------------------------------
1 | # Dependencies
2 | /node_modules
3 |
4 | # Production
5 | /build
6 |
7 | # Generated files
8 | .docusaurus
9 | .cache-loader
10 |
11 | # Misc
12 | .DS_Store
13 | .env.local
14 | .env.development.local
15 | .env.test.local
16 | .env.production.local
17 |
18 | npm-debug.log*
19 | yarn-debug.log*
20 | yarn-error.log*
21 | .env
22 |
23 | .idea/
--------------------------------------------------------------------------------
/babel.config.js:
--------------------------------------------------------------------------------
1 | module.exports = {
2 | presets: [require.resolve('@docusaurus/core/lib/babel/preset')],
3 | };
4 |
--------------------------------------------------------------------------------
/docs/APIs/_category_.json:
--------------------------------------------------------------------------------
1 | {
2 | "label": "APIs",
3 | "position": 5
4 | }
5 |
--------------------------------------------------------------------------------
/docs/APIs/authentication/_category_.json:
--------------------------------------------------------------------------------
1 | {
2 | "label": "Authentication",
3 | "position": 1
4 | }
5 |
--------------------------------------------------------------------------------
/docs/APIs/mutation/_category_.json:
--------------------------------------------------------------------------------
1 | {
2 | "label": "Mutation",
3 | "position": 3
4 | }
5 |
--------------------------------------------------------------------------------
/docs/APIs/query/_category_.json:
--------------------------------------------------------------------------------
1 | {
2 | "label": "Query",
3 | "position": 2
4 | }
5 |
--------------------------------------------------------------------------------
/docs/APIs/recommendation-engine/_category_.json:
--------------------------------------------------------------------------------
1 | {
2 | "label": "Recommendation Engine",
3 | "position": 4
4 | }
5 |
--------------------------------------------------------------------------------
/docs/concepts/_category_.json:
--------------------------------------------------------------------------------
1 | {
2 | "label": "Concepts",
3 | "position": 4
4 | }
5 |
--------------------------------------------------------------------------------
/docs/overview/_category_.json:
--------------------------------------------------------------------------------
1 | {
2 | "label": "Overview",
3 | "position": 3
4 | }
5 |
--------------------------------------------------------------------------------
/docs/protocol/_category_.json:
--------------------------------------------------------------------------------
1 | {
2 | "label": "Protocol",
3 | "position": 7
4 | }
5 |
--------------------------------------------------------------------------------
/docs/protocol/interest-graph-engine/_category_.json:
--------------------------------------------------------------------------------
1 | {
2 | "label": "Interest Graph Engine",
3 | "position": 3
4 | }
5 |
--------------------------------------------------------------------------------
/docs/protocol/social-data-network/_category_.json:
--------------------------------------------------------------------------------
1 | {
2 | "label": "Social Data Network",
3 | "position": 2
4 | }
5 |
--------------------------------------------------------------------------------
/docs/reference/_category_.json:
--------------------------------------------------------------------------------
1 | {
2 | "label": "API Reference",
3 | "position": 8
4 | }
--------------------------------------------------------------------------------
/docs/reference/directives/_category_.yml:
--------------------------------------------------------------------------------
1 | label: 'Directives'
2 |
--------------------------------------------------------------------------------
/docs/reference/directives/api-key-required.mdx:
--------------------------------------------------------------------------------
1 | ---
2 | id: api-key-required
3 | title: apiKeyRequired
4 | ---
5 |
6 |
7 | No description
8 |
9 | ```graphql
10 | directive @apiKeyRequired
11 | ```
12 |
13 |
14 |
15 |
16 |
--------------------------------------------------------------------------------
/docs/reference/directives/authenticated.mdx:
--------------------------------------------------------------------------------
1 | ---
2 | id: authenticated
3 | title: authenticated
4 | ---
5 |
6 |
7 | No description
8 |
9 | ```graphql
10 | directive @authenticated
11 | ```
12 |
13 |
14 |
15 |
16 |
--------------------------------------------------------------------------------
/docs/reference/enums/_category_.yml:
--------------------------------------------------------------------------------
1 | label: 'Enums'
2 |
--------------------------------------------------------------------------------
/docs/reference/graphql.md:
--------------------------------------------------------------------------------
1 | ---
2 | id: graphql
3 | sidebar_class_name: navbar__toggle
4 | slug: /reference
5 | ---
6 |
7 | This documentation has been automatically generated from the GraphQL schema.
8 |
--------------------------------------------------------------------------------
/docs/reference/inputs/_category_.yml:
--------------------------------------------------------------------------------
1 | label: 'Inputs'
2 |
--------------------------------------------------------------------------------
/docs/reference/interfaces/_category_.yml:
--------------------------------------------------------------------------------
1 | label: 'Interfaces'
2 |
--------------------------------------------------------------------------------
/docs/reference/interfaces/node.mdx:
--------------------------------------------------------------------------------
1 | ---
2 | id: node
3 | title: Node
4 | ---
5 |
6 |
7 | The `Node` interface follows relay.dev spec.
8 |
9 | ```graphql
10 | interface Node {
11 | id: ID!
12 | }
13 | ```
14 |
15 |
16 | ### Fields
17 |
18 | #### `id` ([`ID`](/reference/scalars/id))
19 |
20 | `id` the unique identifier for the Node object.
21 |
22 |
23 |
24 |
25 |
--------------------------------------------------------------------------------
/docs/reference/mutations/_category_.yml:
--------------------------------------------------------------------------------
1 | label: 'Mutations'
2 |
--------------------------------------------------------------------------------
/docs/reference/objects/_category_.yml:
--------------------------------------------------------------------------------
1 | label: 'Objects'
2 |
--------------------------------------------------------------------------------
/docs/reference/queries/_category_.yml:
--------------------------------------------------------------------------------
1 | label: 'Queries'
2 |
--------------------------------------------------------------------------------
/docs/reference/scalars/_category_.yml:
--------------------------------------------------------------------------------
1 | label: 'Scalars'
2 |
--------------------------------------------------------------------------------
/docs/reference/scalars/address-evm.mdx:
--------------------------------------------------------------------------------
1 | ---
2 | id: address-evm
3 | title: AddressEVM
4 | ---
5 |
6 |
7 | The `AddressEVM` custom scalar type represents EVM-based address format.
8 |
9 | ```graphql
10 | scalar AddressEVM
11 | ```
12 |
13 |
14 |
15 |
16 |
--------------------------------------------------------------------------------
/docs/reference/scalars/boolean.mdx:
--------------------------------------------------------------------------------
1 | ---
2 | id: boolean
3 | title: Boolean
4 | ---
5 |
6 |
7 | The `Boolean` scalar type represents `true` or `false`.
8 |
9 | ```graphql
10 | scalar Boolean
11 | ```
12 |
13 |
14 |
15 |
16 |
--------------------------------------------------------------------------------
/docs/reference/scalars/caip10-id.mdx:
--------------------------------------------------------------------------------
1 | ---
2 | id: caip10-id
3 | title: CAIP10ID
4 | ---
5 |
6 |
7 | The `CAIP10ID` custom scalar type represents CAIP10 account id.
8 |
9 | ```graphql
10 | scalar CAIP10ID
11 | ```
12 |
13 |
14 |
15 |
16 |
--------------------------------------------------------------------------------
/docs/reference/scalars/chain-id.mdx:
--------------------------------------------------------------------------------
1 | ---
2 | id: chain-id
3 | title: ChainID
4 | ---
5 |
6 |
7 | The `ChainID` custom scalar type represents Chain ID. Default to be ETH mainnet.
8 |
9 | ```graphql
10 | scalar ChainID
11 | ```
12 |
13 |
14 |
15 |
16 |
--------------------------------------------------------------------------------
/docs/reference/scalars/contract-address-evm.mdx:
--------------------------------------------------------------------------------
1 | ---
2 | id: contract-address-evm
3 | title: ContractAddressEVM
4 | ---
5 |
6 |
7 | The `ContractAddressEVM` custom scalar type represents EVM-based address format.
8 |
9 | ```graphql
10 | scalar ContractAddressEVM
11 | ```
12 |
13 |
14 |
15 |
16 |
--------------------------------------------------------------------------------
/docs/reference/scalars/cursor.mdx:
--------------------------------------------------------------------------------
1 | ---
2 | id: cursor
3 | title: Cursor
4 | ---
5 |
6 |
7 | The `Cursor` type follows relay.dev spec.
8 |
9 | ```graphql
10 | scalar Cursor
11 | ```
12 |
13 |
14 |
15 |
16 |
--------------------------------------------------------------------------------
/docs/reference/scalars/float.mdx:
--------------------------------------------------------------------------------
1 | ---
2 | id: float
3 | title: Float
4 | ---
5 |
6 |
7 | The `Float` scalar type represents signed double-precision fractional values as specified by [IEEE 754](https://en.wikipedia.org/wiki/IEEE_floating_point).
8 |
9 | ```graphql
10 | scalar Float
11 | ```
12 |
13 |
14 |
15 |
16 |
--------------------------------------------------------------------------------
/docs/reference/scalars/int.mdx:
--------------------------------------------------------------------------------
1 | ---
2 | id: int
3 | title: Int
4 | ---
5 |
6 |
7 | The `Int` scalar type represents non-fractional signed whole numeric values. Int can represent values between -(2^31) and 2^31 - 1.
8 |
9 | ```graphql
10 | scalar Int
11 | ```
12 |
13 |
14 |
15 |
16 |
--------------------------------------------------------------------------------
/docs/reference/scalars/profile-id.mdx:
--------------------------------------------------------------------------------
1 | ---
2 | id: profile-id
3 | title: ProfileID
4 | ---
5 |
6 |
7 | The `ProfileID` custom scalar type represents Profile ID generated by contract.
8 |
9 | ```graphql
10 | scalar ProfileID
11 | ```
12 |
13 |
14 |
15 |
16 |
--------------------------------------------------------------------------------
/docs/reference/scalars/string.mdx:
--------------------------------------------------------------------------------
1 | ---
2 | id: string
3 | title: String
4 | ---
5 |
6 |
7 | 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.
8 |
9 | ```graphql
10 | scalar String
11 | ```
12 |
13 |
14 |
15 |
16 |
--------------------------------------------------------------------------------
/docs/reference/scalars/url.mdx:
--------------------------------------------------------------------------------
1 | ---
2 | id: url
3 | title: URL
4 | ---
5 |
6 |
7 | The `URL` custom scalar type represents URL links.
8 |
9 | ```graphql
10 | scalar URL
11 | ```
12 |
13 |
14 |
15 |
16 |
--------------------------------------------------------------------------------
/docs/reference/sidebar-schema.js:
--------------------------------------------------------------------------------
1 | module.exports = {
2 | "schemaSidebar": [
3 | {
4 | "type": "autogenerated",
5 | "dirName": "/reference/"
6 | }
7 | ]
8 | };
--------------------------------------------------------------------------------
/docs/reference/unions/_category_.yml:
--------------------------------------------------------------------------------
1 | label: 'Unions'
2 |
--------------------------------------------------------------------------------
/docs/tutorials/_category_.json:
--------------------------------------------------------------------------------
1 | {
2 | "label": "Tutorials",
3 | "position": 6
4 | }
5 |
--------------------------------------------------------------------------------
/docs/tutorials/build-badge-app/_category_.json:
--------------------------------------------------------------------------------
1 | {
2 | "label": "Build SBT Issuing App",
3 | "position": 1
4 | }
5 |
--------------------------------------------------------------------------------
/docs/tutorials/build-content-app/_category_.json:
--------------------------------------------------------------------------------
1 | {
2 | "label": "Build Content Platform",
3 | "position": 2
4 | }
5 |
--------------------------------------------------------------------------------
/docs/tutorials/create-nft-with-backend/_category_.json:
--------------------------------------------------------------------------------
1 | {
2 | "label": "Create NFT with App Backend",
3 | "position": 3
4 | }
5 |
--------------------------------------------------------------------------------
/i18n/zh/docusaurus-plugin-content-docs/current/changelog/0.6.0.md:
--------------------------------------------------------------------------------
1 | ---
2 | id: 0.6.0
3 | title: 0.6.0
4 | slug: /changelog/0.6.0/
5 | sidebar_label: 0.6.0
6 | sidebar_position: 3
7 | ---
8 |
9 | ## Features
10 |
11 | **feat:** added chinese translation
12 |
13 | **chore:** updated new [grant](/overview/community/) apply link
14 |
--------------------------------------------------------------------------------
/i18n/zh/docusaurus-plugin-content-docs/current/changelog/0.8.0.md:
--------------------------------------------------------------------------------
1 | ---
2 | id: 0.8.0
3 | title: 0.8.0
4 | slug: /changelog/0.8.0/
5 | sidebar_label: 0.8.0
6 | sidebar_position: 1
7 | ---
8 |
9 | ## Features
10 |
11 | **feat:** added [Showcase](/overview/showcase/)
12 |
--------------------------------------------------------------------------------
/i18n/zh/docusaurus-plugin-content-docs/current/changelog/_category_.json:
--------------------------------------------------------------------------------
1 | {
2 | "label": "Changelog",
3 | "position": 10
4 | }
5 |
--------------------------------------------------------------------------------
/i18n/zh/docusaurus-plugin-content-docs/current/concepts/_category_.json:
--------------------------------------------------------------------------------
1 | {
2 | "label": "Concepts",
3 | "position": 3
4 | }
5 |
--------------------------------------------------------------------------------
/i18n/zh/docusaurus-plugin-content-docs/current/cyberconnect-api/_category_.json:
--------------------------------------------------------------------------------
1 | {
2 | "label": "CyberConnect API",
3 | "position": 6
4 | }
5 |
--------------------------------------------------------------------------------
/i18n/zh/docusaurus-plugin-content-docs/current/cyberconnect-api/graphql-api/_category_.json:
--------------------------------------------------------------------------------
1 | {
2 | "label": "GraphQL API",
3 | "position": 2
4 | }
5 |
--------------------------------------------------------------------------------
/i18n/zh/docusaurus-plugin-content-docs/current/cyberconnect-api/reference/_category_.json:
--------------------------------------------------------------------------------
1 | {
2 | "label": "Reference",
3 | "position": 3
4 | }
5 |
--------------------------------------------------------------------------------
/i18n/zh/docusaurus-plugin-content-docs/current/cyberconnect-api/reference/directives/_category_.yml:
--------------------------------------------------------------------------------
1 | label: 'Directives'
2 |
--------------------------------------------------------------------------------
/i18n/zh/docusaurus-plugin-content-docs/current/cyberconnect-api/reference/directives/admin.mdx:
--------------------------------------------------------------------------------
1 | ---
2 | id: admin
3 | title: admin
4 | ---
5 |
6 |
7 | No description
8 |
9 | ```graphql
10 | directive @admin
11 | ```
12 |
13 |
14 |
15 |
16 |
--------------------------------------------------------------------------------
/i18n/zh/docusaurus-plugin-content-docs/current/cyberconnect-api/reference/enums/_category_.yml:
--------------------------------------------------------------------------------
1 | label: 'Enums'
2 |
--------------------------------------------------------------------------------
/i18n/zh/docusaurus-plugin-content-docs/current/cyberconnect-api/reference/graphql.md:
--------------------------------------------------------------------------------
1 | ---
2 | id: graphql
3 | sidebar_class_name: navbar__toggle
4 | ---
5 |
6 | This documentation has been automatically generated from the GraphQL schema.
7 |
--------------------------------------------------------------------------------
/i18n/zh/docusaurus-plugin-content-docs/current/cyberconnect-api/reference/inputs/_category_.yml:
--------------------------------------------------------------------------------
1 | label: 'Inputs'
2 |
--------------------------------------------------------------------------------
/i18n/zh/docusaurus-plugin-content-docs/current/cyberconnect-api/reference/interfaces/node.mdx:
--------------------------------------------------------------------------------
1 | ---
2 | id: node
3 | title: Node
4 | ---
5 |
6 |
7 | No description
8 |
9 | ```graphql
10 | interface Node {
11 | id: ID!
12 | }
13 | ```
14 |
15 |
16 | ### Fields
17 |
18 | #### `id` ([`ID`](/cyberconnect-api/reference/scalars/id))
19 |
20 |
21 |
22 |
23 |
24 |
25 |
--------------------------------------------------------------------------------
/i18n/zh/docusaurus-plugin-content-docs/current/cyberconnect-api/reference/objects/_category_.yml:
--------------------------------------------------------------------------------
1 | label: 'Objects'
2 |
--------------------------------------------------------------------------------
/i18n/zh/docusaurus-plugin-content-docs/current/cyberconnect-api/reference/objects/social.mdx:
--------------------------------------------------------------------------------
1 | ---
2 | id: social
3 | title: Social
4 | ---
5 |
6 |
7 | No description
8 |
9 | ```graphql
10 | type Social {
11 | twitter: String!
12 | }
13 | ```
14 |
15 |
16 | ### Fields
17 |
18 | #### `twitter` ([`String`](/cyberconnect-api/reference/scalars/string))
19 |
--------------------------------------------------------------------------------
/i18n/zh/docusaurus-plugin-content-docs/current/cyberconnect-api/reference/queries/_category_.yml:
--------------------------------------------------------------------------------
1 | label: 'Queries'
2 |
--------------------------------------------------------------------------------
/i18n/zh/docusaurus-plugin-content-docs/current/cyberconnect-api/reference/scalars/_category_.yml:
--------------------------------------------------------------------------------
1 | label: 'Scalars'
2 |
--------------------------------------------------------------------------------
/i18n/zh/docusaurus-plugin-content-docs/current/cyberconnect-api/reference/scalars/boolean.mdx:
--------------------------------------------------------------------------------
1 | ---
2 | id: boolean
3 | title: Boolean
4 | ---
5 |
6 |
7 | The `Boolean` scalar type represents `true` or `false`.
8 |
9 | ```graphql
10 | scalar Boolean
11 | ```
12 |
13 |
14 |
15 |
16 |
--------------------------------------------------------------------------------
/i18n/zh/docusaurus-plugin-content-docs/current/cyberconnect-api/reference/scalars/int.mdx:
--------------------------------------------------------------------------------
1 | ---
2 | id: int
3 | title: Int
4 | ---
5 |
6 |
7 | The `Int` scalar type represents non-fractional signed whole numeric values. Int can represent values between -(2^31) and 2^31 - 1.
8 |
9 | ```graphql
10 | scalar Int
11 | ```
12 |
13 |
14 |
15 |
16 |
--------------------------------------------------------------------------------
/i18n/zh/docusaurus-plugin-content-docs/current/cyberconnect-api/reference/sidebar-schema.js:
--------------------------------------------------------------------------------
1 | module.exports = {
2 | "schemaSidebar": [
3 | {
4 | "type": "autogenerated",
5 | "dirName": "/cyberconnect-api/reference/"
6 | }
7 | ]
8 | };
--------------------------------------------------------------------------------
/i18n/zh/docusaurus-plugin-content-docs/current/cyberconnect-api/rest-api/_category_.json:
--------------------------------------------------------------------------------
1 | {
2 | "label": "REST API",
3 | "position": 2
4 | }
5 |
--------------------------------------------------------------------------------
/i18n/zh/docusaurus-plugin-content-docs/current/cyberconnect-sdk/_category_.json:
--------------------------------------------------------------------------------
1 | {
2 | "label": "CyberConnect SDK",
3 | "position": 5
4 | }
5 |
--------------------------------------------------------------------------------
/i18n/zh/docusaurus-plugin-content-docs/current/get-started/_category_.json:
--------------------------------------------------------------------------------
1 | {
2 | "label": "Get started",
3 | "position": 4
4 | }
5 |
--------------------------------------------------------------------------------
/i18n/zh/docusaurus-plugin-content-docs/current/overview/_category_.json:
--------------------------------------------------------------------------------
1 | {
2 | "label": "Overview",
3 | "position": 2
4 | }
5 |
--------------------------------------------------------------------------------
/i18n/zh/docusaurus-plugin-content-docs/current/protocol/_category_.json:
--------------------------------------------------------------------------------
1 | {
2 | "label": "Protocol",
3 | "position": 7
4 | }
5 |
--------------------------------------------------------------------------------
/i18n/zh/docusaurus-plugin-content-docs/current/resources/_category_.json:
--------------------------------------------------------------------------------
1 | {
2 | "label": "Resources",
3 | "position": 9
4 | }
5 |
--------------------------------------------------------------------------------
/i18n/zh/docusaurus-plugin-content-docs/current/resources/terminology/_category_.json:
--------------------------------------------------------------------------------
1 | {
2 | "label": "Terminology",
3 | "position": 2
4 | }
5 |
--------------------------------------------------------------------------------
/i18n/zh/docusaurus-plugin-content-docs/current/tutorials/_category_.json:
--------------------------------------------------------------------------------
1 | {
2 | "label": "Tutorials",
3 | "position": 8
4 | }
5 |
--------------------------------------------------------------------------------
/i18n/zh/docusaurus-plugin-content-docs/version-0.10.0/changelog/0.6.0.md:
--------------------------------------------------------------------------------
1 | ---
2 | id: 0.6.0
3 | title: 0.6.0
4 | slug: /changelog/0.6.0/
5 | sidebar_label: 0.6.0
6 | sidebar_position: 3
7 | ---
8 |
9 | ## Features
10 |
11 | **feat:** added chinese translation
12 |
13 | **chore:** updated new [grant](/overview/community/) apply link
14 |
--------------------------------------------------------------------------------
/i18n/zh/docusaurus-plugin-content-docs/version-0.10.0/changelog/0.8.0.md:
--------------------------------------------------------------------------------
1 | ---
2 | id: 0.8.0
3 | title: 0.8.0
4 | slug: /changelog/0.8.0/
5 | sidebar_label: 0.8.0
6 | sidebar_position: 1
7 | ---
8 |
9 | ## Features
10 |
11 | **feat:** added [Showcase](/overview/showcase/)
12 |
--------------------------------------------------------------------------------
/i18n/zh/docusaurus-plugin-content-docs/version-0.10.0/changelog/_category_.json:
--------------------------------------------------------------------------------
1 | {
2 | "label": "Changelog",
3 | "position": 10
4 | }
5 |
--------------------------------------------------------------------------------
/i18n/zh/docusaurus-plugin-content-docs/version-0.10.0/concepts/_category_.json:
--------------------------------------------------------------------------------
1 | {
2 | "label": "Concepts",
3 | "position": 3
4 | }
5 |
--------------------------------------------------------------------------------
/i18n/zh/docusaurus-plugin-content-docs/version-0.10.0/cyberconnect-api/_category_.json:
--------------------------------------------------------------------------------
1 | {
2 | "label": "CyberConnect API",
3 | "position": 6
4 | }
5 |
--------------------------------------------------------------------------------
/i18n/zh/docusaurus-plugin-content-docs/version-0.10.0/cyberconnect-api/graphql-api/_category_.json:
--------------------------------------------------------------------------------
1 | {
2 | "label": "GraphQL API",
3 | "position": 2
4 | }
5 |
--------------------------------------------------------------------------------
/i18n/zh/docusaurus-plugin-content-docs/version-0.10.0/cyberconnect-api/reference/_category_.json:
--------------------------------------------------------------------------------
1 | {
2 | "label": "Reference",
3 | "position": 3
4 | }
5 |
--------------------------------------------------------------------------------
/i18n/zh/docusaurus-plugin-content-docs/version-0.10.0/cyberconnect-api/reference/directives/_category_.yml:
--------------------------------------------------------------------------------
1 | label: 'Directives'
2 |
--------------------------------------------------------------------------------
/i18n/zh/docusaurus-plugin-content-docs/version-0.10.0/cyberconnect-api/reference/directives/admin.mdx:
--------------------------------------------------------------------------------
1 | ---
2 | id: admin
3 | title: admin
4 | ---
5 |
6 |
7 | No description
8 |
9 | ```graphql
10 | directive @admin
11 | ```
12 |
13 |
14 |
15 |
16 |
--------------------------------------------------------------------------------
/i18n/zh/docusaurus-plugin-content-docs/version-0.10.0/cyberconnect-api/reference/enums/_category_.yml:
--------------------------------------------------------------------------------
1 | label: 'Enums'
2 |
--------------------------------------------------------------------------------
/i18n/zh/docusaurus-plugin-content-docs/version-0.10.0/cyberconnect-api/reference/graphql.md:
--------------------------------------------------------------------------------
1 | ---
2 | id: graphql
3 | sidebar_class_name: navbar__toggle
4 | ---
5 |
6 | This documentation has been automatically generated from the GraphQL schema.
7 |
--------------------------------------------------------------------------------
/i18n/zh/docusaurus-plugin-content-docs/version-0.10.0/cyberconnect-api/reference/inputs/_category_.yml:
--------------------------------------------------------------------------------
1 | label: 'Inputs'
2 |
--------------------------------------------------------------------------------
/i18n/zh/docusaurus-plugin-content-docs/version-0.10.0/cyberconnect-api/reference/interfaces/node.mdx:
--------------------------------------------------------------------------------
1 | ---
2 | id: node
3 | title: Node
4 | ---
5 |
6 |
7 | No description
8 |
9 | ```graphql
10 | interface Node {
11 | id: ID!
12 | }
13 | ```
14 |
15 |
16 | ### Fields
17 |
18 | #### `id` ([`ID`](/cyberconnect-api/reference/scalars/id))
19 |
20 |
21 |
22 |
23 |
24 |
25 |
--------------------------------------------------------------------------------
/i18n/zh/docusaurus-plugin-content-docs/version-0.10.0/cyberconnect-api/reference/objects/_category_.yml:
--------------------------------------------------------------------------------
1 | label: 'Objects'
2 |
--------------------------------------------------------------------------------
/i18n/zh/docusaurus-plugin-content-docs/version-0.10.0/cyberconnect-api/reference/objects/social.mdx:
--------------------------------------------------------------------------------
1 | ---
2 | id: social
3 | title: Social
4 | ---
5 |
6 |
7 | No description
8 |
9 | ```graphql
10 | type Social {
11 | twitter: String!
12 | }
13 | ```
14 |
15 |
16 | ### Fields
17 |
18 | #### `twitter` ([`String`](/cyberconnect-api/reference/scalars/string))
19 |
--------------------------------------------------------------------------------
/i18n/zh/docusaurus-plugin-content-docs/version-0.10.0/cyberconnect-api/reference/queries/_category_.yml:
--------------------------------------------------------------------------------
1 | label: 'Queries'
2 |
--------------------------------------------------------------------------------
/i18n/zh/docusaurus-plugin-content-docs/version-0.10.0/cyberconnect-api/reference/scalars/_category_.yml:
--------------------------------------------------------------------------------
1 | label: 'Scalars'
2 |
--------------------------------------------------------------------------------
/i18n/zh/docusaurus-plugin-content-docs/version-0.10.0/cyberconnect-api/reference/scalars/boolean.mdx:
--------------------------------------------------------------------------------
1 | ---
2 | id: boolean
3 | title: Boolean
4 | ---
5 |
6 |
7 | The `Boolean` scalar type represents `true` or `false`.
8 |
9 | ```graphql
10 | scalar Boolean
11 | ```
12 |
13 |
14 |
15 |
16 |
--------------------------------------------------------------------------------
/i18n/zh/docusaurus-plugin-content-docs/version-0.10.0/cyberconnect-api/reference/scalars/int.mdx:
--------------------------------------------------------------------------------
1 | ---
2 | id: int
3 | title: Int
4 | ---
5 |
6 |
7 | The `Int` scalar type represents non-fractional signed whole numeric values. Int can represent values between -(2^31) and 2^31 - 1.
8 |
9 | ```graphql
10 | scalar Int
11 | ```
12 |
13 |
14 |
15 |
16 |
--------------------------------------------------------------------------------
/i18n/zh/docusaurus-plugin-content-docs/version-0.10.0/cyberconnect-api/reference/sidebar-schema.js:
--------------------------------------------------------------------------------
1 | module.exports = {
2 | "schemaSidebar": [
3 | {
4 | "type": "autogenerated",
5 | "dirName": "/cyberconnect-api/reference/"
6 | }
7 | ]
8 | };
--------------------------------------------------------------------------------
/i18n/zh/docusaurus-plugin-content-docs/version-0.10.0/cyberconnect-api/rest-api/_category_.json:
--------------------------------------------------------------------------------
1 | {
2 | "label": "REST API",
3 | "position": 2
4 | }
5 |
--------------------------------------------------------------------------------
/i18n/zh/docusaurus-plugin-content-docs/version-0.10.0/cyberconnect-sdk/_category_.json:
--------------------------------------------------------------------------------
1 | {
2 | "label": "CyberConnect SDK",
3 | "position": 5
4 | }
5 |
--------------------------------------------------------------------------------
/i18n/zh/docusaurus-plugin-content-docs/version-0.10.0/get-started/_category_.json:
--------------------------------------------------------------------------------
1 | {
2 | "label": "Get started",
3 | "position": 4
4 | }
5 |
--------------------------------------------------------------------------------
/i18n/zh/docusaurus-plugin-content-docs/version-0.10.0/overview/_category_.json:
--------------------------------------------------------------------------------
1 | {
2 | "label": "Overview",
3 | "position": 2
4 | }
5 |
--------------------------------------------------------------------------------
/i18n/zh/docusaurus-plugin-content-docs/version-0.10.0/protocol/_category_.json:
--------------------------------------------------------------------------------
1 | {
2 | "label": "Protocol",
3 | "position": 7
4 | }
5 |
--------------------------------------------------------------------------------
/i18n/zh/docusaurus-plugin-content-docs/version-0.10.0/resources/_category_.json:
--------------------------------------------------------------------------------
1 | {
2 | "label": "Resources",
3 | "position": 9
4 | }
5 |
--------------------------------------------------------------------------------
/i18n/zh/docusaurus-plugin-content-docs/version-0.10.0/resources/terminology/_category_.json:
--------------------------------------------------------------------------------
1 | {
2 | "label": "Terminology",
3 | "position": 2
4 | }
5 |
--------------------------------------------------------------------------------
/i18n/zh/docusaurus-plugin-content-docs/version-0.10.0/tutorials/_category_.json:
--------------------------------------------------------------------------------
1 | {
2 | "label": "Tutorials",
3 | "position": 8
4 | }
5 |
--------------------------------------------------------------------------------
/i18n/zh/docusaurus-plugin-content-docs/version-0.5.0/changelog/_category_.json:
--------------------------------------------------------------------------------
1 | {
2 | "label": "Changelog",
3 | "position": 10
4 | }
5 |
--------------------------------------------------------------------------------
/i18n/zh/docusaurus-plugin-content-docs/version-0.5.0/concepts/_category_.json:
--------------------------------------------------------------------------------
1 | {
2 | "label": "Concepts",
3 | "position": 3
4 | }
5 |
--------------------------------------------------------------------------------
/i18n/zh/docusaurus-plugin-content-docs/version-0.5.0/cyberconnect-api/_category_.json:
--------------------------------------------------------------------------------
1 | {
2 | "label": "CyberConnect API",
3 | "position": 6
4 | }
5 |
--------------------------------------------------------------------------------
/i18n/zh/docusaurus-plugin-content-docs/version-0.5.0/cyberconnect-api/graphql-api/_category_.json:
--------------------------------------------------------------------------------
1 | {
2 | "label": "GraphQL API",
3 | "position": 2
4 | }
5 |
--------------------------------------------------------------------------------
/i18n/zh/docusaurus-plugin-content-docs/version-0.5.0/cyberconnect-api/reference/_category_.json:
--------------------------------------------------------------------------------
1 | {
2 | "label": "Reference",
3 | "position": 3
4 | }
5 |
--------------------------------------------------------------------------------
/i18n/zh/docusaurus-plugin-content-docs/version-0.5.0/cyberconnect-api/reference/directives/_category_.yml:
--------------------------------------------------------------------------------
1 | label: 'Directives'
2 |
--------------------------------------------------------------------------------
/i18n/zh/docusaurus-plugin-content-docs/version-0.5.0/cyberconnect-api/reference/directives/admin.mdx:
--------------------------------------------------------------------------------
1 | ---
2 | id: admin
3 | title: admin
4 | ---
5 |
6 |
7 | No description
8 |
9 | ```graphql
10 | directive @admin
11 | ```
12 |
13 |
14 |
15 |
16 |
--------------------------------------------------------------------------------
/i18n/zh/docusaurus-plugin-content-docs/version-0.5.0/cyberconnect-api/reference/enums/_category_.yml:
--------------------------------------------------------------------------------
1 | label: 'Enums'
2 |
--------------------------------------------------------------------------------
/i18n/zh/docusaurus-plugin-content-docs/version-0.5.0/cyberconnect-api/reference/graphql.md:
--------------------------------------------------------------------------------
1 | ---
2 | id: graphql
3 | sidebar_class_name: navbar__toggle
4 | ---
5 |
6 | This documentation has been automatically generated from the GraphQL schema.
7 |
--------------------------------------------------------------------------------
/i18n/zh/docusaurus-plugin-content-docs/version-0.5.0/cyberconnect-api/reference/inputs/_category_.yml:
--------------------------------------------------------------------------------
1 | label: 'Inputs'
2 |
--------------------------------------------------------------------------------
/i18n/zh/docusaurus-plugin-content-docs/version-0.5.0/cyberconnect-api/reference/interfaces/node.mdx:
--------------------------------------------------------------------------------
1 | ---
2 | id: node
3 | title: Node
4 | ---
5 |
6 |
7 | No description
8 |
9 | ```graphql
10 | interface Node {
11 | id: ID!
12 | }
13 | ```
14 |
15 |
16 | ### Fields
17 |
18 | #### `id` ([`ID`](/cyberconnect-api/reference/scalars/id))
19 |
20 |
21 |
22 |
23 |
24 |
25 |
--------------------------------------------------------------------------------
/i18n/zh/docusaurus-plugin-content-docs/version-0.5.0/cyberconnect-api/reference/objects/_category_.yml:
--------------------------------------------------------------------------------
1 | label: 'Objects'
2 |
--------------------------------------------------------------------------------
/i18n/zh/docusaurus-plugin-content-docs/version-0.5.0/cyberconnect-api/reference/objects/social.mdx:
--------------------------------------------------------------------------------
1 | ---
2 | id: social
3 | title: Social
4 | ---
5 |
6 |
7 | No description
8 |
9 | ```graphql
10 | type Social {
11 | twitter: String!
12 | }
13 | ```
14 |
15 |
16 | ### Fields
17 |
18 | #### `twitter` ([`String`](/cyberconnect-api/reference/scalars/string))
19 |
--------------------------------------------------------------------------------
/i18n/zh/docusaurus-plugin-content-docs/version-0.5.0/cyberconnect-api/reference/queries/_category_.yml:
--------------------------------------------------------------------------------
1 | label: 'Queries'
2 |
--------------------------------------------------------------------------------
/i18n/zh/docusaurus-plugin-content-docs/version-0.5.0/cyberconnect-api/reference/scalars/_category_.yml:
--------------------------------------------------------------------------------
1 | label: 'Scalars'
2 |
--------------------------------------------------------------------------------
/i18n/zh/docusaurus-plugin-content-docs/version-0.5.0/cyberconnect-api/reference/scalars/boolean.mdx:
--------------------------------------------------------------------------------
1 | ---
2 | id: boolean
3 | title: Boolean
4 | ---
5 |
6 |
7 | The `Boolean` scalar type represents `true` or `false`.
8 |
9 | ```graphql
10 | scalar Boolean
11 | ```
12 |
13 |
14 |
15 |
16 |
--------------------------------------------------------------------------------
/i18n/zh/docusaurus-plugin-content-docs/version-0.5.0/cyberconnect-api/reference/scalars/int.mdx:
--------------------------------------------------------------------------------
1 | ---
2 | id: int
3 | title: Int
4 | ---
5 |
6 |
7 | The `Int` scalar type represents non-fractional signed whole numeric values. Int can represent values between -(2^31) and 2^31 - 1.
8 |
9 | ```graphql
10 | scalar Int
11 | ```
12 |
13 |
14 |
15 |
16 |
--------------------------------------------------------------------------------
/i18n/zh/docusaurus-plugin-content-docs/version-0.5.0/cyberconnect-api/reference/sidebar-schema.js:
--------------------------------------------------------------------------------
1 | module.exports = {
2 | "schemaSidebar": [
3 | {
4 | "type": "autogenerated",
5 | "dirName": "/cyberconnect-api/reference/"
6 | }
7 | ]
8 | };
--------------------------------------------------------------------------------
/i18n/zh/docusaurus-plugin-content-docs/version-0.5.0/cyberconnect-api/rest-api/_category_.json:
--------------------------------------------------------------------------------
1 | {
2 | "label": "REST API",
3 | "position": 2
4 | }
5 |
--------------------------------------------------------------------------------
/i18n/zh/docusaurus-plugin-content-docs/version-0.5.0/cyberconnect-sdk/_category_.json:
--------------------------------------------------------------------------------
1 | {
2 | "label": "CyberConnect SDK",
3 | "position": 5
4 | }
5 |
--------------------------------------------------------------------------------
/i18n/zh/docusaurus-plugin-content-docs/version-0.5.0/get-started/_category_.json:
--------------------------------------------------------------------------------
1 | {
2 | "label": "Get started",
3 | "position": 4
4 | }
5 |
--------------------------------------------------------------------------------
/i18n/zh/docusaurus-plugin-content-docs/version-0.5.0/overview/_category_.json:
--------------------------------------------------------------------------------
1 | {
2 | "label": "Overview",
3 | "position": 2
4 | }
5 |
--------------------------------------------------------------------------------
/i18n/zh/docusaurus-plugin-content-docs/version-0.5.0/protocol/_category_.json:
--------------------------------------------------------------------------------
1 | {
2 | "label": "Protocol",
3 | "position": 7
4 | }
5 |
--------------------------------------------------------------------------------
/i18n/zh/docusaurus-plugin-content-docs/version-0.5.0/resources/_category_.json:
--------------------------------------------------------------------------------
1 | {
2 | "label": "Resources",
3 | "position": 9
4 | }
5 |
--------------------------------------------------------------------------------
/i18n/zh/docusaurus-plugin-content-docs/version-0.5.0/resources/terminology/_category_.json:
--------------------------------------------------------------------------------
1 | {
2 | "label": "Terminology",
3 | "position": 2
4 | }
5 |
--------------------------------------------------------------------------------
/i18n/zh/docusaurus-plugin-content-docs/version-0.5.0/tutorials/_category_.json:
--------------------------------------------------------------------------------
1 | {
2 | "label": "Tutorials",
3 | "position": 8
4 | }
5 |
--------------------------------------------------------------------------------
/i18n/zh/docusaurus-plugin-content-docs/version-0.6.0/changelog/0.6.0.md:
--------------------------------------------------------------------------------
1 | ---
2 | id: 0.6.0
3 | title: 0.6.0
4 | slug: /changelog/0.6.0/
5 | sidebar_label: 0.6.0
6 | sidebar_position: 1
7 | ---
8 |
9 | ## Features
10 |
11 | **feat:** added chinese translation
12 |
13 | **chore:** updated new [grant](/overview/community/) apply link
14 |
--------------------------------------------------------------------------------
/i18n/zh/docusaurus-plugin-content-docs/version-0.6.0/changelog/_category_.json:
--------------------------------------------------------------------------------
1 | {
2 | "label": "Changelog",
3 | "position": 10
4 | }
5 |
--------------------------------------------------------------------------------
/i18n/zh/docusaurus-plugin-content-docs/version-0.6.0/concepts/_category_.json:
--------------------------------------------------------------------------------
1 | {
2 | "label": "Concepts",
3 | "position": 3
4 | }
5 |
--------------------------------------------------------------------------------
/i18n/zh/docusaurus-plugin-content-docs/version-0.6.0/cyberconnect-api/_category_.json:
--------------------------------------------------------------------------------
1 | {
2 | "label": "CyberConnect API",
3 | "position": 6
4 | }
5 |
--------------------------------------------------------------------------------
/i18n/zh/docusaurus-plugin-content-docs/version-0.6.0/cyberconnect-api/graphql-api/_category_.json:
--------------------------------------------------------------------------------
1 | {
2 | "label": "GraphQL API",
3 | "position": 2
4 | }
5 |
--------------------------------------------------------------------------------
/i18n/zh/docusaurus-plugin-content-docs/version-0.6.0/cyberconnect-api/reference/_category_.json:
--------------------------------------------------------------------------------
1 | {
2 | "label": "Reference",
3 | "position": 3
4 | }
5 |
--------------------------------------------------------------------------------
/i18n/zh/docusaurus-plugin-content-docs/version-0.6.0/cyberconnect-api/reference/directives/_category_.yml:
--------------------------------------------------------------------------------
1 | label: 'Directives'
2 |
--------------------------------------------------------------------------------
/i18n/zh/docusaurus-plugin-content-docs/version-0.6.0/cyberconnect-api/reference/directives/admin.mdx:
--------------------------------------------------------------------------------
1 | ---
2 | id: admin
3 | title: admin
4 | ---
5 |
6 |
7 | No description
8 |
9 | ```graphql
10 | directive @admin
11 | ```
12 |
13 |
14 |
15 |
16 |
--------------------------------------------------------------------------------
/i18n/zh/docusaurus-plugin-content-docs/version-0.6.0/cyberconnect-api/reference/enums/_category_.yml:
--------------------------------------------------------------------------------
1 | label: 'Enums'
2 |
--------------------------------------------------------------------------------
/i18n/zh/docusaurus-plugin-content-docs/version-0.6.0/cyberconnect-api/reference/graphql.md:
--------------------------------------------------------------------------------
1 | ---
2 | id: graphql
3 | sidebar_class_name: navbar__toggle
4 | ---
5 |
6 | This documentation has been automatically generated from the GraphQL schema.
7 |
--------------------------------------------------------------------------------
/i18n/zh/docusaurus-plugin-content-docs/version-0.6.0/cyberconnect-api/reference/inputs/_category_.yml:
--------------------------------------------------------------------------------
1 | label: 'Inputs'
2 |
--------------------------------------------------------------------------------
/i18n/zh/docusaurus-plugin-content-docs/version-0.6.0/cyberconnect-api/reference/interfaces/node.mdx:
--------------------------------------------------------------------------------
1 | ---
2 | id: node
3 | title: Node
4 | ---
5 |
6 |
7 | No description
8 |
9 | ```graphql
10 | interface Node {
11 | id: ID!
12 | }
13 | ```
14 |
15 |
16 | ### Fields
17 |
18 | #### `id` ([`ID`](/cyberconnect-api/reference/scalars/id))
19 |
20 |
21 |
22 |
23 |
24 |
25 |
--------------------------------------------------------------------------------
/i18n/zh/docusaurus-plugin-content-docs/version-0.6.0/cyberconnect-api/reference/objects/_category_.yml:
--------------------------------------------------------------------------------
1 | label: 'Objects'
2 |
--------------------------------------------------------------------------------
/i18n/zh/docusaurus-plugin-content-docs/version-0.6.0/cyberconnect-api/reference/objects/social.mdx:
--------------------------------------------------------------------------------
1 | ---
2 | id: social
3 | title: Social
4 | ---
5 |
6 |
7 | No description
8 |
9 | ```graphql
10 | type Social {
11 | twitter: String!
12 | }
13 | ```
14 |
15 |
16 | ### Fields
17 |
18 | #### `twitter` ([`String`](/cyberconnect-api/reference/scalars/string))
19 |
--------------------------------------------------------------------------------
/i18n/zh/docusaurus-plugin-content-docs/version-0.6.0/cyberconnect-api/reference/queries/_category_.yml:
--------------------------------------------------------------------------------
1 | label: 'Queries'
2 |
--------------------------------------------------------------------------------
/i18n/zh/docusaurus-plugin-content-docs/version-0.6.0/cyberconnect-api/reference/scalars/_category_.yml:
--------------------------------------------------------------------------------
1 | label: 'Scalars'
2 |
--------------------------------------------------------------------------------
/i18n/zh/docusaurus-plugin-content-docs/version-0.6.0/cyberconnect-api/reference/scalars/boolean.mdx:
--------------------------------------------------------------------------------
1 | ---
2 | id: boolean
3 | title: Boolean
4 | ---
5 |
6 |
7 | The `Boolean` scalar type represents `true` or `false`.
8 |
9 | ```graphql
10 | scalar Boolean
11 | ```
12 |
13 |
14 |
15 |
16 |
--------------------------------------------------------------------------------
/i18n/zh/docusaurus-plugin-content-docs/version-0.6.0/cyberconnect-api/reference/scalars/int.mdx:
--------------------------------------------------------------------------------
1 | ---
2 | id: int
3 | title: Int
4 | ---
5 |
6 |
7 | The `Int` scalar type represents non-fractional signed whole numeric values. Int can represent values between -(2^31) and 2^31 - 1.
8 |
9 | ```graphql
10 | scalar Int
11 | ```
12 |
13 |
14 |
15 |
16 |
--------------------------------------------------------------------------------
/i18n/zh/docusaurus-plugin-content-docs/version-0.6.0/cyberconnect-api/reference/sidebar-schema.js:
--------------------------------------------------------------------------------
1 | module.exports = {
2 | "schemaSidebar": [
3 | {
4 | "type": "autogenerated",
5 | "dirName": "/cyberconnect-api/reference/"
6 | }
7 | ]
8 | };
--------------------------------------------------------------------------------
/i18n/zh/docusaurus-plugin-content-docs/version-0.6.0/cyberconnect-api/rest-api/_category_.json:
--------------------------------------------------------------------------------
1 | {
2 | "label": "REST API",
3 | "position": 2
4 | }
5 |
--------------------------------------------------------------------------------
/i18n/zh/docusaurus-plugin-content-docs/version-0.6.0/cyberconnect-sdk/_category_.json:
--------------------------------------------------------------------------------
1 | {
2 | "label": "CyberConnect SDK",
3 | "position": 5
4 | }
5 |
--------------------------------------------------------------------------------
/i18n/zh/docusaurus-plugin-content-docs/version-0.6.0/get-started/_category_.json:
--------------------------------------------------------------------------------
1 | {
2 | "label": "Get started",
3 | "position": 4
4 | }
5 |
--------------------------------------------------------------------------------
/i18n/zh/docusaurus-plugin-content-docs/version-0.6.0/overview/_category_.json:
--------------------------------------------------------------------------------
1 | {
2 | "label": "Overview",
3 | "position": 2
4 | }
5 |
--------------------------------------------------------------------------------
/i18n/zh/docusaurus-plugin-content-docs/version-0.6.0/protocol/_category_.json:
--------------------------------------------------------------------------------
1 | {
2 | "label": "Protocol",
3 | "position": 7
4 | }
5 |
--------------------------------------------------------------------------------
/i18n/zh/docusaurus-plugin-content-docs/version-0.6.0/resources/_category_.json:
--------------------------------------------------------------------------------
1 | {
2 | "label": "Resources",
3 | "position": 9
4 | }
5 |
--------------------------------------------------------------------------------
/i18n/zh/docusaurus-plugin-content-docs/version-0.6.0/resources/terminology/_category_.json:
--------------------------------------------------------------------------------
1 | {
2 | "label": "Terminology",
3 | "position": 2
4 | }
5 |
--------------------------------------------------------------------------------
/i18n/zh/docusaurus-plugin-content-docs/version-0.6.0/tutorials/_category_.json:
--------------------------------------------------------------------------------
1 | {
2 | "label": "Tutorials",
3 | "position": 8
4 | }
5 |
--------------------------------------------------------------------------------
/i18n/zh/docusaurus-plugin-content-docs/version-0.7.0/changelog/0.6.0.md:
--------------------------------------------------------------------------------
1 | ---
2 | id: 0.6.0
3 | title: 0.6.0
4 | slug: /changelog/0.6.0/
5 | sidebar_label: 0.6.0
6 | sidebar_position: 2
7 | ---
8 |
9 | ## Features
10 |
11 | **feat:** added chinese translation
12 |
13 | **chore:** updated new [grant](/overview/community/) apply link
14 |
--------------------------------------------------------------------------------
/i18n/zh/docusaurus-plugin-content-docs/version-0.7.0/changelog/_category_.json:
--------------------------------------------------------------------------------
1 | {
2 | "label": "Changelog",
3 | "position": 10
4 | }
5 |
--------------------------------------------------------------------------------
/i18n/zh/docusaurus-plugin-content-docs/version-0.7.0/concepts/_category_.json:
--------------------------------------------------------------------------------
1 | {
2 | "label": "Concepts",
3 | "position": 3
4 | }
5 |
--------------------------------------------------------------------------------
/i18n/zh/docusaurus-plugin-content-docs/version-0.7.0/cyberconnect-api/_category_.json:
--------------------------------------------------------------------------------
1 | {
2 | "label": "CyberConnect API",
3 | "position": 6
4 | }
5 |
--------------------------------------------------------------------------------
/i18n/zh/docusaurus-plugin-content-docs/version-0.7.0/cyberconnect-api/graphql-api/_category_.json:
--------------------------------------------------------------------------------
1 | {
2 | "label": "GraphQL API",
3 | "position": 2
4 | }
5 |
--------------------------------------------------------------------------------
/i18n/zh/docusaurus-plugin-content-docs/version-0.7.0/cyberconnect-api/reference/_category_.json:
--------------------------------------------------------------------------------
1 | {
2 | "label": "Reference",
3 | "position": 3
4 | }
5 |
--------------------------------------------------------------------------------
/i18n/zh/docusaurus-plugin-content-docs/version-0.7.0/cyberconnect-api/reference/directives/_category_.yml:
--------------------------------------------------------------------------------
1 | label: 'Directives'
2 |
--------------------------------------------------------------------------------
/i18n/zh/docusaurus-plugin-content-docs/version-0.7.0/cyberconnect-api/reference/directives/admin.mdx:
--------------------------------------------------------------------------------
1 | ---
2 | id: admin
3 | title: admin
4 | ---
5 |
6 |
7 | No description
8 |
9 | ```graphql
10 | directive @admin
11 | ```
12 |
13 |
14 |
15 |
16 |
--------------------------------------------------------------------------------
/i18n/zh/docusaurus-plugin-content-docs/version-0.7.0/cyberconnect-api/reference/enums/_category_.yml:
--------------------------------------------------------------------------------
1 | label: 'Enums'
2 |
--------------------------------------------------------------------------------
/i18n/zh/docusaurus-plugin-content-docs/version-0.7.0/cyberconnect-api/reference/graphql.md:
--------------------------------------------------------------------------------
1 | ---
2 | id: graphql
3 | sidebar_class_name: navbar__toggle
4 | ---
5 |
6 | This documentation has been automatically generated from the GraphQL schema.
7 |
--------------------------------------------------------------------------------
/i18n/zh/docusaurus-plugin-content-docs/version-0.7.0/cyberconnect-api/reference/inputs/_category_.yml:
--------------------------------------------------------------------------------
1 | label: 'Inputs'
2 |
--------------------------------------------------------------------------------
/i18n/zh/docusaurus-plugin-content-docs/version-0.7.0/cyberconnect-api/reference/interfaces/node.mdx:
--------------------------------------------------------------------------------
1 | ---
2 | id: node
3 | title: Node
4 | ---
5 |
6 |
7 | No description
8 |
9 | ```graphql
10 | interface Node {
11 | id: ID!
12 | }
13 | ```
14 |
15 |
16 | ### Fields
17 |
18 | #### `id` ([`ID`](/cyberconnect-api/reference/scalars/id))
19 |
20 |
21 |
22 |
23 |
24 |
25 |
--------------------------------------------------------------------------------
/i18n/zh/docusaurus-plugin-content-docs/version-0.7.0/cyberconnect-api/reference/objects/_category_.yml:
--------------------------------------------------------------------------------
1 | label: 'Objects'
2 |
--------------------------------------------------------------------------------
/i18n/zh/docusaurus-plugin-content-docs/version-0.7.0/cyberconnect-api/reference/objects/social.mdx:
--------------------------------------------------------------------------------
1 | ---
2 | id: social
3 | title: Social
4 | ---
5 |
6 |
7 | No description
8 |
9 | ```graphql
10 | type Social {
11 | twitter: String!
12 | }
13 | ```
14 |
15 |
16 | ### Fields
17 |
18 | #### `twitter` ([`String`](/cyberconnect-api/reference/scalars/string))
19 |
--------------------------------------------------------------------------------
/i18n/zh/docusaurus-plugin-content-docs/version-0.7.0/cyberconnect-api/reference/queries/_category_.yml:
--------------------------------------------------------------------------------
1 | label: 'Queries'
2 |
--------------------------------------------------------------------------------
/i18n/zh/docusaurus-plugin-content-docs/version-0.7.0/cyberconnect-api/reference/scalars/_category_.yml:
--------------------------------------------------------------------------------
1 | label: 'Scalars'
2 |
--------------------------------------------------------------------------------
/i18n/zh/docusaurus-plugin-content-docs/version-0.7.0/cyberconnect-api/reference/scalars/boolean.mdx:
--------------------------------------------------------------------------------
1 | ---
2 | id: boolean
3 | title: Boolean
4 | ---
5 |
6 |
7 | The `Boolean` scalar type represents `true` or `false`.
8 |
9 | ```graphql
10 | scalar Boolean
11 | ```
12 |
13 |
14 |
15 |
16 |
--------------------------------------------------------------------------------
/i18n/zh/docusaurus-plugin-content-docs/version-0.7.0/cyberconnect-api/reference/scalars/int.mdx:
--------------------------------------------------------------------------------
1 | ---
2 | id: int
3 | title: Int
4 | ---
5 |
6 |
7 | The `Int` scalar type represents non-fractional signed whole numeric values. Int can represent values between -(2^31) and 2^31 - 1.
8 |
9 | ```graphql
10 | scalar Int
11 | ```
12 |
13 |
14 |
15 |
16 |
--------------------------------------------------------------------------------
/i18n/zh/docusaurus-plugin-content-docs/version-0.7.0/cyberconnect-api/reference/sidebar-schema.js:
--------------------------------------------------------------------------------
1 | module.exports = {
2 | "schemaSidebar": [
3 | {
4 | "type": "autogenerated",
5 | "dirName": "/cyberconnect-api/reference/"
6 | }
7 | ]
8 | };
--------------------------------------------------------------------------------
/i18n/zh/docusaurus-plugin-content-docs/version-0.7.0/cyberconnect-api/rest-api/_category_.json:
--------------------------------------------------------------------------------
1 | {
2 | "label": "REST API",
3 | "position": 2
4 | }
5 |
--------------------------------------------------------------------------------
/i18n/zh/docusaurus-plugin-content-docs/version-0.7.0/cyberconnect-sdk/_category_.json:
--------------------------------------------------------------------------------
1 | {
2 | "label": "CyberConnect SDK",
3 | "position": 5
4 | }
5 |
--------------------------------------------------------------------------------
/i18n/zh/docusaurus-plugin-content-docs/version-0.7.0/get-started/_category_.json:
--------------------------------------------------------------------------------
1 | {
2 | "label": "Get started",
3 | "position": 4
4 | }
5 |
--------------------------------------------------------------------------------
/i18n/zh/docusaurus-plugin-content-docs/version-0.7.0/overview/_category_.json:
--------------------------------------------------------------------------------
1 | {
2 | "label": "Overview",
3 | "position": 2
4 | }
5 |
--------------------------------------------------------------------------------
/i18n/zh/docusaurus-plugin-content-docs/version-0.7.0/protocol/_category_.json:
--------------------------------------------------------------------------------
1 | {
2 | "label": "Protocol",
3 | "position": 7
4 | }
5 |
--------------------------------------------------------------------------------
/i18n/zh/docusaurus-plugin-content-docs/version-0.7.0/resources/_category_.json:
--------------------------------------------------------------------------------
1 | {
2 | "label": "Resources",
3 | "position": 9
4 | }
5 |
--------------------------------------------------------------------------------
/i18n/zh/docusaurus-plugin-content-docs/version-0.7.0/resources/terminology/_category_.json:
--------------------------------------------------------------------------------
1 | {
2 | "label": "Terminology",
3 | "position": 2
4 | }
5 |
--------------------------------------------------------------------------------
/i18n/zh/docusaurus-plugin-content-docs/version-0.7.0/tutorials/_category_.json:
--------------------------------------------------------------------------------
1 | {
2 | "label": "Tutorials",
3 | "position": 8
4 | }
5 |
--------------------------------------------------------------------------------
/i18n/zh/docusaurus-plugin-content-docs/version-0.8.0/changelog/0.6.0.md:
--------------------------------------------------------------------------------
1 | ---
2 | id: 0.6.0
3 | title: 0.6.0
4 | slug: /changelog/0.6.0/
5 | sidebar_label: 0.6.0
6 | sidebar_position: 3
7 | ---
8 |
9 | ## Features
10 |
11 | **feat:** added chinese translation
12 |
13 | **chore:** updated new [grant](/overview/community/) apply link
14 |
--------------------------------------------------------------------------------
/i18n/zh/docusaurus-plugin-content-docs/version-0.8.0/changelog/0.8.0.md:
--------------------------------------------------------------------------------
1 | ---
2 | id: 0.8.0
3 | title: 0.8.0
4 | slug: /changelog/0.8.0/
5 | sidebar_label: 0.8.0
6 | sidebar_position: 1
7 | ---
8 |
9 | ## Features
10 |
11 | **feat:** added [Showcase](/overview/showcase/)
12 |
--------------------------------------------------------------------------------
/i18n/zh/docusaurus-plugin-content-docs/version-0.8.0/changelog/_category_.json:
--------------------------------------------------------------------------------
1 | {
2 | "label": "Changelog",
3 | "position": 10
4 | }
5 |
--------------------------------------------------------------------------------
/i18n/zh/docusaurus-plugin-content-docs/version-0.8.0/concepts/_category_.json:
--------------------------------------------------------------------------------
1 | {
2 | "label": "Concepts",
3 | "position": 3
4 | }
5 |
--------------------------------------------------------------------------------
/i18n/zh/docusaurus-plugin-content-docs/version-0.8.0/cyberconnect-api/_category_.json:
--------------------------------------------------------------------------------
1 | {
2 | "label": "CyberConnect API",
3 | "position": 6
4 | }
5 |
--------------------------------------------------------------------------------
/i18n/zh/docusaurus-plugin-content-docs/version-0.8.0/cyberconnect-api/graphql-api/_category_.json:
--------------------------------------------------------------------------------
1 | {
2 | "label": "GraphQL API",
3 | "position": 2
4 | }
5 |
--------------------------------------------------------------------------------
/i18n/zh/docusaurus-plugin-content-docs/version-0.8.0/cyberconnect-api/reference/_category_.json:
--------------------------------------------------------------------------------
1 | {
2 | "label": "Reference",
3 | "position": 3
4 | }
5 |
--------------------------------------------------------------------------------
/i18n/zh/docusaurus-plugin-content-docs/version-0.8.0/cyberconnect-api/reference/directives/_category_.yml:
--------------------------------------------------------------------------------
1 | label: 'Directives'
2 |
--------------------------------------------------------------------------------
/i18n/zh/docusaurus-plugin-content-docs/version-0.8.0/cyberconnect-api/reference/directives/admin.mdx:
--------------------------------------------------------------------------------
1 | ---
2 | id: admin
3 | title: admin
4 | ---
5 |
6 |
7 | No description
8 |
9 | ```graphql
10 | directive @admin
11 | ```
12 |
13 |
14 |
15 |
16 |
--------------------------------------------------------------------------------
/i18n/zh/docusaurus-plugin-content-docs/version-0.8.0/cyberconnect-api/reference/enums/_category_.yml:
--------------------------------------------------------------------------------
1 | label: 'Enums'
2 |
--------------------------------------------------------------------------------
/i18n/zh/docusaurus-plugin-content-docs/version-0.8.0/cyberconnect-api/reference/graphql.md:
--------------------------------------------------------------------------------
1 | ---
2 | id: graphql
3 | sidebar_class_name: navbar__toggle
4 | ---
5 |
6 | This documentation has been automatically generated from the GraphQL schema.
7 |
--------------------------------------------------------------------------------
/i18n/zh/docusaurus-plugin-content-docs/version-0.8.0/cyberconnect-api/reference/inputs/_category_.yml:
--------------------------------------------------------------------------------
1 | label: 'Inputs'
2 |
--------------------------------------------------------------------------------
/i18n/zh/docusaurus-plugin-content-docs/version-0.8.0/cyberconnect-api/reference/interfaces/node.mdx:
--------------------------------------------------------------------------------
1 | ---
2 | id: node
3 | title: Node
4 | ---
5 |
6 |
7 | No description
8 |
9 | ```graphql
10 | interface Node {
11 | id: ID!
12 | }
13 | ```
14 |
15 |
16 | ### Fields
17 |
18 | #### `id` ([`ID`](/cyberconnect-api/reference/scalars/id))
19 |
20 |
21 |
22 |
23 |
24 |
25 |
--------------------------------------------------------------------------------
/i18n/zh/docusaurus-plugin-content-docs/version-0.8.0/cyberconnect-api/reference/objects/_category_.yml:
--------------------------------------------------------------------------------
1 | label: 'Objects'
2 |
--------------------------------------------------------------------------------
/i18n/zh/docusaurus-plugin-content-docs/version-0.8.0/cyberconnect-api/reference/objects/social.mdx:
--------------------------------------------------------------------------------
1 | ---
2 | id: social
3 | title: Social
4 | ---
5 |
6 |
7 | No description
8 |
9 | ```graphql
10 | type Social {
11 | twitter: String!
12 | }
13 | ```
14 |
15 |
16 | ### Fields
17 |
18 | #### `twitter` ([`String`](/cyberconnect-api/reference/scalars/string))
19 |
--------------------------------------------------------------------------------
/i18n/zh/docusaurus-plugin-content-docs/version-0.8.0/cyberconnect-api/reference/queries/_category_.yml:
--------------------------------------------------------------------------------
1 | label: 'Queries'
2 |
--------------------------------------------------------------------------------
/i18n/zh/docusaurus-plugin-content-docs/version-0.8.0/cyberconnect-api/reference/scalars/_category_.yml:
--------------------------------------------------------------------------------
1 | label: 'Scalars'
2 |
--------------------------------------------------------------------------------
/i18n/zh/docusaurus-plugin-content-docs/version-0.8.0/cyberconnect-api/reference/scalars/boolean.mdx:
--------------------------------------------------------------------------------
1 | ---
2 | id: boolean
3 | title: Boolean
4 | ---
5 |
6 |
7 | The `Boolean` scalar type represents `true` or `false`.
8 |
9 | ```graphql
10 | scalar Boolean
11 | ```
12 |
13 |
14 |
15 |
16 |
--------------------------------------------------------------------------------
/i18n/zh/docusaurus-plugin-content-docs/version-0.8.0/cyberconnect-api/reference/scalars/int.mdx:
--------------------------------------------------------------------------------
1 | ---
2 | id: int
3 | title: Int
4 | ---
5 |
6 |
7 | The `Int` scalar type represents non-fractional signed whole numeric values. Int can represent values between -(2^31) and 2^31 - 1.
8 |
9 | ```graphql
10 | scalar Int
11 | ```
12 |
13 |
14 |
15 |
16 |
--------------------------------------------------------------------------------
/i18n/zh/docusaurus-plugin-content-docs/version-0.8.0/cyberconnect-api/reference/sidebar-schema.js:
--------------------------------------------------------------------------------
1 | module.exports = {
2 | "schemaSidebar": [
3 | {
4 | "type": "autogenerated",
5 | "dirName": "/cyberconnect-api/reference/"
6 | }
7 | ]
8 | };
--------------------------------------------------------------------------------
/i18n/zh/docusaurus-plugin-content-docs/version-0.8.0/cyberconnect-api/rest-api/_category_.json:
--------------------------------------------------------------------------------
1 | {
2 | "label": "REST API",
3 | "position": 2
4 | }
5 |
--------------------------------------------------------------------------------
/i18n/zh/docusaurus-plugin-content-docs/version-0.8.0/cyberconnect-sdk/_category_.json:
--------------------------------------------------------------------------------
1 | {
2 | "label": "CyberConnect SDK",
3 | "position": 5
4 | }
5 |
--------------------------------------------------------------------------------
/i18n/zh/docusaurus-plugin-content-docs/version-0.8.0/get-started/_category_.json:
--------------------------------------------------------------------------------
1 | {
2 | "label": "Get started",
3 | "position": 4
4 | }
5 |
--------------------------------------------------------------------------------
/i18n/zh/docusaurus-plugin-content-docs/version-0.8.0/overview/_category_.json:
--------------------------------------------------------------------------------
1 | {
2 | "label": "Overview",
3 | "position": 2
4 | }
5 |
--------------------------------------------------------------------------------
/i18n/zh/docusaurus-plugin-content-docs/version-0.8.0/protocol/_category_.json:
--------------------------------------------------------------------------------
1 | {
2 | "label": "Protocol",
3 | "position": 7
4 | }
5 |
--------------------------------------------------------------------------------
/i18n/zh/docusaurus-plugin-content-docs/version-0.8.0/resources/_category_.json:
--------------------------------------------------------------------------------
1 | {
2 | "label": "Resources",
3 | "position": 9
4 | }
5 |
--------------------------------------------------------------------------------
/i18n/zh/docusaurus-plugin-content-docs/version-0.8.0/resources/terminology/_category_.json:
--------------------------------------------------------------------------------
1 | {
2 | "label": "Terminology",
3 | "position": 2
4 | }
5 |
--------------------------------------------------------------------------------
/i18n/zh/docusaurus-plugin-content-docs/version-0.8.0/tutorials/_category_.json:
--------------------------------------------------------------------------------
1 | {
2 | "label": "Tutorials",
3 | "position": 8
4 | }
5 |
--------------------------------------------------------------------------------
/i18n/zh/docusaurus-plugin-content-docs/version-0.9.0/changelog/0.6.0.md:
--------------------------------------------------------------------------------
1 | ---
2 | id: 0.6.0
3 | title: 0.6.0
4 | slug: /changelog/0.6.0/
5 | sidebar_label: 0.6.0
6 | sidebar_position: 3
7 | ---
8 |
9 | ## Features
10 |
11 | **feat:** added chinese translation
12 |
13 | **chore:** updated new [grant](/overview/community/) apply link
14 |
--------------------------------------------------------------------------------
/i18n/zh/docusaurus-plugin-content-docs/version-0.9.0/changelog/0.8.0.md:
--------------------------------------------------------------------------------
1 | ---
2 | id: 0.8.0
3 | title: 0.8.0
4 | slug: /changelog/0.8.0/
5 | sidebar_label: 0.8.0
6 | sidebar_position: 1
7 | ---
8 |
9 | ## Features
10 |
11 | **feat:** added [Showcase](/overview/showcase/)
12 |
--------------------------------------------------------------------------------
/i18n/zh/docusaurus-plugin-content-docs/version-0.9.0/changelog/_category_.json:
--------------------------------------------------------------------------------
1 | {
2 | "label": "Changelog",
3 | "position": 10
4 | }
5 |
--------------------------------------------------------------------------------
/i18n/zh/docusaurus-plugin-content-docs/version-0.9.0/concepts/_category_.json:
--------------------------------------------------------------------------------
1 | {
2 | "label": "Concepts",
3 | "position": 3
4 | }
5 |
--------------------------------------------------------------------------------
/i18n/zh/docusaurus-plugin-content-docs/version-0.9.0/cyberconnect-api/_category_.json:
--------------------------------------------------------------------------------
1 | {
2 | "label": "CyberConnect API",
3 | "position": 6
4 | }
5 |
--------------------------------------------------------------------------------
/i18n/zh/docusaurus-plugin-content-docs/version-0.9.0/cyberconnect-api/graphql-api/_category_.json:
--------------------------------------------------------------------------------
1 | {
2 | "label": "GraphQL API",
3 | "position": 2
4 | }
5 |
--------------------------------------------------------------------------------
/i18n/zh/docusaurus-plugin-content-docs/version-0.9.0/cyberconnect-api/reference/_category_.json:
--------------------------------------------------------------------------------
1 | {
2 | "label": "Reference",
3 | "position": 3
4 | }
5 |
--------------------------------------------------------------------------------
/i18n/zh/docusaurus-plugin-content-docs/version-0.9.0/cyberconnect-api/reference/directives/_category_.yml:
--------------------------------------------------------------------------------
1 | label: 'Directives'
2 |
--------------------------------------------------------------------------------
/i18n/zh/docusaurus-plugin-content-docs/version-0.9.0/cyberconnect-api/reference/directives/admin.mdx:
--------------------------------------------------------------------------------
1 | ---
2 | id: admin
3 | title: admin
4 | ---
5 |
6 |
7 | No description
8 |
9 | ```graphql
10 | directive @admin
11 | ```
12 |
13 |
14 |
15 |
16 |
--------------------------------------------------------------------------------
/i18n/zh/docusaurus-plugin-content-docs/version-0.9.0/cyberconnect-api/reference/enums/_category_.yml:
--------------------------------------------------------------------------------
1 | label: 'Enums'
2 |
--------------------------------------------------------------------------------
/i18n/zh/docusaurus-plugin-content-docs/version-0.9.0/cyberconnect-api/reference/graphql.md:
--------------------------------------------------------------------------------
1 | ---
2 | id: graphql
3 | sidebar_class_name: navbar__toggle
4 | ---
5 |
6 | This documentation has been automatically generated from the GraphQL schema.
7 |
--------------------------------------------------------------------------------
/i18n/zh/docusaurus-plugin-content-docs/version-0.9.0/cyberconnect-api/reference/inputs/_category_.yml:
--------------------------------------------------------------------------------
1 | label: 'Inputs'
2 |
--------------------------------------------------------------------------------
/i18n/zh/docusaurus-plugin-content-docs/version-0.9.0/cyberconnect-api/reference/interfaces/node.mdx:
--------------------------------------------------------------------------------
1 | ---
2 | id: node
3 | title: Node
4 | ---
5 |
6 |
7 | No description
8 |
9 | ```graphql
10 | interface Node {
11 | id: ID!
12 | }
13 | ```
14 |
15 |
16 | ### Fields
17 |
18 | #### `id` ([`ID`](/cyberconnect-api/reference/scalars/id))
19 |
20 |
21 |
22 |
23 |
24 |
25 |
--------------------------------------------------------------------------------
/i18n/zh/docusaurus-plugin-content-docs/version-0.9.0/cyberconnect-api/reference/objects/_category_.yml:
--------------------------------------------------------------------------------
1 | label: 'Objects'
2 |
--------------------------------------------------------------------------------
/i18n/zh/docusaurus-plugin-content-docs/version-0.9.0/cyberconnect-api/reference/objects/social.mdx:
--------------------------------------------------------------------------------
1 | ---
2 | id: social
3 | title: Social
4 | ---
5 |
6 |
7 | No description
8 |
9 | ```graphql
10 | type Social {
11 | twitter: String!
12 | }
13 | ```
14 |
15 |
16 | ### Fields
17 |
18 | #### `twitter` ([`String`](/cyberconnect-api/reference/scalars/string))
19 |
--------------------------------------------------------------------------------
/i18n/zh/docusaurus-plugin-content-docs/version-0.9.0/cyberconnect-api/reference/queries/_category_.yml:
--------------------------------------------------------------------------------
1 | label: 'Queries'
2 |
--------------------------------------------------------------------------------
/i18n/zh/docusaurus-plugin-content-docs/version-0.9.0/cyberconnect-api/reference/scalars/_category_.yml:
--------------------------------------------------------------------------------
1 | label: 'Scalars'
2 |
--------------------------------------------------------------------------------
/i18n/zh/docusaurus-plugin-content-docs/version-0.9.0/cyberconnect-api/reference/scalars/boolean.mdx:
--------------------------------------------------------------------------------
1 | ---
2 | id: boolean
3 | title: Boolean
4 | ---
5 |
6 |
7 | The `Boolean` scalar type represents `true` or `false`.
8 |
9 | ```graphql
10 | scalar Boolean
11 | ```
12 |
13 |
14 |
15 |
16 |
--------------------------------------------------------------------------------
/i18n/zh/docusaurus-plugin-content-docs/version-0.9.0/cyberconnect-api/reference/scalars/int.mdx:
--------------------------------------------------------------------------------
1 | ---
2 | id: int
3 | title: Int
4 | ---
5 |
6 |
7 | The `Int` scalar type represents non-fractional signed whole numeric values. Int can represent values between -(2^31) and 2^31 - 1.
8 |
9 | ```graphql
10 | scalar Int
11 | ```
12 |
13 |
14 |
15 |
16 |
--------------------------------------------------------------------------------
/i18n/zh/docusaurus-plugin-content-docs/version-0.9.0/cyberconnect-api/reference/sidebar-schema.js:
--------------------------------------------------------------------------------
1 | module.exports = {
2 | "schemaSidebar": [
3 | {
4 | "type": "autogenerated",
5 | "dirName": "/cyberconnect-api/reference/"
6 | }
7 | ]
8 | };
--------------------------------------------------------------------------------
/i18n/zh/docusaurus-plugin-content-docs/version-0.9.0/cyberconnect-api/rest-api/_category_.json:
--------------------------------------------------------------------------------
1 | {
2 | "label": "REST API",
3 | "position": 2
4 | }
5 |
--------------------------------------------------------------------------------
/i18n/zh/docusaurus-plugin-content-docs/version-0.9.0/cyberconnect-sdk/_category_.json:
--------------------------------------------------------------------------------
1 | {
2 | "label": "CyberConnect SDK",
3 | "position": 5
4 | }
5 |
--------------------------------------------------------------------------------
/i18n/zh/docusaurus-plugin-content-docs/version-0.9.0/get-started/_category_.json:
--------------------------------------------------------------------------------
1 | {
2 | "label": "Get started",
3 | "position": 4
4 | }
5 |
--------------------------------------------------------------------------------
/i18n/zh/docusaurus-plugin-content-docs/version-0.9.0/overview/_category_.json:
--------------------------------------------------------------------------------
1 | {
2 | "label": "Overview",
3 | "position": 2
4 | }
5 |
--------------------------------------------------------------------------------
/i18n/zh/docusaurus-plugin-content-docs/version-0.9.0/protocol/_category_.json:
--------------------------------------------------------------------------------
1 | {
2 | "label": "Protocol",
3 | "position": 7
4 | }
5 |
--------------------------------------------------------------------------------
/i18n/zh/docusaurus-plugin-content-docs/version-0.9.0/resources/_category_.json:
--------------------------------------------------------------------------------
1 | {
2 | "label": "Resources",
3 | "position": 9
4 | }
5 |
--------------------------------------------------------------------------------
/i18n/zh/docusaurus-plugin-content-docs/version-0.9.0/resources/terminology/_category_.json:
--------------------------------------------------------------------------------
1 | {
2 | "label": "Terminology",
3 | "position": 2
4 | }
5 |
--------------------------------------------------------------------------------
/i18n/zh/docusaurus-plugin-content-docs/version-0.9.0/tutorials/_category_.json:
--------------------------------------------------------------------------------
1 | {
2 | "label": "Tutorials",
3 | "position": 8
4 | }
5 |
--------------------------------------------------------------------------------
/i18n/zh/docusaurus-plugin-content-docs/version-V1/changelog/0.6.0.md:
--------------------------------------------------------------------------------
1 | ---
2 | id: 0.6.0
3 | title: 0.6.0
4 | slug: /changelog/0.6.0/
5 | sidebar_label: 0.6.0
6 | sidebar_position: 3
7 | ---
8 |
9 | ## Features
10 |
11 | **feat:** added chinese translation
12 |
13 | **chore:** updated new [grant](/overview/community/) apply link
14 |
--------------------------------------------------------------------------------
/i18n/zh/docusaurus-plugin-content-docs/version-V1/changelog/0.8.0.md:
--------------------------------------------------------------------------------
1 | ---
2 | id: 0.8.0
3 | title: 0.8.0
4 | slug: /changelog/0.8.0/
5 | sidebar_label: 0.8.0
6 | sidebar_position: 1
7 | ---
8 |
9 | ## Features
10 |
11 | **feat:** added [Showcase](/overview/showcase/)
12 |
--------------------------------------------------------------------------------
/i18n/zh/docusaurus-plugin-content-docs/version-V1/changelog/_category_.json:
--------------------------------------------------------------------------------
1 | {
2 | "label": "Changelog",
3 | "position": 10
4 | }
5 |
--------------------------------------------------------------------------------
/i18n/zh/docusaurus-plugin-content-docs/version-V1/concepts/_category_.json:
--------------------------------------------------------------------------------
1 | {
2 | "label": "Concepts",
3 | "position": 3
4 | }
5 |
--------------------------------------------------------------------------------
/i18n/zh/docusaurus-plugin-content-docs/version-V1/cyberconnect-api/_category_.json:
--------------------------------------------------------------------------------
1 | {
2 | "label": "CyberConnect API",
3 | "position": 6
4 | }
5 |
--------------------------------------------------------------------------------
/i18n/zh/docusaurus-plugin-content-docs/version-V1/cyberconnect-api/graphql-api/_category_.json:
--------------------------------------------------------------------------------
1 | {
2 | "label": "GraphQL API",
3 | "position": 2
4 | }
5 |
--------------------------------------------------------------------------------
/i18n/zh/docusaurus-plugin-content-docs/version-V1/cyberconnect-api/reference/_category_.json:
--------------------------------------------------------------------------------
1 | {
2 | "label": "Reference",
3 | "position": 3
4 | }
5 |
--------------------------------------------------------------------------------
/i18n/zh/docusaurus-plugin-content-docs/version-V1/cyberconnect-api/reference/directives/_category_.yml:
--------------------------------------------------------------------------------
1 | label: 'Directives'
2 |
--------------------------------------------------------------------------------
/i18n/zh/docusaurus-plugin-content-docs/version-V1/cyberconnect-api/reference/directives/admin.mdx:
--------------------------------------------------------------------------------
1 | ---
2 | id: admin
3 | title: admin
4 | ---
5 |
6 |
7 | No description
8 |
9 | ```graphql
10 | directive @admin
11 | ```
12 |
13 |
14 |
15 |
16 |
--------------------------------------------------------------------------------
/i18n/zh/docusaurus-plugin-content-docs/version-V1/cyberconnect-api/reference/enums/_category_.yml:
--------------------------------------------------------------------------------
1 | label: 'Enums'
2 |
--------------------------------------------------------------------------------
/i18n/zh/docusaurus-plugin-content-docs/version-V1/cyberconnect-api/reference/graphql.md:
--------------------------------------------------------------------------------
1 | ---
2 | id: graphql
3 | sidebar_class_name: navbar__toggle
4 | ---
5 |
6 | This documentation has been automatically generated from the GraphQL schema.
7 |
--------------------------------------------------------------------------------
/i18n/zh/docusaurus-plugin-content-docs/version-V1/cyberconnect-api/reference/inputs/_category_.yml:
--------------------------------------------------------------------------------
1 | label: 'Inputs'
2 |
--------------------------------------------------------------------------------
/i18n/zh/docusaurus-plugin-content-docs/version-V1/cyberconnect-api/reference/interfaces/node.mdx:
--------------------------------------------------------------------------------
1 | ---
2 | id: node
3 | title: Node
4 | ---
5 |
6 |
7 | No description
8 |
9 | ```graphql
10 | interface Node {
11 | id: ID!
12 | }
13 | ```
14 |
15 |
16 | ### Fields
17 |
18 | #### `id` ([`ID`](/cyberconnect-api/reference/scalars/id))
19 |
20 |
21 |
22 |
23 |
24 |
25 |
--------------------------------------------------------------------------------
/i18n/zh/docusaurus-plugin-content-docs/version-V1/cyberconnect-api/reference/objects/_category_.yml:
--------------------------------------------------------------------------------
1 | label: 'Objects'
2 |
--------------------------------------------------------------------------------
/i18n/zh/docusaurus-plugin-content-docs/version-V1/cyberconnect-api/reference/objects/social.mdx:
--------------------------------------------------------------------------------
1 | ---
2 | id: social
3 | title: Social
4 | ---
5 |
6 |
7 | No description
8 |
9 | ```graphql
10 | type Social {
11 | twitter: String!
12 | }
13 | ```
14 |
15 |
16 | ### Fields
17 |
18 | #### `twitter` ([`String`](/cyberconnect-api/reference/scalars/string))
19 |
--------------------------------------------------------------------------------
/i18n/zh/docusaurus-plugin-content-docs/version-V1/cyberconnect-api/reference/queries/_category_.yml:
--------------------------------------------------------------------------------
1 | label: 'Queries'
2 |
--------------------------------------------------------------------------------
/i18n/zh/docusaurus-plugin-content-docs/version-V1/cyberconnect-api/reference/scalars/_category_.yml:
--------------------------------------------------------------------------------
1 | label: 'Scalars'
2 |
--------------------------------------------------------------------------------
/i18n/zh/docusaurus-plugin-content-docs/version-V1/cyberconnect-api/reference/scalars/boolean.mdx:
--------------------------------------------------------------------------------
1 | ---
2 | id: boolean
3 | title: Boolean
4 | ---
5 |
6 |
7 | The `Boolean` scalar type represents `true` or `false`.
8 |
9 | ```graphql
10 | scalar Boolean
11 | ```
12 |
13 |
14 |
15 |
16 |
--------------------------------------------------------------------------------
/i18n/zh/docusaurus-plugin-content-docs/version-V1/cyberconnect-api/reference/scalars/int.mdx:
--------------------------------------------------------------------------------
1 | ---
2 | id: int
3 | title: Int
4 | ---
5 |
6 |
7 | The `Int` scalar type represents non-fractional signed whole numeric values. Int can represent values between -(2^31) and 2^31 - 1.
8 |
9 | ```graphql
10 | scalar Int
11 | ```
12 |
13 |
14 |
15 |
16 |
--------------------------------------------------------------------------------
/i18n/zh/docusaurus-plugin-content-docs/version-V1/cyberconnect-api/reference/sidebar-schema.js:
--------------------------------------------------------------------------------
1 | module.exports = {
2 | "schemaSidebar": [
3 | {
4 | "type": "autogenerated",
5 | "dirName": "/cyberconnect-api/reference/"
6 | }
7 | ]
8 | };
--------------------------------------------------------------------------------
/i18n/zh/docusaurus-plugin-content-docs/version-V1/cyberconnect-api/rest-api/_category_.json:
--------------------------------------------------------------------------------
1 | {
2 | "label": "REST API",
3 | "position": 2
4 | }
5 |
--------------------------------------------------------------------------------
/i18n/zh/docusaurus-plugin-content-docs/version-V1/cyberconnect-sdk/_category_.json:
--------------------------------------------------------------------------------
1 | {
2 | "label": "CyberConnect SDK",
3 | "position": 5
4 | }
5 |
--------------------------------------------------------------------------------
/i18n/zh/docusaurus-plugin-content-docs/version-V1/get-started/_category_.json:
--------------------------------------------------------------------------------
1 | {
2 | "label": "Get started",
3 | "position": 4
4 | }
5 |
--------------------------------------------------------------------------------
/i18n/zh/docusaurus-plugin-content-docs/version-V1/overview/_category_.json:
--------------------------------------------------------------------------------
1 | {
2 | "label": "Overview",
3 | "position": 2
4 | }
5 |
--------------------------------------------------------------------------------
/i18n/zh/docusaurus-plugin-content-docs/version-V1/protocol/_category_.json:
--------------------------------------------------------------------------------
1 | {
2 | "label": "Protocol",
3 | "position": 7
4 | }
5 |
--------------------------------------------------------------------------------
/i18n/zh/docusaurus-plugin-content-docs/version-V1/resources/_category_.json:
--------------------------------------------------------------------------------
1 | {
2 | "label": "Resources",
3 | "position": 9
4 | }
5 |
--------------------------------------------------------------------------------
/i18n/zh/docusaurus-plugin-content-docs/version-V1/resources/terminology/_category_.json:
--------------------------------------------------------------------------------
1 | {
2 | "label": "Terminology",
3 | "position": 2
4 | }
5 |
--------------------------------------------------------------------------------
/i18n/zh/docusaurus-plugin-content-docs/version-V1/tutorials/_category_.json:
--------------------------------------------------------------------------------
1 | {
2 | "label": "Tutorials",
3 | "position": 8
4 | }
5 |
--------------------------------------------------------------------------------
/i18n/zh/docusaurus-plugin-content-docs/version-V2/changelog/0.6.0.md:
--------------------------------------------------------------------------------
1 | ---
2 | id: 0.6.0
3 | title: 0.6.0
4 | slug: /changelog/0.6.0/
5 | sidebar_label: 0.6.0
6 | sidebar_position: 3
7 | ---
8 |
9 | ## Features
10 |
11 | **feat:** added chinese translation
12 |
13 | **chore:** updated new [grant](/overview/community/) apply link
14 |
--------------------------------------------------------------------------------
/i18n/zh/docusaurus-plugin-content-docs/version-V2/changelog/0.8.0.md:
--------------------------------------------------------------------------------
1 | ---
2 | id: 0.8.0
3 | title: 0.8.0
4 | slug: /changelog/0.8.0/
5 | sidebar_label: 0.8.0
6 | sidebar_position: 1
7 | ---
8 |
9 | ## Features
10 |
11 | **feat:** added [Showcase](/overview/showcase/)
12 |
--------------------------------------------------------------------------------
/i18n/zh/docusaurus-plugin-content-docs/version-V2/changelog/_category_.json:
--------------------------------------------------------------------------------
1 | {
2 | "label": "Changelog",
3 | "position": 10
4 | }
5 |
--------------------------------------------------------------------------------
/i18n/zh/docusaurus-plugin-content-docs/version-V2/concepts/_category_.json:
--------------------------------------------------------------------------------
1 | {
2 | "label": "Concepts",
3 | "position": 3
4 | }
5 |
--------------------------------------------------------------------------------
/i18n/zh/docusaurus-plugin-content-docs/version-V2/cyberconnect-api/_category_.json:
--------------------------------------------------------------------------------
1 | {
2 | "label": "CyberConnect API",
3 | "position": 6
4 | }
5 |
--------------------------------------------------------------------------------
/i18n/zh/docusaurus-plugin-content-docs/version-V2/cyberconnect-api/graphql-api/_category_.json:
--------------------------------------------------------------------------------
1 | {
2 | "label": "GraphQL API",
3 | "position": 2
4 | }
5 |
--------------------------------------------------------------------------------
/i18n/zh/docusaurus-plugin-content-docs/version-V2/cyberconnect-api/reference/_category_.json:
--------------------------------------------------------------------------------
1 | {
2 | "label": "Reference",
3 | "position": 3
4 | }
5 |
--------------------------------------------------------------------------------
/i18n/zh/docusaurus-plugin-content-docs/version-V2/cyberconnect-api/reference/directives/_category_.yml:
--------------------------------------------------------------------------------
1 | label: 'Directives'
2 |
--------------------------------------------------------------------------------
/i18n/zh/docusaurus-plugin-content-docs/version-V2/cyberconnect-api/reference/directives/admin.mdx:
--------------------------------------------------------------------------------
1 | ---
2 | id: admin
3 | title: admin
4 | ---
5 |
6 |
7 | No description
8 |
9 | ```graphql
10 | directive @admin
11 | ```
12 |
13 |
14 |
15 |
16 |
--------------------------------------------------------------------------------
/i18n/zh/docusaurus-plugin-content-docs/version-V2/cyberconnect-api/reference/enums/_category_.yml:
--------------------------------------------------------------------------------
1 | label: 'Enums'
2 |
--------------------------------------------------------------------------------
/i18n/zh/docusaurus-plugin-content-docs/version-V2/cyberconnect-api/reference/graphql.md:
--------------------------------------------------------------------------------
1 | ---
2 | id: graphql
3 | sidebar_class_name: navbar__toggle
4 | ---
5 |
6 | This documentation has been automatically generated from the GraphQL schema.
7 |
--------------------------------------------------------------------------------
/i18n/zh/docusaurus-plugin-content-docs/version-V2/cyberconnect-api/reference/inputs/_category_.yml:
--------------------------------------------------------------------------------
1 | label: 'Inputs'
2 |
--------------------------------------------------------------------------------
/i18n/zh/docusaurus-plugin-content-docs/version-V2/cyberconnect-api/reference/interfaces/node.mdx:
--------------------------------------------------------------------------------
1 | ---
2 | id: node
3 | title: Node
4 | ---
5 |
6 |
7 | No description
8 |
9 | ```graphql
10 | interface Node {
11 | id: ID!
12 | }
13 | ```
14 |
15 |
16 | ### Fields
17 |
18 | #### `id` ([`ID`](/cyberconnect-api/reference/scalars/id))
19 |
20 |
21 |
22 |
23 |
24 |
25 |
--------------------------------------------------------------------------------
/i18n/zh/docusaurus-plugin-content-docs/version-V2/cyberconnect-api/reference/objects/_category_.yml:
--------------------------------------------------------------------------------
1 | label: 'Objects'
2 |
--------------------------------------------------------------------------------
/i18n/zh/docusaurus-plugin-content-docs/version-V2/cyberconnect-api/reference/objects/social.mdx:
--------------------------------------------------------------------------------
1 | ---
2 | id: social
3 | title: Social
4 | ---
5 |
6 |
7 | No description
8 |
9 | ```graphql
10 | type Social {
11 | twitter: String!
12 | }
13 | ```
14 |
15 |
16 | ### Fields
17 |
18 | #### `twitter` ([`String`](/cyberconnect-api/reference/scalars/string))
19 |
--------------------------------------------------------------------------------
/i18n/zh/docusaurus-plugin-content-docs/version-V2/cyberconnect-api/reference/queries/_category_.yml:
--------------------------------------------------------------------------------
1 | label: 'Queries'
2 |
--------------------------------------------------------------------------------
/i18n/zh/docusaurus-plugin-content-docs/version-V2/cyberconnect-api/reference/scalars/_category_.yml:
--------------------------------------------------------------------------------
1 | label: 'Scalars'
2 |
--------------------------------------------------------------------------------
/i18n/zh/docusaurus-plugin-content-docs/version-V2/cyberconnect-api/reference/scalars/boolean.mdx:
--------------------------------------------------------------------------------
1 | ---
2 | id: boolean
3 | title: Boolean
4 | ---
5 |
6 |
7 | The `Boolean` scalar type represents `true` or `false`.
8 |
9 | ```graphql
10 | scalar Boolean
11 | ```
12 |
13 |
14 |
15 |
16 |
--------------------------------------------------------------------------------
/i18n/zh/docusaurus-plugin-content-docs/version-V2/cyberconnect-api/reference/scalars/int.mdx:
--------------------------------------------------------------------------------
1 | ---
2 | id: int
3 | title: Int
4 | ---
5 |
6 |
7 | The `Int` scalar type represents non-fractional signed whole numeric values. Int can represent values between -(2^31) and 2^31 - 1.
8 |
9 | ```graphql
10 | scalar Int
11 | ```
12 |
13 |
14 |
15 |
16 |
--------------------------------------------------------------------------------
/i18n/zh/docusaurus-plugin-content-docs/version-V2/cyberconnect-api/reference/sidebar-schema.js:
--------------------------------------------------------------------------------
1 | module.exports = {
2 | "schemaSidebar": [
3 | {
4 | "type": "autogenerated",
5 | "dirName": "/cyberconnect-api/reference/"
6 | }
7 | ]
8 | };
--------------------------------------------------------------------------------
/i18n/zh/docusaurus-plugin-content-docs/version-V2/cyberconnect-api/rest-api/_category_.json:
--------------------------------------------------------------------------------
1 | {
2 | "label": "REST API",
3 | "position": 2
4 | }
5 |
--------------------------------------------------------------------------------
/i18n/zh/docusaurus-plugin-content-docs/version-V2/cyberconnect-sdk/_category_.json:
--------------------------------------------------------------------------------
1 | {
2 | "label": "CyberConnect SDK",
3 | "position": 5
4 | }
5 |
--------------------------------------------------------------------------------
/i18n/zh/docusaurus-plugin-content-docs/version-V2/get-started/_category_.json:
--------------------------------------------------------------------------------
1 | {
2 | "label": "Get started",
3 | "position": 4
4 | }
5 |
--------------------------------------------------------------------------------
/i18n/zh/docusaurus-plugin-content-docs/version-V2/overview/_category_.json:
--------------------------------------------------------------------------------
1 | {
2 | "label": "Overview",
3 | "position": 2
4 | }
5 |
--------------------------------------------------------------------------------
/i18n/zh/docusaurus-plugin-content-docs/version-V2/protocol/_category_.json:
--------------------------------------------------------------------------------
1 | {
2 | "label": "Protocol",
3 | "position": 7
4 | }
5 |
--------------------------------------------------------------------------------
/i18n/zh/docusaurus-plugin-content-docs/version-V2/resources/_category_.json:
--------------------------------------------------------------------------------
1 | {
2 | "label": "Resources",
3 | "position": 9
4 | }
5 |
--------------------------------------------------------------------------------
/i18n/zh/docusaurus-plugin-content-docs/version-V2/resources/terminology/_category_.json:
--------------------------------------------------------------------------------
1 | {
2 | "label": "Terminology",
3 | "position": 2
4 | }
5 |
--------------------------------------------------------------------------------
/i18n/zh/docusaurus-plugin-content-docs/version-V2/tutorials/_category_.json:
--------------------------------------------------------------------------------
1 | {
2 | "label": "Tutorials",
3 | "position": 8
4 | }
5 |
--------------------------------------------------------------------------------
/src/components/ContributorCards/styles.module.css:
--------------------------------------------------------------------------------
1 | .contributorCard {
2 | margin-right: 8px;
3 | }
4 |
5 | .contributorCard img {
6 | border-radius: 50%;
7 | max-width: 80px;
8 | height: auto;
9 | }
10 |
--------------------------------------------------------------------------------
/src/components/FeatureCards/styles.module.css:
--------------------------------------------------------------------------------
1 | .featureCard {
2 | width: 100%;
3 | min-height: 124px;
4 | }
5 |
--------------------------------------------------------------------------------
/src/components/TwitterCards/styles.module.css:
--------------------------------------------------------------------------------
1 | .twitterCard {
2 | width: 100%;
3 | }
4 |
5 | .twitterCard blockquote {
6 | box-shadow: var(--box-shadow);
7 | border-radius: 12px;
8 | width: 100%;
9 | padding: 20px;
10 | }
11 |
12 | .twitterCards {
13 | grid-template-columns: repeat(auto-fit, minmax(388px, 1fr));
14 | }
15 |
--------------------------------------------------------------------------------
/src/components/WelcomeCard/styles.module.css:
--------------------------------------------------------------------------------
1 | .welcomeCard {
2 | background-color: var(--primary-green);
3 | border-radius: 10px;
4 | margin-top: 40px;
5 | padding: 20px;
6 | }
7 |
8 | .welcomeCard h2,
9 | .welcomeCard a,
10 | .welcomeCard p {
11 | color: var(--primary-white);
12 | }
13 |
14 | .welcomeCard p {
15 | margin: 0;
16 | }
17 |
--------------------------------------------------------------------------------
/static/.nojekyll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Binzo123/cyberconnect-docs-v2/f11f618a3342caeae36704824b51b3a03f757e0a/static/.nojekyll
--------------------------------------------------------------------------------
/static/img/favicon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Binzo123/cyberconnect-docs-v2/f11f618a3342caeae36704824b51b3a03f757e0a/static/img/favicon.ico
--------------------------------------------------------------------------------
/static/img/ogimage.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Binzo123/cyberconnect-docs-v2/f11f618a3342caeae36704824b51b3a03f757e0a/static/img/ogimage.png
--------------------------------------------------------------------------------
/static/img/v0.2.0/link.svg:
--------------------------------------------------------------------------------
1 |
4 |
--------------------------------------------------------------------------------
/static/img/v0.2.0/overview/bress.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Binzo123/cyberconnect-docs-v2/f11f618a3342caeae36704824b51b3a03f757e0a/static/img/v0.2.0/overview/bress.png
--------------------------------------------------------------------------------
/static/img/v0.2.0/overview/buildspace.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Binzo123/cyberconnect-docs-v2/f11f618a3342caeae36704824b51b3a03f757e0a/static/img/v0.2.0/overview/buildspace.jpg
--------------------------------------------------------------------------------
/static/img/v0.2.0/overview/convospace.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Binzo123/cyberconnect-docs-v2/f11f618a3342caeae36704824b51b3a03f757e0a/static/img/v0.2.0/overview/convospace.png
--------------------------------------------------------------------------------
/static/img/v0.2.0/overview/etherloop.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Binzo123/cyberconnect-docs-v2/f11f618a3342caeae36704824b51b3a03f757e0a/static/img/v0.2.0/overview/etherloop.jpg
--------------------------------------------------------------------------------
/static/img/v0.2.0/overview/grape.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Binzo123/cyberconnect-docs-v2/f11f618a3342caeae36704824b51b3a03f757e0a/static/img/v0.2.0/overview/grape.png
--------------------------------------------------------------------------------
/static/img/v0.2.0/overview/helloworld.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Binzo123/cyberconnect-docs-v2/f11f618a3342caeae36704824b51b3a03f757e0a/static/img/v0.2.0/overview/helloworld.png
--------------------------------------------------------------------------------
/static/img/v0.2.0/overview/light.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Binzo123/cyberconnect-docs-v2/f11f618a3342caeae36704824b51b3a03f757e0a/static/img/v0.2.0/overview/light.jpg
--------------------------------------------------------------------------------
/static/img/v0.2.0/overview/metajam.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Binzo123/cyberconnect-docs-v2/f11f618a3342caeae36704824b51b3a03f757e0a/static/img/v0.2.0/overview/metajam.png
--------------------------------------------------------------------------------
/static/img/v0.2.0/overview/nftscan.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Binzo123/cyberconnect-docs-v2/f11f618a3342caeae36704824b51b3a03f757e0a/static/img/v0.2.0/overview/nftscan.png
--------------------------------------------------------------------------------
/static/img/v0.2.0/overview/projectgalaxy.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Binzo123/cyberconnect-docs-v2/f11f618a3342caeae36704824b51b3a03f757e0a/static/img/v0.2.0/overview/projectgalaxy.png
--------------------------------------------------------------------------------
/static/img/v0.2.0/overview/reveal.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Binzo123/cyberconnect-docs-v2/f11f618a3342caeae36704824b51b3a03f757e0a/static/img/v0.2.0/overview/reveal.png
--------------------------------------------------------------------------------
/static/img/v0.2.0/overview/treasureland.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Binzo123/cyberconnect-docs-v2/f11f618a3342caeae36704824b51b3a03f757e0a/static/img/v0.2.0/overview/treasureland.png
--------------------------------------------------------------------------------
/static/img/v0.2.0/overview/unipass.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Binzo123/cyberconnect-docs-v2/f11f618a3342caeae36704824b51b3a03f757e0a/static/img/v0.2.0/overview/unipass.png
--------------------------------------------------------------------------------
/static/img/v0.2.0/protocol/indexer1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Binzo123/cyberconnect-docs-v2/f11f618a3342caeae36704824b51b3a03f757e0a/static/img/v0.2.0/protocol/indexer1.png
--------------------------------------------------------------------------------
/static/img/v0.2.0/protocol/indexer2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Binzo123/cyberconnect-docs-v2/f11f618a3342caeae36704824b51b3a03f757e0a/static/img/v0.2.0/protocol/indexer2.png
--------------------------------------------------------------------------------
/static/img/v0.2.0/protocol/proof.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Binzo123/cyberconnect-docs-v2/f11f618a3342caeae36704824b51b3a03f757e0a/static/img/v0.2.0/protocol/proof.png
--------------------------------------------------------------------------------
/static/img/v0.2.0/protocol/proof1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Binzo123/cyberconnect-docs-v2/f11f618a3342caeae36704824b51b3a03f757e0a/static/img/v0.2.0/protocol/proof1.png
--------------------------------------------------------------------------------
/static/img/v0.2.0/protocol/proof2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Binzo123/cyberconnect-docs-v2/f11f618a3342caeae36704824b51b3a03f757e0a/static/img/v0.2.0/protocol/proof2.png
--------------------------------------------------------------------------------
/static/img/v0.2.0/resources/namespace.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Binzo123/cyberconnect-docs-v2/f11f618a3342caeae36704824b51b3a03f757e0a/static/img/v0.2.0/resources/namespace.png
--------------------------------------------------------------------------------
/static/img/v0.3.0/cyberconnect-api/avatar.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Binzo123/cyberconnect-docs-v2/f11f618a3342caeae36704824b51b3a03f757e0a/static/img/v0.3.0/cyberconnect-api/avatar.png
--------------------------------------------------------------------------------
/static/img/v0.3.0/icons/active/arrow_back.svg:
--------------------------------------------------------------------------------
1 |
4 |
--------------------------------------------------------------------------------
/static/img/v0.3.0/icons/active/arrow_forward.svg:
--------------------------------------------------------------------------------
1 |
4 |
--------------------------------------------------------------------------------
/static/img/v0.3.0/icons/default/arrow_drop_down.svg:
--------------------------------------------------------------------------------
1 |
4 |
--------------------------------------------------------------------------------
/static/img/v0.3.0/icons/usecase/bar_chart.svg:
--------------------------------------------------------------------------------
1 |
4 |
--------------------------------------------------------------------------------
/static/img/v0.3.0/overview/ethshanghai.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Binzo123/cyberconnect-docs-v2/f11f618a3342caeae36704824b51b3a03f757e0a/static/img/v0.3.0/overview/ethshanghai.jpg
--------------------------------------------------------------------------------
/static/img/v0.4.0/icons/default/arrow_drop_down.svg:
--------------------------------------------------------------------------------
1 |
4 |
5 |
--------------------------------------------------------------------------------
/static/img/v0.5.0/bidirectional-connection-workflow.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Binzo123/cyberconnect-docs-v2/f11f618a3342caeae36704824b51b3a03f757e0a/static/img/v0.5.0/bidirectional-connection-workflow.png
--------------------------------------------------------------------------------
/static/img/v0.5.0/gifs/connect.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Binzo123/cyberconnect-docs-v2/f11f618a3342caeae36704824b51b3a03f757e0a/static/img/v0.5.0/gifs/connect.gif
--------------------------------------------------------------------------------
/static/img/v0.5.0/gifs/follow.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Binzo123/cyberconnect-docs-v2/f11f618a3342caeae36704824b51b3a03f757e0a/static/img/v0.5.0/gifs/follow.gif
--------------------------------------------------------------------------------
/static/img/v0.7.0/gifs/read-notification.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Binzo123/cyberconnect-docs-v2/f11f618a3342caeae36704824b51b3a03f757e0a/static/img/v0.7.0/gifs/read-notification.gif
--------------------------------------------------------------------------------
/static/img/v0.7.0/tutorial-scaffold-eth/finished-demo.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Binzo123/cyberconnect-docs-v2/f11f618a3342caeae36704824b51b3a03f757e0a/static/img/v0.7.0/tutorial-scaffold-eth/finished-demo.gif
--------------------------------------------------------------------------------
/static/img/v0.7.0/tutorial-scaffold-eth/finished.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Binzo123/cyberconnect-docs-v2/f11f618a3342caeae36704824b51b3a03f757e0a/static/img/v0.7.0/tutorial-scaffold-eth/finished.png
--------------------------------------------------------------------------------
/static/img/v0.7.0/tutorial-scaffold-eth/profile-identity.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Binzo123/cyberconnect-docs-v2/f11f618a3342caeae36704824b51b3a03f757e0a/static/img/v0.7.0/tutorial-scaffold-eth/profile-identity.png
--------------------------------------------------------------------------------
/static/img/v0.7.0/tutorial-scaffold-eth/search-profile-identity.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Binzo123/cyberconnect-docs-v2/f11f618a3342caeae36704824b51b3a03f757e0a/static/img/v0.7.0/tutorial-scaffold-eth/search-profile-identity.png
--------------------------------------------------------------------------------
/static/img/v0.8.0/convo-space.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Binzo123/cyberconnect-docs-v2/f11f618a3342caeae36704824b51b3a03f757e0a/static/img/v0.8.0/convo-space.png
--------------------------------------------------------------------------------
/static/img/v0.8.0/grape-network.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Binzo123/cyberconnect-docs-v2/f11f618a3342caeae36704824b51b3a03f757e0a/static/img/v0.8.0/grape-network.png
--------------------------------------------------------------------------------
/static/img/v0.8.0/light.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Binzo123/cyberconnect-docs-v2/f11f618a3342caeae36704824b51b3a03f757e0a/static/img/v0.8.0/light.png
--------------------------------------------------------------------------------
/static/img/v0.8.0/project-galaxy.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Binzo123/cyberconnect-docs-v2/f11f618a3342caeae36704824b51b3a03f757e0a/static/img/v0.8.0/project-galaxy.png
--------------------------------------------------------------------------------
/static/img/v0.8.0/treasureland.jpeg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Binzo123/cyberconnect-docs-v2/f11f618a3342caeae36704824b51b3a03f757e0a/static/img/v0.8.0/treasureland.jpeg
--------------------------------------------------------------------------------
/static/img/v0.9.0/cce-1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Binzo123/cyberconnect-docs-v2/f11f618a3342caeae36704824b51b3a03f757e0a/static/img/v0.9.0/cce-1.png
--------------------------------------------------------------------------------
/static/img/v0.9.0/cce-2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Binzo123/cyberconnect-docs-v2/f11f618a3342caeae36704824b51b3a03f757e0a/static/img/v0.9.0/cce-2.png
--------------------------------------------------------------------------------
/static/img/v0.9.0/cce-3.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Binzo123/cyberconnect-docs-v2/f11f618a3342caeae36704824b51b3a03f757e0a/static/img/v0.9.0/cce-3.png
--------------------------------------------------------------------------------
/static/img/v0.9.0/cce-4.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Binzo123/cyberconnect-docs-v2/f11f618a3342caeae36704824b51b3a03f757e0a/static/img/v0.9.0/cce-4.png
--------------------------------------------------------------------------------
/static/img/v0.9.0/cce-5.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Binzo123/cyberconnect-docs-v2/f11f618a3342caeae36704824b51b3a03f757e0a/static/img/v0.9.0/cce-5.png
--------------------------------------------------------------------------------
/static/img/v2/blog.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Binzo123/cyberconnect-docs-v2/f11f618a3342caeae36704824b51b3a03f757e0a/static/img/v2/blog.png
--------------------------------------------------------------------------------
/static/img/v2/build-badge-app-collect-a-badge-nft.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Binzo123/cyberconnect-docs-v2/f11f618a3342caeae36704824b51b3a03f757e0a/static/img/v2/build-badge-app-collect-a-badge-nft.png
--------------------------------------------------------------------------------
/static/img/v2/build-badge-app-collect-a-badge-tx.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Binzo123/cyberconnect-docs-v2/f11f618a3342caeae36704824b51b3a03f757e0a/static/img/v2/build-badge-app-collect-a-badge-tx.png
--------------------------------------------------------------------------------
/static/img/v2/build-badge-app-create-a-badge-tx.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Binzo123/cyberconnect-docs-v2/f11f618a3342caeae36704824b51b3a03f757e0a/static/img/v2/build-badge-app-create-a-badge-tx.png
--------------------------------------------------------------------------------
/static/img/v2/build-badge-app-create-a-badge-tx2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Binzo123/cyberconnect-docs-v2/f11f618a3342caeae36704824b51b3a03f757e0a/static/img/v2/build-badge-app-create-a-badge-tx2.png
--------------------------------------------------------------------------------
/static/img/v2/build-content-app-collect-a-post-nft.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Binzo123/cyberconnect-docs-v2/f11f618a3342caeae36704824b51b3a03f757e0a/static/img/v2/build-content-app-collect-a-post-nft.png
--------------------------------------------------------------------------------
/static/img/v2/build-content-app-collect-a-post-tx.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Binzo123/cyberconnect-docs-v2/f11f618a3342caeae36704824b51b3a03f757e0a/static/img/v2/build-content-app-collect-a-post-tx.png
--------------------------------------------------------------------------------
/static/img/v2/build-content-app-create-a-post-tx.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Binzo123/cyberconnect-docs-v2/f11f618a3342caeae36704824b51b3a03f757e0a/static/img/v2/build-content-app-create-a-post-tx.png
--------------------------------------------------------------------------------
/static/img/v2/build-content-app-create-a-post-tx2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Binzo123/cyberconnect-docs-v2/f11f618a3342caeae36704824b51b3a03f757e0a/static/img/v2/build-content-app-create-a-post-tx2.png
--------------------------------------------------------------------------------
/static/img/v2/build-content-app-create-a-profile-nft.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Binzo123/cyberconnect-docs-v2/f11f618a3342caeae36704824b51b3a03f757e0a/static/img/v2/build-content-app-create-a-profile-nft.png
--------------------------------------------------------------------------------
/static/img/v2/build-content-app-create-a-profile-tx.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Binzo123/cyberconnect-docs-v2/f11f618a3342caeae36704824b51b3a03f757e0a/static/img/v2/build-content-app-create-a-profile-tx.png
--------------------------------------------------------------------------------
/static/img/v2/build-content-app-middleware-for-post-nft.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Binzo123/cyberconnect-docs-v2/f11f618a3342caeae36704824b51b3a03f757e0a/static/img/v2/build-content-app-middleware-for-post-nft.png
--------------------------------------------------------------------------------
/static/img/v2/build-content-app-middleware-for-post-tx.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Binzo123/cyberconnect-docs-v2/f11f618a3342caeae36704824b51b3a03f757e0a/static/img/v2/build-content-app-middleware-for-post-tx.png
--------------------------------------------------------------------------------
/static/img/v2/build-content-app-middleware-for-post-tx2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Binzo123/cyberconnect-docs-v2/f11f618a3342caeae36704824b51b3a03f757e0a/static/img/v2/build-content-app-middleware-for-post-tx2.png
--------------------------------------------------------------------------------
/static/img/v2/build-content-app-middleware-for-subscribe-tx.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Binzo123/cyberconnect-docs-v2/f11f618a3342caeae36704824b51b3a03f757e0a/static/img/v2/build-content-app-middleware-for-subscribe-tx.png
--------------------------------------------------------------------------------
/static/img/v2/build-content-app-middleware-for-subscribe-tx2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Binzo123/cyberconnect-docs-v2/f11f618a3342caeae36704824b51b3a03f757e0a/static/img/v2/build-content-app-middleware-for-subscribe-tx2.png
--------------------------------------------------------------------------------
/static/img/v2/build-content-app-subscribe-to-profile-nft.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Binzo123/cyberconnect-docs-v2/f11f618a3342caeae36704824b51b3a03f757e0a/static/img/v2/build-content-app-subscribe-to-profile-nft.png
--------------------------------------------------------------------------------
/static/img/v2/build-content-app-subscribe-to-profile-tx.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Binzo123/cyberconnect-docs-v2/f11f618a3342caeae36704824b51b3a03f757e0a/static/img/v2/build-content-app-subscribe-to-profile-tx.png
--------------------------------------------------------------------------------
/static/img/v2/cc_proxy_relayer.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Binzo123/cyberconnect-docs-v2/f11f618a3342caeae36704824b51b3a03f757e0a/static/img/v2/cc_proxy_relayer.png
--------------------------------------------------------------------------------
/static/img/v2/contract-labels-comparison.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Binzo123/cyberconnect-docs-v2/f11f618a3342caeae36704824b51b3a03f757e0a/static/img/v2/contract-labels-comparison.png
--------------------------------------------------------------------------------
/static/img/v2/cyberhunt.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Binzo123/cyberconnect-docs-v2/f11f618a3342caeae36704824b51b3a03f757e0a/static/img/v2/cyberhunt.png
--------------------------------------------------------------------------------
/static/img/v2/gp_sm.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Binzo123/cyberconnect-docs-v2/f11f618a3342caeae36704824b51b3a03f757e0a/static/img/v2/gp_sm.png
--------------------------------------------------------------------------------
/static/img/v2/indexerv2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Binzo123/cyberconnect-docs-v2/f11f618a3342caeae36704824b51b3a03f757e0a/static/img/v2/indexerv2.png
--------------------------------------------------------------------------------
/static/img/v2/linkedlist.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Binzo123/cyberconnect-docs-v2/f11f618a3342caeae36704824b51b3a03f757e0a/static/img/v2/linkedlist.png
--------------------------------------------------------------------------------
/static/img/v2/overview.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Binzo123/cyberconnect-docs-v2/f11f618a3342caeae36704824b51b3a03f757e0a/static/img/v2/overview.png
--------------------------------------------------------------------------------
/static/img/v2/project-labels-comparison.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Binzo123/cyberconnect-docs-v2/f11f618a3342caeae36704824b51b3a03f757e0a/static/img/v2/project-labels-comparison.png
--------------------------------------------------------------------------------
/static/img/v2/query_schema.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Binzo123/cyberconnect-docs-v2/f11f618a3342caeae36704824b51b3a03f757e0a/static/img/v2/query_schema.png
--------------------------------------------------------------------------------
/static/img/v2/recommendation.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Binzo123/cyberconnect-docs-v2/f11f618a3342caeae36704824b51b3a03f757e0a/static/img/v2/recommendation.png
--------------------------------------------------------------------------------
/static/img/v2/sbt.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Binzo123/cyberconnect-docs-v2/f11f618a3342caeae36704824b51b3a03f757e0a/static/img/v2/sbt.png
--------------------------------------------------------------------------------
/static/img/v2/siwe.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Binzo123/cyberconnect-docs-v2/f11f618a3342caeae36704824b51b3a03f757e0a/static/img/v2/siwe.png
--------------------------------------------------------------------------------
/tsconfig.json:
--------------------------------------------------------------------------------
1 | {
2 | // This file is not used in compilation. It is here just for a nice editor experience.
3 | "extends": "@tsconfig/docusaurus/tsconfig.json",
4 | "compilerOptions": {
5 | "baseUrl": "."
6 | }
7 | }
8 |
--------------------------------------------------------------------------------
/versioned_docs/version-0.10.0/changelog/0.10.0.md:
--------------------------------------------------------------------------------
1 | ---
2 | id: 0.10.0
3 | title: 0.10.0
4 | slug: /changelog/0.10.0/
5 | sidebar_label: 0.10.0
6 | sidebar_position: 1
7 | ---
8 |
9 | ## Features
10 |
11 | **feat:** added [CyberConnect Android SDK](/cyberconnect-sdk/connect-with-android-sdk/)
12 |
--------------------------------------------------------------------------------
/versioned_docs/version-0.10.0/changelog/0.6.0.md:
--------------------------------------------------------------------------------
1 | ---
2 | id: 0.6.0
3 | title: 0.6.0
4 | slug: /changelog/0.6.0/
5 | sidebar_label: 0.6.0
6 | sidebar_position: 4
7 | ---
8 |
9 | ## Features
10 |
11 | **feat:** added chinese translation
12 |
13 | **chore:** updated new [grant](/overview/community/) apply link
14 |
--------------------------------------------------------------------------------
/versioned_docs/version-0.10.0/changelog/0.8.0.md:
--------------------------------------------------------------------------------
1 | ---
2 | id: 0.8.0
3 | title: 0.8.0
4 | slug: /changelog/0.8.0/
5 | sidebar_label: 0.8.0
6 | sidebar_position: 2
7 | ---
8 |
9 | ## Features
10 |
11 | **feat:** added [Showcase](/overview/showcase/)
12 |
--------------------------------------------------------------------------------
/versioned_docs/version-0.10.0/changelog/0.9.0.md:
--------------------------------------------------------------------------------
1 | ---
2 | id: 0.9.0
3 | title: 0.9.0
4 | slug: /changelog/0.9.0/
5 | sidebar_label: 0.9.0
6 | sidebar_position: 1
7 | ---
8 |
9 | ## Features
10 |
11 | **feat:** added [CyberConnect Explorer](/cyberconnect-explorer/)
12 |
--------------------------------------------------------------------------------
/versioned_docs/version-0.10.0/changelog/_category_.json:
--------------------------------------------------------------------------------
1 | {
2 | "label": "Changelog",
3 | "position": 10
4 | }
5 |
--------------------------------------------------------------------------------
/versioned_docs/version-0.10.0/concepts/_category_.json:
--------------------------------------------------------------------------------
1 | {
2 | "label": "Concepts",
3 | "position": 3
4 | }
5 |
--------------------------------------------------------------------------------
/versioned_docs/version-0.10.0/cyberconnect-api/_category_.json:
--------------------------------------------------------------------------------
1 | {
2 | "label": "CyberConnect API",
3 | "position": 7
4 | }
5 |
--------------------------------------------------------------------------------
/versioned_docs/version-0.10.0/cyberconnect-api/graphql-api/_category_.json:
--------------------------------------------------------------------------------
1 | {
2 | "label": "GraphQL API",
3 | "position": 2
4 | }
5 |
--------------------------------------------------------------------------------
/versioned_docs/version-0.10.0/cyberconnect-api/reference/_category_.json:
--------------------------------------------------------------------------------
1 | {
2 | "label": "Reference",
3 | "position": 3
4 | }
5 |
--------------------------------------------------------------------------------
/versioned_docs/version-0.10.0/cyberconnect-api/reference/directives/_category_.yml:
--------------------------------------------------------------------------------
1 | label: 'Directives'
2 |
--------------------------------------------------------------------------------
/versioned_docs/version-0.10.0/cyberconnect-api/reference/directives/admin.mdx:
--------------------------------------------------------------------------------
1 | ---
2 | id: admin
3 | title: admin
4 | ---
5 |
6 |
7 | No description
8 |
9 | ```graphql
10 | directive @admin
11 | ```
12 |
13 |
14 |
15 |
16 |
--------------------------------------------------------------------------------
/versioned_docs/version-0.10.0/cyberconnect-api/reference/enums/_category_.yml:
--------------------------------------------------------------------------------
1 | label: 'Enums'
2 |
--------------------------------------------------------------------------------
/versioned_docs/version-0.10.0/cyberconnect-api/reference/graphql.md:
--------------------------------------------------------------------------------
1 | ---
2 | id: graphql
3 | sidebar_class_name: navbar__toggle
4 | ---
5 |
6 | This documentation has been automatically generated from the GraphQL schema.
7 |
--------------------------------------------------------------------------------
/versioned_docs/version-0.10.0/cyberconnect-api/reference/inputs/_category_.yml:
--------------------------------------------------------------------------------
1 | label: 'Inputs'
2 |
--------------------------------------------------------------------------------
/versioned_docs/version-0.10.0/cyberconnect-api/reference/inputs/tags-input.mdx:
--------------------------------------------------------------------------------
1 | ---
2 | id: tags-input
3 | title: TagsInput
4 | ---
5 |
6 |
7 | No description
8 |
9 | ```graphql
10 | input TagsInput {
11 | list: [Tag!]!
12 | }
13 | ```
14 |
15 |
16 | ### Fields
17 |
18 | #### `list` ([`Tag`](/cyberconnect-api/reference/enums/tag))
19 |
20 |
21 |
22 |
23 |
24 |
25 |
--------------------------------------------------------------------------------
/versioned_docs/version-0.10.0/cyberconnect-api/reference/interfaces/_category_.yml:
--------------------------------------------------------------------------------
1 | label: 'Interfaces'
2 |
--------------------------------------------------------------------------------
/versioned_docs/version-0.10.0/cyberconnect-api/reference/interfaces/node.mdx:
--------------------------------------------------------------------------------
1 | ---
2 | id: node
3 | title: Node
4 | ---
5 |
6 |
7 | No description
8 |
9 | ```graphql
10 | interface Node {
11 | id: ID!
12 | }
13 | ```
14 |
15 |
16 | ### Fields
17 |
18 | #### `id` ([`ID`](/cyberconnect-api/reference/scalars/id))
19 |
20 |
21 |
22 |
23 |
24 |
25 |
--------------------------------------------------------------------------------
/versioned_docs/version-0.10.0/cyberconnect-api/reference/objects/_category_.yml:
--------------------------------------------------------------------------------
1 | label: 'Objects'
2 |
--------------------------------------------------------------------------------
/versioned_docs/version-0.10.0/cyberconnect-api/reference/objects/social.mdx:
--------------------------------------------------------------------------------
1 | ---
2 | id: social
3 | title: Social
4 | ---
5 |
6 |
7 | No description
8 |
9 | ```graphql
10 | type Social {
11 | twitter: String!
12 | }
13 | ```
14 |
15 |
16 | ### Fields
17 |
18 | #### `twitter` ([`String`](/cyberconnect-api/reference/scalars/string))
19 |
--------------------------------------------------------------------------------
/versioned_docs/version-0.10.0/cyberconnect-api/reference/queries/_category_.yml:
--------------------------------------------------------------------------------
1 | label: 'Queries'
2 |
--------------------------------------------------------------------------------
/versioned_docs/version-0.10.0/cyberconnect-api/reference/scalars/_category_.yml:
--------------------------------------------------------------------------------
1 | label: 'Scalars'
2 |
--------------------------------------------------------------------------------
/versioned_docs/version-0.10.0/cyberconnect-api/reference/scalars/boolean.mdx:
--------------------------------------------------------------------------------
1 | ---
2 | id: boolean
3 | title: Boolean
4 | ---
5 |
6 |
7 | The `Boolean` scalar type represents `true` or `false`.
8 |
9 | ```graphql
10 | scalar Boolean
11 | ```
12 |
13 |
14 |
15 |
16 |
--------------------------------------------------------------------------------
/versioned_docs/version-0.10.0/cyberconnect-api/reference/scalars/int.mdx:
--------------------------------------------------------------------------------
1 | ---
2 | id: int
3 | title: Int
4 | ---
5 |
6 |
7 | The `Int` scalar type represents non-fractional signed whole numeric values. Int can represent values between -(2^31) and 2^31 - 1.
8 |
9 | ```graphql
10 | scalar Int
11 | ```
12 |
13 |
14 |
15 |
16 |
--------------------------------------------------------------------------------
/versioned_docs/version-0.10.0/cyberconnect-api/reference/scalars/string.mdx:
--------------------------------------------------------------------------------
1 | ---
2 | id: string
3 | title: String
4 | ---
5 |
6 |
7 | 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.
8 |
9 | ```graphql
10 | scalar String
11 | ```
12 |
13 |
14 |
15 |
16 |
--------------------------------------------------------------------------------
/versioned_docs/version-0.10.0/cyberconnect-api/reference/sidebar-schema.js:
--------------------------------------------------------------------------------
1 | module.exports = {
2 | "schemaSidebar": [
3 | {
4 | "type": "autogenerated",
5 | "dirName": "/cyberconnect-api/reference/"
6 | }
7 | ]
8 | };
--------------------------------------------------------------------------------
/versioned_docs/version-0.10.0/cyberconnect-api/rest-api/_category_.json:
--------------------------------------------------------------------------------
1 | {
2 | "label": "REST API",
3 | "position": 2
4 | }
5 |
--------------------------------------------------------------------------------
/versioned_docs/version-0.10.0/cyberconnect-sdk/_category_.json:
--------------------------------------------------------------------------------
1 | {
2 | "label": "CyberConnect SDK",
3 | "position": 6
4 | }
5 |
--------------------------------------------------------------------------------
/versioned_docs/version-0.10.0/get-started/_category_.json:
--------------------------------------------------------------------------------
1 | {
2 | "label": "Get started",
3 | "position": 4
4 | }
5 |
--------------------------------------------------------------------------------
/versioned_docs/version-0.10.0/overview/_category_.json:
--------------------------------------------------------------------------------
1 | {
2 | "label": "Overview",
3 | "position": 2
4 | }
5 |
--------------------------------------------------------------------------------
/versioned_docs/version-0.10.0/protocol/_category_.json:
--------------------------------------------------------------------------------
1 | {
2 | "label": "Protocol",
3 | "position": 8
4 | }
5 |
--------------------------------------------------------------------------------
/versioned_docs/version-0.10.0/resources/_category_.json:
--------------------------------------------------------------------------------
1 | {
2 | "label": "Resources",
3 | "position": 9
4 | }
5 |
--------------------------------------------------------------------------------
/versioned_docs/version-0.10.0/resources/terminology/_category_.json:
--------------------------------------------------------------------------------
1 | {
2 | "label": "Terminology",
3 | "position": 2
4 | }
5 |
--------------------------------------------------------------------------------
/versioned_docs/version-0.2.0/2. overview/_category_.json:
--------------------------------------------------------------------------------
1 | {
2 | "label": "🚀 | OVERVIEW",
3 | "position": 2
4 | }
5 |
--------------------------------------------------------------------------------
/versioned_docs/version-0.2.0/3. concepts/_category_.json:
--------------------------------------------------------------------------------
1 | {
2 | "label": "💭 | CONCEPTS",
3 | "position": 3
4 | }
5 |
--------------------------------------------------------------------------------
/versioned_docs/version-0.2.0/4. get-started/_category_.json:
--------------------------------------------------------------------------------
1 | {
2 | "label": "🛠️ | GET STARTED",
3 | "position": 4
4 | }
5 |
--------------------------------------------------------------------------------
/versioned_docs/version-0.2.0/5. cyberconnect-sdk/_category_.json:
--------------------------------------------------------------------------------
1 | {
2 | "label": "🤖 | CYBERCONNECT SDK",
3 | "position": 5
4 | }
5 |
--------------------------------------------------------------------------------
/versioned_docs/version-0.2.0/6. cyberconnect-api/2. endpoints/_category_.json:
--------------------------------------------------------------------------------
1 | {
2 | "label": "Endpoints",
3 | "position": 2
4 | }
5 |
--------------------------------------------------------------------------------
/versioned_docs/version-0.2.0/6. cyberconnect-api/_category_.json:
--------------------------------------------------------------------------------
1 | {
2 | "label": "🧬 | CYBERCONNECT API",
3 | "position": 6
4 | }
5 |
--------------------------------------------------------------------------------
/versioned_docs/version-0.2.0/7. protocol/_category_.json:
--------------------------------------------------------------------------------
1 | {
2 | "label": "⚙️ | PROTOCOL",
3 | "position": 7
4 | }
5 |
--------------------------------------------------------------------------------
/versioned_docs/version-0.2.0/8. tutorials/_category_.json:
--------------------------------------------------------------------------------
1 | {
2 | "label": "📚 | TUTORIALS",
3 | "position": 8
4 | }
5 |
--------------------------------------------------------------------------------
/versioned_docs/version-0.2.0/9. resources/3. terminology/_category_.json:
--------------------------------------------------------------------------------
1 | {
2 | "label": "Terminology",
3 | "position": 2
4 | }
5 |
--------------------------------------------------------------------------------
/versioned_docs/version-0.2.0/9. resources/_category_.json:
--------------------------------------------------------------------------------
1 | {
2 | "label": "🧰 | RESOURCES",
3 | "position": 9
4 | }
5 |
--------------------------------------------------------------------------------
/versioned_docs/version-0.3.0/concepts/_category_.json:
--------------------------------------------------------------------------------
1 | {
2 | "label": "Concepts",
3 | "position": 3
4 | }
5 |
--------------------------------------------------------------------------------
/versioned_docs/version-0.3.0/cyberconnect-api/_category_.json:
--------------------------------------------------------------------------------
1 | {
2 | "label": "CyberConnect API",
3 | "position": 6
4 | }
5 |
--------------------------------------------------------------------------------
/versioned_docs/version-0.3.0/cyberconnect-api/graphql-api/_category_.json:
--------------------------------------------------------------------------------
1 | {
2 | "label": "GraphQL API",
3 | "position": 2
4 | }
5 |
--------------------------------------------------------------------------------
/versioned_docs/version-0.3.0/cyberconnect-api/reference/_category_.json:
--------------------------------------------------------------------------------
1 | {
2 | "label": "Reference",
3 | "position": 3
4 | }
5 |
--------------------------------------------------------------------------------
/versioned_docs/version-0.3.0/cyberconnect-api/reference/directives/_category_.yml:
--------------------------------------------------------------------------------
1 | label: 'Directives'
2 |
--------------------------------------------------------------------------------
/versioned_docs/version-0.3.0/cyberconnect-api/reference/directives/admin.mdx:
--------------------------------------------------------------------------------
1 | ---
2 | id: admin
3 | title: admin
4 | ---
5 |
6 |
7 | No description
8 |
9 | ```graphql
10 | directive @admin
11 | ```
12 |
13 |
14 |
15 |
16 |
--------------------------------------------------------------------------------
/versioned_docs/version-0.3.0/cyberconnect-api/reference/enums/_category_.yml:
--------------------------------------------------------------------------------
1 | label: 'Enums'
2 |
--------------------------------------------------------------------------------
/versioned_docs/version-0.3.0/cyberconnect-api/reference/graphql.md:
--------------------------------------------------------------------------------
1 | ---
2 | id: graphql
3 | sidebar_class_name: navbar__toggle
4 | ---
5 |
6 | This documentation has been automatically generated from the GraphQL schema.
7 |
--------------------------------------------------------------------------------
/versioned_docs/version-0.3.0/cyberconnect-api/reference/inputs/_category_.yml:
--------------------------------------------------------------------------------
1 | label: 'Inputs'
2 |
--------------------------------------------------------------------------------
/versioned_docs/version-0.3.0/cyberconnect-api/reference/inputs/tags-input.mdx:
--------------------------------------------------------------------------------
1 | ---
2 | id: tags-input
3 | title: TagsInput
4 | ---
5 |
6 |
7 | No description
8 |
9 | ```graphql
10 | input TagsInput {
11 | list: [Tag!]!
12 | }
13 | ```
14 |
15 |
16 | ### Fields
17 |
18 | #### `list` ([`Tag`](/cyberconnect-api/reference/enums/tag))
19 |
20 |
21 |
22 |
23 |
24 |
25 |
--------------------------------------------------------------------------------
/versioned_docs/version-0.3.0/cyberconnect-api/reference/interfaces/node.mdx:
--------------------------------------------------------------------------------
1 | ---
2 | id: node
3 | title: Node
4 | ---
5 |
6 |
7 | No description
8 |
9 | ```graphql
10 | interface Node {
11 | id: ID!
12 | }
13 | ```
14 |
15 |
16 | ### Fields
17 |
18 | #### `id` ([`ID`](/cyberconnect-api/reference/scalars/id))
19 |
20 |
21 |
22 |
23 |
24 |
25 |
--------------------------------------------------------------------------------
/versioned_docs/version-0.3.0/cyberconnect-api/reference/objects/_category_.yml:
--------------------------------------------------------------------------------
1 | label: 'Objects'
2 |
--------------------------------------------------------------------------------
/versioned_docs/version-0.3.0/cyberconnect-api/reference/objects/social.mdx:
--------------------------------------------------------------------------------
1 | ---
2 | id: social
3 | title: Social
4 | ---
5 |
6 |
7 | No description
8 |
9 | ```graphql
10 | type Social {
11 | twitter: String!
12 | }
13 | ```
14 |
15 |
16 | ### Fields
17 |
18 | #### `twitter` ([`String`](/cyberconnect-api/reference/scalars/string))
19 |
--------------------------------------------------------------------------------
/versioned_docs/version-0.3.0/cyberconnect-api/reference/queries/_category_.yml:
--------------------------------------------------------------------------------
1 | label: 'Queries'
2 |
--------------------------------------------------------------------------------
/versioned_docs/version-0.3.0/cyberconnect-api/reference/scalars/_category_.yml:
--------------------------------------------------------------------------------
1 | label: 'Scalars'
2 |
--------------------------------------------------------------------------------
/versioned_docs/version-0.3.0/cyberconnect-api/reference/scalars/boolean.mdx:
--------------------------------------------------------------------------------
1 | ---
2 | id: boolean
3 | title: Boolean
4 | ---
5 |
6 |
7 | The `Boolean` scalar type represents `true` or `false`.
8 |
9 | ```graphql
10 | scalar Boolean
11 | ```
12 |
13 |
14 |
15 |
16 |
--------------------------------------------------------------------------------
/versioned_docs/version-0.3.0/cyberconnect-api/reference/scalars/int.mdx:
--------------------------------------------------------------------------------
1 | ---
2 | id: int
3 | title: Int
4 | ---
5 |
6 |
7 | The `Int` scalar type represents non-fractional signed whole numeric values. Int can represent values between -(2^31) and 2^31 - 1.
8 |
9 | ```graphql
10 | scalar Int
11 | ```
12 |
13 |
14 |
15 |
16 |
--------------------------------------------------------------------------------
/versioned_docs/version-0.3.0/cyberconnect-api/reference/scalars/string.mdx:
--------------------------------------------------------------------------------
1 | ---
2 | id: string
3 | title: String
4 | ---
5 |
6 |
7 | 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.
8 |
9 | ```graphql
10 | scalar String
11 | ```
12 |
13 |
14 |
15 |
16 |
--------------------------------------------------------------------------------
/versioned_docs/version-0.3.0/cyberconnect-api/reference/sidebar-schema.js:
--------------------------------------------------------------------------------
1 | module.exports = {
2 | "schemaSidebar": [
3 | {
4 | "type": "autogenerated",
5 | "dirName": "/cyberconnect-api/reference/"
6 | }
7 | ]
8 | };
--------------------------------------------------------------------------------
/versioned_docs/version-0.3.0/cyberconnect-api/rest-api/_category_.json:
--------------------------------------------------------------------------------
1 | {
2 | "label": "REST API",
3 | "position": 2
4 | }
5 |
--------------------------------------------------------------------------------
/versioned_docs/version-0.3.0/cyberconnect-sdk/_category_.json:
--------------------------------------------------------------------------------
1 | {
2 | "label": "CyberConnect SDK",
3 | "position": 5
4 | }
5 |
--------------------------------------------------------------------------------
/versioned_docs/version-0.3.0/get-started/_category_.json:
--------------------------------------------------------------------------------
1 | {
2 | "label": "Get started",
3 | "position": 4
4 | }
5 |
--------------------------------------------------------------------------------
/versioned_docs/version-0.3.0/overview/_category_.json:
--------------------------------------------------------------------------------
1 | {
2 | "label": "Overview",
3 | "position": 2
4 | }
5 |
--------------------------------------------------------------------------------
/versioned_docs/version-0.3.0/protocol/_category_.json:
--------------------------------------------------------------------------------
1 | {
2 | "label": "Protocol",
3 | "position": 7
4 | }
5 |
--------------------------------------------------------------------------------
/versioned_docs/version-0.3.0/resources/_category_.json:
--------------------------------------------------------------------------------
1 | {
2 | "label": "Resources",
3 | "position": 9
4 | }
5 |
--------------------------------------------------------------------------------
/versioned_docs/version-0.3.0/resources/terminology/_category_.json:
--------------------------------------------------------------------------------
1 | {
2 | "label": "Terminology",
3 | "position": 2
4 | }
5 |
--------------------------------------------------------------------------------
/versioned_docs/version-0.3.0/tutorials/_category_.json:
--------------------------------------------------------------------------------
1 | {
2 | "label": "Tutorials",
3 | "position": 8
4 | }
5 |
--------------------------------------------------------------------------------
/versioned_docs/version-0.4.0/changelog/_category_.json:
--------------------------------------------------------------------------------
1 | {
2 | "label": "Changelog",
3 | "position": 10
4 | }
5 |
--------------------------------------------------------------------------------
/versioned_docs/version-0.4.0/concepts/_category_.json:
--------------------------------------------------------------------------------
1 | {
2 | "label": "Concepts",
3 | "position": 3
4 | }
5 |
--------------------------------------------------------------------------------
/versioned_docs/version-0.4.0/cyberconnect-api/_category_.json:
--------------------------------------------------------------------------------
1 | {
2 | "label": "CyberConnect API",
3 | "position": 6
4 | }
5 |
--------------------------------------------------------------------------------
/versioned_docs/version-0.4.0/cyberconnect-api/graphql-api/_category_.json:
--------------------------------------------------------------------------------
1 | {
2 | "label": "GraphQL API",
3 | "position": 2
4 | }
5 |
--------------------------------------------------------------------------------
/versioned_docs/version-0.4.0/cyberconnect-api/reference/_category_.json:
--------------------------------------------------------------------------------
1 | {
2 | "label": "Reference",
3 | "position": 3
4 | }
5 |
--------------------------------------------------------------------------------
/versioned_docs/version-0.4.0/cyberconnect-api/reference/directives/_category_.yml:
--------------------------------------------------------------------------------
1 | label: 'Directives'
2 |
--------------------------------------------------------------------------------
/versioned_docs/version-0.4.0/cyberconnect-api/reference/directives/admin.mdx:
--------------------------------------------------------------------------------
1 | ---
2 | id: admin
3 | title: admin
4 | ---
5 |
6 |
7 | No description
8 |
9 | ```graphql
10 | directive @admin
11 | ```
12 |
13 |
14 |
15 |
16 |
--------------------------------------------------------------------------------
/versioned_docs/version-0.4.0/cyberconnect-api/reference/enums/_category_.yml:
--------------------------------------------------------------------------------
1 | label: 'Enums'
2 |
--------------------------------------------------------------------------------
/versioned_docs/version-0.4.0/cyberconnect-api/reference/graphql.md:
--------------------------------------------------------------------------------
1 | ---
2 | id: graphql
3 | sidebar_class_name: navbar__toggle
4 | ---
5 |
6 | This documentation has been automatically generated from the GraphQL schema.
7 |
--------------------------------------------------------------------------------
/versioned_docs/version-0.4.0/cyberconnect-api/reference/inputs/_category_.yml:
--------------------------------------------------------------------------------
1 | label: 'Inputs'
2 |
--------------------------------------------------------------------------------
/versioned_docs/version-0.4.0/cyberconnect-api/reference/inputs/tags-input.mdx:
--------------------------------------------------------------------------------
1 | ---
2 | id: tags-input
3 | title: TagsInput
4 | ---
5 |
6 |
7 | No description
8 |
9 | ```graphql
10 | input TagsInput {
11 | list: [Tag!]!
12 | }
13 | ```
14 |
15 |
16 | ### Fields
17 |
18 | #### `list` ([`Tag`](/cyberconnect-api/reference/enums/tag))
19 |
20 |
21 |
22 |
23 |
24 |
25 |
--------------------------------------------------------------------------------
/versioned_docs/version-0.4.0/cyberconnect-api/reference/interfaces/node.mdx:
--------------------------------------------------------------------------------
1 | ---
2 | id: node
3 | title: Node
4 | ---
5 |
6 |
7 | No description
8 |
9 | ```graphql
10 | interface Node {
11 | id: ID!
12 | }
13 | ```
14 |
15 |
16 | ### Fields
17 |
18 | #### `id` ([`ID`](/cyberconnect-api/reference/scalars/id))
19 |
20 |
21 |
22 |
23 |
24 |
25 |
--------------------------------------------------------------------------------
/versioned_docs/version-0.4.0/cyberconnect-api/reference/objects/_category_.yml:
--------------------------------------------------------------------------------
1 | label: 'Objects'
2 |
--------------------------------------------------------------------------------
/versioned_docs/version-0.4.0/cyberconnect-api/reference/objects/social.mdx:
--------------------------------------------------------------------------------
1 | ---
2 | id: social
3 | title: Social
4 | ---
5 |
6 |
7 | No description
8 |
9 | ```graphql
10 | type Social {
11 | twitter: String!
12 | }
13 | ```
14 |
15 |
16 | ### Fields
17 |
18 | #### `twitter` ([`String`](/cyberconnect-api/reference/scalars/string))
19 |
--------------------------------------------------------------------------------
/versioned_docs/version-0.4.0/cyberconnect-api/reference/queries/_category_.yml:
--------------------------------------------------------------------------------
1 | label: 'Queries'
2 |
--------------------------------------------------------------------------------
/versioned_docs/version-0.4.0/cyberconnect-api/reference/scalars/_category_.yml:
--------------------------------------------------------------------------------
1 | label: 'Scalars'
2 |
--------------------------------------------------------------------------------
/versioned_docs/version-0.4.0/cyberconnect-api/reference/scalars/boolean.mdx:
--------------------------------------------------------------------------------
1 | ---
2 | id: boolean
3 | title: Boolean
4 | ---
5 |
6 |
7 | The `Boolean` scalar type represents `true` or `false`.
8 |
9 | ```graphql
10 | scalar Boolean
11 | ```
12 |
13 |
14 |
15 |
16 |
--------------------------------------------------------------------------------
/versioned_docs/version-0.4.0/cyberconnect-api/reference/scalars/int.mdx:
--------------------------------------------------------------------------------
1 | ---
2 | id: int
3 | title: Int
4 | ---
5 |
6 |
7 | The `Int` scalar type represents non-fractional signed whole numeric values. Int can represent values between -(2^31) and 2^31 - 1.
8 |
9 | ```graphql
10 | scalar Int
11 | ```
12 |
13 |
14 |
15 |
16 |
--------------------------------------------------------------------------------
/versioned_docs/version-0.4.0/cyberconnect-api/reference/scalars/string.mdx:
--------------------------------------------------------------------------------
1 | ---
2 | id: string
3 | title: String
4 | ---
5 |
6 |
7 | 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.
8 |
9 | ```graphql
10 | scalar String
11 | ```
12 |
13 |
14 |
15 |
16 |
--------------------------------------------------------------------------------
/versioned_docs/version-0.4.0/cyberconnect-api/reference/sidebar-schema.js:
--------------------------------------------------------------------------------
1 | module.exports = {
2 | "schemaSidebar": [
3 | {
4 | "type": "autogenerated",
5 | "dirName": "/cyberconnect-api/reference/"
6 | }
7 | ]
8 | };
--------------------------------------------------------------------------------
/versioned_docs/version-0.4.0/cyberconnect-api/rest-api/_category_.json:
--------------------------------------------------------------------------------
1 | {
2 | "label": "REST API",
3 | "position": 2
4 | }
5 |
--------------------------------------------------------------------------------
/versioned_docs/version-0.4.0/cyberconnect-sdk/_category_.json:
--------------------------------------------------------------------------------
1 | {
2 | "label": "CyberConnect SDK",
3 | "position": 5
4 | }
5 |
--------------------------------------------------------------------------------
/versioned_docs/version-0.4.0/get-started/_category_.json:
--------------------------------------------------------------------------------
1 | {
2 | "label": "Get started",
3 | "position": 4
4 | }
5 |
--------------------------------------------------------------------------------
/versioned_docs/version-0.4.0/overview/_category_.json:
--------------------------------------------------------------------------------
1 | {
2 | "label": "Overview",
3 | "position": 2
4 | }
5 |
--------------------------------------------------------------------------------
/versioned_docs/version-0.4.0/protocol/_category_.json:
--------------------------------------------------------------------------------
1 | {
2 | "label": "Protocol",
3 | "position": 7
4 | }
5 |
--------------------------------------------------------------------------------
/versioned_docs/version-0.4.0/resources/_category_.json:
--------------------------------------------------------------------------------
1 | {
2 | "label": "Resources",
3 | "position": 9
4 | }
5 |
--------------------------------------------------------------------------------
/versioned_docs/version-0.4.0/resources/terminology/_category_.json:
--------------------------------------------------------------------------------
1 | {
2 | "label": "Terminology",
3 | "position": 2
4 | }
5 |
--------------------------------------------------------------------------------
/versioned_docs/version-0.4.0/tutorials/_category_.json:
--------------------------------------------------------------------------------
1 | {
2 | "label": "Tutorials",
3 | "position": 8
4 | }
5 |
--------------------------------------------------------------------------------
/versioned_docs/version-0.5.0/changelog/_category_.json:
--------------------------------------------------------------------------------
1 | {
2 | "label": "Changelog",
3 | "position": 10
4 | }
5 |
--------------------------------------------------------------------------------
/versioned_docs/version-0.5.0/concepts/_category_.json:
--------------------------------------------------------------------------------
1 | {
2 | "label": "Concepts",
3 | "position": 3
4 | }
5 |
--------------------------------------------------------------------------------
/versioned_docs/version-0.5.0/cyberconnect-api/_category_.json:
--------------------------------------------------------------------------------
1 | {
2 | "label": "CyberConnect API",
3 | "position": 6
4 | }
5 |
--------------------------------------------------------------------------------
/versioned_docs/version-0.5.0/cyberconnect-api/graphql-api/_category_.json:
--------------------------------------------------------------------------------
1 | {
2 | "label": "GraphQL API",
3 | "position": 2
4 | }
5 |
--------------------------------------------------------------------------------
/versioned_docs/version-0.5.0/cyberconnect-api/reference/_category_.json:
--------------------------------------------------------------------------------
1 | {
2 | "label": "Reference",
3 | "position": 3
4 | }
5 |
--------------------------------------------------------------------------------
/versioned_docs/version-0.5.0/cyberconnect-api/reference/directives/_category_.yml:
--------------------------------------------------------------------------------
1 | label: 'Directives'
2 |
--------------------------------------------------------------------------------
/versioned_docs/version-0.5.0/cyberconnect-api/reference/directives/admin.mdx:
--------------------------------------------------------------------------------
1 | ---
2 | id: admin
3 | title: admin
4 | ---
5 |
6 |
7 | No description
8 |
9 | ```graphql
10 | directive @admin
11 | ```
12 |
13 |
14 |
15 |
16 |
--------------------------------------------------------------------------------
/versioned_docs/version-0.5.0/cyberconnect-api/reference/enums/_category_.yml:
--------------------------------------------------------------------------------
1 | label: 'Enums'
2 |
--------------------------------------------------------------------------------
/versioned_docs/version-0.5.0/cyberconnect-api/reference/graphql.md:
--------------------------------------------------------------------------------
1 | ---
2 | id: graphql
3 | sidebar_class_name: navbar__toggle
4 | ---
5 |
6 | This documentation has been automatically generated from the GraphQL schema.
7 |
--------------------------------------------------------------------------------
/versioned_docs/version-0.5.0/cyberconnect-api/reference/inputs/_category_.yml:
--------------------------------------------------------------------------------
1 | label: 'Inputs'
2 |
--------------------------------------------------------------------------------
/versioned_docs/version-0.5.0/cyberconnect-api/reference/inputs/tags-input.mdx:
--------------------------------------------------------------------------------
1 | ---
2 | id: tags-input
3 | title: TagsInput
4 | ---
5 |
6 |
7 | No description
8 |
9 | ```graphql
10 | input TagsInput {
11 | list: [Tag!]!
12 | }
13 | ```
14 |
15 |
16 | ### Fields
17 |
18 | #### `list` ([`Tag`](/cyberconnect-api/reference/enums/tag))
19 |
20 |
21 |
22 |
23 |
24 |
25 |
--------------------------------------------------------------------------------
/versioned_docs/version-0.5.0/cyberconnect-api/reference/interfaces/node.mdx:
--------------------------------------------------------------------------------
1 | ---
2 | id: node
3 | title: Node
4 | ---
5 |
6 |
7 | No description
8 |
9 | ```graphql
10 | interface Node {
11 | id: ID!
12 | }
13 | ```
14 |
15 |
16 | ### Fields
17 |
18 | #### `id` ([`ID`](/cyberconnect-api/reference/scalars/id))
19 |
20 |
21 |
22 |
23 |
24 |
25 |
--------------------------------------------------------------------------------
/versioned_docs/version-0.5.0/cyberconnect-api/reference/objects/_category_.yml:
--------------------------------------------------------------------------------
1 | label: 'Objects'
2 |
--------------------------------------------------------------------------------
/versioned_docs/version-0.5.0/cyberconnect-api/reference/objects/social.mdx:
--------------------------------------------------------------------------------
1 | ---
2 | id: social
3 | title: Social
4 | ---
5 |
6 |
7 | No description
8 |
9 | ```graphql
10 | type Social {
11 | twitter: String!
12 | }
13 | ```
14 |
15 |
16 | ### Fields
17 |
18 | #### `twitter` ([`String`](/cyberconnect-api/reference/scalars/string))
19 |
--------------------------------------------------------------------------------
/versioned_docs/version-0.5.0/cyberconnect-api/reference/queries/_category_.yml:
--------------------------------------------------------------------------------
1 | label: 'Queries'
2 |
--------------------------------------------------------------------------------
/versioned_docs/version-0.5.0/cyberconnect-api/reference/scalars/_category_.yml:
--------------------------------------------------------------------------------
1 | label: 'Scalars'
2 |
--------------------------------------------------------------------------------
/versioned_docs/version-0.5.0/cyberconnect-api/reference/scalars/boolean.mdx:
--------------------------------------------------------------------------------
1 | ---
2 | id: boolean
3 | title: Boolean
4 | ---
5 |
6 |
7 | The `Boolean` scalar type represents `true` or `false`.
8 |
9 | ```graphql
10 | scalar Boolean
11 | ```
12 |
13 |
14 |
15 |
16 |
--------------------------------------------------------------------------------
/versioned_docs/version-0.5.0/cyberconnect-api/reference/scalars/int.mdx:
--------------------------------------------------------------------------------
1 | ---
2 | id: int
3 | title: Int
4 | ---
5 |
6 |
7 | The `Int` scalar type represents non-fractional signed whole numeric values. Int can represent values between -(2^31) and 2^31 - 1.
8 |
9 | ```graphql
10 | scalar Int
11 | ```
12 |
13 |
14 |
15 |
16 |
--------------------------------------------------------------------------------
/versioned_docs/version-0.5.0/cyberconnect-api/reference/sidebar-schema.js:
--------------------------------------------------------------------------------
1 | module.exports = {
2 | "schemaSidebar": [
3 | {
4 | "type": "autogenerated",
5 | "dirName": "/cyberconnect-api/reference/"
6 | }
7 | ]
8 | };
--------------------------------------------------------------------------------
/versioned_docs/version-0.5.0/cyberconnect-api/rest-api/_category_.json:
--------------------------------------------------------------------------------
1 | {
2 | "label": "REST API",
3 | "position": 2
4 | }
5 |
--------------------------------------------------------------------------------
/versioned_docs/version-0.5.0/cyberconnect-sdk/_category_.json:
--------------------------------------------------------------------------------
1 | {
2 | "label": "CyberConnect SDK",
3 | "position": 5
4 | }
5 |
--------------------------------------------------------------------------------
/versioned_docs/version-0.5.0/get-started/_category_.json:
--------------------------------------------------------------------------------
1 | {
2 | "label": "Get started",
3 | "position": 4
4 | }
5 |
--------------------------------------------------------------------------------
/versioned_docs/version-0.5.0/overview/_category_.json:
--------------------------------------------------------------------------------
1 | {
2 | "label": "Overview",
3 | "position": 2
4 | }
5 |
--------------------------------------------------------------------------------
/versioned_docs/version-0.5.0/protocol/_category_.json:
--------------------------------------------------------------------------------
1 | {
2 | "label": "Protocol",
3 | "position": 7
4 | }
5 |
--------------------------------------------------------------------------------
/versioned_docs/version-0.5.0/resources/_category_.json:
--------------------------------------------------------------------------------
1 | {
2 | "label": "Resources",
3 | "position": 9
4 | }
5 |
--------------------------------------------------------------------------------
/versioned_docs/version-0.5.0/resources/terminology/_category_.json:
--------------------------------------------------------------------------------
1 | {
2 | "label": "Terminology",
3 | "position": 2
4 | }
5 |
--------------------------------------------------------------------------------
/versioned_docs/version-0.5.0/tutorials/_category_.json:
--------------------------------------------------------------------------------
1 | {
2 | "label": "Tutorials",
3 | "position": 8
4 | }
5 |
--------------------------------------------------------------------------------
/versioned_docs/version-0.6.0/changelog/0.6.0.md:
--------------------------------------------------------------------------------
1 | ---
2 | id: 0.6.0
3 | title: 0.6.0
4 | slug: /changelog/0.6.0/
5 | sidebar_label: 0.6.0
6 | sidebar_position: 1
7 | ---
8 |
9 | ## Features
10 |
11 | **feat:** added chinese translation
12 |
13 | **chore:** updated new [grant](/overview/community/) apply link
14 |
--------------------------------------------------------------------------------
/versioned_docs/version-0.6.0/changelog/_category_.json:
--------------------------------------------------------------------------------
1 | {
2 | "label": "Changelog",
3 | "position": 10
4 | }
5 |
--------------------------------------------------------------------------------
/versioned_docs/version-0.6.0/concepts/_category_.json:
--------------------------------------------------------------------------------
1 | {
2 | "label": "Concepts",
3 | "position": 3
4 | }
5 |
--------------------------------------------------------------------------------
/versioned_docs/version-0.6.0/cyberconnect-api/_category_.json:
--------------------------------------------------------------------------------
1 | {
2 | "label": "CyberConnect API",
3 | "position": 6
4 | }
5 |
--------------------------------------------------------------------------------
/versioned_docs/version-0.6.0/cyberconnect-api/graphql-api/_category_.json:
--------------------------------------------------------------------------------
1 | {
2 | "label": "GraphQL API",
3 | "position": 2
4 | }
5 |
--------------------------------------------------------------------------------
/versioned_docs/version-0.6.0/cyberconnect-api/reference/_category_.json:
--------------------------------------------------------------------------------
1 | {
2 | "label": "Reference",
3 | "position": 3
4 | }
5 |
--------------------------------------------------------------------------------
/versioned_docs/version-0.6.0/cyberconnect-api/reference/directives/_category_.yml:
--------------------------------------------------------------------------------
1 | label: 'Directives'
2 |
--------------------------------------------------------------------------------
/versioned_docs/version-0.6.0/cyberconnect-api/reference/directives/admin.mdx:
--------------------------------------------------------------------------------
1 | ---
2 | id: admin
3 | title: admin
4 | ---
5 |
6 |
7 | No description
8 |
9 | ```graphql
10 | directive @admin
11 | ```
12 |
13 |
14 |
15 |
16 |
--------------------------------------------------------------------------------
/versioned_docs/version-0.6.0/cyberconnect-api/reference/enums/_category_.yml:
--------------------------------------------------------------------------------
1 | label: 'Enums'
2 |
--------------------------------------------------------------------------------
/versioned_docs/version-0.6.0/cyberconnect-api/reference/graphql.md:
--------------------------------------------------------------------------------
1 | ---
2 | id: graphql
3 | sidebar_class_name: navbar__toggle
4 | ---
5 |
6 | This documentation has been automatically generated from the GraphQL schema.
7 |
--------------------------------------------------------------------------------
/versioned_docs/version-0.6.0/cyberconnect-api/reference/inputs/_category_.yml:
--------------------------------------------------------------------------------
1 | label: 'Inputs'
2 |
--------------------------------------------------------------------------------
/versioned_docs/version-0.6.0/cyberconnect-api/reference/inputs/tags-input.mdx:
--------------------------------------------------------------------------------
1 | ---
2 | id: tags-input
3 | title: TagsInput
4 | ---
5 |
6 |
7 | No description
8 |
9 | ```graphql
10 | input TagsInput {
11 | list: [Tag!]!
12 | }
13 | ```
14 |
15 |
16 | ### Fields
17 |
18 | #### `list` ([`Tag`](/cyberconnect-api/reference/enums/tag))
19 |
20 |
21 |
22 |
23 |
24 |
25 |
--------------------------------------------------------------------------------
/versioned_docs/version-0.6.0/cyberconnect-api/reference/interfaces/_category_.yml:
--------------------------------------------------------------------------------
1 | label: 'Interfaces'
2 |
--------------------------------------------------------------------------------
/versioned_docs/version-0.6.0/cyberconnect-api/reference/interfaces/node.mdx:
--------------------------------------------------------------------------------
1 | ---
2 | id: node
3 | title: Node
4 | ---
5 |
6 |
7 | No description
8 |
9 | ```graphql
10 | interface Node {
11 | id: ID!
12 | }
13 | ```
14 |
15 |
16 | ### Fields
17 |
18 | #### `id` ([`ID`](/cyberconnect-api/reference/scalars/id))
19 |
20 |
21 |
22 |
23 |
24 |
25 |
--------------------------------------------------------------------------------
/versioned_docs/version-0.6.0/cyberconnect-api/reference/objects/_category_.yml:
--------------------------------------------------------------------------------
1 | label: 'Objects'
2 |
--------------------------------------------------------------------------------
/versioned_docs/version-0.6.0/cyberconnect-api/reference/objects/social.mdx:
--------------------------------------------------------------------------------
1 | ---
2 | id: social
3 | title: Social
4 | ---
5 |
6 |
7 | No description
8 |
9 | ```graphql
10 | type Social {
11 | twitter: String!
12 | }
13 | ```
14 |
15 |
16 | ### Fields
17 |
18 | #### `twitter` ([`String`](/cyberconnect-api/reference/scalars/string))
19 |
--------------------------------------------------------------------------------
/versioned_docs/version-0.6.0/cyberconnect-api/reference/queries/_category_.yml:
--------------------------------------------------------------------------------
1 | label: 'Queries'
2 |
--------------------------------------------------------------------------------
/versioned_docs/version-0.6.0/cyberconnect-api/reference/scalars/_category_.yml:
--------------------------------------------------------------------------------
1 | label: 'Scalars'
2 |
--------------------------------------------------------------------------------
/versioned_docs/version-0.6.0/cyberconnect-api/reference/scalars/boolean.mdx:
--------------------------------------------------------------------------------
1 | ---
2 | id: boolean
3 | title: Boolean
4 | ---
5 |
6 |
7 | The `Boolean` scalar type represents `true` or `false`.
8 |
9 | ```graphql
10 | scalar Boolean
11 | ```
12 |
13 |
14 |
15 |
16 |
--------------------------------------------------------------------------------
/versioned_docs/version-0.6.0/cyberconnect-api/reference/scalars/int.mdx:
--------------------------------------------------------------------------------
1 | ---
2 | id: int
3 | title: Int
4 | ---
5 |
6 |
7 | The `Int` scalar type represents non-fractional signed whole numeric values. Int can represent values between -(2^31) and 2^31 - 1.
8 |
9 | ```graphql
10 | scalar Int
11 | ```
12 |
13 |
14 |
15 |
16 |
--------------------------------------------------------------------------------
/versioned_docs/version-0.6.0/cyberconnect-api/reference/sidebar-schema.js:
--------------------------------------------------------------------------------
1 | module.exports = {
2 | "schemaSidebar": [
3 | {
4 | "type": "autogenerated",
5 | "dirName": "/cyberconnect-api/reference/"
6 | }
7 | ]
8 | };
--------------------------------------------------------------------------------
/versioned_docs/version-0.6.0/cyberconnect-api/rest-api/_category_.json:
--------------------------------------------------------------------------------
1 | {
2 | "label": "REST API",
3 | "position": 2
4 | }
5 |
--------------------------------------------------------------------------------
/versioned_docs/version-0.6.0/cyberconnect-sdk/_category_.json:
--------------------------------------------------------------------------------
1 | {
2 | "label": "CyberConnect SDK",
3 | "position": 5
4 | }
5 |
--------------------------------------------------------------------------------
/versioned_docs/version-0.6.0/get-started/_category_.json:
--------------------------------------------------------------------------------
1 | {
2 | "label": "Get started",
3 | "position": 4
4 | }
5 |
--------------------------------------------------------------------------------
/versioned_docs/version-0.6.0/overview/_category_.json:
--------------------------------------------------------------------------------
1 | {
2 | "label": "Overview",
3 | "position": 2
4 | }
5 |
--------------------------------------------------------------------------------
/versioned_docs/version-0.6.0/protocol/_category_.json:
--------------------------------------------------------------------------------
1 | {
2 | "label": "Protocol",
3 | "position": 7
4 | }
5 |
--------------------------------------------------------------------------------
/versioned_docs/version-0.6.0/resources/_category_.json:
--------------------------------------------------------------------------------
1 | {
2 | "label": "Resources",
3 | "position": 9
4 | }
5 |
--------------------------------------------------------------------------------
/versioned_docs/version-0.6.0/resources/terminology/_category_.json:
--------------------------------------------------------------------------------
1 | {
2 | "label": "Terminology",
3 | "position": 2
4 | }
5 |
--------------------------------------------------------------------------------
/versioned_docs/version-0.6.0/tutorials/_category_.json:
--------------------------------------------------------------------------------
1 | {
2 | "label": "Tutorials",
3 | "position": 8
4 | }
5 |
--------------------------------------------------------------------------------
/versioned_docs/version-0.7.0/changelog/0.6.0.md:
--------------------------------------------------------------------------------
1 | ---
2 | id: 0.6.0
3 | title: 0.6.0
4 | slug: /changelog/0.6.0/
5 | sidebar_label: 0.6.0
6 | sidebar_position: 2
7 | ---
8 |
9 | ## Features
10 |
11 | **feat:** added chinese translation
12 |
13 | **chore:** updated new [grant](/overview/community/) apply link
14 |
--------------------------------------------------------------------------------
/versioned_docs/version-0.7.0/changelog/_category_.json:
--------------------------------------------------------------------------------
1 | {
2 | "label": "Changelog",
3 | "position": 10
4 | }
5 |
--------------------------------------------------------------------------------
/versioned_docs/version-0.7.0/concepts/_category_.json:
--------------------------------------------------------------------------------
1 | {
2 | "label": "Concepts",
3 | "position": 3
4 | }
5 |
--------------------------------------------------------------------------------
/versioned_docs/version-0.7.0/cyberconnect-api/_category_.json:
--------------------------------------------------------------------------------
1 | {
2 | "label": "CyberConnect API",
3 | "position": 6
4 | }
5 |
--------------------------------------------------------------------------------
/versioned_docs/version-0.7.0/cyberconnect-api/graphql-api/_category_.json:
--------------------------------------------------------------------------------
1 | {
2 | "label": "GraphQL API",
3 | "position": 2
4 | }
5 |
--------------------------------------------------------------------------------
/versioned_docs/version-0.7.0/cyberconnect-api/reference/_category_.json:
--------------------------------------------------------------------------------
1 | {
2 | "label": "Reference",
3 | "position": 3
4 | }
5 |
--------------------------------------------------------------------------------
/versioned_docs/version-0.7.0/cyberconnect-api/reference/directives/_category_.yml:
--------------------------------------------------------------------------------
1 | label: 'Directives'
2 |
--------------------------------------------------------------------------------
/versioned_docs/version-0.7.0/cyberconnect-api/reference/directives/admin.mdx:
--------------------------------------------------------------------------------
1 | ---
2 | id: admin
3 | title: admin
4 | ---
5 |
6 |
7 | No description
8 |
9 | ```graphql
10 | directive @admin
11 | ```
12 |
13 |
14 |
15 |
16 |
--------------------------------------------------------------------------------
/versioned_docs/version-0.7.0/cyberconnect-api/reference/enums/_category_.yml:
--------------------------------------------------------------------------------
1 | label: 'Enums'
2 |
--------------------------------------------------------------------------------
/versioned_docs/version-0.7.0/cyberconnect-api/reference/graphql.md:
--------------------------------------------------------------------------------
1 | ---
2 | id: graphql
3 | sidebar_class_name: navbar__toggle
4 | ---
5 |
6 | This documentation has been automatically generated from the GraphQL schema.
7 |
--------------------------------------------------------------------------------
/versioned_docs/version-0.7.0/cyberconnect-api/reference/inputs/_category_.yml:
--------------------------------------------------------------------------------
1 | label: 'Inputs'
2 |
--------------------------------------------------------------------------------
/versioned_docs/version-0.7.0/cyberconnect-api/reference/inputs/tags-input.mdx:
--------------------------------------------------------------------------------
1 | ---
2 | id: tags-input
3 | title: TagsInput
4 | ---
5 |
6 |
7 | No description
8 |
9 | ```graphql
10 | input TagsInput {
11 | list: [Tag!]!
12 | }
13 | ```
14 |
15 |
16 | ### Fields
17 |
18 | #### `list` ([`Tag`](/cyberconnect-api/reference/enums/tag))
19 |
20 |
21 |
22 |
23 |
24 |
25 |
--------------------------------------------------------------------------------
/versioned_docs/version-0.7.0/cyberconnect-api/reference/interfaces/_category_.yml:
--------------------------------------------------------------------------------
1 | label: 'Interfaces'
2 |
--------------------------------------------------------------------------------
/versioned_docs/version-0.7.0/cyberconnect-api/reference/interfaces/node.mdx:
--------------------------------------------------------------------------------
1 | ---
2 | id: node
3 | title: Node
4 | ---
5 |
6 |
7 | No description
8 |
9 | ```graphql
10 | interface Node {
11 | id: ID!
12 | }
13 | ```
14 |
15 |
16 | ### Fields
17 |
18 | #### `id` ([`ID`](/cyberconnect-api/reference/scalars/id))
19 |
20 |
21 |
22 |
23 |
24 |
25 |
--------------------------------------------------------------------------------
/versioned_docs/version-0.7.0/cyberconnect-api/reference/objects/_category_.yml:
--------------------------------------------------------------------------------
1 | label: 'Objects'
2 |
--------------------------------------------------------------------------------
/versioned_docs/version-0.7.0/cyberconnect-api/reference/objects/social.mdx:
--------------------------------------------------------------------------------
1 | ---
2 | id: social
3 | title: Social
4 | ---
5 |
6 |
7 | No description
8 |
9 | ```graphql
10 | type Social {
11 | twitter: String!
12 | }
13 | ```
14 |
15 |
16 | ### Fields
17 |
18 | #### `twitter` ([`String`](/cyberconnect-api/reference/scalars/string))
19 |
--------------------------------------------------------------------------------
/versioned_docs/version-0.7.0/cyberconnect-api/reference/queries/_category_.yml:
--------------------------------------------------------------------------------
1 | label: 'Queries'
2 |
--------------------------------------------------------------------------------
/versioned_docs/version-0.7.0/cyberconnect-api/reference/scalars/_category_.yml:
--------------------------------------------------------------------------------
1 | label: 'Scalars'
2 |
--------------------------------------------------------------------------------
/versioned_docs/version-0.7.0/cyberconnect-api/reference/scalars/boolean.mdx:
--------------------------------------------------------------------------------
1 | ---
2 | id: boolean
3 | title: Boolean
4 | ---
5 |
6 |
7 | The `Boolean` scalar type represents `true` or `false`.
8 |
9 | ```graphql
10 | scalar Boolean
11 | ```
12 |
13 |
14 |
15 |
16 |
--------------------------------------------------------------------------------
/versioned_docs/version-0.7.0/cyberconnect-api/reference/scalars/int.mdx:
--------------------------------------------------------------------------------
1 | ---
2 | id: int
3 | title: Int
4 | ---
5 |
6 |
7 | The `Int` scalar type represents non-fractional signed whole numeric values. Int can represent values between -(2^31) and 2^31 - 1.
8 |
9 | ```graphql
10 | scalar Int
11 | ```
12 |
13 |
14 |
15 |
16 |
--------------------------------------------------------------------------------
/versioned_docs/version-0.7.0/cyberconnect-api/reference/sidebar-schema.js:
--------------------------------------------------------------------------------
1 | module.exports = {
2 | "schemaSidebar": [
3 | {
4 | "type": "autogenerated",
5 | "dirName": "/cyberconnect-api/reference/"
6 | }
7 | ]
8 | };
--------------------------------------------------------------------------------
/versioned_docs/version-0.7.0/cyberconnect-api/rest-api/_category_.json:
--------------------------------------------------------------------------------
1 | {
2 | "label": "REST API",
3 | "position": 2
4 | }
5 |
--------------------------------------------------------------------------------
/versioned_docs/version-0.7.0/cyberconnect-sdk/_category_.json:
--------------------------------------------------------------------------------
1 | {
2 | "label": "CyberConnect SDK",
3 | "position": 5
4 | }
5 |
--------------------------------------------------------------------------------
/versioned_docs/version-0.7.0/get-started/_category_.json:
--------------------------------------------------------------------------------
1 | {
2 | "label": "Get started",
3 | "position": 4
4 | }
5 |
--------------------------------------------------------------------------------
/versioned_docs/version-0.7.0/overview/_category_.json:
--------------------------------------------------------------------------------
1 | {
2 | "label": "Overview",
3 | "position": 2
4 | }
5 |
--------------------------------------------------------------------------------
/versioned_docs/version-0.7.0/protocol/_category_.json:
--------------------------------------------------------------------------------
1 | {
2 | "label": "Protocol",
3 | "position": 7
4 | }
5 |
--------------------------------------------------------------------------------
/versioned_docs/version-0.7.0/resources/_category_.json:
--------------------------------------------------------------------------------
1 | {
2 | "label": "Resources",
3 | "position": 9
4 | }
5 |
--------------------------------------------------------------------------------
/versioned_docs/version-0.7.0/resources/terminology/_category_.json:
--------------------------------------------------------------------------------
1 | {
2 | "label": "Terminology",
3 | "position": 2
4 | }
5 |
--------------------------------------------------------------------------------
/versioned_docs/version-0.7.0/tutorials/_category_.json:
--------------------------------------------------------------------------------
1 | {
2 | "label": "Tutorials",
3 | "position": 8
4 | }
5 |
--------------------------------------------------------------------------------
/versioned_docs/version-0.8.0/changelog/0.6.0.md:
--------------------------------------------------------------------------------
1 | ---
2 | id: 0.6.0
3 | title: 0.6.0
4 | slug: /changelog/0.6.0/
5 | sidebar_label: 0.6.0
6 | sidebar_position: 3
7 | ---
8 |
9 | ## Features
10 |
11 | **feat:** added chinese translation
12 |
13 | **chore:** updated new [grant](/overview/community/) apply link
14 |
--------------------------------------------------------------------------------
/versioned_docs/version-0.8.0/changelog/0.8.0.md:
--------------------------------------------------------------------------------
1 | ---
2 | id: 0.8.0
3 | title: 0.8.0
4 | slug: /changelog/0.8.0/
5 | sidebar_label: 0.8.0
6 | sidebar_position: 1
7 | ---
8 |
9 | ## Features
10 |
11 | **feat:** added [Showcase](/overview/showcase/)
12 |
--------------------------------------------------------------------------------
/versioned_docs/version-0.8.0/changelog/_category_.json:
--------------------------------------------------------------------------------
1 | {
2 | "label": "Changelog",
3 | "position": 10
4 | }
5 |
--------------------------------------------------------------------------------
/versioned_docs/version-0.8.0/concepts/_category_.json:
--------------------------------------------------------------------------------
1 | {
2 | "label": "Concepts",
3 | "position": 3
4 | }
5 |
--------------------------------------------------------------------------------
/versioned_docs/version-0.8.0/cyberconnect-api/_category_.json:
--------------------------------------------------------------------------------
1 | {
2 | "label": "CyberConnect API",
3 | "position": 6
4 | }
5 |
--------------------------------------------------------------------------------
/versioned_docs/version-0.8.0/cyberconnect-api/graphql-api/_category_.json:
--------------------------------------------------------------------------------
1 | {
2 | "label": "GraphQL API",
3 | "position": 2
4 | }
5 |
--------------------------------------------------------------------------------
/versioned_docs/version-0.8.0/cyberconnect-api/reference/_category_.json:
--------------------------------------------------------------------------------
1 | {
2 | "label": "Reference",
3 | "position": 3
4 | }
5 |
--------------------------------------------------------------------------------
/versioned_docs/version-0.8.0/cyberconnect-api/reference/directives/_category_.yml:
--------------------------------------------------------------------------------
1 | label: 'Directives'
2 |
--------------------------------------------------------------------------------
/versioned_docs/version-0.8.0/cyberconnect-api/reference/directives/admin.mdx:
--------------------------------------------------------------------------------
1 | ---
2 | id: admin
3 | title: admin
4 | ---
5 |
6 |
7 | No description
8 |
9 | ```graphql
10 | directive @admin
11 | ```
12 |
13 |
14 |
15 |
16 |
--------------------------------------------------------------------------------
/versioned_docs/version-0.8.0/cyberconnect-api/reference/enums/_category_.yml:
--------------------------------------------------------------------------------
1 | label: 'Enums'
2 |
--------------------------------------------------------------------------------
/versioned_docs/version-0.8.0/cyberconnect-api/reference/graphql.md:
--------------------------------------------------------------------------------
1 | ---
2 | id: graphql
3 | sidebar_class_name: navbar__toggle
4 | ---
5 |
6 | This documentation has been automatically generated from the GraphQL schema.
7 |
--------------------------------------------------------------------------------
/versioned_docs/version-0.8.0/cyberconnect-api/reference/inputs/_category_.yml:
--------------------------------------------------------------------------------
1 | label: 'Inputs'
2 |
--------------------------------------------------------------------------------
/versioned_docs/version-0.8.0/cyberconnect-api/reference/inputs/tags-input.mdx:
--------------------------------------------------------------------------------
1 | ---
2 | id: tags-input
3 | title: TagsInput
4 | ---
5 |
6 |
7 | No description
8 |
9 | ```graphql
10 | input TagsInput {
11 | list: [Tag!]!
12 | }
13 | ```
14 |
15 |
16 | ### Fields
17 |
18 | #### `list` ([`Tag`](/cyberconnect-api/reference/enums/tag))
19 |
20 |
21 |
22 |
23 |
24 |
25 |
--------------------------------------------------------------------------------
/versioned_docs/version-0.8.0/cyberconnect-api/reference/interfaces/_category_.yml:
--------------------------------------------------------------------------------
1 | label: 'Interfaces'
2 |
--------------------------------------------------------------------------------
/versioned_docs/version-0.8.0/cyberconnect-api/reference/interfaces/node.mdx:
--------------------------------------------------------------------------------
1 | ---
2 | id: node
3 | title: Node
4 | ---
5 |
6 |
7 | No description
8 |
9 | ```graphql
10 | interface Node {
11 | id: ID!
12 | }
13 | ```
14 |
15 |
16 | ### Fields
17 |
18 | #### `id` ([`ID`](/cyberconnect-api/reference/scalars/id))
19 |
20 |
21 |
22 |
23 |
24 |
25 |
--------------------------------------------------------------------------------
/versioned_docs/version-0.8.0/cyberconnect-api/reference/objects/_category_.yml:
--------------------------------------------------------------------------------
1 | label: 'Objects'
2 |
--------------------------------------------------------------------------------
/versioned_docs/version-0.8.0/cyberconnect-api/reference/objects/social.mdx:
--------------------------------------------------------------------------------
1 | ---
2 | id: social
3 | title: Social
4 | ---
5 |
6 |
7 | No description
8 |
9 | ```graphql
10 | type Social {
11 | twitter: String!
12 | }
13 | ```
14 |
15 |
16 | ### Fields
17 |
18 | #### `twitter` ([`String`](/cyberconnect-api/reference/scalars/string))
19 |
--------------------------------------------------------------------------------
/versioned_docs/version-0.8.0/cyberconnect-api/reference/queries/_category_.yml:
--------------------------------------------------------------------------------
1 | label: 'Queries'
2 |
--------------------------------------------------------------------------------
/versioned_docs/version-0.8.0/cyberconnect-api/reference/scalars/_category_.yml:
--------------------------------------------------------------------------------
1 | label: 'Scalars'
2 |
--------------------------------------------------------------------------------
/versioned_docs/version-0.8.0/cyberconnect-api/reference/scalars/boolean.mdx:
--------------------------------------------------------------------------------
1 | ---
2 | id: boolean
3 | title: Boolean
4 | ---
5 |
6 |
7 | The `Boolean` scalar type represents `true` or `false`.
8 |
9 | ```graphql
10 | scalar Boolean
11 | ```
12 |
13 |
14 |
15 |
16 |
--------------------------------------------------------------------------------
/versioned_docs/version-0.8.0/cyberconnect-api/reference/scalars/int.mdx:
--------------------------------------------------------------------------------
1 | ---
2 | id: int
3 | title: Int
4 | ---
5 |
6 |
7 | The `Int` scalar type represents non-fractional signed whole numeric values. Int can represent values between -(2^31) and 2^31 - 1.
8 |
9 | ```graphql
10 | scalar Int
11 | ```
12 |
13 |
14 |
15 |
16 |
--------------------------------------------------------------------------------
/versioned_docs/version-0.8.0/cyberconnect-api/reference/sidebar-schema.js:
--------------------------------------------------------------------------------
1 | module.exports = {
2 | "schemaSidebar": [
3 | {
4 | "type": "autogenerated",
5 | "dirName": "/cyberconnect-api/reference/"
6 | }
7 | ]
8 | };
--------------------------------------------------------------------------------
/versioned_docs/version-0.8.0/cyberconnect-api/rest-api/_category_.json:
--------------------------------------------------------------------------------
1 | {
2 | "label": "REST API",
3 | "position": 2
4 | }
5 |
--------------------------------------------------------------------------------
/versioned_docs/version-0.8.0/cyberconnect-sdk/_category_.json:
--------------------------------------------------------------------------------
1 | {
2 | "label": "CyberConnect SDK",
3 | "position": 5
4 | }
5 |
--------------------------------------------------------------------------------
/versioned_docs/version-0.8.0/get-started/_category_.json:
--------------------------------------------------------------------------------
1 | {
2 | "label": "Get started",
3 | "position": 4
4 | }
5 |
--------------------------------------------------------------------------------
/versioned_docs/version-0.8.0/overview/_category_.json:
--------------------------------------------------------------------------------
1 | {
2 | "label": "Overview",
3 | "position": 2
4 | }
5 |
--------------------------------------------------------------------------------
/versioned_docs/version-0.8.0/protocol/_category_.json:
--------------------------------------------------------------------------------
1 | {
2 | "label": "Protocol",
3 | "position": 7
4 | }
5 |
--------------------------------------------------------------------------------
/versioned_docs/version-0.8.0/resources/_category_.json:
--------------------------------------------------------------------------------
1 | {
2 | "label": "Resources",
3 | "position": 9
4 | }
5 |
--------------------------------------------------------------------------------
/versioned_docs/version-0.8.0/resources/terminology/_category_.json:
--------------------------------------------------------------------------------
1 | {
2 | "label": "Terminology",
3 | "position": 2
4 | }
5 |
--------------------------------------------------------------------------------
/versioned_docs/version-0.8.0/tutorials/_category_.json:
--------------------------------------------------------------------------------
1 | {
2 | "label": "Tutorials",
3 | "position": 8
4 | }
5 |
--------------------------------------------------------------------------------
/versioned_docs/version-0.9.0/changelog/0.6.0.md:
--------------------------------------------------------------------------------
1 | ---
2 | id: 0.6.0
3 | title: 0.6.0
4 | slug: /changelog/0.6.0/
5 | sidebar_label: 0.6.0
6 | sidebar_position: 4
7 | ---
8 |
9 | ## Features
10 |
11 | **feat:** added chinese translation
12 |
13 | **chore:** updated new [grant](/overview/community/) apply link
14 |
--------------------------------------------------------------------------------
/versioned_docs/version-0.9.0/changelog/0.8.0.md:
--------------------------------------------------------------------------------
1 | ---
2 | id: 0.8.0
3 | title: 0.8.0
4 | slug: /changelog/0.8.0/
5 | sidebar_label: 0.8.0
6 | sidebar_position: 2
7 | ---
8 |
9 | ## Features
10 |
11 | **feat:** added [Showcase](/overview/showcase/)
12 |
--------------------------------------------------------------------------------
/versioned_docs/version-0.9.0/changelog/0.9.0.md:
--------------------------------------------------------------------------------
1 | ---
2 | id: 0.9.0
3 | title: 0.9.0
4 | slug: /changelog/0.9.0/
5 | sidebar_label: 0.9.0
6 | sidebar_position: 1
7 | ---
8 |
9 | ## Features
10 |
11 | **feat:** added [CyberConnect Explorer](/cyberconnect-explorer/)
12 |
--------------------------------------------------------------------------------
/versioned_docs/version-0.9.0/changelog/_category_.json:
--------------------------------------------------------------------------------
1 | {
2 | "label": "Changelog",
3 | "position": 10
4 | }
5 |
--------------------------------------------------------------------------------
/versioned_docs/version-0.9.0/concepts/_category_.json:
--------------------------------------------------------------------------------
1 | {
2 | "label": "Concepts",
3 | "position": 3
4 | }
5 |
--------------------------------------------------------------------------------
/versioned_docs/version-0.9.0/cyberconnect-api/_category_.json:
--------------------------------------------------------------------------------
1 | {
2 | "label": "CyberConnect API",
3 | "position": 7
4 | }
5 |
--------------------------------------------------------------------------------
/versioned_docs/version-0.9.0/cyberconnect-api/graphql-api/_category_.json:
--------------------------------------------------------------------------------
1 | {
2 | "label": "GraphQL API",
3 | "position": 2
4 | }
5 |
--------------------------------------------------------------------------------
/versioned_docs/version-0.9.0/cyberconnect-api/reference/_category_.json:
--------------------------------------------------------------------------------
1 | {
2 | "label": "Reference",
3 | "position": 3
4 | }
5 |
--------------------------------------------------------------------------------
/versioned_docs/version-0.9.0/cyberconnect-api/reference/directives/_category_.yml:
--------------------------------------------------------------------------------
1 | label: 'Directives'
2 |
--------------------------------------------------------------------------------
/versioned_docs/version-0.9.0/cyberconnect-api/reference/directives/admin.mdx:
--------------------------------------------------------------------------------
1 | ---
2 | id: admin
3 | title: admin
4 | ---
5 |
6 |
7 | No description
8 |
9 | ```graphql
10 | directive @admin
11 | ```
12 |
13 |
14 |
15 |
16 |
--------------------------------------------------------------------------------
/versioned_docs/version-0.9.0/cyberconnect-api/reference/enums/_category_.yml:
--------------------------------------------------------------------------------
1 | label: 'Enums'
2 |
--------------------------------------------------------------------------------
/versioned_docs/version-0.9.0/cyberconnect-api/reference/graphql.md:
--------------------------------------------------------------------------------
1 | ---
2 | id: graphql
3 | sidebar_class_name: navbar__toggle
4 | ---
5 |
6 | This documentation has been automatically generated from the GraphQL schema.
7 |
--------------------------------------------------------------------------------
/versioned_docs/version-0.9.0/cyberconnect-api/reference/inputs/_category_.yml:
--------------------------------------------------------------------------------
1 | label: 'Inputs'
2 |
--------------------------------------------------------------------------------
/versioned_docs/version-0.9.0/cyberconnect-api/reference/inputs/tags-input.mdx:
--------------------------------------------------------------------------------
1 | ---
2 | id: tags-input
3 | title: TagsInput
4 | ---
5 |
6 |
7 | No description
8 |
9 | ```graphql
10 | input TagsInput {
11 | list: [Tag!]!
12 | }
13 | ```
14 |
15 |
16 | ### Fields
17 |
18 | #### `list` ([`Tag`](/cyberconnect-api/reference/enums/tag))
19 |
20 |
21 |
22 |
23 |
24 |
25 |
--------------------------------------------------------------------------------
/versioned_docs/version-0.9.0/cyberconnect-api/reference/interfaces/_category_.yml:
--------------------------------------------------------------------------------
1 | label: 'Interfaces'
2 |
--------------------------------------------------------------------------------
/versioned_docs/version-0.9.0/cyberconnect-api/reference/interfaces/node.mdx:
--------------------------------------------------------------------------------
1 | ---
2 | id: node
3 | title: Node
4 | ---
5 |
6 |
7 | No description
8 |
9 | ```graphql
10 | interface Node {
11 | id: ID!
12 | }
13 | ```
14 |
15 |
16 | ### Fields
17 |
18 | #### `id` ([`ID`](/cyberconnect-api/reference/scalars/id))
19 |
20 |
21 |
22 |
23 |
24 |
25 |
--------------------------------------------------------------------------------
/versioned_docs/version-0.9.0/cyberconnect-api/reference/objects/_category_.yml:
--------------------------------------------------------------------------------
1 | label: 'Objects'
2 |
--------------------------------------------------------------------------------
/versioned_docs/version-0.9.0/cyberconnect-api/reference/objects/social.mdx:
--------------------------------------------------------------------------------
1 | ---
2 | id: social
3 | title: Social
4 | ---
5 |
6 |
7 | No description
8 |
9 | ```graphql
10 | type Social {
11 | twitter: String!
12 | }
13 | ```
14 |
15 |
16 | ### Fields
17 |
18 | #### `twitter` ([`String`](/cyberconnect-api/reference/scalars/string))
19 |
--------------------------------------------------------------------------------
/versioned_docs/version-0.9.0/cyberconnect-api/reference/queries/_category_.yml:
--------------------------------------------------------------------------------
1 | label: 'Queries'
2 |
--------------------------------------------------------------------------------
/versioned_docs/version-0.9.0/cyberconnect-api/reference/scalars/_category_.yml:
--------------------------------------------------------------------------------
1 | label: 'Scalars'
2 |
--------------------------------------------------------------------------------
/versioned_docs/version-0.9.0/cyberconnect-api/reference/scalars/boolean.mdx:
--------------------------------------------------------------------------------
1 | ---
2 | id: boolean
3 | title: Boolean
4 | ---
5 |
6 |
7 | The `Boolean` scalar type represents `true` or `false`.
8 |
9 | ```graphql
10 | scalar Boolean
11 | ```
12 |
13 |
14 |
15 |
16 |
--------------------------------------------------------------------------------
/versioned_docs/version-0.9.0/cyberconnect-api/reference/scalars/int.mdx:
--------------------------------------------------------------------------------
1 | ---
2 | id: int
3 | title: Int
4 | ---
5 |
6 |
7 | The `Int` scalar type represents non-fractional signed whole numeric values. Int can represent values between -(2^31) and 2^31 - 1.
8 |
9 | ```graphql
10 | scalar Int
11 | ```
12 |
13 |
14 |
15 |
16 |
--------------------------------------------------------------------------------
/versioned_docs/version-0.9.0/cyberconnect-api/reference/sidebar-schema.js:
--------------------------------------------------------------------------------
1 | module.exports = {
2 | "schemaSidebar": [
3 | {
4 | "type": "autogenerated",
5 | "dirName": "/cyberconnect-api/reference/"
6 | }
7 | ]
8 | };
--------------------------------------------------------------------------------
/versioned_docs/version-0.9.0/cyberconnect-api/rest-api/_category_.json:
--------------------------------------------------------------------------------
1 | {
2 | "label": "REST API",
3 | "position": 2
4 | }
5 |
--------------------------------------------------------------------------------
/versioned_docs/version-0.9.0/cyberconnect-sdk/_category_.json:
--------------------------------------------------------------------------------
1 | {
2 | "label": "CyberConnect SDK",
3 | "position": 6
4 | }
5 |
--------------------------------------------------------------------------------
/versioned_docs/version-0.9.0/get-started/_category_.json:
--------------------------------------------------------------------------------
1 | {
2 | "label": "Get started",
3 | "position": 4
4 | }
5 |
--------------------------------------------------------------------------------
/versioned_docs/version-0.9.0/overview/_category_.json:
--------------------------------------------------------------------------------
1 | {
2 | "label": "Overview",
3 | "position": 2
4 | }
5 |
--------------------------------------------------------------------------------
/versioned_docs/version-0.9.0/protocol/_category_.json:
--------------------------------------------------------------------------------
1 | {
2 | "label": "Protocol",
3 | "position": 8
4 | }
5 |
--------------------------------------------------------------------------------
/versioned_docs/version-0.9.0/resources/_category_.json:
--------------------------------------------------------------------------------
1 | {
2 | "label": "Resources",
3 | "position": 9
4 | }
5 |
--------------------------------------------------------------------------------
/versioned_docs/version-0.9.0/resources/terminology/_category_.json:
--------------------------------------------------------------------------------
1 | {
2 | "label": "Terminology",
3 | "position": 2
4 | }
5 |
--------------------------------------------------------------------------------
/versioned_docs/version-V1/changelog/0.10.0.md:
--------------------------------------------------------------------------------
1 | ---
2 | id: 0.10.0
3 | title: 0.10.0
4 | slug: /changelog/0.10.0/
5 | sidebar_label: 0.10.0
6 | sidebar_position: 1
7 | ---
8 |
9 | ## Features
10 |
11 | **feat:** added [CyberConnect Android SDK](/cyberconnect-sdk/connect-with-android-sdk/)
12 |
--------------------------------------------------------------------------------
/versioned_docs/version-V1/changelog/0.6.0.md:
--------------------------------------------------------------------------------
1 | ---
2 | id: 0.6.0
3 | title: 0.6.0
4 | slug: /changelog/0.6.0/
5 | sidebar_label: 0.6.0
6 | sidebar_position: 4
7 | ---
8 |
9 | ## Features
10 |
11 | **feat:** added chinese translation
12 |
13 | **chore:** updated new [grant](/overview/community/) apply link
14 |
--------------------------------------------------------------------------------
/versioned_docs/version-V1/changelog/0.8.0.md:
--------------------------------------------------------------------------------
1 | ---
2 | id: 0.8.0
3 | title: 0.8.0
4 | slug: /changelog/0.8.0/
5 | sidebar_label: 0.8.0
6 | sidebar_position: 2
7 | ---
8 |
9 | ## Features
10 |
11 | **feat:** added [Showcase](/overview/showcase/)
12 |
--------------------------------------------------------------------------------
/versioned_docs/version-V1/changelog/0.9.0.md:
--------------------------------------------------------------------------------
1 | ---
2 | id: 0.9.0
3 | title: 0.9.0
4 | slug: /changelog/0.9.0/
5 | sidebar_label: 0.9.0
6 | sidebar_position: 1
7 | ---
8 |
9 | ## Features
10 |
11 | **feat:** added [CyberConnect Explorer](/cyberconnect-explorer/)
12 |
--------------------------------------------------------------------------------
/versioned_docs/version-V1/changelog/_category_.json:
--------------------------------------------------------------------------------
1 | {
2 | "label": "Changelog",
3 | "position": 10
4 | }
5 |
--------------------------------------------------------------------------------
/versioned_docs/version-V1/concepts/_category_.json:
--------------------------------------------------------------------------------
1 | {
2 | "label": "Concepts",
3 | "position": 3
4 | }
5 |
--------------------------------------------------------------------------------
/versioned_docs/version-V1/cyberconnect-api/_category_.json:
--------------------------------------------------------------------------------
1 | {
2 | "label": "CyberConnect API",
3 | "position": 7
4 | }
5 |
--------------------------------------------------------------------------------
/versioned_docs/version-V1/cyberconnect-api/graphql-api/_category_.json:
--------------------------------------------------------------------------------
1 | {
2 | "label": "GraphQL API",
3 | "position": 2
4 | }
5 |
--------------------------------------------------------------------------------
/versioned_docs/version-V1/cyberconnect-api/reference/_category_.json:
--------------------------------------------------------------------------------
1 | {
2 | "label": "Reference",
3 | "position": 3
4 | }
5 |
--------------------------------------------------------------------------------
/versioned_docs/version-V1/cyberconnect-api/reference/directives/_category_.yml:
--------------------------------------------------------------------------------
1 | label: 'Directives'
2 |
--------------------------------------------------------------------------------
/versioned_docs/version-V1/cyberconnect-api/reference/directives/admin.mdx:
--------------------------------------------------------------------------------
1 | ---
2 | id: admin
3 | title: admin
4 | ---
5 |
6 |
7 | No description
8 |
9 | ```graphql
10 | directive @admin
11 | ```
12 |
13 |
14 |
15 |
16 |
--------------------------------------------------------------------------------
/versioned_docs/version-V1/cyberconnect-api/reference/enums/_category_.yml:
--------------------------------------------------------------------------------
1 | label: 'Enums'
2 |
--------------------------------------------------------------------------------
/versioned_docs/version-V1/cyberconnect-api/reference/graphql.md:
--------------------------------------------------------------------------------
1 | ---
2 | id: graphql
3 | sidebar_class_name: navbar__toggle
4 | ---
5 |
6 | This documentation has been automatically generated from the GraphQL schema.
7 |
--------------------------------------------------------------------------------
/versioned_docs/version-V1/cyberconnect-api/reference/inputs/_category_.yml:
--------------------------------------------------------------------------------
1 | label: 'Inputs'
2 |
--------------------------------------------------------------------------------
/versioned_docs/version-V1/cyberconnect-api/reference/inputs/tags-input.mdx:
--------------------------------------------------------------------------------
1 | ---
2 | id: tags-input
3 | title: TagsInput
4 | ---
5 |
6 |
7 | No description
8 |
9 | ```graphql
10 | input TagsInput {
11 | list: [Tag!]!
12 | }
13 | ```
14 |
15 |
16 | ### Fields
17 |
18 | #### `list` ([`Tag`](/cyberconnect-api/reference/enums/tag))
19 |
20 |
21 |
22 |
23 |
24 |
25 |
--------------------------------------------------------------------------------
/versioned_docs/version-V1/cyberconnect-api/reference/interfaces/_category_.yml:
--------------------------------------------------------------------------------
1 | label: 'Interfaces'
2 |
--------------------------------------------------------------------------------
/versioned_docs/version-V1/cyberconnect-api/reference/interfaces/node.mdx:
--------------------------------------------------------------------------------
1 | ---
2 | id: node
3 | title: Node
4 | ---
5 |
6 |
7 | No description
8 |
9 | ```graphql
10 | interface Node {
11 | id: ID!
12 | }
13 | ```
14 |
15 |
16 | ### Fields
17 |
18 | #### `id` ([`ID`](/cyberconnect-api/reference/scalars/id))
19 |
20 |
21 |
22 |
23 |
24 |
25 |
--------------------------------------------------------------------------------
/versioned_docs/version-V1/cyberconnect-api/reference/objects/_category_.yml:
--------------------------------------------------------------------------------
1 | label: 'Objects'
2 |
--------------------------------------------------------------------------------
/versioned_docs/version-V1/cyberconnect-api/reference/objects/social.mdx:
--------------------------------------------------------------------------------
1 | ---
2 | id: social
3 | title: Social
4 | ---
5 |
6 |
7 | No description
8 |
9 | ```graphql
10 | type Social {
11 | twitter: String!
12 | }
13 | ```
14 |
15 |
16 | ### Fields
17 |
18 | #### `twitter` ([`String`](/cyberconnect-api/reference/scalars/string))
19 |
--------------------------------------------------------------------------------
/versioned_docs/version-V1/cyberconnect-api/reference/queries/_category_.yml:
--------------------------------------------------------------------------------
1 | label: 'Queries'
2 |
--------------------------------------------------------------------------------
/versioned_docs/version-V1/cyberconnect-api/reference/scalars/_category_.yml:
--------------------------------------------------------------------------------
1 | label: 'Scalars'
2 |
--------------------------------------------------------------------------------
/versioned_docs/version-V1/cyberconnect-api/reference/scalars/boolean.mdx:
--------------------------------------------------------------------------------
1 | ---
2 | id: boolean
3 | title: Boolean
4 | ---
5 |
6 |
7 | The `Boolean` scalar type represents `true` or `false`.
8 |
9 | ```graphql
10 | scalar Boolean
11 | ```
12 |
13 |
14 |
15 |
16 |
--------------------------------------------------------------------------------
/versioned_docs/version-V1/cyberconnect-api/reference/scalars/int.mdx:
--------------------------------------------------------------------------------
1 | ---
2 | id: int
3 | title: Int
4 | ---
5 |
6 |
7 | The `Int` scalar type represents non-fractional signed whole numeric values. Int can represent values between -(2^31) and 2^31 - 1.
8 |
9 | ```graphql
10 | scalar Int
11 | ```
12 |
13 |
14 |
15 |
16 |
--------------------------------------------------------------------------------
/versioned_docs/version-V1/cyberconnect-api/reference/scalars/string.mdx:
--------------------------------------------------------------------------------
1 | ---
2 | id: string
3 | title: String
4 | ---
5 |
6 |
7 | 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.
8 |
9 | ```graphql
10 | scalar String
11 | ```
12 |
13 |
14 |
15 |
16 |
--------------------------------------------------------------------------------
/versioned_docs/version-V1/cyberconnect-api/reference/sidebar-schema.js:
--------------------------------------------------------------------------------
1 | module.exports = {
2 | "schemaSidebar": [
3 | {
4 | "type": "autogenerated",
5 | "dirName": "/cyberconnect-api/reference/"
6 | }
7 | ]
8 | };
--------------------------------------------------------------------------------
/versioned_docs/version-V1/cyberconnect-api/rest-api/_category_.json:
--------------------------------------------------------------------------------
1 | {
2 | "label": "REST API",
3 | "position": 2
4 | }
5 |
--------------------------------------------------------------------------------
/versioned_docs/version-V1/cyberconnect-sdk/_category_.json:
--------------------------------------------------------------------------------
1 | {
2 | "label": "CyberConnect SDK",
3 | "position": 6
4 | }
5 |
--------------------------------------------------------------------------------
/versioned_docs/version-V1/get-started/_category_.json:
--------------------------------------------------------------------------------
1 | {
2 | "label": "Get started",
3 | "position": 4
4 | }
5 |
--------------------------------------------------------------------------------
/versioned_docs/version-V1/overview/_category_.json:
--------------------------------------------------------------------------------
1 | {
2 | "label": "Overview",
3 | "position": 2
4 | }
5 |
--------------------------------------------------------------------------------
/versioned_docs/version-V1/protocol/_category_.json:
--------------------------------------------------------------------------------
1 | {
2 | "label": "Protocol",
3 | "position": 8
4 | }
5 |
--------------------------------------------------------------------------------
/versioned_docs/version-V1/resources/_category_.json:
--------------------------------------------------------------------------------
1 | {
2 | "label": "Resources",
3 | "position": 9
4 | }
5 |
--------------------------------------------------------------------------------
/versioned_docs/version-V1/resources/terminology/_category_.json:
--------------------------------------------------------------------------------
1 | {
2 | "label": "Terminology",
3 | "position": 2
4 | }
5 |
--------------------------------------------------------------------------------
/versioned_docs/version-V2/APIs/CyberHunt.md:
--------------------------------------------------------------------------------
1 | 
2 |
--------------------------------------------------------------------------------
/versioned_docs/version-V2/APIs/_category_.json:
--------------------------------------------------------------------------------
1 | {
2 | "label": "APIs",
3 | "position": 5
4 | }
5 |
--------------------------------------------------------------------------------
/versioned_docs/version-V2/APIs/authentication/_category_.json:
--------------------------------------------------------------------------------
1 | {
2 | "label": "Authentication",
3 | "position": 1
4 | }
5 |
--------------------------------------------------------------------------------
/versioned_docs/version-V2/APIs/mutation/_category_.json:
--------------------------------------------------------------------------------
1 | {
2 | "label": "Mutation",
3 | "position": 3
4 | }
5 |
--------------------------------------------------------------------------------
/versioned_docs/version-V2/APIs/query/_category_.json:
--------------------------------------------------------------------------------
1 | {
2 | "label": "Query",
3 | "position": 2
4 | }
5 |
--------------------------------------------------------------------------------
/versioned_docs/version-V2/APIs/recommendation-engine/_category_.json:
--------------------------------------------------------------------------------
1 | {
2 | "label": "Recommendation Engine",
3 | "position": 4
4 | }
5 |
--------------------------------------------------------------------------------
/versioned_docs/version-V2/concepts/_category_.json:
--------------------------------------------------------------------------------
1 | {
2 | "label": "Concepts",
3 | "position": 4
4 | }
5 |
--------------------------------------------------------------------------------
/versioned_docs/version-V2/overview/_category_.json:
--------------------------------------------------------------------------------
1 | {
2 | "label": "Overview",
3 | "position": 3
4 | }
5 |
--------------------------------------------------------------------------------
/versioned_docs/version-V2/protocol/_category_.json:
--------------------------------------------------------------------------------
1 | {
2 | "label": "Protocol",
3 | "position": 7
4 | }
5 |
--------------------------------------------------------------------------------
/versioned_docs/version-V2/protocol/interest-graph-engine/_category_.json:
--------------------------------------------------------------------------------
1 | {
2 | "label": "Interest Graph Engine",
3 | "position": 3
4 | }
5 |
--------------------------------------------------------------------------------
/versioned_docs/version-V2/protocol/social-data-network/_category_.json:
--------------------------------------------------------------------------------
1 | {
2 | "label": "Social Data Network",
3 | "position": 2
4 | }
5 |
--------------------------------------------------------------------------------
/versioned_docs/version-V2/reference/_category_.json:
--------------------------------------------------------------------------------
1 | {
2 | "label": "API Reference",
3 | "position": 8
4 | }
--------------------------------------------------------------------------------
/versioned_docs/version-V2/reference/directives/_category_.yml:
--------------------------------------------------------------------------------
1 | label: 'Directives'
2 |
--------------------------------------------------------------------------------
/versioned_docs/version-V2/reference/directives/api-key-required.mdx:
--------------------------------------------------------------------------------
1 | ---
2 | id: api-key-required
3 | title: apiKeyRequired
4 | ---
5 |
6 |
7 | No description
8 |
9 | ```graphql
10 | directive @apiKeyRequired
11 | ```
12 |
13 |
14 |
15 |
16 |
--------------------------------------------------------------------------------
/versioned_docs/version-V2/reference/directives/authenticated.mdx:
--------------------------------------------------------------------------------
1 | ---
2 | id: authenticated
3 | title: authenticated
4 | ---
5 |
6 |
7 | No description
8 |
9 | ```graphql
10 | directive @authenticated
11 | ```
12 |
13 |
14 |
15 |
16 |
--------------------------------------------------------------------------------
/versioned_docs/version-V2/reference/enums/_category_.yml:
--------------------------------------------------------------------------------
1 | label: 'Enums'
2 |
--------------------------------------------------------------------------------
/versioned_docs/version-V2/reference/graphql.md:
--------------------------------------------------------------------------------
1 | ---
2 | id: graphql
3 | sidebar_class_name: navbar__toggle
4 | slug: /reference
5 | ---
6 |
7 | This documentation has been automatically generated from the GraphQL schema.
8 |
--------------------------------------------------------------------------------
/versioned_docs/version-V2/reference/inputs/_category_.yml:
--------------------------------------------------------------------------------
1 | label: 'Inputs'
2 |
--------------------------------------------------------------------------------
/versioned_docs/version-V2/reference/interfaces/_category_.yml:
--------------------------------------------------------------------------------
1 | label: 'Interfaces'
2 |
--------------------------------------------------------------------------------
/versioned_docs/version-V2/reference/mutations/_category_.yml:
--------------------------------------------------------------------------------
1 | label: 'Mutations'
2 |
--------------------------------------------------------------------------------
/versioned_docs/version-V2/reference/objects/_category_.yml:
--------------------------------------------------------------------------------
1 | label: 'Objects'
2 |
--------------------------------------------------------------------------------
/versioned_docs/version-V2/reference/queries/_category_.yml:
--------------------------------------------------------------------------------
1 | label: 'Queries'
2 |
--------------------------------------------------------------------------------
/versioned_docs/version-V2/reference/scalars/_category_.yml:
--------------------------------------------------------------------------------
1 | label: 'Scalars'
2 |
--------------------------------------------------------------------------------
/versioned_docs/version-V2/reference/scalars/address-evm.mdx:
--------------------------------------------------------------------------------
1 | ---
2 | id: address-evm
3 | title: AddressEVM
4 | ---
5 |
6 |
7 | The `AddressEVM` custom scalar type represents EVM-based address format.
8 |
9 | ```graphql
10 | scalar AddressEVM
11 | ```
12 |
13 |
14 |
15 |
16 |
--------------------------------------------------------------------------------
/versioned_docs/version-V2/reference/scalars/boolean.mdx:
--------------------------------------------------------------------------------
1 | ---
2 | id: boolean
3 | title: Boolean
4 | ---
5 |
6 |
7 | The `Boolean` scalar type represents `true` or `false`.
8 |
9 | ```graphql
10 | scalar Boolean
11 | ```
12 |
13 |
14 |
15 |
16 |
--------------------------------------------------------------------------------
/versioned_docs/version-V2/reference/scalars/caip10-id.mdx:
--------------------------------------------------------------------------------
1 | ---
2 | id: caip10-id
3 | title: CAIP10ID
4 | ---
5 |
6 |
7 | The `CAIP10ID` custom scalar type represents CAIP10 account id.
8 |
9 | ```graphql
10 | scalar CAIP10ID
11 | ```
12 |
13 |
14 |
15 |
16 |
--------------------------------------------------------------------------------
/versioned_docs/version-V2/reference/scalars/chain-id.mdx:
--------------------------------------------------------------------------------
1 | ---
2 | id: chain-id
3 | title: ChainID
4 | ---
5 |
6 |
7 | The `ChainID` custom scalar type represents Chain ID. Default to be ETH mainnet.
8 |
9 | ```graphql
10 | scalar ChainID
11 | ```
12 |
13 |
14 |
15 |
16 |
--------------------------------------------------------------------------------
/versioned_docs/version-V2/reference/scalars/contract-address-evm.mdx:
--------------------------------------------------------------------------------
1 | ---
2 | id: contract-address-evm
3 | title: ContractAddressEVM
4 | ---
5 |
6 |
7 | The `ContractAddressEVM` custom scalar type represents EVM-based address format.
8 |
9 | ```graphql
10 | scalar ContractAddressEVM
11 | ```
12 |
13 |
14 |
15 |
16 |
--------------------------------------------------------------------------------
/versioned_docs/version-V2/reference/scalars/cursor.mdx:
--------------------------------------------------------------------------------
1 | ---
2 | id: cursor
3 | title: Cursor
4 | ---
5 |
6 |
7 | The `Cursor` type follows relay.dev spec.
8 |
9 | ```graphql
10 | scalar Cursor
11 | ```
12 |
13 |
14 |
15 |
16 |
--------------------------------------------------------------------------------
/versioned_docs/version-V2/reference/scalars/float.mdx:
--------------------------------------------------------------------------------
1 | ---
2 | id: float
3 | title: Float
4 | ---
5 |
6 |
7 | The `Float` scalar type represents signed double-precision fractional values as specified by [IEEE 754](https://en.wikipedia.org/wiki/IEEE_floating_point).
8 |
9 | ```graphql
10 | scalar Float
11 | ```
12 |
13 |
14 |
15 |
16 |
--------------------------------------------------------------------------------
/versioned_docs/version-V2/reference/scalars/int.mdx:
--------------------------------------------------------------------------------
1 | ---
2 | id: int
3 | title: Int
4 | ---
5 |
6 |
7 | The `Int` scalar type represents non-fractional signed whole numeric values. Int can represent values between -(2^31) and 2^31 - 1.
8 |
9 | ```graphql
10 | scalar Int
11 | ```
12 |
13 |
14 |
15 |
16 |
--------------------------------------------------------------------------------
/versioned_docs/version-V2/reference/scalars/profile-id.mdx:
--------------------------------------------------------------------------------
1 | ---
2 | id: profile-id
3 | title: ProfileID
4 | ---
5 |
6 |
7 | The `ProfileID` custom scalar type represents Profile ID generated by contract.
8 |
9 | ```graphql
10 | scalar ProfileID
11 | ```
12 |
13 |
14 |
15 |
16 |
--------------------------------------------------------------------------------
/versioned_docs/version-V2/reference/scalars/string.mdx:
--------------------------------------------------------------------------------
1 | ---
2 | id: string
3 | title: String
4 | ---
5 |
6 |
7 | 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.
8 |
9 | ```graphql
10 | scalar String
11 | ```
12 |
13 |
14 |
15 |
16 |
--------------------------------------------------------------------------------
/versioned_docs/version-V2/reference/scalars/url.mdx:
--------------------------------------------------------------------------------
1 | ---
2 | id: url
3 | title: URL
4 | ---
5 |
6 |
7 | The `URL` custom scalar type represents URL links.
8 |
9 | ```graphql
10 | scalar URL
11 | ```
12 |
13 |
14 |
15 |
16 |
--------------------------------------------------------------------------------
/versioned_docs/version-V2/reference/sidebar-schema.js:
--------------------------------------------------------------------------------
1 | module.exports = {
2 | "schemaSidebar": [
3 | {
4 | "type": "autogenerated",
5 | "dirName": "/reference/"
6 | }
7 | ]
8 | };
--------------------------------------------------------------------------------
/versioned_docs/version-V2/reference/unions/_category_.yml:
--------------------------------------------------------------------------------
1 | label: 'Unions'
2 |
--------------------------------------------------------------------------------
/versioned_docs/version-V2/tutorials/_category_.json:
--------------------------------------------------------------------------------
1 | {
2 | "label": "Tutorials",
3 | "position": 6
4 | }
5 |
--------------------------------------------------------------------------------
/versioned_docs/version-V2/tutorials/build-badge-app/_category_.json:
--------------------------------------------------------------------------------
1 | {
2 | "label": "Build SBT Issuing App",
3 | "position": 1
4 | }
5 |
--------------------------------------------------------------------------------
/versioned_docs/version-V2/tutorials/build-content-app/_category_.json:
--------------------------------------------------------------------------------
1 | {
2 | "label": "Build Content Platform",
3 | "position": 2
4 | }
5 |
--------------------------------------------------------------------------------
/versioned_docs/version-V2/tutorials/create-nft-with-backend/_category_.json:
--------------------------------------------------------------------------------
1 | {
2 | "label": "Create NFT with App Backend",
3 | "position": 3
4 | }
5 |
--------------------------------------------------------------------------------
/versioned_sidebars/version-0.10.0-sidebars.json:
--------------------------------------------------------------------------------
1 | {
2 | "tutorialSidebar": [
3 | {
4 | "type": "autogenerated",
5 | "dirName": "."
6 | }
7 | ]
8 | }
9 |
--------------------------------------------------------------------------------
/versioned_sidebars/version-0.2.0-sidebars.json:
--------------------------------------------------------------------------------
1 | {
2 | "tutorialSidebar": [
3 | {
4 | "type": "autogenerated",
5 | "dirName": "."
6 | }
7 | ]
8 | }
9 |
--------------------------------------------------------------------------------
/versioned_sidebars/version-0.3.0-sidebars.json:
--------------------------------------------------------------------------------
1 | {
2 | "tutorialSidebar": [
3 | {
4 | "type": "autogenerated",
5 | "dirName": "."
6 | }
7 | ]
8 | }
9 |
--------------------------------------------------------------------------------
/versioned_sidebars/version-0.4.0-sidebars.json:
--------------------------------------------------------------------------------
1 | {
2 | "tutorialSidebar": [
3 | {
4 | "type": "autogenerated",
5 | "dirName": "."
6 | }
7 | ]
8 | }
9 |
--------------------------------------------------------------------------------
/versioned_sidebars/version-0.5.0-sidebars.json:
--------------------------------------------------------------------------------
1 | {
2 | "tutorialSidebar": [
3 | {
4 | "type": "autogenerated",
5 | "dirName": "."
6 | }
7 | ]
8 | }
9 |
--------------------------------------------------------------------------------
/versioned_sidebars/version-0.6.0-sidebars.json:
--------------------------------------------------------------------------------
1 | {
2 | "tutorialSidebar": [
3 | {
4 | "type": "autogenerated",
5 | "dirName": "."
6 | }
7 | ]
8 | }
9 |
--------------------------------------------------------------------------------
/versioned_sidebars/version-0.7.0-sidebars.json:
--------------------------------------------------------------------------------
1 | {
2 | "tutorialSidebar": [
3 | {
4 | "type": "autogenerated",
5 | "dirName": "."
6 | }
7 | ]
8 | }
9 |
--------------------------------------------------------------------------------
/versioned_sidebars/version-0.8.0-sidebars.json:
--------------------------------------------------------------------------------
1 | {
2 | "tutorialSidebar": [
3 | {
4 | "type": "autogenerated",
5 | "dirName": "."
6 | }
7 | ]
8 | }
9 |
--------------------------------------------------------------------------------
/versioned_sidebars/version-0.9.0-sidebars.json:
--------------------------------------------------------------------------------
1 | {
2 | "tutorialSidebar": [
3 | {
4 | "type": "autogenerated",
5 | "dirName": "."
6 | }
7 | ]
8 | }
9 |
--------------------------------------------------------------------------------
/versioned_sidebars/version-V1-sidebars.json:
--------------------------------------------------------------------------------
1 | {
2 | "tutorialSidebar": [
3 | {
4 | "type": "autogenerated",
5 | "dirName": "."
6 | }
7 | ]
8 | }
9 |
--------------------------------------------------------------------------------
/versioned_sidebars/version-V2-sidebars.json:
--------------------------------------------------------------------------------
1 | {
2 | "tutorialSidebar": [
3 | {
4 | "type": "autogenerated",
5 | "dirName": "."
6 | }
7 | ]
8 | }
9 |
--------------------------------------------------------------------------------
/versions.json:
--------------------------------------------------------------------------------
1 | [
2 | "V2",
3 | "V1"
4 | ]
5 |
--------------------------------------------------------------------------------