"""
- url: String
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-enum GitHubLanguageOrderField {
- """Order languages by the size of all files containing the language"""
- SIZE
-}
-
-"""Ordering options for language connections."""
-input GitHubLanguageOrder {
- """The ordering direction."""
- direction: GitHubOrderDirection!
-
- """The field to order languages by."""
- field: GitHubLanguageOrderField!
-}
-
-"""Represents the language of a repository."""
-type GitHubLanguageEdge {
- """"""
- cursor: String!
-
- """"""
- node: GitHubLanguage!
-
- """The number of bytes of code written in the language."""
- size: Int!
-}
-
-"""A list of languages associated with the parent."""
-type GitHubLanguageConnection {
- """A list of edges."""
- edges: [GitHubLanguageEdge]
-
- """A list of nodes."""
- nodes: [GitHubLanguage]
-
- """Information to aid in pagination."""
- pageInfo: GitHubPageInfo!
-
- """Identifies the total count of items in the connection."""
- totalCount: Int!
-
- """The total size in bytes of files written in that language."""
- totalSize: Int!
-}
-
-enum GitHubFundingPlatform {
- """GitHub funding platform."""
- GITHUB
-
- """Patreon funding platform."""
- PATREON
-
- """Open Collective funding platform."""
- OPEN_COLLECTIVE
-
- """Ko-fi funding platform."""
- KO_FI
-
- """Tidelift funding platform."""
- TIDELIFT
-
- """Community Bridge funding platform."""
- COMMUNITY_BRIDGE
-
- """Liberapay funding platform."""
- LIBERAPAY
-
- """IssueHunt funding platform."""
- ISSUEHUNT
-
- """Otechie funding platform."""
- OTECHIE
-
- """Custom funding platform."""
- CUSTOM
-}
-
-"""A funding platform link for a repository."""
-type GitHubFundingLink {
- """The funding platform this link is for."""
- platform: GitHubFundingPlatform!
-
- """The configured URL for this funding link."""
- url: String!
-}
-
-enum GitHubRepositoryAffiliation {
- """Repositories that are owned by the authenticated user."""
- OWNER
-
- """Repositories that the user has been added to as a collaborator."""
- COLLABORATOR
-
- """
- Repositories that the user has access to through being a member of an organization. This includes every repository on every team that the user is on.
- """
- ORGANIZATION_MEMBER
-}
-
-enum GitHubRepositoryOrderField {
- """Order repositories by creation time"""
- CREATED_AT
-
- """Order repositories by update time"""
- UPDATED_AT
-
- """Order repositories by push time"""
- PUSHED_AT
-
- """Order repositories by name"""
- NAME
-
- """Order repositories by number of stargazers"""
- STARGAZERS
-}
-
-"""Ordering options for repository connections"""
-input GitHubRepositoryOrder {
- """The ordering direction."""
- direction: GitHubOrderDirection!
-
- """The field to order repositories by."""
- field: GitHubRepositoryOrderField!
-}
-
-enum GitHubRepositoryPrivacy {
- """Public"""
- PUBLIC
-
- """Private"""
- PRIVATE
-}
-
-"""An edge in a connection."""
-type GitHubRepositoryEdge {
- """A cursor for use in pagination."""
- cursor: String!
-
- """The item at the end of the edge."""
- node: GitHubRepository
-}
-
-"""A list of repositories owned by the subject."""
-type GitHubRepositoryConnection {
- """A list of edges."""
- edges: [GitHubRepositoryEdge]
-
- """A list of nodes."""
- nodes: [GitHubRepository]
-
- """Information to aid in pagination."""
- pageInfo: GitHubPageInfo!
-
- """Identifies the total count of items in the connection."""
- totalCount: Int!
-
- """The total size in kilobytes of all repositories in the connection."""
- totalDiskUsage: Int!
-}
-
-enum GitHubDeploymentOrderField {
- """Order collection by creation time"""
- CREATED_AT
-}
-
-"""Ordering options for deployment connections"""
-input GitHubDeploymentOrder {
- """The ordering direction."""
- direction: GitHubOrderDirection!
-
- """The field to order deployments by."""
- field: GitHubDeploymentOrderField!
-}
-
-"""An edge in a connection."""
-type GitHubDeploymentEdge {
- """A cursor for use in pagination."""
- cursor: String!
-
- """The item at the end of the edge."""
- node: GitHubDeployment
-}
-
-"""The connection type for Deployment."""
-type GitHubDeploymentConnection {
- """A list of edges."""
- edges: [GitHubDeploymentEdge]
-
- """A list of nodes."""
- nodes: [GitHubDeployment]
-
- """Information to aid in pagination."""
- pageInfo: GitHubPageInfo!
-
- """Identifies the total count of items in the connection."""
- totalCount: Int!
-}
-
-"""A repository deploy key."""
-type GitHubDeployKey implements OneGraphNode & GitHubNode {
- """Identifies the date and time when the object was created."""
- createdAt: String!
-
- """"""
- id: ID!
-
- """The deploy key."""
- key: String!
-
- """Whether or not the deploy key is read only."""
- readOnly: Boolean!
-
- """The deploy key title."""
- title: String!
-
- """Whether or not the deploy key has been verified."""
- verified: Boolean!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-"""An edge in a connection."""
-type GitHubDeployKeyEdge {
- """A cursor for use in pagination."""
- cursor: String!
-
- """The item at the end of the edge."""
- node: GitHubDeployKey
-}
-
-"""The connection type for DeployKey."""
-type GitHubDeployKeyConnection {
- """A list of edges."""
- edges: [GitHubDeployKeyEdge]
-
- """A list of nodes."""
- nodes: [GitHubDeployKey]
-
- """Information to aid in pagination."""
- pageInfo: GitHubPageInfo!
-
- """Identifies the total count of items in the connection."""
- totalCount: Int!
-}
-
-enum GitHubCollaboratorAffiliation {
- """All outside collaborators of an organization-owned subject."""
- OUTSIDE
-
- """
- All collaborators with permissions to an organization-owned subject, regardless of organization membership status.
- """
- DIRECT
-
- """All collaborators the authenticated user can see."""
- ALL
-}
-
-enum GitHubDefaultRepositoryPermissionField {
- """No access"""
- NONE
-
- """Can read repos by default"""
- READ
-
- """Can read and write repos by default"""
- WRITE
-
- """Can read, write, and administrate repos by default"""
- ADMIN
-}
-
-"""A level of permission and source for a user's access to a repository."""
-type GitHubPermissionSource {
- """The organization the repository belongs to."""
- organization: GitHubOrganization!
-
- """The level of access this source has granted to the user."""
- permission: GitHubDefaultRepositoryPermissionField!
-
- """The source of this permission."""
- source: GitHubPermissionGranter!
-}
-
-"""Represents a user who is a collaborator of a repository."""
-type GitHubRepositoryCollaboratorEdge {
- """A cursor for use in pagination."""
- cursor: String!
-
- """"""
- node: GitHubUser!
-
- """The permission the user has on the repository."""
- permission: GitHubRepositoryPermission!
-
- """A list of sources for the user's access to the repository."""
- permissionSources: [GitHubPermissionSource!]
-}
-
-"""The connection type for User."""
-type GitHubRepositoryCollaboratorConnection {
- """A list of edges."""
- edges: [GitHubRepositoryCollaboratorEdge]
-
- """A list of nodes."""
- nodes: [GitHubUser]
-
- """Information to aid in pagination."""
- pageInfo: GitHubPageInfo!
-
- """Identifies the total count of items in the connection."""
- totalCount: Int!
-}
-
-"""The Code of Conduct for a repository"""
-type GitHubCodeOfConduct implements OneGraphNode & GitHubNode {
- """The body of the Code of Conduct"""
- body: String
-
- """"""
- id: ID!
-
- """The key for the Code of Conduct"""
- key: String!
-
- """The formal name of the Code of Conduct"""
- name: String!
-
- """The HTTP path for this Code of Conduct"""
- resourcePath: String
-
- """The HTTP URL for this Code of Conduct"""
- url: String
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-"""
-A team or user who has the ability to dismiss a review on a protected branch.
-"""
-type GitHubReviewDismissalAllowance implements OneGraphNode & GitHubNode {
- """The actor that can dismiss."""
- actor: GitHubReviewDismissalAllowanceActor
-
- """
- Identifies the branch protection rule associated with the allowed user or team.
- """
- branchProtectionRule: GitHubBranchProtectionRule
-
- """"""
- id: ID!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-"""An edge in a connection."""
-type GitHubReviewDismissalAllowanceEdge {
- """A cursor for use in pagination."""
- cursor: String!
-
- """The item at the end of the edge."""
- node: GitHubReviewDismissalAllowance
-}
-
-"""The connection type for ReviewDismissalAllowance."""
-type GitHubReviewDismissalAllowanceConnection {
- """A list of edges."""
- edges: [GitHubReviewDismissalAllowanceEdge]
-
- """A list of nodes."""
- nodes: [GitHubReviewDismissalAllowance]
-
- """Information to aid in pagination."""
- pageInfo: GitHubPageInfo!
-
- """Identifies the total count of items in the connection."""
- totalCount: Int!
-}
-
-"""Entities that have members who can set status messages."""
-interface GitHubMemberStatusable {
- """
- Get the status messages members of this entity have set that are either public or visible only to the organization.
- """
- memberStatuses(
- """Ordering options for user statuses returned from the connection."""
- orderBy: GitHubUserStatusOrder
-
- """Returns the last _n_ elements from the list."""
- last: Int
-
- """Returns the first _n_ elements from the list."""
- first: Int
-
- """
- Returns the elements in the list that come before the specified cursor.
- """
- before: String
-
- """Returns the elements in the list that come after the specified cursor."""
- after: String
- ): GitHubUserStatusConnection!
-}
-
-"""Types that can grant permissions on a repository to a user"""
-union GitHubPermissionGranter = GitHubTeam | GitHubRepository | GitHubOrganization
-
-"""Represents a 'ready_for_review' event on a given pull request."""
-type GitHubReadyForReviewEvent implements OneGraphNode & GitHubUniformResourceLocatable & GitHubNode {
- """Identifies the actor who performed the event."""
- actor: GitHubActor
-
- """Identifies the date and time when the object was created."""
- createdAt: String!
-
- """"""
- id: ID!
-
- """PullRequest referenced by event."""
- pullRequest: GitHubPullRequest!
-
- """The HTTP path for this ready for review event."""
- resourcePath: String!
-
- """The HTTP URL for this ready for review event."""
- url: String!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-"""A release asset contains the content for a release asset."""
-type GitHubReleaseAsset implements OneGraphNode & GitHubNode {
- """The asset's content-type"""
- contentType: String!
-
- """Identifies the date and time when the object was created."""
- createdAt: String!
-
- """The number of times this asset was downloaded"""
- downloadCount: Int!
-
- """
- Identifies the URL where you can download the release asset via the browser.
- """
- downloadUrl: String!
-
- """"""
- id: ID!
-
- """Identifies the title of the release asset."""
- name: String!
-
- """Release that the asset is associated with"""
- release: GitHubRelease
-
- """The size (in bytes) of the asset"""
- size: Int!
-
- """Identifies the date and time when the object was last updated."""
- updatedAt: String!
-
- """The user that performed the upload"""
- uploadedBy: GitHubUser!
-
- """Identifies the URL of the release asset."""
- url: String!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-"""An edge in a connection."""
-type GitHubReleaseAssetEdge {
- """A cursor for use in pagination."""
- cursor: String!
-
- """The item at the end of the edge."""
- node: GitHubReleaseAsset
-}
-
-"""The connection type for ReleaseAsset."""
-type GitHubReleaseAssetConnection {
- """A list of edges."""
- edges: [GitHubReleaseAssetEdge]
-
- """A list of nodes."""
- nodes: [GitHubReleaseAsset]
-
- """Information to aid in pagination."""
- pageInfo: GitHubPageInfo!
-
- """Identifies the total count of items in the connection."""
- totalCount: Int!
-}
-
-"""A release contains the content for a release."""
-type GitHubRelease implements OneGraphNode & GitHubUniformResourceLocatable & GitHubNode {
- """The author of the release"""
- author: GitHubUser
-
- """Identifies the date and time when the object was created."""
- createdAt: String!
-
- """The description of the release."""
- description: String
-
- """The description of this release rendered to HTML."""
- descriptionHTML: String
-
- """"""
- id: ID!
-
- """Whether or not the release is a draft"""
- isDraft: Boolean!
-
- """Whether or not the release is a prerelease"""
- isPrerelease: Boolean!
-
- """The title of the release."""
- name: String
-
- """Identifies the date and time when the release was created."""
- publishedAt: String
-
- """List of releases assets which are dependent on this release."""
- releaseAssets(
- """A list of names to filter the assets by."""
- name: String
-
- """Returns the last _n_ elements from the list."""
- last: Int
-
- """Returns the first _n_ elements from the list."""
- first: Int
-
- """
- Returns the elements in the list that come before the specified cursor.
- """
- before: String
-
- """Returns the elements in the list that come after the specified cursor."""
- after: String
- ): GitHubReleaseAssetConnection!
-
- """The HTTP path for this issue"""
- resourcePath: String!
-
- """
- A description of the release, rendered to HTML without any links in it.
- """
- shortDescriptionHTML(
- """How many characters to return."""
- limit: Int
- ): String
-
- """The Git tag the release points to"""
- tag: GitHubRef
-
- """The name of the release's Git tag"""
- tagName: String!
-
- """Identifies the date and time when the object was last updated."""
- updatedAt: String!
-
- """The HTTP URL for this issue"""
- url: String!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-"""A repository-topic connects a repository to a topic."""
-type GitHubRepositoryTopic implements OneGraphNode & GitHubUniformResourceLocatable & GitHubNode {
- """"""
- id: ID!
-
- """The HTTP path for this repository-topic."""
- resourcePath: String!
-
- """The topic."""
- topic: GitHubTopic!
-
- """The HTTP URL for this repository-topic."""
- url: String!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-"""Used for return value of Repository.issueOrPullRequest."""
-union GitHubIssueOrPullRequest = GitHubPullRequest | GitHubIssue
-
-"""A public description of a Marketplace category."""
-type GitHubMarketplaceCategory implements OneGraphNode & GitHubNode {
- """The category's description."""
- description: String
-
- """
- The technical description of how apps listed in this category work with GitHub.
- """
- howItWorks: String
-
- """"""
- id: ID!
-
- """The category's name."""
- name: String!
-
- """How many Marketplace listings have this as their primary category."""
- primaryListingCount: Int!
-
- """The HTTP path for this Marketplace category."""
- resourcePath: String!
-
- """How many Marketplace listings have this as their secondary category."""
- secondaryListingCount: Int!
-
- """The short name of the category used in its URL."""
- slug: String!
-
- """The HTTP URL for this Marketplace category."""
- url: String!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-"""A GitHub App."""
-type GitHubApp implements OneGraphNode & GitHubNode {
- """Identifies the date and time when the object was created."""
- createdAt: String!
-
- """Identifies the primary key from the database."""
- databaseId: Int
-
- """The description of the app."""
- description: String
-
- """"""
- id: ID!
-
- """The hex color code, without the leading '#', for the logo background."""
- logoBackgroundColor: String!
-
- """A URL pointing to the app's logo."""
- logoUrl(
- """The size of the resulting image."""
- size: Int
- ): String!
-
- """The name of the app."""
- name: String!
-
- """A slug based on the name of the app for use in URLs."""
- slug: String!
-
- """Identifies the date and time when the object was last updated."""
- updatedAt: String!
-
- """The URL to the app's homepage."""
- url: String!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-"""A listing in the GitHub integration marketplace."""
-type GitHubMarketplaceListing implements OneGraphNode & GitHubNode {
- """The GitHub App this listing represents."""
- app: GitHubApp
-
- """URL to the listing owner's company site."""
- companyUrl: String
-
- """
- The HTTP path for configuring access to the listing's integration or OAuth app
- """
- configurationResourcePath: String!
-
- """
- The HTTP URL for configuring access to the listing's integration or OAuth app
- """
- configurationUrl: String!
-
- """URL to the listing's documentation."""
- documentationUrl: String
-
- """The listing's detailed description."""
- extendedDescription: String
-
- """The listing's detailed description rendered to HTML."""
- extendedDescriptionHTML: String!
-
- """The listing's introductory description."""
- fullDescription: String!
-
- """The listing's introductory description rendered to HTML."""
- fullDescriptionHTML: String!
-
- """
- Whether this listing has been submitted for review from GitHub for approval to be displayed in the Marketplace.
- """
- hasApprovalBeenRequested: Boolean! @deprecated(reason: "`hasApprovalBeenRequested` will be removed. Use `isVerificationPendingFromDraft` instead. Removal on 2019-10-01 UTC.")
-
- """Does this listing have any plans with a free trial?"""
- hasPublishedFreeTrialPlans: Boolean!
-
- """Does this listing have a terms of service link?"""
- hasTermsOfService: Boolean!
-
- """A technical description of how this app works with GitHub."""
- howItWorks: String
-
- """The listing's technical description rendered to HTML."""
- howItWorksHTML: String!
-
- """"""
- id: ID!
-
- """URL to install the product to the viewer's account or organization."""
- installationUrl: String
-
- """Whether this listing's app has been installed for the current viewer"""
- installedForViewer: Boolean!
-
- """Whether this listing has been approved for display in the Marketplace."""
- isApproved: Boolean! @deprecated(reason: "`isApproved` will be removed. Use `isPublic` instead. Removal on 2019-10-01 UTC.")
-
- """Whether this listing has been removed from the Marketplace."""
- isArchived: Boolean!
-
- """Whether this listing has been removed from the Marketplace."""
- isDelisted: Boolean! @deprecated(reason: "`isDelisted` will be removed. Use `isArchived` instead. Removal on 2019-10-01 UTC.")
-
- """
- Whether this listing is still an editable draft that has not been submitted for review and is not publicly visible in the Marketplace.
- """
- isDraft: Boolean!
-
- """
- Whether the product this listing represents is available as part of a paid plan.
- """
- isPaid: Boolean!
-
- """Whether this listing has been approved for display in the Marketplace."""
- isPublic: Boolean!
-
- """
- Whether this listing has been rejected by GitHub for display in the Marketplace.
- """
- isRejected: Boolean!
-
- """
- Whether this listing has been approved for unverified display in the Marketplace.
- """
- isUnverified: Boolean!
-
- """
- Whether this draft listing has been submitted for review for approval to be unverified in the Marketplace.
- """
- isUnverifiedPending: Boolean!
-
- """
- Whether this draft listing has been submitted for review from GitHub for approval to be verified in the Marketplace.
- """
- isVerificationPendingFromDraft: Boolean!
-
- """
- Whether this unverified listing has been submitted for review from GitHub for approval to be verified in the Marketplace.
- """
- isVerificationPendingFromUnverified: Boolean!
-
- """
- Whether this listing has been approved for verified display in the Marketplace.
- """
- isVerified: Boolean!
-
- """The hex color code, without the leading '#', for the logo background."""
- logoBackgroundColor: String!
-
- """URL for the listing's logo image."""
- logoUrl(
- """The size in pixels of the resulting square image."""
- size: Int
- ): String
-
- """The listing's full name."""
- name: String!
-
- """
- The listing's very short description without a trailing period or ampersands.
- """
- normalizedShortDescription: String!
-
- """URL to the listing's detailed pricing."""
- pricingUrl: String
-
- """The category that best describes the listing."""
- primaryCategory: GitHubMarketplaceCategory!
-
- """
- URL to the listing's privacy policy, may return an empty string for listings that do not require a privacy policy URL.
- """
- privacyPolicyUrl: String!
-
- """The HTTP path for the Marketplace listing."""
- resourcePath: String!
-
- """The URLs for the listing's screenshots."""
- screenshotUrls: [String]!
-
- """An alternate category that describes the listing."""
- secondaryCategory: GitHubMarketplaceCategory
-
- """The listing's very short description."""
- shortDescription: String!
-
- """The short name of the listing used in its URL."""
- slug: String!
-
- """URL to the listing's status page."""
- statusUrl: String
-
- """An email address for support for this listing's app."""
- supportEmail: String
-
- """
- Either a URL or an email address for support for this listing's app, may return an empty string for listings that do not require a support URL.
- """
- supportUrl: String!
-
- """URL to the listing's terms of service."""
- termsOfServiceUrl: String
-
- """The HTTP URL for the Marketplace listing."""
- url: String!
-
- """Can the current viewer add plans for this Marketplace listing."""
- viewerCanAddPlans: Boolean!
-
- """Can the current viewer approve this Marketplace listing."""
- viewerCanApprove: Boolean!
-
- """Can the current viewer delist this Marketplace listing."""
- viewerCanDelist: Boolean!
-
- """Can the current viewer edit this Marketplace listing."""
- viewerCanEdit: Boolean!
-
- """
- Can the current viewer edit the primary and secondary category of this
- Marketplace listing.
-
- """
- viewerCanEditCategories: Boolean!
-
- """Can the current viewer edit the plans for this Marketplace listing."""
- viewerCanEditPlans: Boolean!
-
- """
- Can the current viewer return this Marketplace listing to draft state
- so it becomes editable again.
-
- """
- viewerCanRedraft: Boolean!
-
- """
- Can the current viewer reject this Marketplace listing by returning it to
- an editable draft state or rejecting it entirely.
-
- """
- viewerCanReject: Boolean!
-
- """
- Can the current viewer request this listing be reviewed for display in
- the Marketplace as verified.
-
- """
- viewerCanRequestApproval: Boolean!
-
- """
- Indicates whether the current user has an active subscription to this Marketplace listing.
-
- """
- viewerHasPurchased: Boolean!
-
- """
- Indicates if the current user has purchased a subscription to this Marketplace listing
- for all of the organizations the user owns.
-
- """
- viewerHasPurchasedForAllOrganizations: Boolean!
-
- """
- Does the current viewer role allow them to administer this Marketplace listing.
-
- """
- viewerIsListingAdmin: Boolean!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-"""The results of a search."""
-union GitHubSearchResultItem = GitHubUser | GitHubRepository | GitHubPullRequest | GitHubOrganization | GitHubMarketplaceListing | GitHubIssue | GitHubApp
-
-union StripeTransferReversalSourceRefundUnion = StripeRefund
-
-union StripeOrderReturnRefundUnion = StripeRefund
-
-union StripeCreditNoteRefundUnion = StripeRefund
-
-union StripeTransferReversalDestinationPaymentRefundUnion = StripeRefund
-
-union StripePayoutBalanceTransactionUnion = StripeBalanceTransaction
-
-union StripeRefundFailureBalanceTransactionUnion = StripeBalanceTransaction
-
-union StripeTransferReversalBalanceTransactionUnion = StripeBalanceTransaction
-
-union StripeTopupBalanceTransactionUnion = StripeBalanceTransaction
-
-union StripeIssuingTransactionBalanceTransactionUnion = StripeBalanceTransaction
-
-union StripeFeeRefundBalanceTransactionUnion = StripeBalanceTransaction
-
-union StripeApplicationFeeBalanceTransactionUnion = StripeBalanceTransaction
-
-union StripePayoutFailureBalanceTransactionUnion = StripeBalanceTransaction
-
-union StripeTransferBalanceTransactionUnion = StripeBalanceTransaction
-
-union StripeRefundBalanceTransactionUnion = StripeBalanceTransaction
-
-union StripeChargeBalanceTransactionUnion = StripeBalanceTransaction
-
-""""""
-type StripeFee {
- """Amount of the fee, in cents."""
- amount: Int!
-
- """"""
- application: String
-
- """
- Three-letter [ISO currency code](https://www.iso.org/iso-4217-currency-codes.html), in lowercase. Must be a [supported currency](https://stripe.com/docs/currencies).
- """
- currency: String!
-
- """
- An arbitrary string attached to the object. Often useful for displaying to users.
- """
- description: String
-
- """Type of the fee, one of: `application_fee`, `stripe_fee` or `tax`."""
- type: String!
-}
-
-enum StripeBalanceTransactionTypeEnum {
- adjustment
- advance
- advance_funding
- application_fee
- application_fee_refund
- charge
- connect_collection_transfer
- issuing_authorization_hold
- issuing_authorization_release
- issuing_transaction
- payment
- payment_failure_refund
- payment_refund
- payout
- payout_cancel
- payout_failure
- refund
- refund_failure
- reserve_transaction
- reserved_funds
- stripe_fee
- stripe_fx_fee
- tax_fee
- topup
- topup_reversal
- transfer
- transfer_cancel
- transfer_failure
- transfer_refund
-}
-
-enum StripeConnectCollectionTransferObjectEnum {
- connect_collection_transfer
-}
-
-""""""
-type StripeConnectCollectionTransfer {
- """Amount transferred, in %s."""
- amount: Int!
-
- """
- Three-letter [ISO currency code](https://www.iso.org/iso-4217-currency-codes.html), in lowercase. Must be a [supported currency](https://stripe.com/docs/currencies).
- """
- currency: String!
-
- """ID of the account that funds are being collected for."""
- destination: StripeAccount!
-
- """Unique identifier for the object."""
- id: String!
-
- """
- Has the value `true` if the object exists in live mode or the value `false` if the object exists in test mode.
- """
- livemode: Boolean!
-
- """
- String representing the object's type. Objects of the same type share the same value.
- """
- object: StripeConnectCollectionTransferObjectEnum!
-}
-
-union StripeIssuingDisputeDisputedTransactionUnion = StripeIssuingTransaction
-
-union StripeIssuingTransactionAuthorizationUnion = StripeIssuingAuthorization
-
-""""""
-type StripeIssuingAuthorizationMerchantData {
- """
- A categorization of the seller's type of business. See our [merchant categories guide](https://stripe.com/docs/issuing/merchant-categories) for a list of possible values.
- """
- category: String!
-
- """City where the seller is located"""
- city: String
-
- """Country where the seller is located"""
- country: String
-
- """Name of the seller"""
- name: String
-
- """Identifier assigned to the seller by the card brand"""
- networkId: String!
-
- """Postal code where the seller is located"""
- postalCode: String
-
- """State where the seller is located"""
- state: String
-
- """The url an online purchase was made from"""
- url: String
-}
-
-""""""
-type StripeIssuingAuthorizationRequest {
- """Whether this request was approved."""
- approved: Boolean!
-
- """The amount that was authorized at the time of this request"""
- authorizedAmount: Int!
-
- """
- The currency that was presented to the cardholder for the authorization. Three-letter [ISO currency code](https://www.iso.org/iso-4217-currency-codes.html), in lowercase. Must be a [supported currency](https://stripe.com/docs/currencies).
- """
- authorizedCurrency: String!
-
- """
- Time at which the object was created. Measured in seconds since the Unix epoch.
- """
- created: Int!
-
- """
- The amount Stripe held from your account to fund the authorization, if the request was approved
- """
- heldAmount: Int!
-
- """
- The currency of the [held amount](https://stripe.com/docs/api#issuing_authorization_object-held_amount)
- """
- heldCurrency: String!
-
- """
- One of `authentication_failed`, `authorization_controls`, `card_active`, `card_inactive`, `insufficient_funds`, `account_compliance_disabled`, `account_inactive`, `suspected_fraud`, `webhook_approved`, `webhook_declined`, or `webhook_timeout`.
- """
- reason: String!
-}
-
-union StripeIssuingTransactionCardUnion = StripeIssuingCard
-
-union StripeIssuingCardReplacementForUnion = StripeIssuingCard
-
-""""""
-type StripeIssuingCardShipping {
- """"""
- address: StripeAddress!
-
- """
- The delivery service that shipped a physical product, such as Fedex, UPS, USPS, etc.
- """
- carrier: String
-
- """
- A unix timestamp representing a best estimate of when the card will be delivered.
- """
- eta: Int
-
- """Recipient name."""
- name: String!
-
- """
- The delivery status of the card. One of `pending`, `shipped`, `delivered`, `returned`, `failure`, or `canceled`.
- """
- status: String
-
- """A tracking number for a card shipment."""
- trackingNumber: String
-
- """
- A link to the shipping carrier's site where you can view detailed information about a card shipment.
- """
- trackingUrl: String
-
- """
- One of `bulk` or `individual`. Bulk shipments will be grouped and mailed together, while individual ones will not.
- """
- type: String!
-}
-
-enum StripeIssuingCardSpendingLimitIntervalEnum {
- all_time
- daily
- monthly
- per_authorization
- weekly
- yearly
-}
-
-""""""
-type StripeIssuingCardSpendingLimit {
- """Maximum amount allowed to spend per time interval."""
- amount: Int!
-
- """
- Array of strings containing [categories](https://stripe.com/docs/api#issuing_authorization_object-merchant_data-category) on which to apply the spending limit. Leave this blank to limit all charges.
- """
- categories: [String!]
-
- """
- The time interval with which to apply this spending limit towards. Allowed values are `per_authorization`, `daily`, `weekly`, `monthly`, `yearly`, or `all_time`.
- """
- interval: StripeIssuingCardSpendingLimitIntervalEnum!
-}
-
-""""""
-type StripeIssuingCardAuthorizationControls {
- """
- Array of strings containing [categories](https://stripe.com/docs/api#issuing_authorization_object-merchant_data-category) of authorizations permitted on this card.
- """
- allowedCategories: [String!]
-
- """
- Array of strings containing [categories](https://stripe.com/docs/api#issuing_authorization_object-merchant_data-category) of authorizations to always decline on this card.
- """
- blockedCategories: [String!]
-
- """
- The currency of the card. See [max_amount](https://stripe.com/docs/api#issuing_card_object-authorization_controls-max_amount)
- """
- currency: String
-
- """
- Maximum amount allowed per authorization on this card, in the currency of the card. Authorization amounts in a different currency will be converted to the card's currency when evaluating this control.
- """
- maxAmount: Int
-
- """
- Maximum count of approved authorizations on this card. Counts all authorizations retroactively.
- """
- maxApprovals: Int
-
- """Limit the spending with rules based on time intervals and categories."""
- spendingLimits: [StripeIssuingCardSpendingLimit!]
-
- """
- Currency for the amounts within spending_limits. Locked to the currency of the card.
- """
- spendingLimitsCurrency: String
-}
-
-enum StripeIssuingCardReplacementReasonEnum {
- damage
- expiration
- loss
- theft
-}
-
-enum StripeIssuingCardStatusEnum {
- active
- canceled
- inactive
- lost
- pending
- stolen
-}
-
-enum StripeIssuingCardObjectEnum {
- issuing_card
-}
-
-""""""
-type StripeIssuingCard {
- """The expiration year of the card."""
- expYear: Int!
-
- """
- String representing the object's type. Objects of the same type share the same value.
- """
- object: StripeIssuingCardObjectEnum!
-
- """
- Time at which the object was created. Measured in seconds since the Unix epoch.
- """
- created: Int!
-
- """The last 4 digits of the card number."""
- last4: String!
-
- """The brand of the card."""
- brand: String!
-
- """
- Three-letter [ISO currency code](https://www.iso.org/iso-4217-currency-codes.html), in lowercase. Must be a [supported currency](https://stripe.com/docs/currencies).
- """
- currency: String!
-
- """Unique identifier for the object."""
- id: String!
-
- """The name of the cardholder, printed on the card."""
- name: String!
-
- """The card this card replaces, if any."""
- replacementFor: StripeIssuingCard
-
- """One of `active`, `inactive`, `canceled`, `lost`, or `stolen`."""
- status: StripeIssuingCardStatusEnum!
-
- """
- Set of key-value pairs that you can attach to an object. This can be useful for storing additional information about the object in a structured format.
- """
- metadata: String!
-
- """
- Why the card that this card replaces (if any) needed to be replaced. One of `damage`, `expiration`, `loss`, or `theft`.
- """
- replacementReason: StripeIssuingCardReplacementReasonEnum
-
- """"""
- authorizationControls: StripeIssuingCardAuthorizationControls!
-
- """
- The [Cardholder](https://stripe.com/docs/api#issuing_cardholder_object) object to which the card belongs.
- """
- cardholder: StripeIssuingCardholder
-
- """
- Has the value `true` if the object exists in live mode or the value `false` if the object exists in test mode.
- """
- livemode: Boolean!
-
- """One of `virtual` or `physical`."""
- type: String!
-
- """Where and how the card will be shipped."""
- shipping: StripeIssuingCardShipping
-
- """The expiration month of the card."""
- expMonth: Int!
-}
-
-""""""
-type StripeIssuingAuthorizationVerificationData {
- """One of `match`, `mismatch`, or `not_provided`."""
- addressLine1Check: String!
-
- """One of `match`, `mismatch`, or `not_provided`."""
- addressZipCheck: String!
-
- """One of `success`, `failure`, `exempt`, or `none`."""
- authentication: String!
-
- """One of `match`, `mismatch`, or `not_provided`."""
- cvcCheck: String!
-}
-
-enum StripeIssuingAuthorizationObjectEnum {
- issuing_authorization
-}
-
-""""""
-type StripeIssuingAuthorization {
- """
- String representing the object's type. Objects of the same type share the same value.
- """
- object: StripeIssuingAuthorizationObjectEnum!
-
- """
- Time at which the object was created. Measured in seconds since the Unix epoch.
- """
- created: Int!
-
- """"""
- balanceTransactions: [StripeBalanceTransaction!]!
-
- """"""
- isHeldAmountControllable: Boolean!
-
- """Whether the authorization has been approved."""
- approved: Boolean!
-
- """
- The amount the user is requesting to be authorized. This field will only be non-zero during an `issuing.authorization.request` webhook.
- """
- pendingAuthorizedAmount: Int!
-
- """Unique identifier for the object."""
- id: String!
-
- """
- The additional amount Stripe will hold if the authorization is approved. This field will only be non-zero during an `issuing.authorization.request` webhook.
- """
- pendingHeldAmount: Int!
-
- """
- How the card details were provided. One of `chip`, `contactless`, `keyed_in`, `online`, or `swipe`.
- """
- authorizationMethod: String!
-
- """"""
- verificationData: StripeIssuingAuthorizationVerificationData!
-
- """
- The currency that was presented to the cardholder for the authorization. Three-letter [ISO currency code](https://www.iso.org/iso-4217-currency-codes.html), in lowercase. Must be a [supported currency](https://stripe.com/docs/currencies).
- """
- authorizedCurrency: String!
-
- """One of `pending`, `reversed`, or `closed`."""
- status: String!
-
- """
- The currency of the [held amount](https://stripe.com/docs/api#issuing_authorization_object-held_amount). This will always be the card currency.
- """
- heldCurrency: String!
-
- """
- Set of key-value pairs that you can attach to an object. This can be useful for storing additional information about the object in a structured format.
- """
- metadata: String!
-
- """The cardholder to whom this authorization belongs."""
- cardholder: StripeIssuingCardholder
-
- """
- Has the value `true` if the object exists in live mode or the value `false` if the object exists in test mode.
- """
- livemode: Boolean!
-
- """"""
- card: StripeIssuingCard!
-
- """"""
- transactions: [StripeIssuingTransaction!]!
-
- """
- The amount that has been authorized. This will be `0` when the object is created, and increase after it has been approved.
- """
- authorizedAmount: Int!
-
- """
- The amount the authorization is expected to be in `held_currency`. When Stripe holds funds from you, this is the amount reserved for the authorization. This will be `0` when the object is created, and increase after it has been approved. For multi-currency transactions, `held_amount` can be used to determine the expected exchange rate.
- """
- heldAmount: Int!
-
- """"""
- requestHistory: [StripeIssuingAuthorizationRequest!]!
-
- """"""
- merchantData: StripeIssuingAuthorizationMerchantData!
-
- """
- What, if any, digital wallet was used for this authorization. One of `apple_pay`, `google_pay`, or `samsung_pay`.
- """
- walletProvider: String
-}
-
-union StripeIssuingTransactionCardholderUnion = StripeIssuingCardholder
-
-union StripeIssuingAuthorizationCardholderUnion = StripeIssuingCardholder
-
-enum StripeIssuingCardholderTypeEnum {
- business_entity
- individual
-}
-
-enum StripeIssuingCardholderSpendingLimitIntervalEnum {
- all_time
- daily
- monthly
- per_authorization
- weekly
- yearly
-}
-
-""""""
-type StripeIssuingCardholderSpendingLimit {
- """Maximum amount allowed to spend per time interval."""
- amount: Int!
-
- """
- Array of strings containing [categories](https://stripe.com/docs/api#issuing_authorization_object-merchant_data-category) on which to apply the spending limit. Leave this blank to limit all charges.
- """
- categories: [String!]
-
- """
- The time interval with which to apply this spending limit towards. Allowed values are `per_authorization`, `daily`, `weekly`, `monthly`, `yearly`, or `all_time`.
- """
- interval: StripeIssuingCardholderSpendingLimitIntervalEnum!
-}
-
-""""""
-type StripeIssuingCardholderAuthorizationControls {
- """
- Array of strings containing [categories](https://stripe.com/docs/api#issuing_authorization_object-merchant_data-category) of authorizations permitted on this card.
- """
- allowedCategories: [String!]
-
- """
- Array of strings containing [categories](https://stripe.com/docs/api#issuing_authorization_object-merchant_data-category) of authorizations to always decline on this card.
- """
- blockedCategories: [String!]
-
- """Limit the spending with rules based on time intervals and categories."""
- spendingLimits: [StripeIssuingCardholderSpendingLimit!]
-
- """Currency for the amounts within spending_limits."""
- spendingLimitsCurrency: String
-}
-
-enum StripeIssuingCardholderStatusEnum {
- active
- blocked
- inactive
- pending
-}
-
-""""""
-type StripeIssuingCardholderAddress {
- """"""
- address: StripeAddress!
-
- """"""
- name: String
-}
-
-enum StripeIssuingCardholderRequirementsDisabledReasonEnum {
- listed
- rejected_listed
- under_review
-}
-
-""""""
-type StripeIssuingCardholderRequirements {
- """
- If the cardholder is disabled, this string describes why. Can be one of `listed`, `rejected.listed`, or `under_review`.
- """
- disabledReason: StripeIssuingCardholderRequirementsDisabledReasonEnum
-
- """
- If not empty, this field contains the list of fields that need to be collected in order to verify and re-enabled the cardholder.
- """
- pastDue: [String!]
-}
-
-enum StripeIssuingCardholderObjectEnum {
- issuing_cardholder
-}
-
-""""""
-type StripeIssuingCardholder {
- """Whether or not this cardholder is the default cardholder."""
- isDefault: Boolean!
-
- """
- String representing the object's type. Objects of the same type share the same value.
- """
- object: StripeIssuingCardholderObjectEnum!
-
- """
- Time at which the object was created. Measured in seconds since the Unix epoch.
- """
- created: Int!
-
- """"""
- requirements: StripeIssuingCardholderRequirements!
-
- """The cardholder's phone number."""
- phoneNumber: String
-
- """"""
- billing: StripeIssuingCardholderAddress!
-
- """Unique identifier for the object."""
- id: String!
-
- """The cardholder's email address."""
- email: String
-
- """The cardholder's name. This will be printed on cards issued to them."""
- name: String!
-
- """One of `active`, `inactive`, or `blocked`."""
- status: StripeIssuingCardholderStatusEnum!
-
- """
- Set of key-value pairs that you can attach to an object. This can be useful for storing additional information about the object in a structured format.
- """
- metadata: String!
-
- """"""
- authorizationControls: StripeIssuingCardholderAuthorizationControls
-
- """
- Has the value `true` if the object exists in live mode or the value `false` if the object exists in test mode.
- """
- livemode: Boolean!
-
- """One of `individual` or `business_entity`."""
- type: StripeIssuingCardholderTypeEnum!
-}
-
-union StripeIssuingTransactionDisputeUnion = StripeIssuingDispute
-
-""""""
-type StripeIssuingDisputeOtherEvidence {
- """Brief freeform text explaining why you are disputing this transaction."""
- disputeExplanation: String!
-
- """
- (ID of a [file upload](https://stripe.com/docs/guides/file-upload)) Additional file evidence supporting your dispute.
- """
- uncategorizedFile: StripeFile
-}
-
-""""""
-type StripeIssuingDisputeFraudulentEvidence {
- """Brief freeform text explaining why you are disputing this transaction."""
- disputeExplanation: String
-
- """
- (ID of a [file upload](https://stripe.com/docs/guides/file-upload)) Additional file evidence supporting your dispute.
- """
- uncategorizedFile: StripeFile
-}
-
-""""""
-type StripeIssuingDisputeEvidence {
- """
- Evidence to support a fraudulent dispute. This will only be present if your dispute's `reason` is `fraudulent`.
- """
- fraudulent: StripeIssuingDisputeFraudulentEvidence
-
- """
- Evidence to support an uncategorized dispute. This will only be present if your dispute's `reason` is `other`.
- """
- other: StripeIssuingDisputeOtherEvidence
-}
-
-enum StripeIssuingDisputeStatusEnum {
- lost
- under_review
- unsubmitted
- won
-}
-
-enum StripeIssuingDisputeObjectEnum {
- issuing_dispute
-}
-
-""""""
-type StripeIssuingDispute {
- """
- String representing the object's type. Objects of the same type share the same value.
- """
- object: StripeIssuingDisputeObjectEnum!
-
- """
- Time at which the object was created. Measured in seconds since the Unix epoch.
- """
- created: Int!
-
- """The currency the `disputed_transaction` was made in."""
- currency: String!
-
- """Unique identifier for the object."""
- id: String!
-
- """The transaction being disputed."""
- disputedTransaction: StripeIssuingTransaction!
-
- """
- Current status of dispute. One of `lost`, `under_review`, `unsubmitted`, or `won`.
- """
- status: StripeIssuingDisputeStatusEnum!
-
- """
- Set of key-value pairs that you can attach to an object. This can be useful for storing additional information about the object in a structured format. Individual keys can be unset by posting an empty value to them. All keys can be unset by posting an empty value to `metadata`.
- """
- metadata: String!
-
- """
- Has the value `true` if the object exists in live mode or the value `false` if the object exists in test mode.
- """
- livemode: Boolean!
-
- """
- Disputed amount. Usually the amount of the `disputed_transaction`, but can differ (usually because of currency fluctuation or because only part of the order is disputed).
- """
- amount: Int!
-
- """Reason for this dispute. One of `other` or `fraudulent`."""
- reason: String!
-
- """"""
- evidence: StripeIssuingDisputeEvidence!
-}
-
-enum StripeIssuingTransactionObjectEnum {
- issuing_transaction
-}
-
-""""""
-type StripeIssuingTransaction {
- """
- String representing the object's type. Objects of the same type share the same value.
- """
- object: StripeIssuingTransactionObjectEnum!
-
- """"""
- balanceTransaction: StripeBalanceTransaction
-
- """
- Time at which the object was created. Measured in seconds since the Unix epoch.
- """
- created: Int!
-
- """
- Three-letter [ISO currency code](https://www.iso.org/iso-4217-currency-codes.html), in lowercase. Must be a [supported currency](https://stripe.com/docs/currencies).
- """
- currency: String!
-
- """Unique identifier for the object."""
- id: String!
-
- """"""
- merchantCurrency: String!
-
- """"""
- dispute: StripeIssuingDispute
-
- """
- Set of key-value pairs that you can attach to an object. This can be useful for storing additional information about the object in a structured format.
- """
- metadata: String!
-
- """The cardholder to whom this transaction belongs."""
- cardholder: StripeIssuingCardholder
-
- """The `Authorization` object that led to this transaction."""
- authorization: StripeIssuingAuthorization
-
- """
- Has the value `true` if the object exists in live mode or the value `false` if the object exists in test mode.
- """
- livemode: Boolean!
-
- """
- One of `capture`, `refund`, `cash_withdrawal`, `refund_reversal`, `dispute`, or `dispute_loss`.
- """
- type: String!
-
- """"""
- amount: Int!
-
- """The card used to make this transaction."""
- card: StripeIssuingCard!
-
- """"""
- merchantAmount: Int!
-
- """"""
- merchantData: StripeIssuingAuthorizationMerchantData!
-}
-
-enum StripePayoutTypeEnum {
- bank_account
- card
-}
-
-enum StripePayoutObjectEnum {
- payout
-}
-
-""""""
-type StripePayout {
- """
- String representing the object's type. Objects of the same type share the same value.
- """
- object: StripePayoutObjectEnum!
-
- """
- ID of the balance transaction that describes the impact of this payout on your account balance.
- """
- balanceTransaction: StripeBalanceTransaction
-
- """
- Time at which the object was created. Measured in seconds since the Unix epoch.
- """
- created: Int!
-
- """ID of the bank account or card the payout was sent to."""
- destination: StripePayoutDestinationUnion
-
- """
- Three-letter [ISO currency code](https://www.iso.org/iso-4217-currency-codes.html), in lowercase. Must be a [supported currency](https://stripe.com/docs/currencies).
- """
- currency: String!
-
- """
- The source balance this payout came from. One of `card` or `bank_account`.
- """
- sourceType: String!
-
- """
- Date the payout is expected to arrive in the bank. This factors in delays like weekends or bank holidays.
- """
- arrivalDate: Int!
-
- """
- The method used to send this payout, which can be `standard` or `instant`. `instant` is only supported for payouts to debit cards. (See [Instant payouts for marketplaces](/blog/instant-payouts-for-marketplaces) for more information.)
- """
- method: String!
-
- """
- Error code explaining reason for payout failure if available. See [Types of payout failures](https://stripe.com/docs/api#payout_failures) for a list of failure codes.
- """
- failureCode: String
-
- """Unique identifier for the object."""
- id: String!
-
- """
- Message to user further explaining reason for payout failure if available.
- """
- failureMessage: String
-
- """
- Current status of the payout (`paid`, `pending`, `in_transit`, `canceled` or `failed`). A payout will be `pending` until it is submitted to the bank, at which point it becomes `in_transit`. It will then change to `paid` if the transaction goes through. If it does not go through successfully, its status will change to `failed` or `canceled`.
- """
- status: String!
-
- """
- Set of key-value pairs that you can attach to an object. This can be useful for storing additional information about the object in a structured format.
- """
- metadata: String!
-
- """
- Extra information about a payout to be displayed on the user's bank statement.
- """
- statementDescriptor: String
-
- """
- Has the value `true` if the object exists in live mode or the value `false` if the object exists in test mode.
- """
- livemode: Boolean!
-
- """Can be `bank_account` or `card`."""
- type: StripePayoutTypeEnum!
-
- """Amount (in %s) to be transferred to your bank account or debit card."""
- amount: Int!
-
- """
- Returns `true` if the payout was created by an [automated payout schedule](https://stripe.com/docs/payouts#payout-schedule), and `false` if it was [requested manually](https://stripe.com/docs/payouts#manual-payouts).
- """
- automatic: Boolean!
-
- """
- If the payout failed or was canceled, this will be the ID of the balance transaction that reversed the initial balance transaction, and puts the funds from the failed payout back in your balance.
- """
- failureBalanceTransaction: StripeBalanceTransaction
-
- """
- An arbitrary string attached to the object. Often useful for displaying to users.
- """
- description: String
-}
-
-enum StripePlatformTaxFeeObjectEnum {
- platform_tax_fee
-}
-
-""""""
-type StripePlatformTaxFee {
- """The Connected account that incurred this charge."""
- account: String!
-
- """Unique identifier for the object."""
- id: String!
-
- """
- String representing the object's type. Objects of the same type share the same value.
- """
- object: StripePlatformTaxFeeObjectEnum!
-
- """The payment object that caused this tax to be inflicted."""
- sourceTransaction: String!
-
- """The type of tax (VAT)."""
- type: String!
-}
-
-enum StripeReserveTransactionObjectEnum {
- reserve_transaction
-}
-
-""""""
-type StripeReserveTransaction {
- """"""
- amount: Int!
-
- """
- Three-letter [ISO currency code](https://www.iso.org/iso-4217-currency-codes.html), in lowercase. Must be a [supported currency](https://stripe.com/docs/currencies).
- """
- currency: String!
-
- """
- An arbitrary string attached to the object. Often useful for displaying to users.
- """
- description: String
-
- """Unique identifier for the object."""
- id: String!
-
- """
- String representing the object's type. Objects of the same type share the same value.
- """
- object: StripeReserveTransactionObjectEnum!
-}
-
-enum StripeTaxDeductedAtSourceObjectEnum {
- tax_deducted_at_source
-}
-
-""""""
-type StripeTaxDeductedAtSource {
- """Unique identifier for the object."""
- id: String!
-
- """
- String representing the object's type. Objects of the same type share the same value.
- """
- object: StripeTaxDeductedAtSourceObjectEnum!
-
- """
- The end of the invoicing period. This TDS applies to Stripe fees collected during this invoicing period.
- """
- periodEnd: Int!
-
- """
- The start of the invoicing period. This TDS applies to Stripe fees collected during this invoicing period.
- """
- periodStart: Int!
-
- """The TAN that was supplied to Stripe when TDS was assessed"""
- taxDeductionAccountNumber: String!
-}
-
-enum StripeTopupStatusEnum {
- canceled
- failed
- pending
- reversed
- succeeded
-}
-
-enum StripeTopupObjectEnum {
- topup
-}
-
-""""""
-type StripeTopup {
- """
- String representing the object's type. Objects of the same type share the same value.
- """
- object: StripeTopupObjectEnum!
-
- """
- ID of the balance transaction that describes the impact of this top-up on your account balance. May not be specified depending on status of top-up.
- """
- balanceTransaction: StripeBalanceTransaction
-
- """
- Time at which the object was created. Measured in seconds since the Unix epoch.
- """
- created: Int!
-
- """A string that identifies this top-up as part of a group."""
- transferGroup: String
-
- """
- Three-letter [ISO currency code](https://www.iso.org/iso-4217-currency-codes.html), in lowercase. Must be a [supported currency](https://stripe.com/docs/currencies).
- """
- currency: String!
-
- """
- Error code explaining reason for top-up failure if available (see [the errors section](https://stripe.com/docs/api#errors) for a list of codes).
- """
- failureCode: String
-
- """Unique identifier for the object."""
- id: String!
-
- """
- Message to user further explaining reason for top-up failure if available.
- """
- failureMessage: String
-
- """
- The status of the top-up is either `canceled`, `failed`, `pending`, `reversed`, or `succeeded`.
- """
- status: StripeTopupStatusEnum!
-
- """
- Set of key-value pairs that you can attach to an object. This can be useful for storing additional information about the object in a structured format.
- """
- metadata: String!
-
- """
- Extra information about a top-up. This will appear on your source's bank statement. It must contain at least one letter.
- """
- statementDescriptor: String
-
- """"""
- source: StripeSource!
-
- """
- Has the value `true` if the object exists in live mode or the value `false` if the object exists in test mode.
- """
- livemode: Boolean!
-
- """Amount transferred."""
- amount: Int!
-
- """
- An arbitrary string attached to the object. Often useful for displaying to users.
- """
- description: String
-
- """
- Date the funds are expected to arrive in your Stripe account for payouts. This factors in delays like weekends or bank holidays. May not be specified depending on status of top-up.
- """
- expectedAvailabilityDate: Int
-}
-
-union StripeRefundSourceTransferReversalUnion = StripeTransferReversal
-
-union StripeRefundTransferReversalUnion = StripeTransferReversal
-
-union StripeChargeTransferUnion = StripeTransfer
-
-union StripeChargeSourceTransferUnion = StripeTransfer
-
-union StripeTransferReversalTransferUnion = StripeTransfer
-
-union StripeInvoiceChargeUnion = StripeCharge
-
-union StripeIssuerFraudRecordChargeUnion = StripeCharge
-
-union StripeOrderChargeUnion = StripeCharge
-
-union StripeReviewChargeUnion = StripeCharge
-
-union StripeRadarEarlyFraudWarningChargeUnion = StripeCharge
-
-union StripeDisputeChargeUnion = StripeCharge
-
-union StripeTransferSourceTransactionUnion = StripeCharge
-
-union StripeRefundChargeUnion = StripeCharge
-
-union StripeTransferDestinationPaymentUnion = StripeCharge
-
-union StripeApplicationFeeChargeUnion = StripeCharge
-
-union StripeApplicationFeeOriginatingTransactionUnion = StripeCharge
-
-""""""
-type StripeRefundsEdge {
- """node"""
- node: StripeRefund!
-
- """cursor"""
- cursor: String!
-}
-
-""""""
-type StripeRefundsConnection {
- """cursor"""
- cursor: String
-
- """nodes"""
- nodes: [StripeRefund!]!
-
- """edges"""
- edges: [StripeRefundsEdge!]!
-
- """pageInfo"""
- pageInfo: PageInfo!
-}
-
-union StripeChargeOutcomeRuleUnion = StripeRule
-
-""""""
-type StripeRule {
- """The action taken on the payment."""
- action: String!
-
- """Unique identifier for the object."""
- id: String!
-
- """The predicate to evaluate the payment against."""
- predicate: String!
-}
-
-""""""
-type StripeChargeOutcome {
- """
- Possible values are `approved_by_network`, `declined_by_network`, `not_sent_to_network`, and `reversed_after_approval`. The value `reversed_after_approval` indicates the payment was [blocked by Stripe](https://stripe.com/docs/declines#blocked-payments) after bank authorization, and may temporarily appear as "pending" on a cardholder's statement.
- """
- networkStatus: String
-
- """
- An enumerated value providing a more detailed explanation of the outcome's `type`. Charges blocked by Radar's default block rule have the value `highest_risk_level`. Charges placed in review by Radar's default review rule have the value `elevated_risk_level`. Charges authorized, blocked, or placed in review by custom rules have the value `rule`. See [understanding declines](https://stripe.com/docs/declines) for more details.
- """
- reason: String
-
- """
- Stripe's evaluation of the riskiness of the payment. Possible values for evaluated payments are `normal`, `elevated`, `highest`. For non-card payments, and card-based payments predating the public assignment of risk levels, this field will have the value `not_assessed`. In the event of an error in the evaluation, this field will have the value `unknown`.
- """
- riskLevel: String
-
- """
- Stripe's evaluation of the riskiness of the payment. Possible values for evaluated payments are between 0 and 100. For non-card payments, card-based payments predating the public assignment of risk scores, or in the event of an error during evaluation, this field will not be present. This field is only available with Radar for Fraud Teams.
- """
- riskScore: Int
-
- """The ID of the Radar rule that matched the payment, if applicable."""
- rule: StripeRule
-
- """
- A human-readable description of the outcome type and reason, designed for you (the recipient of the payment), not your customer.
- """
- sellerMessage: String
-
- """
- Possible values are `authorized`, `manual_review`, `issuer_declined`, `blocked`, and `invalid`. See [understanding declines](https://stripe.com/docs/declines) and [Radar reviews](radar/review) for details.
- """
- type: String!
-}
-
-union StripeOrderReturnOrderUnion = StripeOrder
-
-union StripeChargeOrderUnion = StripeOrder
-
-""""""
-type StripeDeliveryEstimate {
- """
- If `type` is `"exact"`, `date` will be the expected delivery date in the format YYYY-MM-DD.
- """
- date: String
-
- """
- If `type` is `"range"`, `earliest` will be be the earliest delivery date in the format YYYY-MM-DD.
- """
- earliest: String
-
- """
- If `type` is `"range"`, `latest` will be the latest delivery date in the format YYYY-MM-DD.
- """
- latest: String
-
- """The type of estimate. Must be either `"range"` or `"exact"`."""
- type: String!
-}
-
-""""""
-type StripeShippingMethod {
- """
- A positive integer in the smallest currency unit (that is, 100 cents for $1.00, or 1 for ¥1, Japanese Yen being a zero-decimal currency) representing the total amount for the line item.
- """
- amount: Int!
-
- """
- Three-letter [ISO currency code](https://www.iso.org/iso-4217-currency-codes.html), in lowercase. Must be a [supported currency](https://stripe.com/docs/currencies).
- """
- currency: String!
-
- """
- The estimated delivery date for the given shipping method. Can be either a specific date or a range.
- """
- deliveryEstimate: StripeDeliveryEstimate
-
- """
- An arbitrary string attached to the object. Often useful for displaying to users.
- """
- description: String!
-
- """Unique identifier for the object."""
- id: String!
-}
-
-""""""
-type StripeStatusTransitions {
- """"""
- canceled: Int
-
- """"""
- fulfiled: Int
-
- """"""
- paid: Int
-
- """"""
- returned: Int
-}
-
-enum StripeOrderReturnsObjectEnum {
- list
-}
-
-union StripeOrderItemParentUnion = StripeSku
-
-""""""
-type StripeInventory {
- """
- The count of inventory available. Will be present if and only if `type` is `finite`.
- """
- quantity: Int
-
- """
- Inventory type. Possible values are `finite`, `bucket` (not quantified), and `infinite`.
- """
- type: String!
-
- """
- An indicator of the inventory available. Possible values are `in_stock`, `limited`, and `out_of_stock`. Will be present if and only if `type` is `bucket`.
- """
- value: String
-}
-
-enum StripeSkuObjectEnum {
- sku
-}
-
-""""""
-type StripeSku {
- """
- String representing the object's type. Objects of the same type share the same value.
- """
- object: StripeSkuObjectEnum!
-
- """
- Time at which the object was created. Measured in seconds since the Unix epoch.
- """
- created: Int!
-
- """
- The URL of an image for this SKU, meant to be displayable to the customer.
- """
- image: String
-
- """
- Three-letter [ISO currency code](https://www.iso.org/iso-4217-currency-codes.html), in lowercase. Must be a [supported currency](https://stripe.com/docs/currencies).
- """
- currency: String!
-
- """The dimensions of this SKU for shipping purposes."""
- packageDimensions: StripePackageDimensions
-
- """Unique identifier for the object."""
- id: String!
-
- """
- The ID of the product this SKU is associated with. The product must be currently active.
- """
- product: StripeProduct!
-
- """
- Set of key-value pairs that you can attach to an object. This can be useful for storing additional information about the object in a structured format.
- """
- metadata: String!
-
- """"""
- inventory: StripeInventory!
-
- """
- Has the value `true` if the object exists in live mode or the value `false` if the object exists in test mode.
- """
- livemode: Boolean!
-
- """"""
- updated: Int!
-
- """Whether the SKU is available for purchase."""
- active: Boolean!
-
- """
- The cost of the item as a positive integer in the smallest currency unit (that is, 100 cents to charge $1.00, or 100 to charge ¥100, Japanese Yen being a zero-decimal currency).
- """
- price: Int!
-}
-
-enum StripeOrderItemObjectEnum {
- order_item
-}
-
-""""""
-type StripeOrderItem {
- """
- A positive integer in the smallest currency unit (that is, 100 cents for $1.00, or 1 for ¥1, Japanese Yen being a zero-decimal currency) representing the total amount for the line item.
- """
- amount: Int!
-
- """
- Three-letter [ISO currency code](https://www.iso.org/iso-4217-currency-codes.html), in lowercase. Must be a [supported currency](https://stripe.com/docs/currencies).
- """
- currency: String!
-
- """
- Description of the line item, meant to be displayable to the user (e.g., `"Express shipping"`).
- """
- description: String!
-
- """
- String representing the object's type. Objects of the same type share the same value.
- """
- object: StripeOrderItemObjectEnum!
-
- """
- The ID of the associated object for this line item. Expandable if not null (e.g., expandable to a SKU).
- """
- parent: StripeSku
-
- """
- A positive integer representing the number of instances of `parent` that are included in this order item. Applicable/present only if `type` is `sku`.
- """
- quantity: Int
-
- """The type of line item. One of `sku`, `tax`, `shipping`, or `discount`."""
- type: String!
-}
-
-enum StripeOrderReturnObjectEnum {
- order_return
-}
-
-""""""
-type StripeOrderReturn {
- """
- String representing the object's type. Objects of the same type share the same value.
- """
- object: StripeOrderReturnObjectEnum!
-
- """
- Time at which the object was created. Measured in seconds since the Unix epoch.
- """
- created: Int!
-
- """The ID of the refund issued for this return."""
- refund: StripeRefund
-
- """
- Three-letter [ISO currency code](https://www.iso.org/iso-4217-currency-codes.html), in lowercase. Must be a [supported currency](https://stripe.com/docs/currencies).
- """
- currency: String!
-
- """Unique identifier for the object."""
- id: String!
-
- """The items included in this order return."""
- items: [StripeOrderItem!]!
-
- """The order that this return includes items from."""
- order: StripeOrder
-
- """
- Has the value `true` if the object exists in live mode or the value `false` if the object exists in test mode.
- """
- livemode: Boolean!
-
- """
- A positive integer in the smallest currency unit (that is, 100 cents for $1.00, or 1 for ¥1, Japanese Yen being a zero-decimal currency) representing the total amount for the returned line item.
- """
- amount: Int!
-}
-
-""""""
-type StripeOrderReturns {
- """"""
- data: [StripeOrderReturn!]!
-
- """
- True if this list has another page of items after this one that can be fetched.
- """
- hasMore: Boolean!
-
- """
- String representing the object's type. Objects of the same type share the same value. Always has the value `list`.
- """
- object: StripeOrderReturnsObjectEnum!
-
- """The URL where this list can be accessed."""
- url: String!
-}
-
-enum StripeOrderObjectEnum {
- order
-}
-
-""""""
-type StripeOrder {
- """
- String representing the object's type. Objects of the same type share the same value.
- """
- object: StripeOrderObjectEnum!
-
- """
- Time at which the object was created. Measured in seconds since the Unix epoch.
- """
- created: Int!
-
- """"""
- returns: StripeOrderReturns
-
- """"""
- externalCouponCode: String
-
- """
- Three-letter [ISO currency code](https://www.iso.org/iso-4217-currency-codes.html), in lowercase. Must be a [supported currency](https://stripe.com/docs/currencies).
- """
- currency: String!
-
- """The timestamps at which the order status was updated."""
- statusTransitions: StripeStatusTransitions
-
- """
- A list of supported shipping methods for this order. The desired shipping method can be specified either by updating the order, or when paying it.
- """
- shippingMethods: [StripeShippingMethod!]
-
- """Unique identifier for the object."""
- id: String!
-
- """The email address of the customer placing the order."""
- email: String
-
- """
- The ID of the payment used to pay for the order. Present if the order status is `paid`, `fulfilled`, or `refunded`.
- """
- charge: StripeCharge
-
- """"""
- applicationFee: Int
-
- """
- List of items constituting the order. An order can have up to 25 items.
- """
- items: [StripeOrderItem!]!
-
- """The user's order ID if it is different from the Stripe order ID."""
- upstreamId: String
-
- """ID of the Connect Application that created the order."""
- application: String
-
- """
- Current order status. One of `created`, `paid`, `canceled`, `fulfilled`, or `returned`. More details in the [Orders Guide](https://stripe.com/docs/orders/guide#understanding-order-statuses).
- """
- status: String!
-
- """
- The shipping method that is currently selected for this order, if any. If present, it is equal to one of the `id`s of shipping methods in the `shipping_methods` array. At order creation time, if there are multiple shipping methods, Stripe will automatically selected the first method.
- """
- selectedShippingMethod: String
-
- """
- Set of key-value pairs that you can attach to an object. This can be useful for storing additional information about the object in a structured format.
- """
- metadata: String!
-
- """"""
- amountReturned: Int
-
- """
- Has the value `true` if the object exists in live mode or the value `false` if the object exists in test mode.
- """
- livemode: Boolean!
-
- """
- A positive integer in the smallest currency unit (that is, 100 cents for $1.00, or 1 for ¥1, Japanese Yen being a zero-decimal currency) representing the total amount for the order.
- """
- amount: Int!
-
- """
- The shipping address for the order. Present if the order is for goods to be shipped.
- """
- shipping: StripeShipping
-
- """"""
- updated: Int
-
- """The customer used for the order."""
- customer: StripeOrderCustomerUnion
-}
-
-union StripeChargeDisputeUnion = StripeDispute
-
-union StripeDisputeEvidenceReceiptUnion = StripeFile
-
-union StripeIssuingDisputeOtherEvidenceUncategorizedFileUnion = StripeFile
-
-union StripeLegalEntityPersonVerificationDocumentBackUnion = StripeFile
-
-union StripeLegalEntityPersonVerificationDocumentFrontUnion = StripeFile
-
-union StripeDisputeEvidenceRefundPolicyUnion = StripeFile
-
-union StripeDisputeEvidenceShippingDocumentationUnion = StripeFile
-
-union StripeDisputeEvidenceUncategorizedFileUnion = StripeFile
-
-union StripeDisputeEvidenceCancellationPolicyUnion = StripeFile
-
-union StripeDisputeEvidenceCustomerSignatureUnion = StripeFile
-
-union StripeDisputeEvidenceCustomerCommunicationUnion = StripeFile
-
-union StripeFileLinkFileUnion = StripeFile
-
-union StripeIssuingDisputeFraudulentEvidenceUncategorizedFileUnion = StripeFile
-
-union StripeAccountBrandingSettingsLogoUnion = StripeFile
-
-union StripeDisputeEvidenceServiceDocumentationUnion = StripeFile
-
-union StripeLegalEntityCompanyVerificationDocumentFrontUnion = StripeFile
-
-union StripeDisputeEvidenceDuplicateChargeDocumentationUnion = StripeFile
-
-union StripeAccountBrandingSettingsIconUnion = StripeFile
-
-union StripeLegalEntityCompanyVerificationDocumentBackUnion = StripeFile
-
-enum StripeFileLinksObjectEnum {
- list
-}
-
-enum StripeFileLinkObjectEnum {
- file_link
-}
-
-""""""
-type StripeFileLink {
- """
- String representing the object's type. Objects of the same type share the same value.
- """
- object: StripeFileLinkObjectEnum!
-
- """
- Time at which the object was created. Measured in seconds since the Unix epoch.
- """
- created: Int!
-
- """The publicly accessible URL to download the file."""
- url: String
-
- """Whether this link is already expired."""
- expired: Boolean!
-
- """Unique identifier for the object."""
- id: String!
-
- """Time at which the link expires."""
- expiresAt: Int
-
- """
- Set of key-value pairs that you can attach to an object. This can be useful for storing additional information about the object in a structured format.
- """
- metadata: String!
-
- """
- Has the value `true` if the object exists in live mode or the value `false` if the object exists in test mode.
- """
- livemode: Boolean!
-
- """The file object this link points to."""
- file: StripeFile!
-}
-
-""""""
-type StripeFileLinks {
- """"""
- data: [StripeFileLink!]!
-
- """
- True if this list has another page of items after this one that can be fetched.
- """
- hasMore: Boolean!
-
- """
- String representing the object's type. Objects of the same type share the same value. Always has the value `list`.
- """
- object: StripeFileLinksObjectEnum!
-
- """The URL where this list can be accessed."""
- url: String!
-}
-
-enum StripeFileObjectEnum {
- file
-}
-
-""""""
-type StripeFile {
- """
- String representing the object's type. Objects of the same type share the same value.
- """
- object: StripeFileObjectEnum!
-
- """
- Time at which the object was created. Measured in seconds since the Unix epoch.
- """
- created: Int!
-
- """
- The URL from which the file can be downloaded using your live secret API key.
- """
- url: String
-
- """Unique identifier for the object."""
- id: String!
-
- """"""
- links: StripeFileLinks
-
- """A user friendly title for the document."""
- title: String
-
- """The type of the file returned (e.g., `csv`, `pdf`, `jpg`, or `png`)."""
- type: String
-
- """The size in bytes of the file object."""
- size: Int!
-
- """A filename for the file, suitable for saving to a filesystem."""
- filename: String
-
- """
- The purpose of the file. Possible values are `business_icon`, `business_logo`, `customer_signature`, `dispute_evidence`, `finance_report_run`, `identity_document`, `pci_document`, `sigma_scheduled_query`, or `tax_document_user_upload`.
- """
- purpose: String!
-}
-
-""""""
-type StripeDisputeEvidence {
- """The billing address provided by the customer."""
- billingAddress: String
-
- """The IP address that the customer used when making the purchase."""
- customerPurchaseIp: String
-
- """
- The tracking number for a physical product, obtained from the delivery service. If multiple tracking numbers were generated for this purchase, please separate them with commas.
- """
- shippingTrackingNumber: String
-
- """
- An explanation of how and when the customer was shown your refund policy prior to purchase.
- """
- cancellationPolicyDisclosure: String
-
- """A description of the product or service that was sold."""
- productDescription: String
-
- """
- (ID of a [file upload](https://stripe.com/docs/guides/file-upload)) Any receipt or message sent to the customer notifying them of the charge.
- """
- receipt: StripeFile
-
- """
- An explanation of the difference between the disputed charge versus the prior charge that appears to be a duplicate.
- """
- duplicateChargeExplanation: String
-
- """
- The date on which the customer received or began receiving the purchased service, in a clear human-readable format.
- """
- serviceDate: String
-
- """
- (ID of a [file upload](https://stripe.com/docs/guides/file-upload)) Documentation showing proof that a service was provided to the customer. This could include a copy of a signed contract, work order, or other form of written agreement.
- """
- serviceDocumentation: StripeFile
-
- """
- The delivery service that shipped a physical product, such as Fedex, UPS, USPS, etc. If multiple carriers were used for this purchase, please separate them with commas.
- """
- shippingCarrier: String
-
- """
- (ID of a [file upload](https://stripe.com/docs/guides/file-upload)) Documentation showing proof that a product was shipped to the customer at the same address the customer provided to you. This could include a copy of the shipment receipt, shipping label, etc. It should show the customer's full shipping address, if possible.
- """
- shippingDocumentation: StripeFile
-
- """
- The date on which a physical product began its route to the shipping address, in a clear human-readable format.
- """
- shippingDate: String
-
- """
- Documentation demonstrating that the customer was shown your refund policy prior to purchase.
- """
- refundPolicyDisclosure: String
-
- """A justification for why the customer is not entitled to a refund."""
- refundRefusalExplanation: String
-
- """A justification for why the customer's subscription was not canceled."""
- cancellationRebuttal: String
-
- """
- (ID of a [file upload](https://stripe.com/docs/guides/file-upload)) A relevant document or contract showing the customer's signature.
- """
- customerSignature: StripeFile
-
- """
- (ID of a [file upload](https://stripe.com/docs/guides/file-upload)) Your refund policy, as shown to the customer.
- """
- refundPolicy: StripeFile
-
- """
- Any server or activity logs showing proof that the customer accessed or downloaded the purchased digital product. This information should include IP addresses, corresponding timestamps, and any detailed recorded activity.
- """
- accessActivityLog: String
-
- """
- (ID of a [file upload](https://stripe.com/docs/guides/file-upload)) Documentation for the prior charge that can uniquely identify the charge, such as a receipt, shipping label, work order, etc. This document should be paired with a similar document from the disputed payment that proves the two payments are separate.
- """
- duplicateChargeDocumentation: StripeFile
-
- """The name of the customer."""
- customerName: String
-
- """
- (ID of a [file upload](https://stripe.com/docs/guides/file-upload)) Any communication with the customer that you feel is relevant to your case. Examples include emails proving that the customer received the product or service, or demonstrating their use of or satisfaction with the product or service.
- """
- customerCommunication: StripeFile
-
- """The email address of the customer."""
- customerEmailAddress: String
-
- """
- (ID of a [file upload](https://stripe.com/docs/guides/file-upload)) Your subscription cancellation policy, as shown to the customer.
- """
- cancellationPolicy: StripeFile
-
- """
- (ID of a [file upload](https://stripe.com/docs/guides/file-upload)) Any additional evidence or statements.
- """
- uncategorizedFile: StripeFile
-
- """Any additional evidence or statements."""
- uncategorizedText: String
-
- """
- The address to which a physical product was shipped. You should try to include as complete address information as possible.
- """
- shippingAddress: String
-
- """
- The Stripe ID for the prior charge which appears to be a duplicate of the disputed charge.
- """
- duplicateChargeId: String
-}
-
-enum StripeDisputeStatusEnum {
- charge_refunded
- lost
- needs_response
- under_review
- warning_closed
- warning_needs_response
- warning_under_review
- won
-}
-
-""""""
-type StripeDisputeEvidenceDetails {
- """
- Date by which evidence must be submitted in order to successfully challenge dispute. Will be null if the customer's bank or credit card company doesn't allow a response for this particular dispute.
- """
- dueBy: Int
-
- """Whether evidence has been staged for this dispute."""
- hasEvidence: Boolean!
-
- """
- Whether the last evidence submission was submitted past the due date. Defaults to `false` if no evidence submissions have occurred. If `true`, then delivery of the latest evidence is *not* guaranteed.
- """
- pastDue: Boolean!
-
- """
- The number of times evidence has been submitted. Typically, you may only submit evidence once.
- """
- submissionCount: Int!
-}
-
-enum StripeDisputeObjectEnum {
- dispute
-}
-
-""""""
-type StripeDispute {
- """
- String representing the object's type. Objects of the same type share the same value.
- """
- object: StripeDisputeObjectEnum!
-
- """
- Time at which the object was created. Measured in seconds since the Unix epoch.
- """
- created: Int!
-
- """
- List of zero, one, or two balance transactions that show funds withdrawn and reinstated to your Stripe account as a result of this dispute.
- """
- balanceTransactions: [StripeBalanceTransaction!]!
-
- """
- Three-letter [ISO currency code](https://www.iso.org/iso-4217-currency-codes.html), in lowercase. Must be a [supported currency](https://stripe.com/docs/currencies).
- """
- currency: String!
-
- """Unique identifier for the object."""
- id: String!
-
- """ID of the charge that was disputed."""
- charge: StripeCharge!
-
- """"""
- evidenceDetails: StripeDisputeEvidenceDetails!
-
- """
- Current status of dispute. Possible values are `warning_needs_response`, `warning_under_review`, `warning_closed`, `needs_response`, `under_review`, `charge_refunded`, `won`, or `lost`.
- """
- status: StripeDisputeStatusEnum!
-
- """
- Set of key-value pairs that you can attach to an object. This can be useful for storing additional information about the object in a structured format.
- """
- metadata: String!
-
- """
- Has the value `true` if the object exists in live mode or the value `false` if the object exists in test mode.
- """
- livemode: Boolean!
-
- """
- Disputed amount. Usually the amount of the charge, but can differ (usually because of currency fluctuation or because only part of the order is disputed).
- """
- amount: Int!
-
- """
- If true, it is still possible to refund the disputed payment. Once the payment has been fully refunded, no further funds will be withdrawn from your Stripe account as a result of this dispute.
- """
- isChargeRefundable: Boolean!
-
- """
- Reason given by cardholder for dispute. Possible values are `bank_cannot_process`, `check_returned`, `credit_not_processed`, `customer_initiated`, `debit_not_authorized`, `duplicate`, `fraudulent`, `general`, `incorrect_account_details`, `insufficient_funds`, `product_not_received`, `product_unacceptable`, `subscription_canceled`, or `unrecognized`. Read more about [dispute reasons](https://stripe.com/docs/disputes/categories).
- """
- reason: String!
-
- """"""
- evidence: StripeDisputeEvidence!
-}
-
-union StripeFeeRefundFeeUnion = StripeApplicationFee
-
-union StripeChargeApplicationFeeUnion = StripeApplicationFee
-
-enum StripeApplicationFeeRefundsObjectEnum {
- list
-}
-
-enum StripeFeeRefundObjectEnum {
- fee_refund
-}
-
-""""""
-type StripeFeeRefund {
- """Amount, in %s."""
- amount: Int!
-
- """Balance transaction that describes the impact on your account balance."""
- balanceTransaction: StripeBalanceTransaction
-
- """
- Time at which the object was created. Measured in seconds since the Unix epoch.
- """
- created: Int!
-
- """
- Three-letter [ISO currency code](https://www.iso.org/iso-4217-currency-codes.html), in lowercase. Must be a [supported currency](https://stripe.com/docs/currencies).
- """
- currency: String!
-
- """ID of the application fee that was refunded."""
- fee: StripeApplicationFee!
-
- """Unique identifier for the object."""
- id: String!
-
- """
- Set of key-value pairs that you can attach to an object. This can be useful for storing additional information about the object in a structured format.
- """
- metadata: String!
-
- """
- String representing the object's type. Objects of the same type share the same value.
- """
- object: StripeFeeRefundObjectEnum!
-}
-
-""""""
-type StripeApplicationFeeRefunds {
- """"""
- data: [StripeFeeRefund!]!
-
- """
- True if this list has another page of items after this one that can be fetched.
- """
- hasMore: Boolean!
-
- """
- String representing the object's type. Objects of the same type share the same value. Always has the value `list`.
- """
- object: StripeApplicationFeeRefundsObjectEnum!
-
- """The URL where this list can be accessed."""
- url: String!
-}
-
-enum StripeApplicationFeeObjectEnum {
- application_fee
-}
-
-""""""
-type StripeApplicationFee {
- """
- String representing the object's type. Objects of the same type share the same value.
- """
- object: StripeApplicationFeeObjectEnum!
-
- """
- Balance transaction that describes the impact of this collected application fee on your account balance (not including refunds).
- """
- balanceTransaction: StripeBalanceTransaction
-
- """
- Time at which the object was created. Measured in seconds since the Unix epoch.
- """
- created: Int!
-
- """
- Three-letter [ISO currency code](https://www.iso.org/iso-4217-currency-codes.html), in lowercase. Must be a [supported currency](https://stripe.com/docs/currencies).
- """
- currency: String!
-
- """Unique identifier for the object."""
- id: String!
-
- """ID of the charge that the application fee was taken from."""
- charge: StripeCharge!
-
- """ID of the Connect application that earned the fee."""
- application: StripeApplication!
-
- """
- ID of the corresponding charge on the platform account, if this fee was the result of a charge using the `destination` parameter.
- """
- originatingTransaction: StripeCharge
-
- """A list of refunds that have been applied to the fee."""
- refunds: StripeApplicationFeeRefunds!
-
- """ID of the Stripe account this fee was taken from."""
- account: StripeAccount!
-
- """
- Whether the fee has been fully refunded. If the fee is only partially refunded, this attribute will still be false.
- """
- refunded: Boolean!
-
- """
- Has the value `true` if the object exists in live mode or the value `false` if the object exists in test mode.
- """
- livemode: Boolean!
-
- """Amount earned, in %s."""
- amount: Int!
-
- """
- Amount in %s refunded (can be less than the amount attribute on the fee if a partial refund was issued)
- """
- amountRefunded: Int!
-}
-
-union StripeChargeReviewUnion = StripeReview
-
-union StripePaymentIntentReviewUnion = StripeReview
-
-""""""
-type StripeRadarReviewResourceSession {
- """The browser used in this browser session (e.g., `Chrome`)."""
- browser: String
-
- """
- Information about the device used for the browser session (e.g., `Samsung SM-G930T`).
- """
- device: String
-
- """The platform for the browser session (e.g., `Macintosh`)."""
- platform: String
-
- """The version for the browser session (e.g., `61.0.3163.100`)."""
- version: String
-}
-
-""""""
-type StripeRadarReviewResourceLocation {
- """The city where the payment originated."""
- city: String
-
- """
- Two-letter ISO code representing the country where the payment originated.
- """
- country: String
-
- """The geographic latitude where the payment originated."""
- latitude: Float
-
- """The geographic longitude where the payment originated."""
- longitude: Float
-
- """The state/county/province/region where the payment originated."""
- region: String
-}
-
-enum StripeReviewOpenedReasonEnum {
- manual
- rule
-}
-
-union StripeInvoicePaymentIntentUnion = StripePaymentIntent
-
-union StripeReviewPaymentIntentUnion = StripePaymentIntent
-
-union StripeCheckoutSessionPaymentIntentUnion = StripePaymentIntent
-
-enum StripePaymentIntentCancellationReasonEnum {
- abandoned
- automatic
- duplicate
- failed_invoice
- fraudulent
- requested_by_customer
- void_invoice
-}
-
-enum StripePaymentIntentCaptureMethodEnum {
- automatic
- manual
-}
-
-enum StripePaymentIntentStatusEnum {
- canceled
- processing
- requires_action
- requires_capture
- requires_confirmation
- requires_payment_method
- succeeded
-}
-
-enum StripePaymentIntentConfirmationMethodEnum {
- automatic
- manual
-}
-
-enum StripePaymentIntentChargesObjectEnum {
- list
-}
-
-""""""
-type StripePaymentIntentCharges {
- """
- This list only contains the latest charge, even if there were previously multiple unsuccessful charges. To view all previous charges for a PaymentIntent, you can filter the charges list using the `payment_intent` [parameter](https://stripe.com/docs/api/charges/list#list_charges-payment_intent).
- """
- data: [StripeCharge!]!
-
- """
- True if this list has another page of items after this one that can be fetched.
- """
- hasMore: Boolean!
-
- """
- String representing the object's type. Objects of the same type share the same value. Always has the value `list`.
- """
- object: StripePaymentIntentChargesObjectEnum!
-
- """The URL where this list can be accessed."""
- url: String!
-}
-
-union StripeChargeInvoiceUnion = StripeInvoice
-
-union StripeCustomerBalanceTransactionInvoiceUnion = StripeInvoice
-
-union StripePaymentIntentInvoiceUnion = StripeInvoice
-
-union StripeCreditNoteInvoiceUnion = StripeInvoice
-
-union StripeSubscriptionLatestInvoiceUnion = StripeInvoice
-
-union StripeInvoiceitemInvoiceUnion = StripeInvoice
-
-union StripeInvoiceItemInvoiceUnion = StripeInvoice
-
-enum StripeInvoiceCustomerTaxExemptEnum {
- exempt
- none
- reverse
-}
-
-enum StripeInvoiceCollectionMethodEnum {
- charge_automatically
- send_invoice
-}
-
-enum StripeInvoiceStatusEnum {
- deleted
- draft
- open
- paid
- uncollectible
- void
-}
-
-enum StripeInvoicesResourceInvoiceTaxIdTypeEnum {
- au_abn
- ch_vat
- eu_vat
- in_gst
- no_vat
- nz_gst
- unknown
- za_vat
-}
-
-""""""
-type StripeInvoicesResourceInvoiceTaxId {
- """
- The type of the tax ID, one of `au_abn`, `ch_vat`, `eu_vat`, `in_gst`, `no_vat`, `nz_gst`, `unknown`, or `za_vat`
- """
- type: StripeInvoicesResourceInvoiceTaxIdTypeEnum!
-
- """The value of the tax ID."""
- value: String
-}
-
-""""""
-type StripeInvoicesStatusTransitions {
- """The time that the invoice draft was finalized."""
- finalizedAt: Int
-
- """The time that the invoice was marked uncollectible."""
- markedUncollectibleAt: Int
-
- """The time that the invoice was paid."""
- paidAt: Int
-
- """The time that the invoice was voided."""
- voidedAt: Int
-}
-
-enum StripeInvoiceLinesObjectEnum {
- list
-}
-
-""""""
-type StripeInvoiceLineItemPeriod {
- """End of the line item's billing period"""
- end: Int!
-
- """Start of the line item's billing period"""
- start: Int!
-}
-
-enum StripeLineItemTypeEnum {
- invoiceitem
- subscription
-}
-
-""""""
-type StripeInvoiceTaxAmount {
- """The amount, in %s, of the tax."""
- amount: Int!
-
- """Whether this tax amount is inclusive or exclusive."""
- inclusive: Boolean!
-
- """The tax rate that was applied to get this tax amount."""
- taxRate: StripeTaxRate!
-}
-
-enum StripeLineItemObjectEnum {
- line_item
-}
-
-""""""
-type StripeLineItem {
- """
- For prorations this indicates whether Stripe automatically grouped multiple related debit and credit line items into a single combined line item.
- """
- unifiedProration: Boolean
-
- """
- String representing the object's type. Objects of the same type share the same value.
- """
- object: StripeLineItemObjectEnum!
-
- """"""
- invoiceItem: String
-
- """
- Three-letter [ISO currency code](https://www.iso.org/iso-4217-currency-codes.html), in lowercase. Must be a [supported currency](https://stripe.com/docs/currencies).
- """
- currency: String!
-
- """
- If true, discounts will apply to this line item. Always false for prorations.
- """
- discountable: Boolean!
-
- """Unique identifier for the object."""
- id: String!
-
- """The tax rates which apply to the line item."""
- taxRates: [StripeTaxRate!]
-
- """
- The quantity of the subscription, if the line item is a subscription or a proration.
- """
- quantity: Int
-
- """The subscription that the invoice item pertains to, if any."""
- subscription: String
-
- """
- Set of key-value pairs that you can attach to an object. This can be useful for storing additional information about the object in a structured format. Note that for line items with `type=subscription` this will reflect the metadata of the subscription that caused the line item to be created.
- """
- metadata: String!
-
- """Whether this is a proration."""
- proration: Boolean!
-
- """
- The subscription item that generated this invoice item. Left empty if the line item is not an explicit result of a subscription.
- """
- subscriptionItem: String
-
- """The amount of tax calculated per tax rate for this line item"""
- taxAmounts: [StripeInvoiceTaxAmount!]
-
- """Whether this is a test line item."""
- livemode: Boolean!
-
- """
- A string identifying the type of the source of this line item, either an `invoiceitem` or a `subscription`.
- """
- type: StripeLineItemTypeEnum!
-
- """The amount, in %s."""
- amount: Int!
-
- """
- The plan of the subscription, if the line item is a subscription or a proration.
- """
- plan: StripePlan
-
- """"""
- period: StripeInvoiceLineItemPeriod!
-
- """
- An arbitrary string attached to the object. Often useful for displaying to users.
- """
- description: String
-}
-
-""""""
-type StripeInvoiceLines {
- """"""
- data: [StripeLineItem!]!
-
- """
- True if this list has another page of items after this one that can be fetched.
- """
- hasMore: Boolean!
-
- """
- String representing the object's type. Objects of the same type share the same value. Always has the value `list`.
- """
- object: StripeInvoiceLinesObjectEnum!
-
- """The URL where this list can be accessed."""
- url: String!
-}
-
-union StripeSubscriptionSchedulePhaseConfigurationDefaultPaymentMethodUnion = StripePaymentMethod
-
-union StripeInvoiceSettingCustomerSettingDefaultPaymentMethodUnion = StripePaymentMethod
-
-union StripeSubscriptionScheduleDefaultPaymentMethodUnion = StripePaymentMethod
-
-union StripeSubscriptionDefaultPaymentMethodUnion = StripePaymentMethod
-
-union StripePaymentIntentPaymentMethodUnion = StripePaymentMethod
-
-union StripeSetupIntentPaymentMethodUnion = StripePaymentMethod
-
-union StripeInvoiceDefaultPaymentMethodUnion = StripePaymentMethod
-
-""""""
-type StripeBillingDetails {
- """Billing address."""
- address: StripeAddress
-
- """Email address."""
- email: String
-
- """Full name."""
- name: String
-
- """Billing phone number (including extension)."""
- phone: String
-}
-
-union StripePaymentMethodCustomerUnion = StripeCustomer
-
-union StripeCheckoutSessionCustomerUnion = StripeCustomer
-
-union StripeTaxIdCustomerUnion = StripeCustomer
-
-union StripeCreditNoteCustomerUnion = StripeCustomer
-
-union StripeCustomerBalanceTransactionCustomerUnion = StripeCustomer
-
-""""""
-type StripePaymentIntentsEdge {
- """node"""
- node: StripePaymentIntent!
-
- """cursor"""
- cursor: String!
-}
-
-""""""
-type StripePaymentIntentsConnection {
- """cursor"""
- cursor: String
-
- """nodes"""
- nodes: [StripePaymentIntent!]!
-
- """edges"""
- edges: [StripePaymentIntentsEdge!]!
-
- """pageInfo"""
- pageInfo: PageInfo!
-}
-
-""""""
-type StripeInvoicesEdge {
- """node"""
- node: StripeInvoice!
-
- """cursor"""
- cursor: String
-}
-
-""""""
-type StripeInvoicesConnection {
- """cursor"""
- cursor: String
-
- """nodes"""
- nodes: [StripeInvoice!]!
-
- """edges"""
- edges: [StripeInvoicesEdge!]!
-
- """pageInfo"""
- pageInfo: PageInfo!
-}
-
-""""""
-type StripeChargesEdge {
- """node"""
- node: StripeCharge!
-
- """cursor"""
- cursor: String!
-}
-
-""""""
-type StripeChargesConnection {
- """cursor"""
- cursor: String
-
- """nodes"""
- nodes: [StripeCharge!]!
-
- """edges"""
- edges: [StripeChargesEdge!]!
-
- """pageInfo"""
- pageInfo: PageInfo!
-}
-
-enum StripeCustomerSubscriptionsObjectEnum {
- list
-}
-
-union StripeCheckoutSessionSubscriptionUnion = StripeSubscription
-
-union StripeInvoiceSubscriptionUnion = StripeSubscription
-
-union StripeInvoiceitemSubscriptionUnion = StripeSubscription
-
-union StripeSubscriptionScheduleSubscriptionUnion = StripeSubscription
-
-union StripeInvoiceItemSubscriptionUnion = StripeSubscription
-
-enum StripeSubscriptionCollectionMethodEnum {
- charge_automatically
- send_invoice
-}
-
-enum StripeSubscriptionItemsObjectEnum {
- list
-}
-
-enum StripeSubscriptionItemObjectEnum {
- subscription_item
-}
-
-""""""
-type StripeSubscriptionItem {
- """
- String representing the object's type. Objects of the same type share the same value.
- """
- object: StripeSubscriptionItemObjectEnum!
-
- """
- Time at which the object was created. Measured in seconds since the Unix epoch.
- """
- created: Int!
-
- """Unique identifier for the object."""
- id: String!
-
- """
- The tax rates which apply to this `subscription_item`. When set, the `default_tax_rates` on the subscription do not apply to this `subscription_item`.
- """
- taxRates: [StripeTaxRate!]
-
- """
- The [quantity](https://stripe.com/docs/subscriptions/quantities) of the plan to which the customer should be subscribed.
- """
- quantity: Int
-
- """The `subscription` this `subscription_item` belongs to."""
- subscription: String!
-
- """
- Set of key-value pairs that you can attach to an object. This can be useful for storing additional information about the object in a structured format.
- """
- metadata: String!
-
- """"""
- plan: StripePlan!
-
- """
- Define thresholds at which an invoice will be sent, and the related subscription advanced to a new billing period
- """
- billingThresholds: StripeSubscriptionItemBillingThresholds
-}
-
-""""""
-type StripeSubscriptionItems {
- """"""
- data: [StripeSubscriptionItem!]!
-
- """
- True if this list has another page of items after this one that can be fetched.
- """
- hasMore: Boolean!
-
- """
- String representing the object's type. Objects of the same type share the same value. Always has the value `list`.
- """
- object: StripeSubscriptionItemsObjectEnum!
-
- """The URL where this list can be accessed."""
- url: String!
-}
-
-union StripeSubscriptionScheduleUnion = StripeSubscriptionSchedule
-
-enum StripeSubscriptionStatusEnum {
- active
- canceled
- incomplete
- incomplete_expired
- past_due
- trialing
- unpaid
-}
-
-""""""
-type StripeSubscriptionsEdge {
- """node"""
- node: StripeSubscription!
-
- """cursor"""
- cursor: String!
-}
-
-""""""
-type StripeSubscriptionsConnection {
- """cursor"""
- cursor: String
-
- """nodes"""
- nodes: [StripeSubscription!]!
-
- """edges"""
- edges: [StripeSubscriptionsEdge!]!
-
- """pageInfo"""
- pageInfo: PageInfo!
-}
-
-enum StripeTransformUsageRoundEnum {
- down
- up
-}
-
-""""""
-type StripeTransformUsage {
- """Divide usage by this number."""
- divideBy: Int!
-
- """After division, either round the result `up` or `down`."""
- round: StripeTransformUsageRoundEnum!
-}
-
-""""""
-type StripePlanTier {
- """Price for the entire tier."""
- flatAmount: Int
-
- """
- Same as `flat_amount`, but contains a decimal value with at most 12 decimal places.
- """
- flatAmountDecimal: String
-
- """Per unit price for units relevant to the tier."""
- unitAmount: Int
-
- """
- Same as `unit_amount`, but contains a decimal value with at most 12 decimal places.
- """
- unitAmountDecimal: String
-
- """Up to and including to this quantity will be contained in the tier."""
- upTo: Int
-}
-
-enum StripePlanBillingSchemeEnum {
- per_unit
- tiered
-}
-
-enum StripePlanAggregateUsageEnum {
- last_during_period
- last_ever
- max
- sum
-}
-
-enum StripePlanIntervalEnum {
- day
- month
- week
- year
-}
-
-union StripeSkuProductUnion = StripeProduct
-
-enum StripeProductTypeEnum {
- good
- service
-}
-
-""""""
-type StripePackageDimensions {
- """Height, in inches."""
- height: Float!
-
- """Length, in inches."""
- length: Float!
-
- """Weight, in ounces."""
- weight: Float!
-
- """Width, in inches."""
- width: Float!
-}
-
-enum StripeProductObjectEnum {
- product
-}
-
-""""""
-type StripeProduct {
- """
- String representing the object's type. Objects of the same type share the same value.
- """
- object: StripeProductObjectEnum!
-
- """
- Time at which the object was created. Measured in seconds since the Unix epoch.
- """
- created: Int!
-
- """
- A URL of a publicly-accessible webpage for this product. Only applicable to products of `type=good`.
- """
- url: String
-
- """
- Whether this product is a shipped good. Only applicable to products of `type=good`.
- """
- shippable: Boolean
-
- """
- The dimensions of this product for shipping purposes. A SKU associated with this product can override this value by having its own `package_dimensions`. Only applicable to products of `type=good`.
- """
- packageDimensions: StripePackageDimensions
-
- """
- A label that represents units of this product, such as seat(s), in Stripe and on customers’ receipts and invoices. Only available on products of type=`service`.
- """
- unitLabel: String
-
- """Unique identifier for the object."""
- id: String!
-
- """
- The product's name, meant to be displayable to the customer. Applicable to both `service` and `good` types.
- """
- name: String!
-
- """
- An array of connect application identifiers that cannot purchase this product. Only applicable to products of `type=good`.
- """
- deactivateOn: [String!]
-
- """
- Set of key-value pairs that you can attach to an object. This can be useful for storing additional information about the object in a structured format.
- """
- metadata: String!
-
- """
- A list of up to 5 attributes that each SKU can provide values for (e.g., `["color", "size"]`). Only applicable to products of `type=good`.
- """
- attributes: [String!]
-
- """
- Extra information about a product which will appear on your customer's credit card statement. In the case that multiple products are billed at once, the first statement descriptor will be used. Only available on products of type=`service`.
- """
- statementDescriptor: String
-
- """
- A list of up to 8 URLs of images for this product, meant to be displayable to the customer. Only applicable to products of `type=good`.
- """
- images: [String!]!
-
- """
- Has the value `true` if the object exists in live mode or the value `false` if the object exists in test mode.
- """
- livemode: Boolean!
-
- """
- The type of the product. The product is either of type `good`, which is eligible for use with Orders and SKUs, or `service`, which is eligible for use with Subscriptions and Plans.
- """
- type: StripeProductTypeEnum!
-
- """"""
- updated: Int!
-
- """Whether the product is currently available for purchase."""
- active: Boolean
-
- """
- A short one-line description of the product, meant to be displayable to the customer. Only applicable to products of `type=good`.
- """
- caption: String
-
- """
- The product's description, meant to be displayable to the customer. Only applicable to products of `type=good`.
- """
- description: String
-}
-
-enum StripeDeletedProductObjectEnum {
- product
-}
-
-""""""
-type StripeDeletedProduct {
- """Always true for a deleted object"""
- deleted: Boolean!
-
- """Unique identifier for the object."""
- id: String!
-
- """
- String representing the object's type. Objects of the same type share the same value.
- """
- object: StripeDeletedProductObjectEnum!
-}
-
-union StripePlanProductUnion = StripeDeletedProduct | StripeProduct
-
-enum StripePlanUsageTypeEnum {
- licensed
- metered
-}
-
-enum StripePlanTiersModeEnum {
- graduated
- volume
-}
-
-enum StripePlanObjectEnum {
- plan
-}
-
-""""""
-type StripePlan {
- """
- String representing the object's type. Objects of the same type share the same value.
- """
- object: StripePlanObjectEnum!
-
- """
- Time at which the object was created. Measured in seconds since the Unix epoch.
- """
- created: Int!
-
- """A brief description of the plan, hidden from customers."""
- nickname: String
-
- """
- Default number of trial days when subscribing a customer to this plan using [`trial_from_plan=true`](https://stripe.com/docs/api#create_subscription-trial_from_plan).
- """
- trialPeriodDays: Int
-
- """
- Three-letter [ISO currency code](https://www.iso.org/iso-4217-currency-codes.html), in lowercase. Must be a [supported currency](https://stripe.com/docs/currencies).
- """
- currency: String!
-
- """
- Defines if the tiering price should be `graduated` or `volume` based. In `volume`-based tiering, the maximum quantity within a period determines the per unit price, in `graduated` tiering pricing can successively change as the quantity grows.
- """
- tiersMode: StripePlanTiersModeEnum
-
- """Unique identifier for the object."""
- id: String!
-
- """
- Configures how the quantity per period should be determined, can be either `metered` or `licensed`. `licensed` will automatically bill the `quantity` set for a plan when adding it to a subscription, `metered` will aggregate the total usage based on usage records. Defaults to `licensed`.
- """
- usageType: StripePlanUsageTypeEnum!
-
- """The product whose pricing this plan determines."""
- product: StripePlanProductUnion
-
- """
- One of `day`, `week`, `month` or `year`. The frequency with which a subscription should be billed.
- """
- interval: StripePlanIntervalEnum!
-
- """
- The number of intervals (specified in the `interval` property) between subscription billings. For example, `interval=month` and `interval_count=3` bills every 3 months.
- """
- intervalCount: Int!
-
- """
- Same as `amount`, but contains a decimal value with at most 12 decimal places.
- """
- amountDecimal: String
-
- """
- Set of key-value pairs that you can attach to an object. This can be useful for storing additional information about the object in a structured format.
- """
- metadata: String!
-
- """
- Specifies a usage aggregation strategy for plans of `usage_type=metered`. Allowed values are `sum` for summing up all usage during a period, `last_during_period` for picking the last usage record reported within a period, `last_ever` for picking the last usage record ever (across period bounds) or `max` which picks the usage record with the maximum reported usage during a period. Defaults to `sum`.
- """
- aggregateUsage: StripePlanAggregateUsageEnum
-
- """
- Has the value `true` if the object exists in live mode or the value `false` if the object exists in test mode.
- """
- livemode: Boolean!
-
- """The amount in %s to be charged on the interval specified."""
- amount: Int
-
- """
- Describes how to compute the price per period. Either `per_unit` or `tiered`. `per_unit` indicates that the fixed amount (specified in `amount`) will be charged per unit in `quantity` (for plans with `usage_type=licensed`), or per unit of total usage (for plans with `usage_type=metered`). `tiered` indicates that the unit pricing will be computed using a tiering strategy as defined using the `tiers` and `tiers_mode` attributes.
- """
- billingScheme: StripePlanBillingSchemeEnum
-
- """
- Each element represents a pricing tier. This parameter requires `billing_scheme` to be set to `tiered`. See also the documentation for `billing_scheme`.
- """
- tiers: [StripePlanTier!]
-
- """Whether the plan is currently available for new subscriptions."""
- active: Boolean!
-
- """
- Apply a transformation to the reported usage or set quantity before computing the billed price. Cannot be combined with `tiers`.
- """
- transformUsage: StripeTransformUsage
- subscriptions(status: StripeSubscriptionStatusEnum, after: String, before: String, first: Int): StripeSubscriptionsConnection
-}
-
-enum StripeDeletedPlanObjectEnum {
- plan
-}
-
-""""""
-type StripeDeletedPlan {
- """Always true for a deleted object"""
- deleted: Boolean!
-
- """Unique identifier for the object."""
- id: String!
-
- """
- String representing the object's type. Objects of the same type share the same value.
- """
- object: StripeDeletedPlanObjectEnum!
-}
-
-union StripeSubscriptionScheduleConfigurationItemPlanUnion = StripeDeletedPlan | StripePlan
-
-""""""
-type StripeSubscriptionItemBillingThresholds {
- """Usage threshold that triggers the subscription to create an invoice"""
- usageGte: Int
-}
-
-""""""
-type StripeSubscriptionScheduleConfigurationItem {
- """
- Define thresholds at which an invoice will be sent, and the related subscription advanced to a new billing period
- """
- billingThresholds: StripeSubscriptionItemBillingThresholds
-
- """ID of the plan to which the customer should be subscribed."""
- plan: StripeSubscriptionScheduleConfigurationItemPlanUnion!
-
- """Quantity of the plan to which the customer should be subscribed."""
- quantity: Int
-
- """
- The tax rates which apply to this `phase_item`. When set, the `default_tax_rates` on the phase do not apply to this `phase_item`.
- """
- taxRates: [StripeTaxRate!]
-}
-
-union StripeInvoiceTaxAmountTaxRateUnion = StripeTaxRate
-
-enum StripeTaxRateObjectEnum {
- tax_rate
-}
-
-""""""
-type StripeTaxRate {
- """This represents the tax rate percent out of 100."""
- percentage: Float!
-
- """
- String representing the object's type. Objects of the same type share the same value.
- """
- object: StripeTaxRateObjectEnum!
-
- """
- Time at which the object was created. Measured in seconds since the Unix epoch.
- """
- created: Int!
-
- """This specifies if the tax rate is inclusive or exclusive."""
- inclusive: Boolean!
-
- """Unique identifier for the object."""
- id: String!
-
- """
- The display name of the tax rates as it will appear to your customer on their receipt email, PDF, and the hosted invoice page.
- """
- displayName: String!
-
- """
- Set of key-value pairs that you can attach to an object. This can be useful for storing additional information about the object in a structured format.
- """
- metadata: String!
-
- """The jurisdiction for the tax rate."""
- jurisdiction: String
-
- """
- Has the value `true` if the object exists in live mode or the value `false` if the object exists in test mode.
- """
- livemode: Boolean!
-
- """
- Defaults to `true`. When set to `false`, this tax rate cannot be applied to objects in the API, but will still be applied to subscriptions and invoices that already have it set.
- """
- active: Boolean!
-
- """
- An arbitrary string attached to the tax rate for your internal use only. It will not be visible to your customers.
- """
- description: String
-}
-
-enum StripeSubscriptionSchedulePhaseConfigurationCollectionMethodEnum {
- charge_automatically
- send_invoice
-}
-
-""""""
-type StripeSubscriptionSchedulePhaseConfiguration {
- """
- ID of the coupon to use during this phase of the subscription schedule.
- """
- coupon: StripeCoupon
-
- """
- ID of the default payment method for the subscription schedule. It must belong to the customer associated with the subscription schedule. If not set, invoices will use the default payment method in the customer's invoice settings.
- """
- defaultPaymentMethod: StripePaymentMethod
-
- """The end of this phase of the subscription schedule."""
- endDate: Int!
-
- """When the trial ends within the phase."""
- trialEnd: Int
-
- """
- Either `charge_automatically`, or `send_invoice`. When charging automatically, Stripe will attempt to pay the underlying subscription at the end of each billing cycle using the default source attached to the customer. When sending an invoice, Stripe will email your customer an invoice with payment instructions.
- """
- collectionMethod: StripeSubscriptionSchedulePhaseConfigurationCollectionMethodEnum
-
- """
- A non-negative decimal between 0 and 100, with at most two decimal places. This represents the percentage of the subscription invoice subtotal that will be transferred to the application owner's Stripe account during this phase of the schedule.
- """
- applicationFeePercent: Float
-
- """"""
- defaultTaxRates: [StripeTaxRate!]
-
- """The start of this phase of the subscription schedule."""
- startDate: Int!
-
- """Plans to subscribe during this phase of the subscription schedule."""
- plans: [StripeSubscriptionScheduleConfigurationItem!]!
-
- """The subscription schedule's default invoice settings."""
- invoiceSettings: StripeInvoiceSettingSubscriptionScheduleSetting
-
- """
- If provided, each invoice created during this phase of the subscription schedule will apply the tax rate, increasing the amount billed to the customer.
- """
- taxPercent: Float
-
- """
- Define thresholds at which an invoice will be sent, and the subscription advanced to a new billing period
- """
- billingThresholds: StripeSubscriptionBillingThresholds
-}
-
-""""""
-type StripeSubscriptionScheduleCurrentPhase {
- """"""
- endDate: Int!
-
- """"""
- startDate: Int!
-}
-
-""""""
-type StripeSubscriptionBillingThresholds {
- """Monetary threshold that triggers the subscription to create an invoice"""
- amountGte: Int
-
- """
- Indicates if the `billing_cycle_anchor` should be reset when a threshold is reached. If true, `billing_cycle_anchor` will be updated to the date/time the threshold was last reached; otherwise, the value will remain unchanged. This value may not be `true` if the subscription contains items with plans that have `aggregate_usage=last_ever`.
- """
- resetBillingCycleAnchor: Boolean
-}
-
-""""""
-type StripeInvoiceSettingSubscriptionScheduleSetting {
- """
- Number of days within which a customer must pay invoices generated by this subscription schedule. This value will be `null` for subscription schedules where `billing=charge_automatically`.
- """
- daysUntilDue: Int
-}
-
-enum StripeSubscriptionScheduleEndBehaviorEnum {
- cancel
- none
- release
- renew
-}
-
-enum StripeSubscriptionScheduleCollectionMethodEnum {
- charge_automatically
- send_invoice
-}
-
-enum StripeSubscriptionScheduleStatusEnum {
- active
- canceled
- completed
- not_started
- released
-}
-
-enum StripeSubscriptionScheduleObjectEnum {
- subscription_schedule
-}
-
-""""""
-type StripeSubscriptionSchedule {
- """
- Time at which the subscription schedule was released. Measured in seconds since the Unix epoch.
- """
- releasedAt: Int
-
- """
- String representing the object's type. Objects of the same type share the same value.
- """
- object: StripeSubscriptionScheduleObjectEnum!
-
- """
- Time at which the object was created. Measured in seconds since the Unix epoch.
- """
- created: Int!
-
- """
- ID of the default payment method for the subscription schedule. It must belong to the customer associated with the subscription schedule. If not set, invoices will use the default payment method in the customer's invoice settings.
- """
- defaultPaymentMethod: StripePaymentMethod
-
- """
- ID of the subscription once managed by the subscription schedule (if it is released).
- """
- releasedSubscription: String
-
- """Unique identifier for the object."""
- id: String!
-
- """
- Possible values are `not_started`, `active`, `completed`, `released`, and `canceled`.
- """
- status: StripeSubscriptionScheduleStatusEnum!
-
- """ID of the subscription managed by the subscription schedule."""
- subscription: StripeSubscription
-
- """
- Either `charge_automatically`, or `send_invoice`. When charging automatically, Stripe will attempt to pay the underlying subscription at the end of each billing cycle using the default source attached to the customer. When sending an invoice, Stripe will email your customer an invoice with payment instructions.
- """
- collectionMethod: StripeSubscriptionScheduleCollectionMethodEnum
-
- """
- Behavior of the subscription schedule and underlying subscription when it ends.
- """
- endBehavior: StripeSubscriptionScheduleEndBehaviorEnum!
-
- """
- Set of key-value pairs that you can attach to an object. This can be useful for storing additional information about the object in a structured format.
- """
- metadata: String
-
- """
- Has the value `true` if the object exists in live mode or the value `false` if the object exists in test mode.
- """
- livemode: Boolean!
-
- """ID of the customer who owns the subscription schedule."""
- customer: StripeSubscriptionScheduleCustomerUnion!
-
- """The subscription schedule's default invoice settings."""
- invoiceSettings: StripeInvoiceSettingSubscriptionScheduleSetting
-
- """
- Time at which the subscription schedule was completed. Measured in seconds since the Unix epoch.
- """
- completedAt: Int
-
- """
- Define thresholds at which an invoice will be sent, and the subscription advanced to a new billing period
- """
- billingThresholds: StripeSubscriptionBillingThresholds
-
- """
- Object representing the start and end dates for the current phase of the subscription schedule, if it is `active`.
- """
- currentPhase: StripeSubscriptionScheduleCurrentPhase
-
- """Configuration for the subscription schedule's phases."""
- phases: [StripeSubscriptionSchedulePhaseConfiguration!]!
-
- """
- Time at which the subscription schedule was canceled. Measured in seconds since the Unix epoch.
- """
- canceledAt: Int
-}
-
-union StripeCheckoutSessionSetupIntentUnion = StripeSetupIntent
-
-union StripeSubscriptionPendingSetupIntentUnion = StripeSetupIntent
-
-enum StripeSetupIntentCancellationReasonEnum {
- abandoned
- duplicate
- requested_by_customer
-}
-
-enum StripeSetupIntentStatusEnum {
- canceled
- processing
- requires_action
- requires_confirmation
- requires_payment_method
- succeeded
-}
-
-union StripePaymentIntentApplicationUnion = StripeApplication
-
-union StripeChargeApplicationUnion = StripeApplication
-
-union StripeSetupIntentApplicationUnion = StripeApplication
-
-union StripeApplicationFeeApplicationUnion = StripeApplication
-
-enum StripeApplicationObjectEnum {
- application
-}
-
-""""""
-type StripeApplication {
- """Unique identifier for the object."""
- id: String!
-
- """The name of the application."""
- name: String
-
- """
- String representing the object's type. Objects of the same type share the same value.
- """
- object: StripeApplicationObjectEnum!
-}
-
-enum StripeApiErrorsTypeEnum {
- api_connection_error
- api_error
- authentication_error
- card_error
- idempotency_error
- invalid_request_error
- rate_limit_error
-}
-
-""""""
-type StripeApiErrors {
- """
- A human-readable message providing more details about the error. For card errors, these messages can be shown to your users.
- """
- message: String
-
- """"""
- paymentIntent: StripePaymentIntent
-
- """
- A URL to more information about the [error code](https://stripe.com/docs/error-codes) reported.
- """
- docUrl: String
-
- """"""
- paymentMethod: StripePaymentMethod
-
- """For card errors, the ID of the failed charge."""
- charge: String
-
- """
- If the error is parameter-specific, the parameter related to the error. For example, you can use this to display a message near the correct form field.
- """
- param: String
-
- """
- For card errors resulting from a card issuer decline, a short string indicating the [card issuer's reason for the decline](https://stripe.com/docs/declines#issuer-declines) if they provide one.
- """
- declineCode: String
-
- """The source object for errors returned on a request involving a source."""
- source: StripeApiErrorsSourceUnion
-
- """
- The type of error returned. One of `api_connection_error`, `api_error`, `authentication_error`, `card_error`, `idempotency_error`, `invalid_request_error`, or `rate_limit_error`
- """
- type: StripeApiErrorsTypeEnum!
-
- """"""
- setupIntent: StripeSetupIntent
-
- """
- For some errors that could be handled programmatically, a short string indicating the [error code](https://stripe.com/docs/error-codes) reported.
- """
- code: String
-}
-
-enum StripeSetupIntentPaymentMethodOptionsCardRequestThreeDSecureEnum {
- any
- automatic
- challenge_only
-}
-
-""""""
-type StripeSetupIntentPaymentMethodOptionsCard {
- """
- We strongly recommend that you rely on our SCA Engine to automatically prompt your customers for authentication based on risk level and [other requirements](https://stripe.com/docs/strong-customer-authentication). However, if you wish to request 3D Secure based on logic from your own fraud engine, provide this option. Permitted values include: `automatic` or `any`. If not provided, defaults to `automatic`. Read our guide on [manually requesting 3D Secure](https://stripe.com/docs/payments/3d-secure#manual-three-ds) for more information on how this configuration interacts with Radar and our SCA Engine.
- """
- requestThreeDSecure: StripeSetupIntentPaymentMethodOptionsCardRequestThreeDSecureEnum
-}
-
-""""""
-type StripeSetupIntentPaymentMethodOptions {
- """"""
- card: StripeSetupIntentPaymentMethodOptionsCard
-}
-
-enum StripeSetupIntentObjectEnum {
- setup_intent
-}
-
-""""""
-type StripeSetupIntent {
- """The account (if any) for which the setup is intended."""
- onBehalfOf: StripeAccount
-
- """
- String representing the object's type. Objects of the same type share the same value.
- """
- object: StripeSetupIntentObjectEnum!
-
- """
- Indicates how the payment method is intended to be used in the future.
-
- Use `on_session` if you intend to only reuse the payment method when the customer is in your checkout flow. Use `off_session` if your customer may or may not be in your checkout flow. If not provided, this value defaults to `off_session`.
- """
- usage: String!
-
- """
- Time at which the object was created. Measured in seconds since the Unix epoch.
- """
- created: Int!
-
- """Payment-method-specific configuration for this SetupIntent."""
- paymentMethodOptions: StripeSetupIntentPaymentMethodOptions
-
- """ID of the payment method used with this SetupIntent."""
- paymentMethod: StripePaymentMethod
-
- """Unique identifier for the object."""
- id: String!
-
- """
- The list of payment method types (e.g. card) that this SetupIntent is allowed to set up.
- """
- paymentMethodTypes: [String!]!
-
- """The error encountered in the previous SetupIntent confirmation."""
- lastSetupError: StripeApiErrors
-
- """ID of the Connect application that created the SetupIntent."""
- application: StripeApplication
-
- """
- [Status](https://stripe.com/docs/payments/intents#intent-statuses) of this SetupIntent, one of `requires_payment_method`, `requires_confirmation`, `requires_action`, `processing`, `canceled`, or `succeeded`.
- """
- status: StripeSetupIntentStatusEnum!
-
- """
- Set of key-value pairs that you can attach to an object. This can be useful for storing additional information about the object in a structured format.
- """
- metadata: String
-
- """
- Reason for cancellation of this SetupIntent, one of `abandoned`, `requested_by_customer`, or `duplicate`.
- """
- cancellationReason: StripeSetupIntentCancellationReasonEnum
-
- """
- Has the value `true` if the object exists in live mode or the value `false` if the object exists in test mode.
- """
- livemode: Boolean!
-
- """
- ID of the Customer this SetupIntent belongs to, if one exists.
-
- If present, payment methods used with this SetupIntent can only be attached to this Customer, and payment methods attached to other Customers cannot be used with this SetupIntent.
- """
- customer: StripeSetupIntentCustomerUnion
-
- """
- The client secret of this SetupIntent. Used for client-side retrieval using a publishable key.
-
- The client secret can be used to complete payment setup from your frontend. It should not be stored, logged, embedded in URLs, or exposed to anyone other than the customer. Make sure that you have TLS enabled on any page that includes the client secret.
- """
- clientSecret: String
-
- """
- An arbitrary string attached to the object. Often useful for displaying to users.
- """
- description: String
-}
-
-enum StripeSubscriptionObjectEnum {
- subscription
-}
-
-""""""
-type StripeSubscription {
- """
- String representing the object's type. Objects of the same type share the same value.
- """
- object: StripeSubscriptionObjectEnum!
-
- """
- Time at which the object was created. Measured in seconds since the Unix epoch.
- """
- created: Int!
-
- """
- ID of the default payment method for the subscription. It must belong to the customer associated with the subscription. If not set, invoices will use the default payment method in the customer's invoice settings.
- """
- defaultPaymentMethod: StripePaymentMethod
-
- """
- Number of days a customer has to pay invoices generated by this subscription. This value will be `null` for subscriptions where `collection_method=charge_automatically`.
- """
- daysUntilDue: Int
-
- """
- Describes the current discount applied to this subscription, if there is one. When billing, a discount applied to a subscription overrides a discount applied on a customer-wide basis.
- """
- discount: StripeDiscount
-
- """
- If the subscription has been canceled with the `at_period_end` flag set to `true`, `cancel_at_period_end` on the subscription will be true. You can use this attribute to determine whether a subscription that has a status of active is scheduled to be canceled at the end of the current period.
- """
- cancelAtPeriodEnd: Boolean!
-
- """If the subscription has a trial, the end of that trial."""
- trialEnd: Int
-
- """If the subscription has a trial, the beginning of that trial."""
- trialStart: Int
-
- """
- You can use this [SetupIntent](https://stripe.com/docs/api/setup_intents) to collect user authentication when creating a subscription without immediate payment or updating a subscription's payment method, allowing you to optimize for off-session payments. Learn more in the [SCA Migration Guide](https://stripe.com/docs/billing/migration/strong-customer-authentication#scenario-2).
- """
- pendingSetupIntent: StripeSetupIntent
-
- """Unique identifier for the object."""
- id: String!
-
- """
- ID of the default payment source for the subscription. It must belong to the customer associated with the subscription and be in a chargeable state. If not set, defaults to the customer's default source.
- """
- defaultSource: StripeSubscriptionDefaultSourceUnion
-
- """If the subscription has ended, the date the subscription ended."""
- endedAt: Int
-
- """The schedule attached to the subscription"""
- schedule: StripeSubscriptionSchedule
-
- """
- The quantity of the plan to which the customer is subscribed. For example, if your plan is $10/user/month, and your customer has 5 users, you could pass 5 as the quantity to have the customer charged $50 (5 x $10) monthly. Only set if the subscription contains a single plan.
- """
- quantity: Int
-
- """List of subscription items, each with an attached plan."""
- items: StripeSubscriptionItems!
-
- """
- Possible values are `incomplete`, `incomplete_expired`, `trialing`, `active`, `past_due`, `canceled`, or `unpaid`.
-
- For `collection_method=charge_automatically` a subscription moves into `incomplete` if the initial payment attempt fails. A subscription in this state can only have metadata and default_source updated. Once the first invoice is paid, the subscription moves into an `active` state. If the first invoice is not paid within 23 hours, the subscription transitions to `incomplete_expired`. This is a terminal state, the open invoice will be voided and no further invoices will be generated.
-
- A subscription that is currently in a trial period is `trialing` and moves to `active` when the trial period is over.
-
- If subscription `collection_method=charge_automatically` it becomes `past_due` when payment to renew it fails and `canceled` or `unpaid` (depending on your subscriptions settings) when Stripe has exhausted all payment retry attempts.
-
- If subscription `collection_method=send_invoice` it becomes `past_due` when its invoice is not paid by the due date, and `canceled` or `unpaid` if it is still not paid by an additional deadline after that. Note that when a subscription has a status of `unpaid`, no subsequent invoices will be attempted (invoices will be created, but then immediately automatically closed). After receiving updated payment information from a customer, you may choose to reopen and pay their closed invoices.
- """
- status: StripeSubscriptionStatusEnum!
-
- """
- Either `charge_automatically`, or `send_invoice`. When charging automatically, Stripe will attempt to pay this subscription at the end of the cycle using the default source attached to the customer. When sending an invoice, Stripe will email your customer an invoice with payment instructions.
- """
- collectionMethod: StripeSubscriptionCollectionMethodEnum
-
- """
- Start of the current period that the subscription has been invoiced for.
- """
- currentPeriodStart: Int!
-
- """The most recent invoice this subscription has generated."""
- latestInvoice: StripeInvoice
-
- """
- A non-negative decimal between 0 and 100, with at most two decimal places. This represents the percentage of the subscription invoice subtotal that will be transferred to the application owner's Stripe account.
- """
- applicationFeePercent: Float
-
- """
- The tax rates that will apply to any subscription item that does not have `tax_rates` set. Invoices created will have their `default_tax_rates` populated from the subscription.
- """
- defaultTaxRates: [StripeTaxRate!]
-
- """
- Set of key-value pairs that you can attach to an object. This can be useful for storing additional information about the object in a structured format.
- """
- metadata: String!
-
- """
- Determines the date of the first full invoice, and, for plans with `month` or `year` intervals, the day of the month for subsequent invoices.
- """
- billingCycleAnchor: Int!
-
- """
- Has the value `true` if the object exists in live mode or the value `false` if the object exists in test mode.
- """
- livemode: Boolean!
-
- """
- A date in the future at which the subscription will automatically get canceled
- """
- cancelAt: Int
-
- """
- Date when the subscription was first created. The date might differ from the `created` date due to backdating.
- """
- startDate: Int!
-
- """
- Hash describing the plan the customer is subscribed to. Only set if the subscription contains a single plan.
- """
- plan: StripePlan
-
- """ID of the customer who owns the subscription."""
- customer: StripeSubscriptionCustomerUnion!
-
- """
- End of the current period that the subscription has been invoiced for. At the end of this period, a new invoice will be created.
- """
- currentPeriodEnd: Int!
-
- """
- If provided, each invoice created by this subscription will apply the tax rate, increasing the amount billed to the customer.
- """
- taxPercent: Float
-
- """
- Define thresholds at which an invoice will be sent, and the subscription advanced to a new billing period
- """
- billingThresholds: StripeSubscriptionBillingThresholds
-
- """
- If the subscription has been canceled, the date of that cancellation. If the subscription was canceled with `cancel_at_period_end`, `canceled_at` will still reflect the date of the initial cancellation request, not the end of the subscription period when the subscription is automatically moved to a canceled state.
- """
- canceledAt: Int
-}
-
-""""""
-type StripeCustomerSubscriptions {
- """"""
- data: [StripeSubscription!]!
-
- """
- True if this list has another page of items after this one that can be fetched.
- """
- hasMore: Boolean!
-
- """
- String representing the object's type. Objects of the same type share the same value. Always has the value `list`.
- """
- object: StripeCustomerSubscriptionsObjectEnum!
-
- """The URL where this list can be accessed."""
- url: String!
-}
-
-""""""
-type StripeInvoiceSettingCustomField {
- """The name of the custom field."""
- name: String!
-
- """The value of the custom field."""
- value: String!
-}
-
-""""""
-type StripeInvoiceSettingCustomerSetting {
- """Default custom fields to be displayed on invoices for this customer."""
- customFields: [StripeInvoiceSettingCustomField!]
-
- """
- ID of the default payment method used for subscriptions and invoices for the customer.
- """
- defaultPaymentMethod: StripePaymentMethod
-
- """Default footer to be displayed on invoices for this customer."""
- footer: String
-}
-
-enum StripeCustomerTaxExemptEnum {
- exempt
- none
- reverse
-}
-
-""""""
-type StripeTaxInfo {
- """The customer's tax ID number."""
- taxId: String
-
- """The type of ID number."""
- type: String!
-}
-
-""""""
-type StripeTaxInfoVerification {
- """
- The state of verification for this customer. Possible values are `unverified`, `pending`, or `verified`.
- """
- status: String
-
- """
- The official name associated with the tax ID returned from the external provider.
- """
- verifiedName: String
-}
-
-enum StripeCustomerTaxIdsObjectEnum {
- list
-}
-
-enum StripeTaxIdTypeEnum {
- au_abn
- ch_vat
- eu_vat
- in_gst
- no_vat
- nz_gst
- unknown
- za_vat
-}
-
-enum StripeTaxIdVerificationStatusEnum {
- pending
- unavailable
- unverified
- verified
-}
-
-""""""
-type StripeTaxIdVerification {
- """
- Verification status, one of `pending`, `unavailable`, `unverified`, or `verified`.
- """
- status: StripeTaxIdVerificationStatusEnum!
-
- """Verified address."""
- verifiedAddress: String
-
- """Verified name."""
- verifiedName: String
-}
-
-enum StripeTaxIdObjectEnum {
- tax_id
-}
-
-""""""
-type StripeTaxId {
- """
- String representing the object's type. Objects of the same type share the same value.
- """
- object: StripeTaxIdObjectEnum!
-
- """"""
- verification: StripeTaxIdVerification!
-
- """
- Time at which the object was created. Measured in seconds since the Unix epoch.
- """
- created: Int!
-
- """Two-letter ISO code representing the country of the tax ID."""
- country: String
-
- """Unique identifier for the object."""
- id: String!
-
- """Value of the tax ID."""
- value: String!
-
- """
- Has the value `true` if the object exists in live mode or the value `false` if the object exists in test mode.
- """
- livemode: Boolean!
-
- """
- Type of the tax ID, one of `au_abn`, `ch_vat`, `eu_vat`, `in_gst`, `no_vat`, `nz_gst`, `unknown`, or `za_vat`
- """
- type: StripeTaxIdTypeEnum!
-
- """ID of the customer."""
- customer: StripeCustomer!
-}
-
-""""""
-type StripeCustomerTaxIds {
- """"""
- data: [StripeTaxId!]!
-
- """
- True if this list has another page of items after this one that can be fetched.
- """
- hasMore: Boolean!
-
- """
- String representing the object's type. Objects of the same type share the same value. Always has the value `list`.
- """
- object: StripeCustomerTaxIdsObjectEnum!
-
- """The URL where this list can be accessed."""
- url: String!
-}
-
-enum StripeDiscountObjectEnum {
- discount
-}
-
-union StripeSubscriptionSchedulePhaseConfigurationCouponUnion = StripeCoupon
-
-enum StripeCouponDurationEnum {
- forever
- once
- repeating
-}
-
-enum StripeCouponObjectEnum {
- coupon
-}
-
-""""""
-type StripeCoupon {
- """
- String representing the object's type. Objects of the same type share the same value.
- """
- object: StripeCouponObjectEnum!
-
- """
- Time at which the object was created. Measured in seconds since the Unix epoch.
- """
- created: Int!
-
- """
- If `amount_off` has been set, the three-letter [ISO code for the currency](https://stripe.com/docs/currencies) of the amount to take off.
- """
- currency: String
-
- """Unique identifier for the object."""
- id: String!
-
- """Date after which the coupon can no longer be redeemed."""
- redeemBy: Int
-
- """
- If `duration` is `repeating`, the number of months the coupon applies. Null if coupon `duration` is `forever` or `once`.
- """
- durationInMonths: Int
-
- """
- Name of the coupon displayed to customers on for instance invoices or receipts.
- """
- name: String
-
- """
- Percent that will be taken off the subtotal of any invoices for this customer for the duration of the coupon. For example, a coupon with percent_off of 50 will make a %s100 invoice %s50 instead.
- """
- percentOff: Float
-
- """
- Taking account of the above properties, whether this coupon can still be applied to a customer.
- """
- valid: Boolean!
-
- """Number of times this coupon has been applied to a customer."""
- timesRedeemed: Int!
-
- """
- Maximum number of times this coupon can be redeemed, in total, across all customers, before it is no longer valid.
- """
- maxRedemptions: Int
-
- """
- Set of key-value pairs that you can attach to an object. This can be useful for storing additional information about the object in a structured format.
- """
- metadata: String!
-
- """
- One of `forever`, `once`, and `repeating`. Describes how long a customer who applies this coupon will get the discount.
- """
- duration: StripeCouponDurationEnum!
-
- """
- Has the value `true` if the object exists in live mode or the value `false` if the object exists in test mode.
- """
- livemode: Boolean!
-
- """
- Amount (in the `currency` specified) that will be taken off the subtotal of any invoices for this customer.
- """
- amountOff: Int
-}
-
-""""""
-type StripeDiscount {
- """"""
- coupon: StripeCoupon!
-
- """"""
- customer: StripeDiscountCustomerUnion
-
- """
- If the coupon has a duration of `repeating`, the date that this discount will end. If the coupon has a duration of `once` or `forever`, this attribute will be null.
- """
- end: Int
-
- """
- String representing the object's type. Objects of the same type share the same value.
- """
- object: StripeDiscountObjectEnum!
-
- """Date that the coupon was applied."""
- start: Int!
-
- """
- The subscription that this coupon is applied to, if it is applied to a particular subscription.
- """
- subscription: String
-}
-
-enum StripeCustomerObjectEnum {
- customer
-}
-
-enum StripeCustomerSourcesObjectEnum {
- list
-}
-
-union StripeRecipientDefaultCardUnion = StripeCard
-
-union StripeCardRecipientUnion = StripeRecipient
-
-enum StripeRecipientCardsObjectEnum {
- list
-}
-
-""""""
-type StripeRecipientCards {
- """"""
- data: [StripeCard!]!
-
- """
- True if this list has another page of items after this one that can be fetched.
- """
- hasMore: Boolean!
-
- """
- String representing the object's type. Objects of the same type share the same value. Always has the value `list`.
- """
- object: StripeRecipientCardsObjectEnum!
-
- """The URL where this list can be accessed."""
- url: String!
-}
-
-union StripeExternalAccountUnion = StripeBankAccount | StripeCard
-
-union StripeAccountExternalAccountsDataUnion = StripeCard | StripeBankAccount
-
-union StripeCustomerDefaultSourceUnion = StripeSource | StripeCard | StripeBitcoinReceiver | StripeBankAccount | StripeAlipayAccount
-
-union StripeInvoiceDefaultSourceUnion = StripeSource | StripeCard | StripeBitcoinReceiver | StripeBankAccount | StripeAlipayAccount
-
-enum StripeAlipayAccountObjectEnum {
- alipay_account
-}
-
-""""""
-type StripeAlipayAccount {
- """
- String representing the object's type. Objects of the same type share the same value.
- """
- object: StripeAlipayAccountObjectEnum!
-
- """
- Time at which the object was created. Measured in seconds since the Unix epoch.
- """
- created: Int!
-
- """
- If the Alipay account object is not reusable, the exact currency that you can create a charge for.
- """
- paymentCurrency: String
-
- """
- Uniquely identifies the account and will be the same across all Alipay account objects that are linked to the same Alipay account.
- """
- fingerprint: String!
-
- """The username for the Alipay account."""
- username: String!
-
- """
- True if you can create multiple payments using this account. If the account is reusable, then you can freely choose the amount of each payment.
- """
- reusable: Boolean!
-
- """Unique identifier for the object."""
- id: String!
-
- """Whether this Alipay account object has ever been used for a payment."""
- used: Boolean!
-
- """
- Set of key-value pairs that you can attach to an object. This can be useful for storing additional information about the object in a structured format.
- """
- metadata: String
-
- """
- Has the value `true` if the object exists in live mode or the value `false` if the object exists in test mode.
- """
- livemode: Boolean!
-
- """"""
- customer: StripeAlipayAccountCustomerUnion
-
- """
- If the Alipay account object is not reusable, the exact amount that you can create a charge for.
- """
- paymentAmount: Int
-}
-
-union StripePaymentSourceUnion = StripeBankAccount | StripeAlipayAccount | StripeSource | StripeCard | StripeAccount | StripeBitcoinReceiver
-
-enum StripeBitcoinReceiverTransactionsObjectEnum {
- list
-}
-
-enum StripeBitcoinTransactionObjectEnum {
- bitcoin_transaction
-}
-
-""""""
-type StripeBitcoinTransaction {
- """
- The amount of `currency` that the transaction was converted to in real-time.
- """
- amount: Int!
-
- """The amount of bitcoin contained in the transaction."""
- bitcoinAmount: Int!
-
- """
- Time at which the object was created. Measured in seconds since the Unix epoch.
- """
- created: Int!
-
- """
- Three-letter [ISO code for the currency](https://stripe.com/docs/currencies) to which this transaction was converted.
- """
- currency: String!
-
- """Unique identifier for the object."""
- id: String!
-
- """
- String representing the object's type. Objects of the same type share the same value.
- """
- object: StripeBitcoinTransactionObjectEnum!
-
- """The receiver to which this transaction was sent."""
- receiver: String!
-}
-
-""""""
-type StripeBitcoinReceiverTransactions {
- """"""
- data: [StripeBitcoinTransaction!]!
-
- """
- True if this list has another page of items after this one that can be fetched.
- """
- hasMore: Boolean!
-
- """
- String representing the object's type. Objects of the same type share the same value. Always has the value `list`.
- """
- object: StripeBitcoinReceiverTransactionsObjectEnum!
-
- """The URL where this list can be accessed."""
- url: String!
-}
-
-enum StripeBitcoinReceiverObjectEnum {
- bitcoin_receiver
-}
-
-""""""
-type StripeBitcoinReceiver {
- """
- String representing the object's type. Objects of the same type share the same value.
- """
- object: StripeBitcoinReceiverObjectEnum!
-
- """
- Time at which the object was created. Measured in seconds since the Unix epoch.
- """
- created: Int!
-
- """
- The amount of bitcoin that the customer should send to fill the receiver. The `bitcoin_amount` is denominated in Satoshi: there are 10^8 Satoshi in one bitcoin.
- """
- bitcoinAmount: Int!
-
- """"""
- usedForPayment: Boolean
-
- """
- Three-letter [ISO code for the currency](https://stripe.com/docs/currencies) to which the bitcoin will be converted.
- """
- currency: String!
-
- """Unique identifier for the object."""
- id: String!
-
- """
- The customer's email address, set by the API call that creates the receiver.
- """
- email: String
-
- """
- This receiver contains uncaptured funds that can be used for a payment or refunded.
- """
- uncapturedFunds: Boolean!
-
- """
- A bitcoin address that is specific to this receiver. The customer can send bitcoin to this address to fill the receiver.
- """
- inboundAddress: String!
-
- """
- This URI can be displayed to the customer as a clickable link (to activate their bitcoin client) or as a QR code (for mobile wallets).
- """
- bitcoinUri: String!
-
- """
- The amount of bitcoin that has been sent by the customer to this receiver.
- """
- bitcoinAmountReceived: Int!
-
- """
- This flag is initially false and updates to true when the customer sends the `bitcoin_amount` to this receiver.
- """
- filled: Boolean!
-
- """
- Set of key-value pairs that you can attach to an object. This can be useful for storing additional information about the object in a structured format.
- """
- metadata: String!
-
- """"""
- refundAddress: String
-
- """
- Has the value `true` if the object exists in live mode or the value `false` if the object exists in test mode.
- """
- livemode: Boolean!
-
- """The amount of `currency` that you are collecting as payment."""
- amount: Int!
-
- """
- A list with one entry for each time that the customer sent bitcoin to the receiver. Hidden when viewing the receiver with a publishable key.
- """
- transactions: StripeBitcoinReceiverTransactions
-
- """"""
- customer: String
-
- """
- True when this bitcoin receiver has received a non-zero amount of bitcoin.
- """
- active: Boolean!
-
- """
- The amount of `currency` to which `bitcoin_amount_received` has been converted.
- """
- amountReceived: Int!
-
- """
- An arbitrary string attached to the object. Often useful for displaying to users.
- """
- description: String
-
- """
- The ID of the payment created from the receiver, if any. Hidden when viewing the receiver with a publishable key.
- """
- payment: String
-}
-
-union StripeSubscriptionDefaultSourceUnion = StripeSource | StripeCard | StripeBitcoinReceiver | StripeBankAccount | StripeAlipayAccount
-
-enum StripeDeletedBitcoinReceiverObjectEnum {
- bitcoin_receiver
-}
-
-""""""
-type StripeDeletedBitcoinReceiver {
- """Always true for a deleted object"""
- deleted: Boolean!
-
- """Unique identifier for the object."""
- id: String!
-
- """
- String representing the object's type. Objects of the same type share the same value.
- """
- object: StripeDeletedBitcoinReceiverObjectEnum!
-}
-
-enum StripeDeletedAlipayAccountObjectEnum {
- alipay_account
-}
-
-""""""
-type StripeDeletedAlipayAccount {
- """Always true for a deleted object"""
- deleted: Boolean!
-
- """Unique identifier for the object."""
- id: String!
-
- """
- String representing the object's type. Objects of the same type share the same value.
- """
- object: StripeDeletedAlipayAccountObjectEnum!
-}
-
-union StripeDeletedPaymentSourceUnion = StripeDeletedAlipayAccount | StripeDeletedCard | StripeDeletedBitcoinReceiver | StripeDeletedBankAccount
-
-enum StripeDeletedBankAccountObjectEnum {
- bank_account
-}
-
-""""""
-type StripeDeletedBankAccount {
- """
- Three-letter [ISO code for the currency](https://stripe.com/docs/payouts) paid out to the bank account.
- """
- currency: String
-
- """Always true for a deleted object"""
- deleted: Boolean!
-
- """Unique identifier for the object."""
- id: String!
-
- """
- String representing the object's type. Objects of the same type share the same value.
- """
- object: StripeDeletedBankAccountObjectEnum!
-}
-
-union StripeDeletedExternalAccountUnion = StripeDeletedCard | StripeDeletedBankAccount
-
-enum StripeDeletedCardObjectEnum {
- card
-}
-
-""""""
-type StripeDeletedCard {
- """
- Three-letter [ISO code for the currency](https://stripe.com/docs/payouts) paid out to the bank account.
- """
- currency: String
-
- """Always true for a deleted object"""
- deleted: Boolean!
-
- """Unique identifier for the object."""
- id: String!
-
- """
- String representing the object's type. Objects of the same type share the same value.
- """
- object: StripeDeletedCardObjectEnum!
-}
-
-union StripePayoutDestinationUnion = StripeDeletedCard | StripeDeletedBankAccount | StripeCard | StripeBankAccount
-
-union StripeChargeCustomerUnion = StripeDeletedCustomer | StripeCustomer
-
-union StripeOrderCustomerUnion = StripeDeletedCustomer | StripeCustomer
-
-union StripeInvoiceCustomerUnion = StripeDeletedCustomer | StripeCustomer
-
-union StripeCardCustomerUnion = StripeDeletedCustomer | StripeCustomer
-
-union StripeAlipayAccountCustomerUnion = StripeDeletedCustomer | StripeCustomer
-
-union StripeSubscriptionScheduleCustomerUnion = StripeDeletedCustomer | StripeCustomer
-
-union StripeDiscountCustomerUnion = StripeDeletedCustomer | StripeCustomer
-
-union StripeInvoiceItemCustomerUnion = StripeDeletedCustomer | StripeCustomer
-
-union StripePaymentIntentCustomerUnion = StripeDeletedCustomer | StripeCustomer
-
-union StripeSetupIntentCustomerUnion = StripeDeletedCustomer | StripeCustomer
-
-union StripeSubscriptionCustomerUnion = StripeDeletedCustomer | StripeCustomer
-
-union StripeInvoiceitemCustomerUnion = StripeDeletedCustomer | StripeCustomer
-
-enum StripeDeletedCustomerObjectEnum {
- customer
-}
-
-""""""
-type StripeDeletedCustomer {
- """Always true for a deleted object"""
- deleted: Boolean!
-
- """Unique identifier for the object."""
- id: String!
-
- """
- String representing the object's type. Objects of the same type share the same value.
- """
- object: StripeDeletedCustomerObjectEnum!
-}
-
-union StripeBankAccountCustomerUnion = StripeDeletedCustomer | StripeCustomer
-
-enum StripeBankAccountObjectEnum {
- bank_account
-}
-
-""""""
-type StripeBankAccount {
- """
- String representing the object's type. Objects of the same type share the same value.
- """
- object: StripeBankAccountObjectEnum!
-
- """"""
- last4: String!
-
- """
- Two-letter ISO code representing the country the bank account is located in.
- """
- country: String!
-
- """
- Whether this bank account is the default external account for its currency.
- """
- defaultForCurrency: Boolean
-
- """
- Uniquely identifies this particular bank account. You can use this attribute to check whether two bank accounts are the same.
- """
- fingerprint: String
-
- """
- Three-letter [ISO code for the currency](https://stripe.com/docs/payouts) paid out to the bank account.
- """
- currency: String!
-
- """Unique identifier for the object."""
- id: String!
-
- """
- Name of the bank associated with the routing number (e.g., `WELLS FARGO`).
- """
- bankName: String
-
- """
- The type of entity that holds the account. This can be either `individual` or `company`.
- """
- accountHolderType: String
-
- """
- For bank accounts, possible values are `new`, `validated`, `verified`, `verification_failed`, or `errored`. A bank account that hasn't had any activity or validation performed is `new`. If Stripe can determine that the bank account exists, its status will be `validated`. Note that there often isn’t enough information to know (e.g., for smaller credit unions), and the validation is not always run. If customer bank account verification has succeeded, the bank account status will be `verified`. If the verification failed for any reason, such as microdeposit failure, the status will be `verification_failed`. If a transfer sent to this bank account fails, we'll set the status to `errored` and will not continue to send transfers until the bank details are updated.
-
- For external accounts, possible values are `new` and `errored`. Validations aren't run against external accounts because they're only used for payouts. This means the other statuses don't apply. If a transfer fails, the status is set to `errored` and transfers are stopped until account details are updated.
- """
- status: String!
-
- """"""
- account: StripeAccount
-
- """
- Set of key-value pairs that you can attach to an object. This can be useful for storing additional information about the object in a structured format.
- """
- metadata: String
-
- """The routing transit number for the bank account."""
- routingNumber: String
-
- """"""
- customer: StripeBankAccountCustomerUnion
-
- """The name of the person or business that owns the bank account."""
- accountHolderName: String
-}
-
-enum StripeRecipientObjectEnum {
- recipient
-}
-
-""""""
-type StripeRecipient {
- """
- String representing the object's type. Objects of the same type share the same value.
- """
- object: StripeRecipientObjectEnum!
-
- """
- Time at which the object was created. Measured in seconds since the Unix epoch.
- """
- created: Int!
-
- """Unique identifier for the object."""
- id: String!
-
- """"""
- email: String
-
- """The default card to use for creating transfers to this recipient."""
- defaultCard: StripeCard
-
- """Full, legal name of the recipient."""
- name: String
-
- """
- The ID of the [Custom account](https://stripe.com/docs/connect/custom-accounts) this recipient was migrated to. If set, the recipient can no longer be updated, nor can transfers be made to it: use the Custom account instead.
- """
- migratedTo: StripeAccount
-
- """
- Set of key-value pairs that you can attach to an object. This can be useful for storing additional information about the object in a structured format.
- """
- metadata: String!
-
- """"""
- rolledBackFrom: StripeAccount
-
- """
- Has the value `true` if the object exists in live mode or the value `false` if the object exists in test mode.
- """
- livemode: Boolean!
-
- """Type of the recipient, one of `individual` or `corporation`."""
- type: String!
-
- """Hash describing the current account on the recipient, if there is one."""
- activeAccount: StripeBankAccount
-
- """"""
- cards: StripeRecipientCards
-
- """
- An arbitrary string attached to the object. Often useful for displaying to users.
- """
- description: String
-}
-
-enum StripeCardObjectEnum {
- card
-}
-
-""""""
-type StripeCard {
- """Four-digit number representing the card's expiration year."""
- expYear: Int!
-
- """
- String representing the object's type. Objects of the same type share the same value.
- """
- object: StripeCardObjectEnum!
-
- """The last four digits of the card."""
- last4: String!
-
- """
- Two-letter ISO code representing the country of the card. You could use this attribute to get a sense of the international breakdown of cards you've collected.
- """
- country: String
-
- """
- (For tokenized numbers only.) The last four digits of the device account number.
- """
- dynamicLast4: String
-
- """
- Card brand. Can be `American Express`, `Diners Club`, `Discover`, `JCB`, `MasterCard`, `UnionPay`, `Visa`, or `Unknown`.
- """
- brand: String!
-
- """Whether this card is the default external account for its currency."""
- defaultForCurrency: Boolean
-
- """
- Uniquely identifies this particular card number. You can use this attribute to check whether two customers who've signed up with you are using the same card number, for example.
- """
- fingerprint: String
-
- """"""
- currency: String
-
- """
- The recipient that this card belongs to. This attribute will not be in the card object if the card belongs to a customer or account instead.
- """
- recipient: StripeRecipient
-
- """Unique identifier for the object."""
- id: String!
-
- """Address line 1 (Street address/PO Box/Company name)."""
- addressLine1: String
-
- """
- If the card number is tokenized, this is the method that was used. Can be `apple_pay` or `google_pay`.
- """
- tokenizationMethod: String
-
- """Cardholder name."""
- name: String
-
- """
- A set of available payout methods for this card. Will be either `["standard"]` or `["standard", "instant"]`. Only values from this set should be passed as the `method` when creating a transfer.
- """
- availablePayoutMethods: [String!]
-
- """Billing address country, if provided when creating card."""
- addressCountry: String
-
- """
- If `address_zip` was provided, results of the check: `pass`, `fail`, `unavailable`, or `unchecked`.
- """
- addressZipCheck: String
-
- """Address line 2 (Apartment/Suite/Unit/Building)."""
- addressLine2: String
-
- """
- If a CVC was provided, results of the check: `pass`, `fail`, `unavailable`, or `unchecked`.
- """
- cvcCheck: String
-
- """
- The account this card belongs to. This attribute will not be in the card object if the card belongs to a customer or recipient instead.
- """
- account: StripeAccount
-
- """
- Set of key-value pairs that you can attach to an object. This can be useful for storing additional information about the object in a structured format.
- """
- metadata: String!
-
- """State/County/Province/Region."""
- addressState: String
-
- """ZIP or postal code."""
- addressZip: String
-
- """Two-digit number representing the card's expiration month."""
- expMonth: Int!
-
- """
- The customer that this card belongs to. This attribute will not be in the card object if the card belongs to an account or recipient instead.
- """
- customer: StripeCardCustomerUnion
-
- """Card funding type. Can be `credit`, `debit`, `prepaid`, or `unknown`."""
- funding: String!
-
- """City/District/Suburb/Town/Village."""
- addressCity: String
-
- """
- If `address_line1` was provided, results of the check: `pass`, `fail`, `unavailable`, or `unchecked`.
- """
- addressLine1Check: String
-}
-
-union StripeApiErrorsSourceUnion = StripeSource | StripeCard | StripeBankAccount
-
-""""""
-type StripeSourceTypeCardPresent {
- """"""
- expYear: Int
-
- """"""
- applicationPreferredName: String
-
- """"""
- last4: String
-
- """"""
- readMethod: String
-
- """"""
- country: String
-
- """"""
- dataType: String
-
- """"""
- brand: String
-
- """"""
- reader: String
-
- """"""
- posDeviceId: String
-
- """"""
- fingerprint: String
-
- """"""
- evidenceCustomerSignature: String
-
- """"""
- emvAuthData: String
-
- """"""
- authorizationCode: String
-
- """"""
- transactionStatusInformation: String
-
- """"""
- dedicatedFileName: String
-
- """"""
- authorizationResponseCode: String
-
- """"""
- expMonth: Int
-
- """"""
- cvmType: String
-
- """"""
- funding: String
-
- """"""
- terminalVerificationResults: String
-
- """"""
- evidenceTransactionCertificate: String
-
- """"""
- posEntryMode: String
-
- """"""
- applicationCryptogram: String
-}
-
-""""""
-type StripeSourceTypeP24 {
- """"""
- reference: String
-}
-
-""""""
-type StripeSourceTypeMultibanco {
- """"""
- refundAccountHolderAddressCountry: String
-
- """"""
- refundAccountHolderAddressCity: String
-
- """"""
- refundAccountHolderName: String
-
- """"""
- refundAccountHolderAddressState: String
-
- """"""
- refundIban: String
-
- """"""
- refundAccountHolderAddressLine2: String
-
- """"""
- reference: String
-
- """"""
- refundAccountHolderAddressPostalCode: String
-
- """"""
- entity: String
-
- """"""
- refundAccountHolderAddressLine1: String
-}
-
-""""""
-type StripeSourceTypeBancontact {
- """"""
- bankCode: String
-
- """"""
- bankName: String
-
- """"""
- bic: String
-
- """"""
- ibanLast4: String
-
- """"""
- preferredLanguage: String
-
- """"""
- statementDescriptor: String
-}
-
-""""""
-type StripeSourceCodeVerificationFlow {
- """
- The number of attempts remaining to authenticate the source object with a verification code.
- """
- attemptsRemaining: Int!
-
- """
- The status of the code verification, either `pending` (awaiting verification, `attempts_remaining` should be greater than 0), `succeeded` (successful verification) or `failed` (failed verification, cannot be verified anymore as `attempts_remaining` should be 0).
- """
- status: String!
-}
-
-""""""
-type StripeSourceTypeCard {
- """"""
- expYear: Int
-
- """"""
- threeDSecure: String
-
- """"""
- last4: String
-
- """"""
- country: String
-
- """"""
- dynamicLast4: String
-
- """"""
- brand: String
-
- """"""
- fingerprint: String
-
- """"""
- tokenizationMethod: String
-
- """"""
- name: String
-
- """"""
- addressZipCheck: String
-
- """"""
- cvcCheck: String
-
- """"""
- expMonth: Int
-
- """"""
- funding: String
-
- """"""
- addressLine1Check: String
-}
-
-""""""
-type StripeSourceTypeWechat {
- """"""
- prepayId: String
-
- """"""
- qrCodeUrl: String
-
- """"""
- statementDescriptor: String
-}
-
-enum StripeSourceTypeEnum {
- ach_credit_transfer
- ach_debit
- alipay
- bancontact
- card
- card_present
- eps
- giropay
- ideal
- klarna
- multibanco
- p24
- sepa_debit
- sofort
- three_d_secure
- wechat
-}
-
-""""""
-type StripeSourceReceiverFlow {
- """
- The address of the receiver source. This is the value that should be communicated to the customer to send their funds to.
- """
- address: String
-
- """
- The total amount that was charged by you. The amount charged is expressed in the source's currency.
- """
- amountCharged: Int!
-
- """
- The total amount received by the receiver source. `amount_received = amount_returned + amount_charged` is true at all time. The amount received is expressed in the source's currency.
- """
- amountReceived: Int!
-
- """
- The total amount that was returned to the customer. The amount returned is expressed in the source's currency.
- """
- amountReturned: Int!
-
- """Type of refund attribute method, one of `email`, `manual`, or `none`."""
- refundAttributesMethod: String!
-
- """
- Type of refund attribute status, one of `missing`, `requested`, or `available`.
- """
- refundAttributesStatus: String!
-}
-
-""""""
-type StripeSourceTypeAchCreditTransfer {
- """"""
- accountNumber: String
-
- """"""
- bankName: String
-
- """"""
- fingerprint: String
-
- """"""
- refundAccountHolderName: String
-
- """"""
- refundAccountHolderType: String
-
- """"""
- refundRoutingNumber: String
-
- """"""
- routingNumber: String
-
- """"""
- swiftCode: String
-}
-
-""""""
-type StripeSourceTypeAchDebit {
- """"""
- bankName: String
-
- """"""
- country: String
-
- """"""
- fingerprint: String
-
- """"""
- last4: String
-
- """"""
- routingNumber: String
-
- """"""
- type: String
-}
-
-""""""
-type StripeSourceTypeSofort {
- """"""
- bankCode: String
-
- """"""
- bankName: String
-
- """"""
- bic: String
-
- """"""
- country: String
-
- """"""
- ibanLast4: String
-
- """"""
- preferredLanguage: String
-
- """"""
- statementDescriptor: String
-}
-
-""""""
-type StripeSourceTypeSepaDebit {
- """"""
- bankCode: String
-
- """"""
- branchCode: String
-
- """"""
- country: String
-
- """"""
- fingerprint: String
-
- """"""
- last4: String
-
- """"""
- mandateReference: String
-
- """"""
- mandateUrl: String
-}
-
-""""""
-type StripeSourceTypeEps {
- """"""
- reference: String
-
- """"""
- statementDescriptor: String
-}
-
-""""""
-type StripeSourceRedirectFlow {
- """
- The failure reason for the redirect, either `user_abort` (the customer aborted or dropped out of the redirect flow), `declined` (the authentication failed or the transaction was declined), or `processing_error` (the redirect failed due to a technical error). Present only if the redirect status is `failed`.
- """
- failureReason: String
-
- """
- The URL you provide to redirect the customer to after they authenticated their payment.
- """
- returnUrl: String!
-
- """
- The status of the redirect, either `pending` (ready to be used by your customer to authenticate the transaction), `succeeded` (succesful authentication, cannot be reused) or `not_required` (redirect should not be used) or `failed` (failed authentication, cannot be reused).
- """
- status: String!
-
- """
- The URL provided to you to redirect a customer to as part of a `redirect` authentication flow.
- """
- url: String!
-}
-
-""""""
-type StripeSourceTypeGiropay {
- """"""
- bankCode: String
-
- """"""
- bankName: String
-
- """"""
- bic: String
-
- """"""
- statementDescriptor: String
-}
-
-""""""
-type StripeSourceTypeThreeDSecure {
- """"""
- expYear: Int
-
- """"""
- threeDSecure: String
-
- """"""
- last4: String
-
- """"""
- country: String
-
- """"""
- dynamicLast4: String
-
- """"""
- brand: String
-
- """"""
- fingerprint: String
-
- """"""
- tokenizationMethod: String
-
- """"""
- name: String
-
- """"""
- addressZipCheck: String
-
- """"""
- cvcCheck: String
-
- """"""
- card: String
-
- """"""
- expMonth: Int
-
- """"""
- customer: String
-
- """"""
- funding: String
-
- """"""
- addressLine1Check: String
-
- """"""
- authenticated: Boolean
-}
-
-""""""
-type StripeSourceTypeIdeal {
- """"""
- bank: String
-
- """"""
- bic: String
-
- """"""
- ibanLast4: String
-
- """"""
- statementDescriptor: String
-}
-
-""""""
-type StripeSourceOrderItem {
- """The amount (price) for this order item."""
- amount: Int
-
- """This currency of this order item. Required when `amount` is present."""
- currency: String
-
- """Human-readable description for this order item."""
- description: String
-
- """
- The quantity of this order item. When type is `sku`, this is the number of instances of the SKU to be ordered.
- """
- quantity: Int
-
- """The type of this order item. Must be `sku`, `tax`, or `shipping`."""
- type: String
-}
-
-""""""
-type StripeSourceOrder {
- """
- A positive integer in the smallest currency unit (that is, 100 cents for $1.00, or 1 for ¥1, Japanese Yen being a zero-decimal currency) representing the total amount for the order.
- """
- amount: Int!
-
- """
- Three-letter [ISO currency code](https://www.iso.org/iso-4217-currency-codes.html), in lowercase. Must be a [supported currency](https://stripe.com/docs/currencies).
- """
- currency: String!
-
- """The email address of the customer placing the order."""
- email: String
-
- """List of items constituting the order."""
- items: [StripeSourceOrderItem!]
-
- """"""
- shipping: StripeShipping
-}
-
-""""""
-type StripeSourceTypeAlipay {
- """"""
- dataString: String
-
- """"""
- nativeUrl: String
-
- """"""
- statementDescriptor: String
-}
-
-""""""
-type StripeSourceTypeKlarna {
- """"""
- payNowAssetUrlsStandard: String
-
- """"""
- shippingFirstName: String
-
- """"""
- clientToken: String
-
- """"""
- payLaterAssetUrlsStandard: String
-
- """"""
- purchaseCountry: String
-
- """"""
- redirectUrl: String
-
- """"""
- payOverTimeAssetUrlsDescriptive: String
-
- """"""
- payLaterName: String
-
- """"""
- payOverTimeName: String
-
- """"""
- payNowName: String
-
- """"""
- payLaterRedirectUrl: String
-
- """"""
- pageTitle: String
-
- """"""
- payOverTimeRedirectUrl: String
-
- """"""
- locale: String
-
- """"""
- purchaseType: String
-
- """"""
- shippingLastName: String
-
- """"""
- backgroundImageUrl: String
-
- """"""
- lastName: String
-
- """"""
- firstName: String
-
- """"""
- paymentMethodCategories: String
-
- """"""
- payLaterAssetUrlsDescriptive: String
-
- """"""
- logoUrl: String
-
- """"""
- payOverTimeAssetUrlsStandard: String
-
- """"""
- payNowAssetUrlsDescriptive: String
-
- """"""
- payNowRedirectUrl: String
-}
-
-""""""
-type StripeSourceOwner {
- """Owner's address."""
- address: StripeAddress
-
- """Owner's email address."""
- email: String
-
- """Owner's full name."""
- name: String
-
- """Owner's phone number (including extension)."""
- phone: String
-
- """
- Verified owner's address. Verified values are verified or provided by the payment method directly (and if supported) at the time of authorization or settlement. They cannot be set or mutated.
- """
- verifiedAddress: StripeAddress
-
- """
- Verified owner's email address. Verified values are verified or provided by the payment method directly (and if supported) at the time of authorization or settlement. They cannot be set or mutated.
- """
- verifiedEmail: String
-
- """
- Verified owner's full name. Verified values are verified or provided by the payment method directly (and if supported) at the time of authorization or settlement. They cannot be set or mutated.
- """
- verifiedName: String
-
- """
- Verified owner's phone number (including extension). Verified values are verified or provided by the payment method directly (and if supported) at the time of authorization or settlement. They cannot be set or mutated.
- """
- verifiedPhone: String
-}
-
-enum StripeSourceObjectEnum {
- source
-}
-
-""""""
-type StripeSource {
- """
- String representing the object's type. Objects of the same type share the same value.
- """
- object: StripeSourceObjectEnum!
-
- """
- Either `reusable` or `single_use`. Whether this source should be reusable or not. Some source types may or may not be reusable by construction, while others may leave the option at creation. If an incompatible value is passed, an error will be returned.
- """
- usage: String
-
- """
- Information about the owner of the payment instrument that may be used or required by particular source types.
- """
- owner: StripeSourceOwner
-
- """"""
- klarna: StripeSourceTypeKlarna
-
- """"""
- alipay: StripeSourceTypeAlipay
-
- """"""
- sourceOrder: StripeSourceOrder
-
- """
- Time at which the object was created. Measured in seconds since the Unix epoch.
- """
- created: Int!
-
- """"""
- ideal: StripeSourceTypeIdeal
-
- """"""
- threeDSecure: StripeSourceTypeThreeDSecure
-
- """"""
- giropay: StripeSourceTypeGiropay
-
- """
- Three-letter [ISO code for the currency](https://stripe.com/docs/currencies) associated with the source. This is the currency for which the source will be chargeable once ready. Required for `single_use` sources.
- """
- currency: String
-
- """"""
- redirect: StripeSourceRedirectFlow
-
- """Unique identifier for the object."""
- id: String!
-
- """"""
- eps: StripeSourceTypeEps
-
- """"""
- sepaDebit: StripeSourceTypeSepaDebit
-
- """"""
- sofort: StripeSourceTypeSofort
-
- """"""
- achDebit: StripeSourceTypeAchDebit
-
- """
- The status of the source, one of `canceled`, `chargeable`, `consumed`, `failed`, or `pending`. Only `chargeable` sources can be used to create a charge.
- """
- status: String!
-
- """"""
- achCreditTransfer: StripeSourceTypeAchCreditTransfer
-
- """"""
- receiver: StripeSourceReceiverFlow
-
- """
- Set of key-value pairs that you can attach to an object. This can be useful for storing additional information about the object in a structured format.
- """
- metadata: String
-
- """
- Extra information about a source. This will appear on your customer's statement every time you charge the source.
- """
- statementDescriptor: String
-
- """
- Has the value `true` if the object exists in live mode or the value `false` if the object exists in test mode.
- """
- livemode: Boolean!
-
- """
- The `type` of the source. The `type` is a payment method, one of `ach_credit_transfer`, `ach_debit`, `alipay`, `bancontact`, `card`, `card_present`, `eps`, `giropay`, `ideal`, `multibanco`, `klarna`, `p24`, `sepa_debit`, `sofort`, `three_d_secure`, or `wechat`. An additional hash is included on the source with a name matching this value. It contains additional information specific to the [payment method](https://stripe.com/docs/sources) used.
- """
- type: StripeSourceTypeEnum!
-
- """
- A positive integer in the smallest currency unit (that is, 100 cents for $1.00, or 1 for ¥1, Japanese Yen being a zero-decimal currency) representing the total amount associated with the source. This is the amount for which the source will be chargeable once ready. Required for `single_use` sources.
- """
- amount: Int
-
- """"""
- wechat: StripeSourceTypeWechat
-
- """"""
- card: StripeSourceTypeCard
-
- """"""
- codeVerification: StripeSourceCodeVerificationFlow
-
- """"""
- bancontact: StripeSourceTypeBancontact
-
- """
- The ID of the customer to which this source is attached. This will not be present when the source has not been attached to a customer.
- """
- customer: String
-
- """
- The client secret of the source. Used for client-side retrieval using a publishable key.
- """
- clientSecret: String!
-
- """"""
- multibanco: StripeSourceTypeMultibanco
-
- """"""
- p24: StripeSourceTypeP24
-
- """
- The authentication `flow` of the source. `flow` is one of `redirect`, `receiver`, `code_verification`, `none`.
- """
- flow: String!
-
- """"""
- cardPresent: StripeSourceTypeCardPresent
-}
-
-union StripeCustomerSourcesDataUnion = StripeSource | StripeCard | StripeBitcoinReceiver | StripeBankAccount | StripeAlipayAccount
-
-""""""
-type StripeCustomerSources {
- """
- The list contains all payment sources that have been attached to the customer.
- """
- data: [StripeCustomerSourcesDataUnion!]!
-
- """
- True if this list has another page of items after this one that can be fetched.
- """
- hasMore: Boolean!
-
- """
- String representing the object's type. Objects of the same type share the same value. Always has the value `list`.
- """
- object: StripeCustomerSourcesObjectEnum!
-
- """The URL where this list can be accessed."""
- url: String!
-}
-
-"""
-A conversation rating contains information relating to a customer's satisfaction with their interaction with your team. For more info on conversation ratings please see [here](https://docs.intercom.com/support-and-retain-customers/see-your-team-s-progress/measure-customer-satisfaction-with-conversation-ratings)
-"""
-type IntercomConversationRating {
- """The rating, between 1 and 5, for the conversation"""
- rating: Int
-
- """An optional field to add a remark to correspond to the number rating"""
- remark: String
-
- """The time the conversation that is being rated was created"""
- createdAt: Int
-
- """
- An object containing the ID and type of the customer (e.g. it could be a user or lead)
- """
- customer: IntercomUser
-
- """
- An object containing the ID and type of the Intercom teammate associated with the conversation when it was rated
- """
- teammate: IntercomAdmin
-}
-
-"""A conversation part describes an element of the conversation."""
-type IntercomConversationPart {
- """The value is 'conversation_part'"""
- type: String
-
- """The id representing the conversation part"""
- id: String
-
- """The type of conversation part"""
- partType: String
-
- """The html encoded body of the comment"""
- body: String
-
- """The time the conversation part was created"""
- createdAt: Int
-
- """The last time the conversation part was updated"""
- updatedAt: Int
-
- """The time the user was notified with the conversation part"""
- notifiedAt: Int
-
- """
- The admin that the conversation is assigned to (not null only when part_type: assignment).
- """
- assignedTo: IntercomAdmin
-
- """The user or admin that created the part"""
- author: IntercomAuthor
-
- """A list of attachments for the part"""
- attachments: [IntercomAttachment!]
-}
-
-"""
-A conversation rating contains information relating to a customer's satisfaction with their interaction with your team. For more info on conversation ratings please see [here](https://docs.intercom.com/support-and-retain-customers/see-your-team-s-progress/measure-customer-satisfaction-with-conversation-ratings)
-"""
-type IntercomAttachment {
- """The name for the attachment, e.g. "signature"."""
- name: String
-
- """The url for the attachment, e.g. "http://example.org/signature.jpg"."""
- url: String
-}
-
-"""Lead object"""
-type IntercomLead implements IntercomAuthor {
- """value is 'contact'"""
- type: String
-
- """The Intercom defined id representing the Lead"""
- id: String
-
- """The time the Lead was added to Intercom"""
- createdAt: Int
-
- """The last time the Lead was updated"""
- updatedAt: Int
-
- """Automatically generated identifier for the Lead"""
- userId: String
-
- """The email you have defined for the Lead"""
- email: String
-
- """The phone number you have defined for the lead"""
- phone: String
-
- """The name of the Lead"""
- name: String
-
- """The custom attributes you have set on the Lead"""
- customAttributes: JSON
-
- """The time the Lead last recorded making a request"""
- lastRequestAt: Int
-
- """An avatar object for the Lead"""
- avatar: IntercomAvatar
-
- """Whether the Lead is unsubscribed from emails"""
- unsubscribedFromEmails: Boolean
-
- """A Location Object relating to the Lead"""
- locationData: IntercomLocation
-
- """A list of companies for the Lead"""
- companies: [IntercomCompany!]
-
- """A list of social profiles associated with the Lead"""
- socialProfiles: [IntercomSocialProfile!]
-
- """A list of segments the Lead."""
- segments: [IntercomSegment!]
-
- """A list of tags associated with the Lead."""
- tags: [IntercomTag!]
-
- """The URL of the page the lead was last on"""
- referrer: String
-
- """Identifies which site sent the traffic"""
- utmSource: String
-
- """Identifies what type of link was used"""
- utmMedium: String
-
- """Identifies a specific product promotion or strategic campaign"""
- utmCampaign: String
-
- """Identifies search terms"""
- utmTerm: String
-
- """Identifies what specifically was clicked to bring the user to the site"""
- utmContent: String
-}
-
-"""Bot object"""
-type IntercomBot implements IntercomAuthor {
- """Value is `bot`."""
- type: String
-
- """"""
- id: String
-}
-
-interface IntercomAuthor {
- id: String
- type: String
-}
-
-"""What field to sort the results by"""
-enum IntercomConversationSortByField {
- CREATED_AT
- UPDATED_AT
- WAITING_SINCE
-}
-
-"""An admin on Intercom"""
-type IntercomAdmin implements IntercomAuthor {
- """value is 'admin'"""
- type: String
-
- """The id of the admin"""
- id: String
-
- """The name of the admin"""
- name: String
-
- """The email address of the admin"""
- email: String
-
- """
- This field will indicate whether the Intercom user has verified their email or not
- """
- emailVerified: Boolean
-
- """value is 'app'"""
- appType: String
-
- """The id of the app"""
- appIdCode: String
-
- """The name of the app"""
- appName: String
-
- """When the app was created"""
- appCreatedAt: Int
-
- """Whether or not the app uses identity verification"""
- appIdentityVerification: Boolean
-
- """
- Conversations for this admin.
-
- Conversation are how you can communicate with users in Intercom.
- """
- conversations(
- """
- When true, retrieves conversation messages in plain text. Defaults to false.
- """
- displayAsPlaintext: Boolean
-
- """
- Defaults to true. When true, fetches just open conversations. When false, fetches just closed conversations.
- """
- open: Boolean
-
- """What field to sort the results by. Defaults to UPDATED_AT."""
- sortByField: IntercomConversationSortByField
-
- """
- Return the conversations in ascending or descending order. Defaults to DESC.
- """
- orderBy: IntercomSortOrderBy
- ): IntercomConversationsConnection
-}
-
-"""Message object"""
-type IntercomMessage {
- """_value is 'conversation_message'_"""
- type: String
-
- """The id representing the message"""
- id: String
-
- """Optional. The message subject"""
- subject: String
-
- """The message body, which may contain HTML"""
- body: String
-
- """The Admin that created the message"""
- author: IntercomAdmin
-
- """A list of attachments for the part"""
- attachments: [IntercomAttachment!]
-
- """The URL the User started a conversation on"""
- url: String
-}
-
-"""Conversation are how you can communicate with users in Intercom."""
-type IntercomConversation {
- """value is 'conversation'"""
- type: String
-
- """The id representing the conversation"""
- id: String
-
- """The time the conversation was created"""
- createdAt: Int
-
- """The last time the conversation was updated"""
- updatedAt: Int
-
- """
- The last time a customer responded to an admin.
- In other words, the time a customer started waiting for a response.
- """
- waitingSince: Int
-
- """
- If set this is the time in the future when this conversation will be marked as open.
- i.e. it will be in a snoozed state until this time
- """
- snoozedUntil: Int
-
- """The message that started the conversation rendered for presentation."""
- conversationMessage: IntercomMessage
-
- """The user the conversation concerns"""
- user: IntercomUser
-
- """
- The list of customers (users or leads) involved in this conversation.
- This will only contain one customer unless more were added via the group conversation feature
- """
- customers: [IntercomUser!]
-
- """
- The admin the conversation is currently assigned to.
- Note nobody_admin indicates the conversation is assigned to Nobody.
- """
- assignee: IntercomAdmin
-
- """A conversation part object with a list of conversation parts"""
- conversationParts: [IntercomConversationPart!]
-
- """Indicates whether a conversation is open (true) or closed (false)"""
- open: Boolean
-
- """Can be set to "open", "closed" or "snoozed"."""
- state: String
-
- """Indicates whether a conversation has been read"""
- read: Boolean
-
- """A list of tags associated with the conversation."""
- tags: [IntercomTag!]
-
- """The number of conversation parts in this conversation."""
- totalCount: Int
-
- """
- A conversation rating object which contains information on the rating and/or remark added by a customer and the admin assigned to the conversation
- """
- conversationRating: IntercomConversationRating
-}
-
-"""Conversations on Intercom"""
-type IntercomConversationsConnection {
- """Conversations"""
- nodes: [IntercomConversation!]!
-}
-
-"""
-Events are how you can submit user activity to Intercom. Once you're sending Intercom event data, you can filter your user base with those events and create Auto Messages to send whenever an event occurs. Every event is associated with an event name, the time it happened, the user that caused the event, and optionally some extra metadata. Events record the count, first and last occurrence of an event.
-"""
-type IntercomEvent {
- """Unique id for the event."""
- id: String
-
- """
- The name of the event that occurred. This is presented to your App's admins when filtering and creating segments - a good event name is typically a past tense 'verb-noun' combination, to improve readability, for example updated-plan.
- """
- eventName: String
-
- """The time the event occurred as a UTC Unix timestamp"""
- createdAt: Int
-
- """Your identifier for the user."""
- userId: String
-
- """Intercom's identifier for the user."""
- intercomUserId: String
-
- """
- An email address for your user. An email should only be used where your application uses email to uniquely identify users
- """
- email: String
-
- """optional metadata about the event."""
- metadata: JSON
-}
-
-"""Events on Intercom, with pagination."""
-type IntercomEventssConnection {
- """List of events."""
- nodes: [IntercomEvent!]!
-
- """Page info"""
- pageInfo: PageInfo!
-}
-
-"""Counts of the different events for a user"""
-type IntercomEventSummary {
- """
- The name of the event that occurred. This is presented to your App's admins when filtering and creating segments - a good event name is typically a past tense 'verb-noun' combination, to improve readability, for example updated-plan.
- """
- name: String
-
- """The date of the first time the event was recorded, in rfc3339 format."""
- first: String
-
- """The date of the last time the event was recorded, in rfc3339 format."""
- last: String
-
- """The number of times the event has occured for the user."""
- count: Int
-
- """Description of the event"""
- description: String
-}
-
-"""Defaults to `ASC`"""
-enum ZendeskSearchSortOrder {
- DESC
- ASC
-}
-
-"""Field to sort tickets by"""
-enum ZendeskTicketsSortBy {
- ASSIGNEE
- ASSIGNEE_NAME
- CREATED_AT
- GROUP
- ID
- LOCALE
- REQUESTER
- REQUESTER_NAME
- STATUS
- SUBJECT
- UPDATED_AT
-}
-
-union ZendeskSearchResult = ZendeskUser | ZendeskTicket
-
-"""
-Tickets are the means through which your end users (customers) communicate with agents in Zendesk Support. Tickets can originate from a number of channels, including email, Help Center, chat, phone call, Twitter, Facebook, or the API. All tickets have a core set of properties.
-"""
-type ZendeskTicket {
- """"""
- id: Int
-
- """"""
- url: String
-
- """"""
- externalId: String
-
- """"""
- type: String
-
- """"""
- subject: String
-
- """"""
- rawSubject: String
-
- """"""
- description: String
-
- """"""
- priority: String
-
- """"""
- status: String
-
- """"""
- recipient: String
-
- """"""
- requesterId: Int!
-
- """"""
- submitterId: Int
-
- """"""
- assigneeId: Int
-
- """"""
- organizationId: Int
-
- """"""
- groupId: Int
-
- """"""
- forumTopicId: Int
-
- """"""
- problemId: Int
-
- """"""
- hasIncidents: Boolean
-
- """"""
- dueAt: String
-
- """"""
- viaFollowupSourceId: Int
-
- """"""
- ticketFormId: Int
-
- """"""
- brandId: Int
-
- """"""
- allowChannelback: Boolean
-
- """"""
- isPublic: Boolean
-
- """"""
- createdAt: String
-
- """"""
- updatedAt: String
- assignee: ZendeskUser
- requester: ZendeskUser
- submitter: ZendeskUser
-}
-
-""""""
-type ZendeskTicketsEdge {
- """node"""
- node: ZendeskTicket!
-
- """cursor"""
- cursor: String!
-}
-
-""""""
-type ZendeskTicketsConnection {
- """Total number of tickets"""
- totalResults: Int!
-
- """edges"""
- edges: [ZendeskTicketsEdge!]!
-
- """pageInfo"""
- pageInfo: PageInfo!
-}
-
-union SalesforceOpenActivityWhoUnion = SalesforceLead | SalesforceContact
-
-union SalesforceEmailStatusWhoUnion = SalesforceLead | SalesforceContact
-
-union SalesforceLookedUpFromActivityWhoUnion = SalesforceLead | SalesforceContact
-
-union SalesforceActivityHistoryWhoUnion = SalesforceLead | SalesforceContact
-
-union SalesforceOutgoingEmailRelationRelationUnion = SalesforceUser | SalesforceLead | SalesforceContact
-
-"""
-A filter to be used against WaveCompatibilityCheckItem object types. All fields are combined with a logical ‘and.’
-"""
-input SalesforceWaveCompatibilityCheckItemConnectionFilter {
- """Filter against custom fields."""
- customField: SalesforceCustomFieldFilter
-
- """Filter by the WaveCompatibilityCheckItem's lastModifiedBy relation."""
- lastModifiedBy: SalesforceUserConnectionFilter
-
- """Filter by the WaveCompatibilityCheckItem's createdBy relation."""
- createdBy: SalesforceUserConnectionFilter
-
- """Filter by the WaveCompatibilityCheckItem's id field"""
- id: SalesforceIdFilter
-
- """Filter by the WaveCompatibilityCheckItem's isDeleted field"""
- isDeleted: SalesforceBooleanFilter
-
- """Filter by the WaveCompatibilityCheckItem's name field"""
- name: SalesforceStringFilter
-
- """Filter by the WaveCompatibilityCheckItem's createdDate field"""
- createdDate: SalesforceDateTimeFilter
-
- """Filter by the WaveCompatibilityCheckItem's createdById field"""
- createdById: SalesforceIdFilter
-
- """Filter by the WaveCompatibilityCheckItem's lastModifiedDate field"""
- lastModifiedDate: SalesforceDateTimeFilter
-
- """Filter by the WaveCompatibilityCheckItem's lastModifiedById field"""
- lastModifiedById: SalesforceIdFilter
-
- """Filter by the WaveCompatibilityCheckItem's systemModstamp field"""
- systemModstamp: SalesforceDateTimeFilter
-
- """Filter by the WaveCompatibilityCheckItem's taskName field"""
- taskName: SalesforceStringFilter
-
- """Filter by the WaveCompatibilityCheckItem's taskResult field"""
- taskResult: SalesforceStringFilter
-
- """Filter by the WaveCompatibilityCheckItem's templateApiName field"""
- templateApiName: SalesforceStringFilter
-
- """Filter by the WaveCompatibilityCheckItem's templateVersion field"""
- templateVersion: SalesforceStringFilter
-
- """Checks for any expressions in this list."""
- or: [SalesforceWaveCompatibilityCheckItemConnectionFilter!]
-
- """Checks for all expressions in this list."""
- and: [SalesforceWaveCompatibilityCheckItemConnectionFilter!]
-}
-
-"""Field that Wave Compatibility Check Items can be sorted by"""
-enum SalesforceWaveCompatibilityCheckItemSortByFieldEnum {
- ID
- IS_DELETED
- NAME
- CREATED_DATE
- CREATED_BY_ID
- LAST_MODIFIED_DATE
- LAST_MODIFIED_BY_ID
- SYSTEM_MODSTAMP
- TASK_NAME
- TASK_RESULT
- TEMPLATE_API_NAME
- TEMPLATE_VERSION
-}
-
-"""An edge in a connection."""
-type SalesforceWaveCompatibilityCheckItemEdge {
- """The item at the end of the edge."""
- node: SalesforceWaveCompatibilityCheckItem!
-
- """A cursor for use in pagination"""
- cursor: String!
-}
-
-"""
-Salesforce Wave Compatibility Check Items connection, for use in pagination.
-"""
-type SalesforceWaveCompatibilityCheckItemsConnection {
- """
- The count of all Wave Compatibility Check Item you could get from the connection.
- """
- totalCount: Int!
-
- """Pagination Information"""
- pageInfo: PageInfo!
-
- """List of Salesforce Wave Compatibility Check Items"""
- nodes: [SalesforceWaveCompatibilityCheckItem!]!
-
- """List of Wave Compatibility Check Item edges"""
- edges: [SalesforceWaveCompatibilityCheckItemEdge!]!
-}
-
-"""
-A filter to be used against UserProvMockTarget object types. All fields are combined with a logical ‘and.’
-"""
-input SalesforceUserProvMockTargetConnectionFilter {
- """Filter against custom fields."""
- customField: SalesforceCustomFieldFilter
-
- """Filter by the UserProvMockTarget's lastModifiedBy relation."""
- lastModifiedBy: SalesforceUserConnectionFilter
-
- """Filter by the UserProvMockTarget's createdBy relation."""
- createdBy: SalesforceUserConnectionFilter
-
- """Filter by the UserProvMockTarget's id field"""
- id: SalesforceIdFilter
-
- """Filter by the UserProvMockTarget's isDeleted field"""
- isDeleted: SalesforceBooleanFilter
-
- """Filter by the UserProvMockTarget's name field"""
- name: SalesforceStringFilter
-
- """Filter by the UserProvMockTarget's createdDate field"""
- createdDate: SalesforceDateTimeFilter
-
- """Filter by the UserProvMockTarget's createdById field"""
- createdById: SalesforceIdFilter
-
- """Filter by the UserProvMockTarget's lastModifiedDate field"""
- lastModifiedDate: SalesforceDateTimeFilter
-
- """Filter by the UserProvMockTarget's lastModifiedById field"""
- lastModifiedById: SalesforceIdFilter
-
- """Filter by the UserProvMockTarget's systemModstamp field"""
- systemModstamp: SalesforceDateTimeFilter
-
- """Filter by the UserProvMockTarget's externalUserId field"""
- externalUserId: SalesforceStringFilter
-
- """Filter by the UserProvMockTarget's externalUsername field"""
- externalUsername: SalesforceStringFilter
-
- """Filter by the UserProvMockTarget's externalEmail field"""
- externalEmail: SalesforceStringFilter
-
- """Filter by the UserProvMockTarget's externalFirstName field"""
- externalFirstName: SalesforceStringFilter
-
- """Filter by the UserProvMockTarget's externalLastName field"""
- externalLastName: SalesforceStringFilter
-
- """Checks for any expressions in this list."""
- or: [SalesforceUserProvMockTargetConnectionFilter!]
-
- """Checks for all expressions in this list."""
- and: [SalesforceUserProvMockTargetConnectionFilter!]
-}
-
-"""Field that User Provisioning Mock Targets can be sorted by"""
-enum SalesforceUserProvMockTargetSortByFieldEnum {
- ID
- IS_DELETED
- NAME
- CREATED_DATE
- CREATED_BY_ID
- LAST_MODIFIED_DATE
- LAST_MODIFIED_BY_ID
- SYSTEM_MODSTAMP
- EXTERNAL_USER_ID
- EXTERNAL_USERNAME
- EXTERNAL_EMAIL
- EXTERNAL_FIRST_NAME
- EXTERNAL_LAST_NAME
-}
-
-"""An edge in a connection."""
-type SalesforceUserProvMockTargetEdge {
- """The item at the end of the edge."""
- node: SalesforceUserProvMockTarget!
-
- """A cursor for use in pagination"""
- cursor: String!
-}
-
-"""
-Salesforce User Provisioning Mock Targets connection, for use in pagination.
-"""
-type SalesforceUserProvMockTargetsConnection {
- """
- The count of all User Provisioning Mock Target you could get from the connection.
- """
- totalCount: Int!
-
- """Pagination Information"""
- pageInfo: PageInfo!
-
- """List of Salesforce User Provisioning Mock Targets"""
- nodes: [SalesforceUserProvMockTarget!]!
-
- """List of User Provisioning Mock Target edges"""
- edges: [SalesforceUserProvMockTargetEdge!]!
-}
-
-"""
-A filter to be used against UserPreference object types. All fields are combined with a logical ‘and.’
-"""
-input SalesforceUserPreferenceConnectionFilter {
- """Filter against custom fields."""
- customField: SalesforceCustomFieldFilter
-
- """Filter by the UserPreference's user relation."""
- user: SalesforceUserConnectionFilter
-
- """Filter by the UserPreference's id field"""
- id: SalesforceIdFilter
-
- """Filter by the UserPreference's userId field"""
- userId: SalesforceIdFilter
-
- """Filter by the UserPreference's preference field"""
- preference: SalesforceStringFilter
-
- """Filter by the UserPreference's value field"""
- value: SalesforceStringFilter
-
- """Filter by the UserPreference's systemModstamp field"""
- systemModstamp: SalesforceDateTimeFilter
-
- """Checks for any expressions in this list."""
- or: [SalesforceUserPreferenceConnectionFilter!]
-
- """Checks for all expressions in this list."""
- and: [SalesforceUserPreferenceConnectionFilter!]
-}
-
-"""Field that User Preferences can be sorted by"""
-enum SalesforceUserPreferenceSortByFieldEnum {
- ID
- USER_ID
- PREFERENCE
- VALUE
- SYSTEM_MODSTAMP
-}
-
-"""An edge in a connection."""
-type SalesforceUserPreferenceEdge {
- """The item at the end of the edge."""
- node: SalesforceUserPreference!
-
- """A cursor for use in pagination"""
- cursor: String!
-}
-
-"""Salesforce User Preferences connection, for use in pagination."""
-type SalesforceUserPreferencesConnection {
- """The count of all User Preference you could get from the connection."""
- totalCount: Int!
-
- """Pagination Information"""
- pageInfo: PageInfo!
-
- """List of Salesforce User Preferences"""
- nodes: [SalesforceUserPreference!]!
-
- """List of User Preference edges"""
- edges: [SalesforceUserPreferenceEdge!]!
-}
-
-"""
-A filter to be used against UserLogin object types. All fields are combined with a logical ‘and.’
-"""
-input SalesforceUserLoginConnectionFilter {
- """Filter against custom fields."""
- customField: SalesforceCustomFieldFilter
-
- """Filter by the UserLogin's lastModifiedBy relation."""
- lastModifiedBy: SalesforceUserConnectionFilter
-
- """Filter by the UserLogin's user relation."""
- user: SalesforceUserConnectionFilter
-
- """Filter by the UserLogin's id field"""
- id: SalesforceIdFilter
-
- """Filter by the UserLogin's userId field"""
- userId: SalesforceIdFilter
-
- """Filter by the UserLogin's isFrozen field"""
- isFrozen: SalesforceBooleanFilter
-
- """Filter by the UserLogin's isPasswordLocked field"""
- isPasswordLocked: SalesforceBooleanFilter
-
- """Filter by the UserLogin's lastModifiedDate field"""
- lastModifiedDate: SalesforceDateTimeFilter
-
- """Filter by the UserLogin's lastModifiedById field"""
- lastModifiedById: SalesforceIdFilter
-
- """Checks for any expressions in this list."""
- or: [SalesforceUserLoginConnectionFilter!]
-
- """Checks for all expressions in this list."""
- and: [SalesforceUserLoginConnectionFilter!]
-}
-
-"""Field that User Logins can be sorted by"""
-enum SalesforceUserLoginSortByFieldEnum {
- ID
- USER_ID
- IS_FROZEN
- IS_PASSWORD_LOCKED
- LAST_MODIFIED_DATE
- LAST_MODIFIED_BY_ID
-}
-
-"""An edge in a connection."""
-type SalesforceUserLoginEdge {
- """The item at the end of the edge."""
- node: SalesforceUserLogin!
-
- """A cursor for use in pagination"""
- cursor: String!
-}
-
-"""Salesforce User Logins connection, for use in pagination."""
-type SalesforceUserLoginsConnection {
- """The count of all User Login you could get from the connection."""
- totalCount: Int!
-
- """Pagination Information"""
- pageInfo: PageInfo!
-
- """List of Salesforce User Logins"""
- nodes: [SalesforceUserLogin!]!
-
- """List of User Login edges"""
- edges: [SalesforceUserLoginEdge!]!
-}
-
-"""
-A filter to be used against UserAppInfo object types. All fields are combined with a logical ‘and.’
-"""
-input SalesforceUserAppInfoConnectionFilter {
- """Filter against custom fields."""
- customField: SalesforceCustomFieldFilter
-
- """Filter by the UserAppInfo's user relation."""
- user: SalesforceUserConnectionFilter
-
- """Filter by the UserAppInfo's lastModifiedBy relation."""
- lastModifiedBy: SalesforceUserConnectionFilter
-
- """Filter by the UserAppInfo's createdBy relation."""
- createdBy: SalesforceUserConnectionFilter
-
- """Filter by the UserAppInfo's id field"""
- id: SalesforceIdFilter
-
- """Filter by the UserAppInfo's isDeleted field"""
- isDeleted: SalesforceBooleanFilter
-
- """Filter by the UserAppInfo's createdDate field"""
- createdDate: SalesforceDateTimeFilter
-
- """Filter by the UserAppInfo's createdById field"""
- createdById: SalesforceIdFilter
-
- """Filter by the UserAppInfo's lastModifiedDate field"""
- lastModifiedDate: SalesforceDateTimeFilter
-
- """Filter by the UserAppInfo's lastModifiedById field"""
- lastModifiedById: SalesforceIdFilter
-
- """Filter by the UserAppInfo's systemModstamp field"""
- systemModstamp: SalesforceDateTimeFilter
-
- """Filter by the UserAppInfo's userId field"""
- userId: SalesforceIdFilter
-
- """Filter by the UserAppInfo's formFactor field"""
- formFactor: SalesforceStringFilter
-
- """Checks for any expressions in this list."""
- or: [SalesforceUserAppInfoConnectionFilter!]
-
- """Checks for all expressions in this list."""
- and: [SalesforceUserAppInfoConnectionFilter!]
-}
-
-"""Field that Last Used Apps can be sorted by"""
-enum SalesforceUserAppInfoSortByFieldEnum {
- ID
- IS_DELETED
- CREATED_DATE
- CREATED_BY_ID
- LAST_MODIFIED_DATE
- LAST_MODIFIED_BY_ID
- SYSTEM_MODSTAMP
- USER_ID
- FORM_FACTOR
-}
-
-"""An edge in a connection."""
-type SalesforceUserAppInfoEdge {
- """The item at the end of the edge."""
- node: SalesforceUserAppInfo!
-
- """A cursor for use in pagination"""
- cursor: String!
-}
-
-"""Salesforce Last Used Apps connection, for use in pagination."""
-type SalesforceUserAppInfosConnection {
- """The count of all Last Used App you could get from the connection."""
- totalCount: Int!
-
- """Pagination Information"""
- pageInfo: PageInfo!
-
- """List of Salesforce Last Used Apps"""
- nodes: [SalesforceUserAppInfo!]!
-
- """List of Last Used App edges"""
- edges: [SalesforceUserAppInfoEdge!]!
-}
-
-"""Field that Topics can be sorted by"""
-enum SalesforceTopicSortByFieldEnum {
- ID
- NAME
- DESCRIPTION
- CREATED_DATE
- CREATED_BY_ID
- TALKING_ABOUT
- SYSTEM_MODSTAMP
-}
-
-"""An edge in a connection."""
-type SalesforceTopicEdge {
- """The item at the end of the edge."""
- node: SalesforceTopic!
-
- """A cursor for use in pagination"""
- cursor: String!
-}
-
-"""Salesforce Topics connection, for use in pagination."""
-type SalesforceTopicsConnection {
- """The count of all Topic you could get from the connection."""
- totalCount: Int!
-
- """Pagination Information"""
- pageInfo: PageInfo!
-
- """List of Salesforce Topics"""
- nodes: [SalesforceTopic!]!
-
- """List of Topic edges"""
- edges: [SalesforceTopicEdge!]!
-}
-
-"""Field that Goals can be sorted by"""
-enum SalesforceTodayGoalSortByFieldEnum {
- ID
- OWNER_ID
- IS_DELETED
- NAME
- CREATED_DATE
- CREATED_BY_ID
- LAST_MODIFIED_DATE
- LAST_MODIFIED_BY_ID
- SYSTEM_MODSTAMP
- VALUE
- USER_ID
-}
-
-"""An edge in a connection."""
-type SalesforceTodayGoalEdge {
- """The item at the end of the edge."""
- node: SalesforceTodayGoal!
-
- """A cursor for use in pagination"""
- cursor: String!
-}
-
-"""Salesforce Goals connection, for use in pagination."""
-type SalesforceTodayGoalsConnection {
- """The count of all Goal you could get from the connection."""
- totalCount: Int!
-
- """Pagination Information"""
- pageInfo: PageInfo!
-
- """List of Salesforce Goals"""
- nodes: [SalesforceTodayGoal!]!
-
- """List of Goal edges"""
- edges: [SalesforceTodayGoalEdge!]!
-}
-
-"""
-A filter to be used against TenantUsageEntitlement object types. All fields are combined with a logical ‘and.’
-"""
-input SalesforceTenantUsageEntitlementConnectionFilter {
- """Filter against custom fields."""
- customField: SalesforceCustomFieldFilter
-
- """Filter by the TenantUsageEntitlement's lastModifiedBy relation."""
- lastModifiedBy: SalesforceUserConnectionFilter
-
- """Filter by the TenantUsageEntitlement's createdBy relation."""
- createdBy: SalesforceUserConnectionFilter
-
- """Filter by the TenantUsageEntitlement's id field"""
- id: SalesforceIdFilter
-
- """Filter by the TenantUsageEntitlement's isDeleted field"""
- isDeleted: SalesforceBooleanFilter
-
- """Filter by the TenantUsageEntitlement's createdDate field"""
- createdDate: SalesforceDateTimeFilter
-
- """Filter by the TenantUsageEntitlement's createdById field"""
- createdById: SalesforceIdFilter
-
- """Filter by the TenantUsageEntitlement's lastModifiedDate field"""
- lastModifiedDate: SalesforceDateTimeFilter
-
- """Filter by the TenantUsageEntitlement's lastModifiedById field"""
- lastModifiedById: SalesforceIdFilter
-
- """Filter by the TenantUsageEntitlement's systemModstamp field"""
- systemModstamp: SalesforceDateTimeFilter
-
- """Filter by the TenantUsageEntitlement's resourceGroupKey field"""
- resourceGroupKey: SalesforceStringFilter
-
- """Filter by the TenantUsageEntitlement's setting field"""
- setting: SalesforceStringFilter
-
- """Filter by the TenantUsageEntitlement's startDate field"""
- startDate: SalesforceDateFilter
-
- """Filter by the TenantUsageEntitlement's endDate field"""
- endDate: SalesforceDateFilter
-
- """Filter by the TenantUsageEntitlement's currentAmountAllowed field"""
- currentAmountAllowed: SalesforceFloatFilter
-
- """Filter by the TenantUsageEntitlement's frequency field"""
- frequency: SalesforceStringFilter
-
- """Filter by the TenantUsageEntitlement's isPersistentResource field"""
- isPersistentResource: SalesforceBooleanFilter
-
- """Filter by the TenantUsageEntitlement's hasRollover field"""
- hasRollover: SalesforceBooleanFilter
-
- """Filter by the TenantUsageEntitlement's overageGrace field"""
- overageGrace: SalesforceFloatFilter
-
- """Filter by the TenantUsageEntitlement's amountUsed field"""
- amountUsed: SalesforceFloatFilter
-
- """Filter by the TenantUsageEntitlement's usageDate field"""
- usageDate: SalesforceDateTimeFilter
-
- """Checks for any expressions in this list."""
- or: [SalesforceTenantUsageEntitlementConnectionFilter!]
-
- """Checks for all expressions in this list."""
- and: [SalesforceTenantUsageEntitlementConnectionFilter!]
-}
-
-"""Field that Tenant Usage Entitlements can be sorted by"""
-enum SalesforceTenantUsageEntitlementSortByFieldEnum {
- ID
- IS_DELETED
- CREATED_DATE
- CREATED_BY_ID
- LAST_MODIFIED_DATE
- LAST_MODIFIED_BY_ID
- SYSTEM_MODSTAMP
- RESOURCE_GROUP_KEY
- SETTING
- START_DATE
- END_DATE
- CURRENT_AMOUNT_ALLOWED
- FREQUENCY
- IS_PERSISTENT_RESOURCE
- HAS_ROLLOVER
- OVERAGE_GRACE
- AMOUNT_USED
- USAGE_DATE
-}
-
-"""An edge in a connection."""
-type SalesforceTenantUsageEntitlementEdge {
- """The item at the end of the edge."""
- node: SalesforceTenantUsageEntitlement!
-
- """A cursor for use in pagination"""
- cursor: String!
-}
-
-"""
-Salesforce Tenant Usage Entitlements connection, for use in pagination.
-"""
-type SalesforceTenantUsageEntitlementsConnection {
- """
- The count of all Tenant Usage Entitlement you could get from the connection.
- """
- totalCount: Int!
-
- """Pagination Information"""
- pageInfo: PageInfo!
-
- """List of Salesforce Tenant Usage Entitlements"""
- nodes: [SalesforceTenantUsageEntitlement!]!
-
- """List of Tenant Usage Entitlement edges"""
- edges: [SalesforceTenantUsageEntitlementEdge!]!
-}
-
-"""
-A filter to be used against TaskStatus object types. All fields are combined with a logical ‘and.’
-"""
-input SalesforceTaskStatusConnectionFilter {
- """Filter against custom fields."""
- customField: SalesforceCustomFieldFilter
-
- """Filter by the TaskStatus's lastModifiedBy relation."""
- lastModifiedBy: SalesforceUserConnectionFilter
-
- """Filter by the TaskStatus's createdBy relation."""
- createdBy: SalesforceUserConnectionFilter
-
- """Filter by the TaskStatus's id field"""
- id: SalesforceIdFilter
-
- """Filter by the TaskStatus's masterLabel field"""
- masterLabel: SalesforceStringFilter
-
- """Filter by the TaskStatus's apiName field"""
- apiName: SalesforceStringFilter
-
- """Filter by the TaskStatus's sortOrder field"""
- sortOrder: SalesforceIntFilter
-
- """Filter by the TaskStatus's isDefault field"""
- isDefault: SalesforceBooleanFilter
-
- """Filter by the TaskStatus's isClosed field"""
- isClosed: SalesforceBooleanFilter
-
- """Filter by the TaskStatus's createdById field"""
- createdById: SalesforceIdFilter
-
- """Filter by the TaskStatus's createdDate field"""
- createdDate: SalesforceDateTimeFilter
-
- """Filter by the TaskStatus's lastModifiedById field"""
- lastModifiedById: SalesforceIdFilter
-
- """Filter by the TaskStatus's lastModifiedDate field"""
- lastModifiedDate: SalesforceDateTimeFilter
-
- """Filter by the TaskStatus's systemModstamp field"""
- systemModstamp: SalesforceDateTimeFilter
-
- """Checks for any expressions in this list."""
- or: [SalesforceTaskStatusConnectionFilter!]
-
- """Checks for all expressions in this list."""
- and: [SalesforceTaskStatusConnectionFilter!]
-}
-
-"""Field that Task Status Values can be sorted by"""
-enum SalesforceTaskStatusSortByFieldEnum {
- ID
- MASTER_LABEL
- API_NAME
- SORT_ORDER
- IS_DEFAULT
- IS_CLOSED
- CREATED_BY_ID
- CREATED_DATE
- LAST_MODIFIED_BY_ID
- LAST_MODIFIED_DATE
- SYSTEM_MODSTAMP
-}
-
-"""An edge in a connection."""
-type SalesforceTaskStatusEdge {
- """The item at the end of the edge."""
- node: SalesforceTaskStatus!
-
- """A cursor for use in pagination"""
- cursor: String!
-}
-
-"""Salesforce Task Status Values connection, for use in pagination."""
-type SalesforceTaskStatussConnection {
- """The count of all Task Status Value you could get from the connection."""
- totalCount: Int!
-
- """Pagination Information"""
- pageInfo: PageInfo!
-
- """List of Salesforce Task Status Values"""
- nodes: [SalesforceTaskStatus!]!
-
- """List of Task Status Value edges"""
- edges: [SalesforceTaskStatusEdge!]!
-}
-
-"""
-A filter to be used against TaskPriority object types. All fields are combined with a logical ‘and.’
-"""
-input SalesforceTaskPriorityConnectionFilter {
- """Filter against custom fields."""
- customField: SalesforceCustomFieldFilter
-
- """Filter by the TaskPriority's lastModifiedBy relation."""
- lastModifiedBy: SalesforceUserConnectionFilter
-
- """Filter by the TaskPriority's createdBy relation."""
- createdBy: SalesforceUserConnectionFilter
-
- """Filter by the TaskPriority's id field"""
- id: SalesforceIdFilter
-
- """Filter by the TaskPriority's masterLabel field"""
- masterLabel: SalesforceStringFilter
-
- """Filter by the TaskPriority's apiName field"""
- apiName: SalesforceStringFilter
-
- """Filter by the TaskPriority's sortOrder field"""
- sortOrder: SalesforceIntFilter
-
- """Filter by the TaskPriority's isDefault field"""
- isDefault: SalesforceBooleanFilter
-
- """Filter by the TaskPriority's isHighPriority field"""
- isHighPriority: SalesforceBooleanFilter
-
- """Filter by the TaskPriority's createdById field"""
- createdById: SalesforceIdFilter
-
- """Filter by the TaskPriority's createdDate field"""
- createdDate: SalesforceDateTimeFilter
-
- """Filter by the TaskPriority's lastModifiedById field"""
- lastModifiedById: SalesforceIdFilter
-
- """Filter by the TaskPriority's lastModifiedDate field"""
- lastModifiedDate: SalesforceDateTimeFilter
-
- """Filter by the TaskPriority's systemModstamp field"""
- systemModstamp: SalesforceDateTimeFilter
-
- """Checks for any expressions in this list."""
- or: [SalesforceTaskPriorityConnectionFilter!]
-
- """Checks for all expressions in this list."""
- and: [SalesforceTaskPriorityConnectionFilter!]
-}
-
-"""Field that Task Priority Values can be sorted by"""
-enum SalesforceTaskPrioritySortByFieldEnum {
- ID
- MASTER_LABEL
- API_NAME
- SORT_ORDER
- IS_DEFAULT
- IS_HIGH_PRIORITY
- CREATED_BY_ID
- CREATED_DATE
- LAST_MODIFIED_BY_ID
- LAST_MODIFIED_DATE
- SYSTEM_MODSTAMP
-}
-
-"""An edge in a connection."""
-type SalesforceTaskPriorityEdge {
- """The item at the end of the edge."""
- node: SalesforceTaskPriority!
-
- """A cursor for use in pagination"""
- cursor: String!
-}
-
-"""Salesforce Task Priority Values connection, for use in pagination."""
-type SalesforceTaskPrioritysConnection {
- """
- The count of all Task Priority Value you could get from the connection.
- """
- totalCount: Int!
-
- """Pagination Information"""
- pageInfo: PageInfo!
-
- """List of Salesforce Task Priority Values"""
- nodes: [SalesforceTaskPriority!]!
-
- """List of Task Priority Value edges"""
- edges: [SalesforceTaskPriorityEdge!]!
-}
-
-"""Field that Streaming Channels can be sorted by"""
-enum SalesforceStreamingChannelSortByFieldEnum {
- ID
- OWNER_ID
- IS_DELETED
- NAME
- CREATED_DATE
- CREATED_BY_ID
- LAST_MODIFIED_DATE
- LAST_MODIFIED_BY_ID
- SYSTEM_MODSTAMP
- LAST_VIEWED_DATE
- LAST_REFERENCED_DATE
- IS_DYNAMIC
- DESCRIPTION
-}
-
-"""An edge in a connection."""
-type SalesforceStreamingChannelEdge {
- """The item at the end of the edge."""
- node: SalesforceStreamingChannel!
-
- """A cursor for use in pagination"""
- cursor: String!
-}
-
-"""Salesforce Streaming Channels connection, for use in pagination."""
-type SalesforceStreamingChannelsConnection {
- """The count of all Streaming Channel you could get from the connection."""
- totalCount: Int!
-
- """Pagination Information"""
- pageInfo: PageInfo!
-
- """List of Salesforce Streaming Channels"""
- nodes: [SalesforceStreamingChannel!]!
-
- """List of Streaming Channel edges"""
- edges: [SalesforceStreamingChannelEdge!]!
-}
-
-"""Field that Static Resources can be sorted by"""
-enum SalesforceStaticResourceSortByFieldEnum {
- ID
- NAMESPACE_PREFIX
- NAME
- CONTENT_TYPE
- BODY_LENGTH
- DESCRIPTION
- CREATED_DATE
- CREATED_BY_ID
- LAST_MODIFIED_DATE
- LAST_MODIFIED_BY_ID
- SYSTEM_MODSTAMP
- CACHE_CONTROL
-}
-
-"""An edge in a connection."""
-type SalesforceStaticResourceEdge {
- """The item at the end of the edge."""
- node: SalesforceStaticResource!
-
- """A cursor for use in pagination"""
- cursor: String!
-}
-
-"""Salesforce Static Resources connection, for use in pagination."""
-type SalesforceStaticResourcesConnection {
- """The count of all Static Resource you could get from the connection."""
- totalCount: Int!
-
- """Pagination Information"""
- pageInfo: PageInfo!
-
- """List of Salesforce Static Resources"""
- nodes: [SalesforceStaticResource!]!
-
- """List of Static Resource edges"""
- edges: [SalesforceStaticResourceEdge!]!
-}
-
-"""
-A filter to be used against SolutionStatus object types. All fields are combined with a logical ‘and.’
-"""
-input SalesforceSolutionStatusConnectionFilter {
- """Filter against custom fields."""
- customField: SalesforceCustomFieldFilter
-
- """Filter by the SolutionStatus's lastModifiedBy relation."""
- lastModifiedBy: SalesforceUserConnectionFilter
-
- """Filter by the SolutionStatus's createdBy relation."""
- createdBy: SalesforceUserConnectionFilter
-
- """Filter by the SolutionStatus's id field"""
- id: SalesforceIdFilter
-
- """Filter by the SolutionStatus's masterLabel field"""
- masterLabel: SalesforceStringFilter
-
- """Filter by the SolutionStatus's apiName field"""
- apiName: SalesforceStringFilter
-
- """Filter by the SolutionStatus's sortOrder field"""
- sortOrder: SalesforceIntFilter
-
- """Filter by the SolutionStatus's isDefault field"""
- isDefault: SalesforceBooleanFilter
-
- """Filter by the SolutionStatus's isReviewed field"""
- isReviewed: SalesforceBooleanFilter
-
- """Filter by the SolutionStatus's createdById field"""
- createdById: SalesforceIdFilter
-
- """Filter by the SolutionStatus's createdDate field"""
- createdDate: SalesforceDateTimeFilter
-
- """Filter by the SolutionStatus's lastModifiedById field"""
- lastModifiedById: SalesforceIdFilter
-
- """Filter by the SolutionStatus's lastModifiedDate field"""
- lastModifiedDate: SalesforceDateTimeFilter
-
- """Filter by the SolutionStatus's systemModstamp field"""
- systemModstamp: SalesforceDateTimeFilter
-
- """Checks for any expressions in this list."""
- or: [SalesforceSolutionStatusConnectionFilter!]
-
- """Checks for all expressions in this list."""
- and: [SalesforceSolutionStatusConnectionFilter!]
-}
-
-"""Field that Solution Status Values can be sorted by"""
-enum SalesforceSolutionStatusSortByFieldEnum {
- ID
- MASTER_LABEL
- API_NAME
- SORT_ORDER
- IS_DEFAULT
- IS_REVIEWED
- CREATED_BY_ID
- CREATED_DATE
- LAST_MODIFIED_BY_ID
- LAST_MODIFIED_DATE
- SYSTEM_MODSTAMP
-}
-
-"""An edge in a connection."""
-type SalesforceSolutionStatusEdge {
- """The item at the end of the edge."""
- node: SalesforceSolutionStatus!
-
- """A cursor for use in pagination"""
- cursor: String!
-}
-
-"""Salesforce Solution Status Values connection, for use in pagination."""
-type SalesforceSolutionStatussConnection {
- """
- The count of all Solution Status Value you could get from the connection.
- """
- totalCount: Int!
-
- """Pagination Information"""
- pageInfo: PageInfo!
-
- """List of Salesforce Solution Status Values"""
- nodes: [SalesforceSolutionStatus!]!
-
- """List of Solution Status Value edges"""
- edges: [SalesforceSolutionStatusEdge!]!
-}
-
-"""Field that Solutions can be sorted by"""
-enum SalesforceSolutionSortByFieldEnum {
- ID
- IS_DELETED
- SOLUTION_NUMBER
- SOLUTION_NAME
- IS_PUBLISHED
- IS_PUBLISHED_IN_PUBLIC_KB
- STATUS
- IS_REVIEWED
- OWNER_ID
- CREATED_DATE
- CREATED_BY_ID
- LAST_MODIFIED_DATE
- LAST_MODIFIED_BY_ID
- SYSTEM_MODSTAMP
- TIMES_USED
- LAST_VIEWED_DATE
- LAST_REFERENCED_DATE
- IS_HTML
-}
-
-"""An edge in a connection."""
-type SalesforceSolutionEdge {
- """The item at the end of the edge."""
- node: SalesforceSolution!
-
- """A cursor for use in pagination"""
- cursor: String!
-}
-
-"""Salesforce Solutions connection, for use in pagination."""
-type SalesforceSolutionsConnection {
- """The count of all Solution you could get from the connection."""
- totalCount: Int!
-
- """Pagination Information"""
- pageInfo: PageInfo!
-
- """List of Salesforce Solutions"""
- nodes: [SalesforceSolution!]!
-
- """List of Solution edges"""
- edges: [SalesforceSolutionEdge!]!
-}
-
-"""Field that Sites can be sorted by"""
-enum SalesforceSiteSortByFieldEnum {
- ID
- NAME
- SUBDOMAIN
- URL_PATH_PREFIX
- GUEST_USER_ID
- STATUS
- ADMIN_ID
- DESCRIPTION
- MASTER_LABEL
- ANALYTICS_TRACKING_CODE
- SITE_TYPE
- CLICKJACK_PROTECTION_LEVEL
- DAILY_BANDWIDTH_LIMIT
- DAILY_BANDWIDTH_USED
- DAILY_REQUEST_TIME_LIMIT
- DAILY_REQUEST_TIME_USED
- MONTHLY_PAGE_VIEWS_ENTITLEMENT
- CREATED_DATE
- CREATED_BY_ID
- LAST_MODIFIED_DATE
- LAST_MODIFIED_BY_ID
- SYSTEM_MODSTAMP
-}
-
-"""An edge in a connection."""
-type SalesforceSiteEdge {
- """The item at the end of the edge."""
- node: SalesforceSite!
-
- """A cursor for use in pagination"""
- cursor: String!
-}
-
-"""Salesforce Sites connection, for use in pagination."""
-type SalesforceSitesConnection {
- """The count of all Site you could get from the connection."""
- totalCount: Int!
-
- """Pagination Information"""
- pageInfo: PageInfo!
-
- """List of Salesforce Sites"""
- nodes: [SalesforceSite!]!
-
- """List of Site edges"""
- edges: [SalesforceSiteEdge!]!
-}
-
-"""
-A filter to be used against SetupAuditTrail object types. All fields are combined with a logical ‘and.’
-"""
-input SalesforceSetupAuditTrailConnectionFilter {
- """Filter against custom fields."""
- customField: SalesforceCustomFieldFilter
-
- """Filter by the SetupAuditTrail's createdBy relation."""
- createdBy: SalesforceUserConnectionFilter
-
- """Filter by the SetupAuditTrail's id field"""
- id: SalesforceIdFilter
-
- """Filter by the SetupAuditTrail's action field"""
- action: SalesforceStringFilter
-
- """Filter by the SetupAuditTrail's createdDate field"""
- createdDate: SalesforceDateTimeFilter
-
- """Filter by the SetupAuditTrail's createdById field"""
- createdById: SalesforceIdFilter
-
- """Filter by the SetupAuditTrail's delegateUser field"""
- delegateUser: SalesforceStringFilter
-
- """Filter by the SetupAuditTrail's responsibleNamespacePrefix field"""
- responsibleNamespacePrefix: SalesforceStringFilter
-
- """Checks for any expressions in this list."""
- or: [SalesforceSetupAuditTrailConnectionFilter!]
-
- """Checks for all expressions in this list."""
- and: [SalesforceSetupAuditTrailConnectionFilter!]
-}
-
-"""Field that Setup Audit Trail Entries can be sorted by"""
-enum SalesforceSetupAuditTrailSortByFieldEnum {
- ID
- ACTION
- SECTION
- CREATED_DATE
- CREATED_BY_ID
- DISPLAY
- DELEGATE_USER
- RESPONSIBLE_NAMESPACE_PREFIX
-}
-
-"""An edge in a connection."""
-type SalesforceSetupAuditTrailEdge {
- """The item at the end of the edge."""
- node: SalesforceSetupAuditTrail!
-
- """A cursor for use in pagination"""
- cursor: String!
-}
-
-"""
-Salesforce Setup Audit Trail Entries connection, for use in pagination.
-"""
-type SalesforceSetupAuditTrailsConnection {
- """
- The count of all Setup Audit Trail Entry you could get from the connection.
- """
- totalCount: Int!
-
- """Pagination Information"""
- pageInfo: PageInfo!
-
- """List of Salesforce Setup Audit Trail Entries"""
- nodes: [SalesforceSetupAuditTrail!]!
-
- """List of Setup Audit Trail Entry edges"""
- edges: [SalesforceSetupAuditTrailEdge!]!
-}
-
-"""
-A filter to be used against SecurityCustomBaseline object types. All fields are combined with a logical ‘and.’
-"""
-input SalesforceSecurityCustomBaselineConnectionFilter {
- """Filter against custom fields."""
- customField: SalesforceCustomFieldFilter
-
- """Filter by the SecurityCustomBaseline's lastModifiedBy relation."""
- lastModifiedBy: SalesforceUserConnectionFilter
-
- """Filter by the SecurityCustomBaseline's createdBy relation."""
- createdBy: SalesforceUserConnectionFilter
-
- """Filter by the SecurityCustomBaseline's id field"""
- id: SalesforceIdFilter
-
- """Filter by the SecurityCustomBaseline's isDeleted field"""
- isDeleted: SalesforceBooleanFilter
-
- """Filter by the SecurityCustomBaseline's developerName field"""
- developerName: SalesforceStringFilter
-
- """Filter by the SecurityCustomBaseline's language field"""
- language: SalesforceStringFilter
-
- """Filter by the SecurityCustomBaseline's masterLabel field"""
- masterLabel: SalesforceStringFilter
-
- """Filter by the SecurityCustomBaseline's namespacePrefix field"""
- namespacePrefix: SalesforceStringFilter
-
- """Filter by the SecurityCustomBaseline's createdDate field"""
- createdDate: SalesforceDateTimeFilter
-
- """Filter by the SecurityCustomBaseline's createdById field"""
- createdById: SalesforceIdFilter
-
- """Filter by the SecurityCustomBaseline's lastModifiedDate field"""
- lastModifiedDate: SalesforceDateTimeFilter
-
- """Filter by the SecurityCustomBaseline's lastModifiedById field"""
- lastModifiedById: SalesforceIdFilter
-
- """Filter by the SecurityCustomBaseline's systemModstamp field"""
- systemModstamp: SalesforceDateTimeFilter
-
- """Filter by the SecurityCustomBaseline's isDefault field"""
- isDefault: SalesforceBooleanFilter
-
- """Checks for any expressions in this list."""
- or: [SalesforceSecurityCustomBaselineConnectionFilter!]
-
- """Checks for all expressions in this list."""
- and: [SalesforceSecurityCustomBaselineConnectionFilter!]
-}
-
-"""Field that Security Custom Baselines can be sorted by"""
-enum SalesforceSecurityCustomBaselineSortByFieldEnum {
- ID
- IS_DELETED
- DEVELOPER_NAME
- LANGUAGE
- MASTER_LABEL
- NAMESPACE_PREFIX
- CREATED_DATE
- CREATED_BY_ID
- LAST_MODIFIED_DATE
- LAST_MODIFIED_BY_ID
- SYSTEM_MODSTAMP
- IS_DEFAULT
-}
-
-"""An edge in a connection."""
-type SalesforceSecurityCustomBaselineEdge {
- """The item at the end of the edge."""
- node: SalesforceSecurityCustomBaseline!
-
- """A cursor for use in pagination"""
- cursor: String!
-}
-
-"""
-Salesforce Security Custom Baselines connection, for use in pagination.
-"""
-type SalesforceSecurityCustomBaselinesConnection {
- """
- The count of all Security Custom Baseline you could get from the connection.
- """
- totalCount: Int!
-
- """Pagination Information"""
- pageInfo: PageInfo!
-
- """List of Salesforce Security Custom Baselines"""
- nodes: [SalesforceSecurityCustomBaseline!]!
-
- """List of Security Custom Baseline edges"""
- edges: [SalesforceSecurityCustomBaselineEdge!]!
-}
-
-"""Field that Secure Agent Clusters can be sorted by"""
-enum SalesforceSecureAgentsClusterSortByFieldEnum {
- ID
- IS_DELETED
- DEVELOPER_NAME
- LANGUAGE
- MASTER_LABEL
- CREATED_DATE
- CREATED_BY_ID
- LAST_MODIFIED_DATE
- LAST_MODIFIED_BY_ID
- SYSTEM_MODSTAMP
- DESCRIPTION
-}
-
-"""An edge in a connection."""
-type SalesforceSecureAgentsClusterEdge {
- """The item at the end of the edge."""
- node: SalesforceSecureAgentsCluster!
-
- """A cursor for use in pagination"""
- cursor: String!
-}
-
-"""Salesforce Secure Agent Clusters connection, for use in pagination."""
-type SalesforceSecureAgentsClustersConnection {
- """
- The count of all Secure Agent Cluster you could get from the connection.
- """
- totalCount: Int!
-
- """Pagination Information"""
- pageInfo: PageInfo!
-
- """List of Salesforce Secure Agent Clusters"""
- nodes: [SalesforceSecureAgentsCluster!]!
-
- """List of Secure Agent Cluster edges"""
- edges: [SalesforceSecureAgentsClusterEdge!]!
-}
-
-"""
-A filter to be used against SearchPromotionRule object types. All fields are combined with a logical ‘and.’
-"""
-input SalesforceSearchPromotionRuleConnectionFilter {
- """Filter against custom fields."""
- customField: SalesforceCustomFieldFilter
-
- """Filter by the SearchPromotionRule's lastModifiedBy relation."""
- lastModifiedBy: SalesforceUserConnectionFilter
-
- """Filter by the SearchPromotionRule's createdBy relation."""
- createdBy: SalesforceUserConnectionFilter
-
- """Filter by the SearchPromotionRule's id field"""
- id: SalesforceIdFilter
-
- """Filter by the SearchPromotionRule's isDeleted field"""
- isDeleted: SalesforceBooleanFilter
-
- """Filter by the SearchPromotionRule's createdDate field"""
- createdDate: SalesforceDateTimeFilter
-
- """Filter by the SearchPromotionRule's createdById field"""
- createdById: SalesforceIdFilter
-
- """Filter by the SearchPromotionRule's lastModifiedDate field"""
- lastModifiedDate: SalesforceDateTimeFilter
-
- """Filter by the SearchPromotionRule's lastModifiedById field"""
- lastModifiedById: SalesforceIdFilter
-
- """Filter by the SearchPromotionRule's systemModstamp field"""
- systemModstamp: SalesforceDateTimeFilter
-
- """Filter by the SearchPromotionRule's query field"""
- query: SalesforceStringFilter
-
- """Checks for any expressions in this list."""
- or: [SalesforceSearchPromotionRuleConnectionFilter!]
-
- """Checks for all expressions in this list."""
- and: [SalesforceSearchPromotionRuleConnectionFilter!]
-}
-
-"""Field that Promoted Search Terms can be sorted by"""
-enum SalesforceSearchPromotionRuleSortByFieldEnum {
- ID
- IS_DELETED
- CREATED_DATE
- CREATED_BY_ID
- LAST_MODIFIED_DATE
- LAST_MODIFIED_BY_ID
- SYSTEM_MODSTAMP
- QUERY
-}
-
-"""An edge in a connection."""
-type SalesforceSearchPromotionRuleEdge {
- """The item at the end of the edge."""
- node: SalesforceSearchPromotionRule!
-
- """A cursor for use in pagination"""
- cursor: String!
-}
-
-"""Salesforce Promoted Search Terms connection, for use in pagination."""
-type SalesforceSearchPromotionRulesConnection {
- """
- The count of all Promoted Search Term you could get from the connection.
- """
- totalCount: Int!
-
- """Pagination Information"""
- pageInfo: PageInfo!
-
- """List of Salesforce Promoted Search Terms"""
- nodes: [SalesforceSearchPromotionRule!]!
-
- """List of Promoted Search Term edges"""
- edges: [SalesforceSearchPromotionRuleEdge!]!
-}
-
-"""
-A filter to be used against SearchActivity object types. All fields are combined with a logical ‘and.’
-"""
-input SalesforceSearchActivityConnectionFilter {
- """Filter against custom fields."""
- customField: SalesforceCustomFieldFilter
-
- """Filter by the SearchActivity's lastModifiedBy relation."""
- lastModifiedBy: SalesforceUserConnectionFilter
-
- """Filter by the SearchActivity's createdBy relation."""
- createdBy: SalesforceUserConnectionFilter
-
- """Filter by the SearchActivity's id field"""
- id: SalesforceIdFilter
-
- """Filter by the SearchActivity's isDeleted field"""
- isDeleted: SalesforceBooleanFilter
-
- """Filter by the SearchActivity's name field"""
- name: SalesforceStringFilter
-
- """Filter by the SearchActivity's createdDate field"""
- createdDate: SalesforceDateTimeFilter
-
- """Filter by the SearchActivity's createdById field"""
- createdById: SalesforceIdFilter
-
- """Filter by the SearchActivity's lastModifiedDate field"""
- lastModifiedDate: SalesforceDateTimeFilter
-
- """Filter by the SearchActivity's lastModifiedById field"""
- lastModifiedById: SalesforceIdFilter
-
- """Filter by the SearchActivity's systemModstamp field"""
- systemModstamp: SalesforceDateTimeFilter
-
- """Filter by the SearchActivity's searchTerm field"""
- searchTerm: SalesforceStringFilter
-
- """Filter by the SearchActivity's queryDate field"""
- queryDate: SalesforceDateFilter
-
- """Filter by the SearchActivity's countQueries field"""
- countQueries: SalesforceIntFilter
-
- """Filter by the SearchActivity's countUsers field"""
- countUsers: SalesforceIntFilter
-
- """Filter by the SearchActivity's avgNumResults field"""
- avgNumResults: SalesforceFloatFilter
-
- """Filter by the SearchActivity's kbChannel field"""
- kbChannel: SalesforceStringFilter
-
- """Filter by the SearchActivity's period field"""
- period: SalesforceStringFilter
-
- """Filter by the SearchActivity's clickRank field"""
- clickRank: SalesforceFloatFilter
-
- """Filter by the SearchActivity's queryLanguage field"""
- queryLanguage: SalesforceStringFilter
-
- """Filter by the SearchActivity's clickedRecordName field"""
- clickedRecordName: SalesforceStringFilter
-
- """Checks for any expressions in this list."""
- or: [SalesforceSearchActivityConnectionFilter!]
-
- """Checks for all expressions in this list."""
- and: [SalesforceSearchActivityConnectionFilter!]
-}
-
-"""Field that SearchActivities can be sorted by"""
-enum SalesforceSearchActivitySortByFieldEnum {
- ID
- IS_DELETED
- NAME
- CREATED_DATE
- CREATED_BY_ID
- LAST_MODIFIED_DATE
- LAST_MODIFIED_BY_ID
- SYSTEM_MODSTAMP
- SEARCH_TERM
- QUERY_DATE
- COUNT_QUERIES
- COUNT_USERS
- AVG_NUM_RESULTS
- KB_CHANNEL
- PERIOD
- CLICK_RANK
- QUERY_LANGUAGE
- CLICKED_RECORD_NAME
-}
-
-"""An edge in a connection."""
-type SalesforceSearchActivityEdge {
- """The item at the end of the edge."""
- node: SalesforceSearchActivity!
-
- """A cursor for use in pagination"""
- cursor: String!
-}
-
-"""Salesforce SearchActivities connection, for use in pagination."""
-type SalesforceSearchActivitysConnection {
- """The count of all SearchActivity you could get from the connection."""
- totalCount: Int!
-
- """Pagination Information"""
- pageInfo: PageInfo!
-
- """List of Salesforce SearchActivities"""
- nodes: [SalesforceSearchActivity!]!
-
- """List of SearchActivity edges"""
- edges: [SalesforceSearchActivityEdge!]!
-}
-
-"""
-A filter to be used against Scontrol object types. All fields are combined with a logical ‘and.’
-"""
-input SalesforceScontrolConnectionFilter {
- """Filter against custom fields."""
- customField: SalesforceCustomFieldFilter
-
- """Filter by the Scontrol's lastModifiedBy relation."""
- lastModifiedBy: SalesforceUserConnectionFilter
-
- """Filter by the Scontrol's createdBy relation."""
- createdBy: SalesforceUserConnectionFilter
-
- """Filter by the Scontrol's id field"""
- id: SalesforceIdFilter
-
- """Filter by the Scontrol's name field"""
- name: SalesforceStringFilter
-
- """Filter by the Scontrol's developerName field"""
- developerName: SalesforceStringFilter
-
- """Filter by the Scontrol's description field"""
- description: SalesforceStringFilter
-
- """Filter by the Scontrol's encodingKey field"""
- encodingKey: SalesforceStringFilter
-
- """Filter by the Scontrol's filename field"""
- filename: SalesforceStringFilter
-
- """Filter by the Scontrol's bodyLength field"""
- bodyLength: SalesforceIntFilter
-
- """Filter by the Scontrol's contentSource field"""
- contentSource: SalesforceStringFilter
-
- """Filter by the Scontrol's supportsCaching field"""
- supportsCaching: SalesforceBooleanFilter
-
- """Filter by the Scontrol's namespacePrefix field"""
- namespacePrefix: SalesforceStringFilter
-
- """Filter by the Scontrol's createdDate field"""
- createdDate: SalesforceDateTimeFilter
-
- """Filter by the Scontrol's createdById field"""
- createdById: SalesforceIdFilter
-
- """Filter by the Scontrol's lastModifiedDate field"""
- lastModifiedDate: SalesforceDateTimeFilter
-
- """Filter by the Scontrol's lastModifiedById field"""
- lastModifiedById: SalesforceIdFilter
-
- """Filter by the Scontrol's systemModstamp field"""
- systemModstamp: SalesforceDateTimeFilter
-
- """Filter by the Scontrol's isDeleted field"""
- isDeleted: SalesforceBooleanFilter
-
- """Checks for any expressions in this list."""
- or: [SalesforceScontrolConnectionFilter!]
-
- """Checks for all expressions in this list."""
- and: [SalesforceScontrolConnectionFilter!]
-}
-
-"""Field that Custom S-Controls can be sorted by"""
-enum SalesforceScontrolSortByFieldEnum {
- ID
- NAME
- DEVELOPER_NAME
- DESCRIPTION
- ENCODING_KEY
- FILENAME
- BODY_LENGTH
- CONTENT_SOURCE
- SUPPORTS_CACHING
- NAMESPACE_PREFIX
- CREATED_DATE
- CREATED_BY_ID
- LAST_MODIFIED_DATE
- LAST_MODIFIED_BY_ID
- SYSTEM_MODSTAMP
- IS_DELETED
-}
-
-"""An edge in a connection."""
-type SalesforceScontrolEdge {
- """The item at the end of the edge."""
- node: SalesforceScontrol!
-
- """A cursor for use in pagination"""
- cursor: String!
-}
-
-"""Salesforce Custom S-Controls connection, for use in pagination."""
-type SalesforceScontrolsConnection {
- """The count of all Custom S-Control you could get from the connection."""
- totalCount: Int!
-
- """Pagination Information"""
- pageInfo: PageInfo!
-
- """List of Salesforce Custom S-Controls"""
- nodes: [SalesforceScontrol!]!
-
- """List of Custom S-Control edges"""
- edges: [SalesforceScontrolEdge!]!
-}
-
-"""Field that Quick Texts can be sorted by"""
-enum SalesforceQuickTextSortByFieldEnum {
- ID
- OWNER_ID
- IS_DELETED
- NAME
- CREATED_DATE
- CREATED_BY_ID
- LAST_MODIFIED_DATE
- LAST_MODIFIED_BY_ID
- SYSTEM_MODSTAMP
- LAST_VIEWED_DATE
- LAST_REFERENCED_DATE
- CATEGORY
-}
-
-"""An edge in a connection."""
-type SalesforceQuickTextEdge {
- """The item at the end of the edge."""
- node: SalesforceQuickText!
-
- """A cursor for use in pagination"""
- cursor: String!
-}
-
-"""Salesforce Quick Texts connection, for use in pagination."""
-type SalesforceQuickTextsConnection {
- """The count of all Quick Text you could get from the connection."""
- totalCount: Int!
-
- """Pagination Information"""
- pageInfo: PageInfo!
-
- """List of Salesforce Quick Texts"""
- nodes: [SalesforceQuickText!]!
-
- """List of Quick Text edges"""
- edges: [SalesforceQuickTextEdge!]!
-}
-
-"""
-A filter to be used against PushTopic object types. All fields are combined with a logical ‘and.’
-"""
-input SalesforcePushTopicConnectionFilter {
- """Filter against custom fields."""
- customField: SalesforceCustomFieldFilter
-
- """Filter by the PushTopic's lastModifiedBy relation."""
- lastModifiedBy: SalesforceUserConnectionFilter
-
- """Filter by the PushTopic's createdBy relation."""
- createdBy: SalesforceUserConnectionFilter
-
- """Filter by the PushTopic's id field"""
- id: SalesforceIdFilter
-
- """Filter by the PushTopic's name field"""
- name: SalesforceStringFilter
-
- """Filter by the PushTopic's query field"""
- query: SalesforceStringFilter
-
- """Filter by the PushTopic's apiVersion field"""
- apiVersion: SalesforceFloatFilter
-
- """Filter by the PushTopic's isActive field"""
- isActive: SalesforceBooleanFilter
-
- """Filter by the PushTopic's notifyForFields field"""
- notifyForFields: SalesforceStringFilter
-
- """Filter by the PushTopic's notifyForOperations field"""
- notifyForOperations: SalesforceStringFilter
-
- """Filter by the PushTopic's description field"""
- description: SalesforceStringFilter
-
- """Filter by the PushTopic's notifyForOperationCreate field"""
- notifyForOperationCreate: SalesforceBooleanFilter
-
- """Filter by the PushTopic's notifyForOperationUpdate field"""
- notifyForOperationUpdate: SalesforceBooleanFilter
-
- """Filter by the PushTopic's notifyForOperationDelete field"""
- notifyForOperationDelete: SalesforceBooleanFilter
-
- """Filter by the PushTopic's notifyForOperationUndelete field"""
- notifyForOperationUndelete: SalesforceBooleanFilter
-
- """Filter by the PushTopic's isDeleted field"""
- isDeleted: SalesforceBooleanFilter
-
- """Filter by the PushTopic's createdDate field"""
- createdDate: SalesforceDateTimeFilter
-
- """Filter by the PushTopic's createdById field"""
- createdById: SalesforceIdFilter
-
- """Filter by the PushTopic's lastModifiedDate field"""
- lastModifiedDate: SalesforceDateTimeFilter
-
- """Filter by the PushTopic's lastModifiedById field"""
- lastModifiedById: SalesforceIdFilter
-
- """Filter by the PushTopic's systemModstamp field"""
- systemModstamp: SalesforceDateTimeFilter
-
- """Checks for any expressions in this list."""
- or: [SalesforcePushTopicConnectionFilter!]
-
- """Checks for all expressions in this list."""
- and: [SalesforcePushTopicConnectionFilter!]
-}
-
-"""Field that Push Topics can be sorted by"""
-enum SalesforcePushTopicSortByFieldEnum {
- ID
- NAME
- QUERY
- API_VERSION
- IS_ACTIVE
- NOTIFY_FOR_FIELDS
- NOTIFY_FOR_OPERATIONS
- DESCRIPTION
- IS_DELETED
- CREATED_DATE
- CREATED_BY_ID
- LAST_MODIFIED_DATE
- LAST_MODIFIED_BY_ID
- SYSTEM_MODSTAMP
-}
-
-"""An edge in a connection."""
-type SalesforcePushTopicEdge {
- """The item at the end of the edge."""
- node: SalesforcePushTopic!
-
- """A cursor for use in pagination"""
- cursor: String!
-}
-
-"""Salesforce Push Topics connection, for use in pagination."""
-type SalesforcePushTopicsConnection {
- """The count of all Push Topic you could get from the connection."""
- totalCount: Int!
-
- """Pagination Information"""
- pageInfo: PageInfo!
-
- """List of Salesforce Push Topics"""
- nodes: [SalesforcePushTopic!]!
-
- """List of Push Topic edges"""
- edges: [SalesforcePushTopicEdge!]!
-}
-
-"""Field that Process Definitions can be sorted by"""
-enum SalesforceProcessDefinitionSortByFieldEnum {
- ID
- NAME
- DEVELOPER_NAME
- TYPE
- DESCRIPTION
- TABLE_ENUM_OR_ID
- LOCK_TYPE
- STATE
- CREATED_DATE
- CREATED_BY_ID
- LAST_MODIFIED_DATE
- LAST_MODIFIED_BY_ID
- SYSTEM_MODSTAMP
-}
-
-"""An edge in a connection."""
-type SalesforceProcessDefinitionEdge {
- """The item at the end of the edge."""
- node: SalesforceProcessDefinition!
-
- """A cursor for use in pagination"""
- cursor: String!
-}
-
-"""Salesforce Process Definitions connection, for use in pagination."""
-type SalesforceProcessDefinitionsConnection {
- """The count of all Process Definition you could get from the connection."""
- totalCount: Int!
-
- """Pagination Information"""
- pageInfo: PageInfo!
-
- """List of Salesforce Process Definitions"""
- nodes: [SalesforceProcessDefinition!]!
-
- """List of Process Definition edges"""
- edges: [SalesforceProcessDefinitionEdge!]!
-}
-
-"""Field that Price Books can be sorted by"""
-enum SalesforcePricebook2SortByFieldEnum {
- ID
- IS_DELETED
- NAME
- CREATED_DATE
- CREATED_BY_ID
- LAST_MODIFIED_DATE
- LAST_MODIFIED_BY_ID
- SYSTEM_MODSTAMP
- LAST_VIEWED_DATE
- LAST_REFERENCED_DATE
- IS_ACTIVE
- IS_ARCHIVED
- DESCRIPTION
- IS_STANDARD
-}
-
-"""An edge in a connection."""
-type SalesforcePricebook2Edge {
- """The item at the end of the edge."""
- node: SalesforcePricebook2!
-
- """A cursor for use in pagination"""
- cursor: String!
-}
-
-"""Salesforce Price Books connection, for use in pagination."""
-type SalesforcePricebook2sConnection {
- """The count of all Price Book you could get from the connection."""
- totalCount: Int!
-
- """Pagination Information"""
- pageInfo: PageInfo!
-
- """List of Salesforce Price Books"""
- nodes: [SalesforcePricebook2!]!
-
- """List of Price Book edges"""
- edges: [SalesforcePricebook2Edge!]!
-}
-
-"""Field that Platform Cache Partitions can be sorted by"""
-enum SalesforcePlatformCachePartitionSortByFieldEnum {
- ID
- IS_DELETED
- DEVELOPER_NAME
- LANGUAGE
- MASTER_LABEL
- NAMESPACE_PREFIX
- CREATED_DATE
- CREATED_BY_ID
- LAST_MODIFIED_DATE
- LAST_MODIFIED_BY_ID
- SYSTEM_MODSTAMP
- IS_DEFAULT_PARTITION
-}
-
-"""An edge in a connection."""
-type SalesforcePlatformCachePartitionEdge {
- """The item at the end of the edge."""
- node: SalesforcePlatformCachePartition!
-
- """A cursor for use in pagination"""
- cursor: String!
-}
-
-"""
-Salesforce Platform Cache Partitions connection, for use in pagination.
-"""
-type SalesforcePlatformCachePartitionsConnection {
- """
- The count of all Platform Cache Partition you could get from the connection.
- """
- totalCount: Int!
-
- """Pagination Information"""
- pageInfo: PageInfo!
-
- """List of Salesforce Platform Cache Partitions"""
- nodes: [SalesforcePlatformCachePartition!]!
-
- """List of Platform Cache Partition edges"""
- edges: [SalesforcePlatformCachePartitionEdge!]!
-}
-
-"""Field that Permission Set Licenses can be sorted by"""
-enum SalesforcePermissionSetLicenseSortByFieldEnum {
- ID
- IS_DELETED
- DEVELOPER_NAME
- LANGUAGE
- MASTER_LABEL
- CREATED_DATE
- CREATED_BY_ID
- LAST_MODIFIED_DATE
- LAST_MODIFIED_BY_ID
- SYSTEM_MODSTAMP
- PERMISSION_SET_LICENSE_KEY
- TOTAL_LICENSES
- STATUS
- EXPIRATION_DATE
- USED_LICENSES
-}
-
-"""An edge in a connection."""
-type SalesforcePermissionSetLicenseEdge {
- """The item at the end of the edge."""
- node: SalesforcePermissionSetLicense!
-
- """A cursor for use in pagination"""
- cursor: String!
-}
-
-"""Salesforce Permission Set Licenses connection, for use in pagination."""
-type SalesforcePermissionSetLicensesConnection {
- """
- The count of all Permission Set License you could get from the connection.
- """
- totalCount: Int!
-
- """Pagination Information"""
- pageInfo: PageInfo!
-
- """List of Salesforce Permission Set Licenses"""
- nodes: [SalesforcePermissionSetLicense!]!
-
- """List of Permission Set License edges"""
- edges: [SalesforcePermissionSetLicenseEdge!]!
-}
-
-"""
-A filter to be used against PartnerRole object types. All fields are combined with a logical ‘and.’
-"""
-input SalesforcePartnerRoleConnectionFilter {
- """Filter against custom fields."""
- customField: SalesforceCustomFieldFilter
-
- """Filter by the PartnerRole's lastModifiedBy relation."""
- lastModifiedBy: SalesforceUserConnectionFilter
-
- """Filter by the PartnerRole's createdBy relation."""
- createdBy: SalesforceUserConnectionFilter
-
- """Filter by the PartnerRole's id field"""
- id: SalesforceIdFilter
-
- """Filter by the PartnerRole's masterLabel field"""
- masterLabel: SalesforceStringFilter
-
- """Filter by the PartnerRole's apiName field"""
- apiName: SalesforceStringFilter
-
- """Filter by the PartnerRole's sortOrder field"""
- sortOrder: SalesforceIntFilter
-
- """Filter by the PartnerRole's reverseRole field"""
- reverseRole: SalesforceStringFilter
-
- """Filter by the PartnerRole's createdById field"""
- createdById: SalesforceIdFilter
-
- """Filter by the PartnerRole's createdDate field"""
- createdDate: SalesforceDateTimeFilter
-
- """Filter by the PartnerRole's lastModifiedById field"""
- lastModifiedById: SalesforceIdFilter
-
- """Filter by the PartnerRole's lastModifiedDate field"""
- lastModifiedDate: SalesforceDateTimeFilter
-
- """Filter by the PartnerRole's systemModstamp field"""
- systemModstamp: SalesforceDateTimeFilter
-
- """Checks for any expressions in this list."""
- or: [SalesforcePartnerRoleConnectionFilter!]
-
- """Checks for all expressions in this list."""
- and: [SalesforcePartnerRoleConnectionFilter!]
-}
-
-"""Field that Partner Role Values can be sorted by"""
-enum SalesforcePartnerRoleSortByFieldEnum {
- ID
- MASTER_LABEL
- API_NAME
- SORT_ORDER
- REVERSE_ROLE
- CREATED_BY_ID
- CREATED_DATE
- LAST_MODIFIED_BY_ID
- LAST_MODIFIED_DATE
- SYSTEM_MODSTAMP
-}
-
-"""An edge in a connection."""
-type SalesforcePartnerRoleEdge {
- """The item at the end of the edge."""
- node: SalesforcePartnerRole!
-
- """A cursor for use in pagination"""
- cursor: String!
-}
-
-"""Salesforce Partner Role Values connection, for use in pagination."""
-type SalesforcePartnerRolesConnection {
- """The count of all Partner Role Value you could get from the connection."""
- totalCount: Int!
-
- """Pagination Information"""
- pageInfo: PageInfo!
-
- """List of Salesforce Partner Role Values"""
- nodes: [SalesforcePartnerRole!]!
-
- """List of Partner Role Value edges"""
- edges: [SalesforcePartnerRoleEdge!]!
-}
-
-"""Field that Organizations can be sorted by"""
-enum SalesforceOrganizationSortByFieldEnum {
- ID
- NAME
- DIVISION
- STREET
- CITY
- STATE
- POSTAL_CODE
- COUNTRY
- LATITUDE
- LONGITUDE
- GEOCODE_ACCURACY
- PHONE
- FAX
- PRIMARY_CONTACT
- DEFAULT_LOCALE_SID_KEY
- LANGUAGE_LOCALE_KEY
- RECEIVES_INFO_EMAILS
- RECEIVES_ADMIN_INFO_EMAILS
- FISCAL_YEAR_START_MONTH
- USES_START_DATE_AS_FISCAL_YEAR_NAME
- DEFAULT_ACCOUNT_ACCESS
- DEFAULT_CONTACT_ACCESS
- DEFAULT_OPPORTUNITY_ACCESS
- DEFAULT_LEAD_ACCESS
- DEFAULT_CASE_ACCESS
- DEFAULT_CALENDAR_ACCESS
- DEFAULT_PRICEBOOK_ACCESS
- DEFAULT_CAMPAIGN_ACCESS
- SYSTEM_MODSTAMP
- COMPLIANCE_BCC_EMAIL
- UI_SKIN
- SIGNUP_COUNTRY_ISO_CODE
- TRIAL_EXPIRATION_DATE
- NUM_KNOWLEDGE_SERVICE
- ORGANIZATION_TYPE
- NAMESPACE_PREFIX
- INSTANCE_NAME
- IS_SANDBOX
- WEB_TO_CASE_DEFAULT_ORIGIN
- MONTHLY_PAGE_VIEWS_USED
- MONTHLY_PAGE_VIEWS_ENTITLEMENT
- IS_READ_ONLY
- CREATED_DATE
- CREATED_BY_ID
- LAST_MODIFIED_DATE
- LAST_MODIFIED_BY_ID
-}
-
-"""An edge in a connection."""
-type SalesforceOrganizationEdge {
- """The item at the end of the edge."""
- node: SalesforceOrganization!
-
- """A cursor for use in pagination"""
- cursor: String!
-}
-
-"""Salesforce Organizations connection, for use in pagination."""
-type SalesforceOrganizationsConnection {
- """The count of all Organization you could get from the connection."""
- totalCount: Int!
-
- """Pagination Information"""
- pageInfo: PageInfo!
-
- """List of Salesforce Organizations"""
- nodes: [SalesforceOrganization!]!
-
- """List of Organization edges"""
- edges: [SalesforceOrganizationEdge!]!
-}
-
-"""
-A filter to be used against OrgWideEmailAddress object types. All fields are combined with a logical ‘and.’
-"""
-input SalesforceOrgWideEmailAddressConnectionFilter {
- """Filter against custom fields."""
- customField: SalesforceCustomFieldFilter
-
- """Filter by the OrgWideEmailAddress's lastModifiedBy relation."""
- lastModifiedBy: SalesforceUserConnectionFilter
-
- """Filter by the OrgWideEmailAddress's createdBy relation."""
- createdBy: SalesforceUserConnectionFilter
-
- """Filter by the OrgWideEmailAddress's id field"""
- id: SalesforceIdFilter
-
- """Filter by the OrgWideEmailAddress's createdById field"""
- createdById: SalesforceIdFilter
-
- """Filter by the OrgWideEmailAddress's createdDate field"""
- createdDate: SalesforceDateTimeFilter
-
- """Filter by the OrgWideEmailAddress's lastModifiedDate field"""
- lastModifiedDate: SalesforceDateTimeFilter
-
- """Filter by the OrgWideEmailAddress's lastModifiedById field"""
- lastModifiedById: SalesforceIdFilter
-
- """Filter by the OrgWideEmailAddress's systemModstamp field"""
- systemModstamp: SalesforceDateTimeFilter
-
- """Filter by the OrgWideEmailAddress's address field"""
- address: SalesforceStringFilter
-
- """Filter by the OrgWideEmailAddress's displayName field"""
- displayName: SalesforceStringFilter
-
- """Filter by the OrgWideEmailAddress's isAllowAllProfiles field"""
- isAllowAllProfiles: SalesforceBooleanFilter
-
- """Checks for any expressions in this list."""
- or: [SalesforceOrgWideEmailAddressConnectionFilter!]
-
- """Checks for all expressions in this list."""
- and: [SalesforceOrgWideEmailAddressConnectionFilter!]
-}
-
-"""Field that Organization-wide From Email Addresses can be sorted by"""
-enum SalesforceOrgWideEmailAddressSortByFieldEnum {
- ID
- CREATED_BY_ID
- CREATED_DATE
- LAST_MODIFIED_DATE
- LAST_MODIFIED_BY_ID
- SYSTEM_MODSTAMP
- ADDRESS
- DISPLAY_NAME
- IS_ALLOW_ALL_PROFILES
-}
-
-"""An edge in a connection."""
-type SalesforceOrgWideEmailAddressEdge {
- """The item at the end of the edge."""
- node: SalesforceOrgWideEmailAddress!
-
- """A cursor for use in pagination"""
- cursor: String!
-}
-
-"""
-Salesforce Organization-wide From Email Addresses connection, for use in pagination.
-"""
-type SalesforceOrgWideEmailAddresssConnection {
- """
- The count of all Organization-wide From Email Address you could get from the connection.
- """
- totalCount: Int!
-
- """Pagination Information"""
- pageInfo: PageInfo!
-
- """List of Salesforce Organization-wide From Email Addresses"""
- nodes: [SalesforceOrgWideEmailAddress!]!
-
- """List of Organization-wide From Email Address edges"""
- edges: [SalesforceOrgWideEmailAddressEdge!]!
-}
-
-"""Field that Org Delete Requests can be sorted by"""
-enum SalesforceOrgDeleteRequestSortByFieldEnum {
- ID
- OWNER_ID
- IS_DELETED
- NAME
- CREATED_DATE
- CREATED_BY_ID
- LAST_MODIFIED_DATE
- LAST_MODIFIED_BY_ID
- SYSTEM_MODSTAMP
- REQUEST_TYPE
-}
-
-"""An edge in a connection."""
-type SalesforceOrgDeleteRequestEdge {
- """The item at the end of the edge."""
- node: SalesforceOrgDeleteRequest!
-
- """A cursor for use in pagination"""
- cursor: String!
-}
-
-"""Salesforce Org Delete Requests connection, for use in pagination."""
-type SalesforceOrgDeleteRequestsConnection {
- """The count of all Org Delete Request you could get from the connection."""
- totalCount: Int!
-
- """Pagination Information"""
- pageInfo: PageInfo!
-
- """List of Salesforce Org Delete Requests"""
- nodes: [SalesforceOrgDeleteRequest!]!
-
- """List of Org Delete Request edges"""
- edges: [SalesforceOrgDeleteRequestEdge!]!
-}
-
-"""
-A filter to be used against OpportunityStage object types. All fields are combined with a logical ‘and.’
-"""
-input SalesforceOpportunityStageConnectionFilter {
- """Filter against custom fields."""
- customField: SalesforceCustomFieldFilter
-
- """Filter by the OpportunityStage's lastModifiedBy relation."""
- lastModifiedBy: SalesforceUserConnectionFilter
-
- """Filter by the OpportunityStage's createdBy relation."""
- createdBy: SalesforceUserConnectionFilter
-
- """Filter by the OpportunityStage's id field"""
- id: SalesforceIdFilter
-
- """Filter by the OpportunityStage's masterLabel field"""
- masterLabel: SalesforceStringFilter
-
- """Filter by the OpportunityStage's apiName field"""
- apiName: SalesforceStringFilter
-
- """Filter by the OpportunityStage's isActive field"""
- isActive: SalesforceBooleanFilter
-
- """Filter by the OpportunityStage's sortOrder field"""
- sortOrder: SalesforceIntFilter
-
- """Filter by the OpportunityStage's isClosed field"""
- isClosed: SalesforceBooleanFilter
-
- """Filter by the OpportunityStage's isWon field"""
- isWon: SalesforceBooleanFilter
-
- """Filter by the OpportunityStage's forecastCategory field"""
- forecastCategory: SalesforceStringFilter
-
- """Filter by the OpportunityStage's forecastCategoryName field"""
- forecastCategoryName: SalesforceStringFilter
-
- """Filter by the OpportunityStage's defaultProbability field"""
- defaultProbability: SalesforceFloatFilter
-
- """Filter by the OpportunityStage's description field"""
- description: SalesforceStringFilter
-
- """Filter by the OpportunityStage's createdById field"""
- createdById: SalesforceIdFilter
-
- """Filter by the OpportunityStage's createdDate field"""
- createdDate: SalesforceDateTimeFilter
-
- """Filter by the OpportunityStage's lastModifiedById field"""
- lastModifiedById: SalesforceIdFilter
-
- """Filter by the OpportunityStage's lastModifiedDate field"""
- lastModifiedDate: SalesforceDateTimeFilter
-
- """Filter by the OpportunityStage's systemModstamp field"""
- systemModstamp: SalesforceDateTimeFilter
-
- """Checks for any expressions in this list."""
- or: [SalesforceOpportunityStageConnectionFilter!]
-
- """Checks for all expressions in this list."""
- and: [SalesforceOpportunityStageConnectionFilter!]
-}
-
-"""Field that Opportunity Stages can be sorted by"""
-enum SalesforceOpportunityStageSortByFieldEnum {
- ID
- MASTER_LABEL
- API_NAME
- IS_ACTIVE
- SORT_ORDER
- IS_CLOSED
- IS_WON
- FORECAST_CATEGORY
- FORECAST_CATEGORY_NAME
- DEFAULT_PROBABILITY
- DESCRIPTION
- CREATED_BY_ID
- CREATED_DATE
- LAST_MODIFIED_BY_ID
- LAST_MODIFIED_DATE
- SYSTEM_MODSTAMP
-}
-
-"""An edge in a connection."""
-type SalesforceOpportunityStageEdge {
- """The item at the end of the edge."""
- node: SalesforceOpportunityStage!
-
- """A cursor for use in pagination"""
- cursor: String!
-}
-
-"""Salesforce Opportunity Stages connection, for use in pagination."""
-type SalesforceOpportunityStagesConnection {
- """The count of all Opportunity Stage you could get from the connection."""
- totalCount: Int!
-
- """Pagination Information"""
- pageInfo: PageInfo!
-
- """List of Salesforce Opportunity Stages"""
- nodes: [SalesforceOpportunityStage!]!
-
- """List of Opportunity Stage edges"""
- edges: [SalesforceOpportunityStageEdge!]!
-}
-
-"""Field that Matching Rules can be sorted by"""
-enum SalesforceMatchingRuleSortByFieldEnum {
- ID
- IS_DELETED
- SOBJECT_TYPE
- DEVELOPER_NAME
- LANGUAGE
- MASTER_LABEL
- NAMESPACE_PREFIX
- CREATED_DATE
- CREATED_BY_ID
- LAST_MODIFIED_DATE
- LAST_MODIFIED_BY_ID
- SYSTEM_MODSTAMP
- MATCH_ENGINE
- BOOLEAN_FILTER
- DESCRIPTION
- RULE_STATUS
- SOBJECT_SUBTYPE
-}
-
-"""An edge in a connection."""
-type SalesforceMatchingRuleEdge {
- """The item at the end of the edge."""
- node: SalesforceMatchingRule!
-
- """A cursor for use in pagination"""
- cursor: String!
-}
-
-"""Salesforce Matching Rules connection, for use in pagination."""
-type SalesforceMatchingRulesConnection {
- """The count of all Matching Rule you could get from the connection."""
- totalCount: Int!
-
- """Pagination Information"""
- pageInfo: PageInfo!
-
- """List of Salesforce Matching Rules"""
- nodes: [SalesforceMatchingRule!]!
-
- """List of Matching Rule edges"""
- edges: [SalesforceMatchingRuleEdge!]!
-}
-
-"""
-A filter to be used against MailmergeTemplate object types. All fields are combined with a logical ‘and.’
-"""
-input SalesforceMailmergeTemplateConnectionFilter {
- """Filter against custom fields."""
- customField: SalesforceCustomFieldFilter
-
- """Filter by the MailmergeTemplate's lastModifiedBy relation."""
- lastModifiedBy: SalesforceUserConnectionFilter
-
- """Filter by the MailmergeTemplate's createdBy relation."""
- createdBy: SalesforceUserConnectionFilter
-
- """Filter by the MailmergeTemplate's id field"""
- id: SalesforceIdFilter
-
- """Filter by the MailmergeTemplate's isDeleted field"""
- isDeleted: SalesforceBooleanFilter
-
- """Filter by the MailmergeTemplate's name field"""
- name: SalesforceStringFilter
-
- """Filter by the MailmergeTemplate's description field"""
- description: SalesforceStringFilter
-
- """Filter by the MailmergeTemplate's filename field"""
- filename: SalesforceStringFilter
-
- """Filter by the MailmergeTemplate's bodyLength field"""
- bodyLength: SalesforceIntFilter
-
- """Filter by the MailmergeTemplate's lastUsedDate field"""
- lastUsedDate: SalesforceDateTimeFilter
-
- """Filter by the MailmergeTemplate's createdDate field"""
- createdDate: SalesforceDateTimeFilter
-
- """Filter by the MailmergeTemplate's createdById field"""
- createdById: SalesforceIdFilter
-
- """Filter by the MailmergeTemplate's lastModifiedDate field"""
- lastModifiedDate: SalesforceDateTimeFilter
-
- """Filter by the MailmergeTemplate's lastModifiedById field"""
- lastModifiedById: SalesforceIdFilter
-
- """Filter by the MailmergeTemplate's systemModstamp field"""
- systemModstamp: SalesforceDateTimeFilter
-
- """
- Filter by the MailmergeTemplate's securityOptionsAttachmentScannedForXss field
- """
- securityOptionsAttachmentScannedForXss: SalesforceBooleanFilter
-
- """
- Filter by the MailmergeTemplate's securityOptionsAttachmentHasXssThreat field
- """
- securityOptionsAttachmentHasXssThreat: SalesforceBooleanFilter
-
- """
- Filter by the MailmergeTemplate's securityOptionsAttachmentScannedforFlash field
- """
- securityOptionsAttachmentScannedforFlash: SalesforceBooleanFilter
-
- """
- Filter by the MailmergeTemplate's securityOptionsAttachmentHasFlash field
- """
- securityOptionsAttachmentHasFlash: SalesforceBooleanFilter
-
- """Checks for any expressions in this list."""
- or: [SalesforceMailmergeTemplateConnectionFilter!]
-
- """Checks for all expressions in this list."""
- and: [SalesforceMailmergeTemplateConnectionFilter!]
-}
-
-"""Field that Mail Merge Templates can be sorted by"""
-enum SalesforceMailmergeTemplateSortByFieldEnum {
- ID
- IS_DELETED
- NAME
- DESCRIPTION
- FILENAME
- BODY_LENGTH
- LAST_USED_DATE
- CREATED_DATE
- CREATED_BY_ID
- LAST_MODIFIED_DATE
- LAST_MODIFIED_BY_ID
- SYSTEM_MODSTAMP
-}
-
-"""An edge in a connection."""
-type SalesforceMailmergeTemplateEdge {
- """The item at the end of the edge."""
- node: SalesforceMailmergeTemplate!
-
- """A cursor for use in pagination"""
- cursor: String!
-}
-
-"""Salesforce Mail Merge Templates connection, for use in pagination."""
-type SalesforceMailmergeTemplatesConnection {
- """
- The count of all Mail Merge Template you could get from the connection.
- """
- totalCount: Int!
-
- """Pagination Information"""
- pageInfo: PageInfo!
-
- """List of Salesforce Mail Merge Templates"""
- nodes: [SalesforceMailmergeTemplate!]!
-
- """List of Mail Merge Template edges"""
- edges: [SalesforceMailmergeTemplateEdge!]!
-}
-
-"""Field that Macros can be sorted by"""
-enum SalesforceMacroSortByFieldEnum {
- ID
- OWNER_ID
- IS_DELETED
- NAME
- CREATED_DATE
- CREATED_BY_ID
- LAST_MODIFIED_DATE
- LAST_MODIFIED_BY_ID
- SYSTEM_MODSTAMP
- LAST_VIEWED_DATE
- LAST_REFERENCED_DATE
- STARTING_CONTEXT
-}
-
-"""An edge in a connection."""
-type SalesforceMacroEdge {
- """The item at the end of the edge."""
- node: SalesforceMacro!
-
- """A cursor for use in pagination"""
- cursor: String!
-}
-
-"""Salesforce Macros connection, for use in pagination."""
-type SalesforceMacrosConnection {
- """The count of all Macro you could get from the connection."""
- totalCount: Int!
-
- """Pagination Information"""
- pageInfo: PageInfo!
-
- """List of Salesforce Macros"""
- nodes: [SalesforceMacro!]!
-
- """List of Macro edges"""
- edges: [SalesforceMacroEdge!]!
-}
-
-"""
-A filter to be used against LoginIp object types. All fields are combined with a logical ‘and.’
-"""
-input SalesforceLoginIpConnectionFilter {
- """Filter against custom fields."""
- customField: SalesforceCustomFieldFilter
-
- """Filter by the LoginIp's users relation."""
- users: SalesforceUserConnectionFilter
-
- """Filter by the LoginIp's id field"""
- id: SalesforceIdFilter
-
- """Filter by the LoginIp's usersId field"""
- usersId: SalesforceIdFilter
-
- """Filter by the LoginIp's sourceIp field"""
- sourceIp: SalesforceStringFilter
-
- """Filter by the LoginIp's createdDate field"""
- createdDate: SalesforceDateTimeFilter
-
- """Filter by the LoginIp's isAuthenticated field"""
- isAuthenticated: SalesforceBooleanFilter
-
- """Filter by the LoginIp's challengeSentDate field"""
- challengeSentDate: SalesforceDateTimeFilter
-
- """Filter by the LoginIp's challengeMethod field"""
- challengeMethod: SalesforceStringFilter
-
- """Checks for any expressions in this list."""
- or: [SalesforceLoginIpConnectionFilter!]
-
- """Checks for all expressions in this list."""
- and: [SalesforceLoginIpConnectionFilter!]
-}
-
-"""Field that Login IPs can be sorted by"""
-enum SalesforceLoginIpSortByFieldEnum {
- ID
- USERS_ID
- SOURCE_IP
- CREATED_DATE
- IS_AUTHENTICATED
- CHALLENGE_SENT_DATE
- CHALLENGE_METHOD
-}
-
-"""An edge in a connection."""
-type SalesforceLoginIpEdge {
- """The item at the end of the edge."""
- node: SalesforceLoginIp!
-
- """A cursor for use in pagination"""
- cursor: String!
-}
-
-"""Salesforce Login IPs connection, for use in pagination."""
-type SalesforceLoginIpsConnection {
- """The count of all Login IP you could get from the connection."""
- totalCount: Int!
-
- """Pagination Information"""
- pageInfo: PageInfo!
-
- """List of Salesforce Login IPs"""
- nodes: [SalesforceLoginIp!]!
-
- """List of Login IP edges"""
- edges: [SalesforceLoginIpEdge!]!
-}
-
-"""Field that Login Geo Datas can be sorted by"""
-enum SalesforceLoginGeoSortByFieldEnum {
- ID
- CREATED_DATE
- CREATED_BY_ID
- LAST_MODIFIED_BY_ID
- LAST_MODIFIED_DATE
- IS_DELETED
- SYSTEM_MODSTAMP
- LOGIN_TIME
- COUNTRY_ISO
- COUNTRY
- LATITUDE
- LONGITUDE
- CITY
- POSTAL_CODE
- SUBDIVISION
-}
-
-"""An edge in a connection."""
-type SalesforceLoginGeoEdge {
- """The item at the end of the edge."""
- node: SalesforceLoginGeo!
-
- """A cursor for use in pagination"""
- cursor: String!
-}
-
-"""Salesforce Login Geo Datas connection, for use in pagination."""
-type SalesforceLoginGeosConnection {
- """The count of all Login Geo Data you could get from the connection."""
- totalCount: Int!
-
- """Pagination Information"""
- pageInfo: PageInfo!
-
- """List of Salesforce Login Geo Datas"""
- nodes: [SalesforceLoginGeo!]!
-
- """List of Login Geo Data edges"""
- edges: [SalesforceLoginGeoEdge!]!
-}
-
-"""
-A filter to be used against ListViewChart object types. All fields are combined with a logical ‘and.’
-"""
-input SalesforceListViewChartConnectionFilter {
- """Filter against custom fields."""
- customField: SalesforceCustomFieldFilter
-
- """Filter by the ListViewChart's owner relation."""
- owner: SalesforceUserConnectionFilter
-
- """Filter by the ListViewChart's lastModifiedBy relation."""
- lastModifiedBy: SalesforceUserConnectionFilter
-
- """Filter by the ListViewChart's createdBy relation."""
- createdBy: SalesforceUserConnectionFilter
-
- """Filter by the ListViewChart's id field"""
- id: SalesforceIdFilter
-
- """Filter by the ListViewChart's isDeleted field"""
- isDeleted: SalesforceBooleanFilter
-
- """Filter by the ListViewChart's sobjectType field"""
- sobjectType: SalesforceStringFilter
-
- """Filter by the ListViewChart's developerName field"""
- developerName: SalesforceStringFilter
-
- """Filter by the ListViewChart's language field"""
- language: SalesforceStringFilter
-
- """Filter by the ListViewChart's masterLabel field"""
- masterLabel: SalesforceStringFilter
-
- """Filter by the ListViewChart's createdDate field"""
- createdDate: SalesforceDateTimeFilter
-
- """Filter by the ListViewChart's createdById field"""
- createdById: SalesforceIdFilter
-
- """Filter by the ListViewChart's lastModifiedDate field"""
- lastModifiedDate: SalesforceDateTimeFilter
-
- """Filter by the ListViewChart's lastModifiedById field"""
- lastModifiedById: SalesforceIdFilter
-
- """Filter by the ListViewChart's systemModstamp field"""
- systemModstamp: SalesforceDateTimeFilter
-
- """Filter by the ListViewChart's ownerId field"""
- ownerId: SalesforceIdFilter
-
- """Filter by the ListViewChart's chartType field"""
- chartType: SalesforceStringFilter
-
- """Filter by the ListViewChart's groupingField field"""
- groupingField: SalesforceStringFilter
-
- """Filter by the ListViewChart's aggregateField field"""
- aggregateField: SalesforceStringFilter
-
- """Filter by the ListViewChart's aggregateType field"""
- aggregateType: SalesforceStringFilter
-
- """Checks for any expressions in this list."""
- or: [SalesforceListViewChartConnectionFilter!]
-
- """Checks for all expressions in this list."""
- and: [SalesforceListViewChartConnectionFilter!]
-}
-
-"""Field that List View Charts can be sorted by"""
-enum SalesforceListViewChartSortByFieldEnum {
- ID
- IS_DELETED
- SOBJECT_TYPE
- DEVELOPER_NAME
- LANGUAGE
- MASTER_LABEL
- CREATED_DATE
- CREATED_BY_ID
- LAST_MODIFIED_DATE
- LAST_MODIFIED_BY_ID
- SYSTEM_MODSTAMP
- OWNER_ID
- CHART_TYPE
- GROUPING_FIELD
- AGGREGATE_FIELD
- AGGREGATE_TYPE
-}
-
-"""An edge in a connection."""
-type SalesforceListViewChartEdge {
- """The item at the end of the edge."""
- node: SalesforceListViewChart!
-
- """A cursor for use in pagination"""
- cursor: String!
-}
-
-"""Salesforce List View Charts connection, for use in pagination."""
-type SalesforceListViewChartsConnection {
- """The count of all List View Chart you could get from the connection."""
- totalCount: Int!
-
- """Pagination Information"""
- pageInfo: PageInfo!
-
- """List of Salesforce List View Charts"""
- nodes: [SalesforceListViewChart!]!
-
- """List of List View Chart edges"""
- edges: [SalesforceListViewChartEdge!]!
-}
-
-"""Field that List Views can be sorted by"""
-enum SalesforceListViewSortByFieldEnum {
- ID
- NAME
- DEVELOPER_NAME
- NAMESPACE_PREFIX
- SOBJECT_TYPE
- IS_SOQL_COMPATIBLE
- CREATED_DATE
- CREATED_BY_ID
- LAST_MODIFIED_DATE
- LAST_MODIFIED_BY_ID
- SYSTEM_MODSTAMP
- LAST_VIEWED_DATE
- LAST_REFERENCED_DATE
-}
-
-"""An edge in a connection."""
-type SalesforceListViewEdge {
- """The item at the end of the edge."""
- node: SalesforceListView!
-
- """A cursor for use in pagination"""
- cursor: String!
-}
-
-"""Salesforce List Views connection, for use in pagination."""
-type SalesforceListViewsConnection {
- """The count of all List View you could get from the connection."""
- totalCount: Int!
-
- """Pagination Information"""
- pageInfo: PageInfo!
-
- """List of Salesforce List Views"""
- nodes: [SalesforceListView!]!
-
- """List of List View edges"""
- edges: [SalesforceListViewEdge!]!
-}
-
-"""Field that List Emails can be sorted by"""
-enum SalesforceListEmailSortByFieldEnum {
- ID
- OWNER_ID
- IS_DELETED
- NAME
- CREATED_DATE
- CREATED_BY_ID
- LAST_MODIFIED_DATE
- LAST_MODIFIED_BY_ID
- SYSTEM_MODSTAMP
- LAST_VIEWED_DATE
- LAST_REFERENCED_DATE
- FROM_NAME
- STATUS
- HAS_ATTACHMENT
- SCHEDULED_DATE
- TOTAL_SENT
-}
-
-"""An edge in a connection."""
-type SalesforceListEmailEdge {
- """The item at the end of the edge."""
- node: SalesforceListEmail!
-
- """A cursor for use in pagination"""
- cursor: String!
-}
-
-"""Salesforce List Emails connection, for use in pagination."""
-type SalesforceListEmailsConnection {
- """The count of all List Email you could get from the connection."""
- totalCount: Int!
-
- """Pagination Information"""
- pageInfo: PageInfo!
-
- """List of Salesforce List Emails"""
- nodes: [SalesforceListEmail!]!
-
- """List of List Email edges"""
- edges: [SalesforceListEmailEdge!]!
-}
-
-"""Field that LightningComponentBundles can be sorted by"""
-enum SalesforceLightningComponentBundleSortByFieldEnum {
- ID
- IS_DELETED
- DEVELOPER_NAME
- LANGUAGE
- MASTER_LABEL
- NAMESPACE_PREFIX
- CREATED_DATE
- CREATED_BY_ID
- LAST_MODIFIED_DATE
- LAST_MODIFIED_BY_ID
- SYSTEM_MODSTAMP
- API_VERSION
- MIN_VERSION
- IS_EXPOSED
- AVAILABLE_FOR
-}
-
-"""An edge in a connection."""
-type SalesforceLightningComponentBundleEdge {
- """The item at the end of the edge."""
- node: SalesforceLightningComponentBundle!
-
- """A cursor for use in pagination"""
- cursor: String!
-}
-
-"""
-Salesforce LightningComponentBundles connection, for use in pagination.
-"""
-type SalesforceLightningComponentBundlesConnection {
- """
- The count of all LightningComponentBundle you could get from the connection.
- """
- totalCount: Int!
-
- """Pagination Information"""
- pageInfo: PageInfo!
-
- """List of Salesforce LightningComponentBundles"""
- nodes: [SalesforceLightningComponentBundle!]!
-
- """List of LightningComponentBundle edges"""
- edges: [SalesforceLightningComponentBundleEdge!]!
-}
-
-"""
-A filter to be used against LeadStatus object types. All fields are combined with a logical ‘and.’
-"""
-input SalesforceLeadStatusConnectionFilter {
- """Filter against custom fields."""
- customField: SalesforceCustomFieldFilter
-
- """Filter by the LeadStatus's lastModifiedBy relation."""
- lastModifiedBy: SalesforceUserConnectionFilter
-
- """Filter by the LeadStatus's createdBy relation."""
- createdBy: SalesforceUserConnectionFilter
-
- """Filter by the LeadStatus's id field"""
- id: SalesforceIdFilter
-
- """Filter by the LeadStatus's masterLabel field"""
- masterLabel: SalesforceStringFilter
-
- """Filter by the LeadStatus's apiName field"""
- apiName: SalesforceStringFilter
-
- """Filter by the LeadStatus's sortOrder field"""
- sortOrder: SalesforceIntFilter
-
- """Filter by the LeadStatus's isDefault field"""
- isDefault: SalesforceBooleanFilter
-
- """Filter by the LeadStatus's isConverted field"""
- isConverted: SalesforceBooleanFilter
-
- """Filter by the LeadStatus's createdById field"""
- createdById: SalesforceIdFilter
-
- """Filter by the LeadStatus's createdDate field"""
- createdDate: SalesforceDateTimeFilter
-
- """Filter by the LeadStatus's lastModifiedById field"""
- lastModifiedById: SalesforceIdFilter
-
- """Filter by the LeadStatus's lastModifiedDate field"""
- lastModifiedDate: SalesforceDateTimeFilter
-
- """Filter by the LeadStatus's systemModstamp field"""
- systemModstamp: SalesforceDateTimeFilter
-
- """Checks for any expressions in this list."""
- or: [SalesforceLeadStatusConnectionFilter!]
-
- """Checks for all expressions in this list."""
- and: [SalesforceLeadStatusConnectionFilter!]
-}
-
-"""Field that Lead Status Values can be sorted by"""
-enum SalesforceLeadStatusSortByFieldEnum {
- ID
- MASTER_LABEL
- API_NAME
- SORT_ORDER
- IS_DEFAULT
- IS_CONVERTED
- CREATED_BY_ID
- CREATED_DATE
- LAST_MODIFIED_BY_ID
- LAST_MODIFIED_DATE
- SYSTEM_MODSTAMP
-}
-
-"""An edge in a connection."""
-type SalesforceLeadStatusEdge {
- """The item at the end of the edge."""
- node: SalesforceLeadStatus!
-
- """A cursor for use in pagination"""
- cursor: String!
-}
-
-"""Salesforce Lead Status Values connection, for use in pagination."""
-type SalesforceLeadStatussConnection {
- """The count of all Lead Status Value you could get from the connection."""
- totalCount: Int!
-
- """Pagination Information"""
- pageInfo: PageInfo!
-
- """List of Salesforce Lead Status Values"""
- nodes: [SalesforceLeadStatus!]!
-
- """List of Lead Status Value edges"""
- edges: [SalesforceLeadStatusEdge!]!
-}
-
-"""
-A filter to be used against LeadHistory object types. All fields are combined with a logical ‘and.’
-"""
-input SalesforceLeadHistoryConnectionFilter {
- """Filter against custom fields."""
- customField: SalesforceCustomFieldFilter
-
- """Filter by the LeadHistory's createdBy relation."""
- createdBy: SalesforceUserConnectionFilter
-
- """Filter by the LeadHistory's lead relation."""
- lead: SalesforceLeadConnectionFilter
-
- """Filter by the LeadHistory's id field"""
- id: SalesforceIdFilter
-
- """Filter by the LeadHistory's isDeleted field"""
- isDeleted: SalesforceBooleanFilter
-
- """Filter by the LeadHistory's leadId field"""
- leadId: SalesforceIdFilter
-
- """Filter by the LeadHistory's createdById field"""
- createdById: SalesforceIdFilter
-
- """Filter by the LeadHistory's createdDate field"""
- createdDate: SalesforceDateTimeFilter
-
- """Filter by the LeadHistory's field field"""
- field: SalesforceStringFilter
-
- """Checks for any expressions in this list."""
- or: [SalesforceLeadHistoryConnectionFilter!]
-
- """Checks for all expressions in this list."""
- and: [SalesforceLeadHistoryConnectionFilter!]
-}
-
-"""Field that Lead Histories can be sorted by"""
-enum SalesforceLeadHistorySortByFieldEnum {
- ID
- IS_DELETED
- LEAD_ID
- CREATED_BY_ID
- CREATED_DATE
- FIELD
- OLD_VALUE
- NEW_VALUE
-}
-
-"""An edge in a connection."""
-type SalesforceLeadHistoryEdge {
- """The item at the end of the edge."""
- node: SalesforceLeadHistory!
-
- """A cursor for use in pagination"""
- cursor: String!
-}
-
-"""Salesforce Lead Histories connection, for use in pagination."""
-type SalesforceLeadHistorysConnection {
- """The count of all Lead History you could get from the connection."""
- totalCount: Int!
-
- """Pagination Information"""
- pageInfo: PageInfo!
-
- """List of Salesforce Lead Histories"""
- nodes: [SalesforceLeadHistory!]!
-
- """List of Lead History edges"""
- edges: [SalesforceLeadHistoryEdge!]!
-}
-
-"""
-A filter to be used against LeadCleanInfo object types. All fields are combined with a logical ‘and.’
-"""
-input SalesforceLeadCleanInfoConnectionFilter {
- """Filter against custom fields."""
- customField: SalesforceCustomFieldFilter
-
- """Filter by the LeadCleanInfo's lastStatusChangedBy relation."""
- lastStatusChangedBy: SalesforceUserConnectionFilter
-
- """Filter by the LeadCleanInfo's lead relation."""
- lead: SalesforceLeadConnectionFilter
-
- """Filter by the LeadCleanInfo's lastModifiedBy relation."""
- lastModifiedBy: SalesforceUserConnectionFilter
-
- """Filter by the LeadCleanInfo's createdBy relation."""
- createdBy: SalesforceUserConnectionFilter
-
- """Filter by the LeadCleanInfo's id field"""
- id: SalesforceIdFilter
-
- """Filter by the LeadCleanInfo's isDeleted field"""
- isDeleted: SalesforceBooleanFilter
-
- """Filter by the LeadCleanInfo's name field"""
- name: SalesforceStringFilter
-
- """Filter by the LeadCleanInfo's createdDate field"""
- createdDate: SalesforceDateTimeFilter
-
- """Filter by the LeadCleanInfo's createdById field"""
- createdById: SalesforceIdFilter
-
- """Filter by the LeadCleanInfo's lastModifiedDate field"""
- lastModifiedDate: SalesforceDateTimeFilter
-
- """Filter by the LeadCleanInfo's lastModifiedById field"""
- lastModifiedById: SalesforceIdFilter
-
- """Filter by the LeadCleanInfo's systemModstamp field"""
- systemModstamp: SalesforceDateTimeFilter
-
- """Filter by the LeadCleanInfo's leadId field"""
- leadId: SalesforceIdFilter
-
- """Filter by the LeadCleanInfo's lastMatchedDate field"""
- lastMatchedDate: SalesforceDateTimeFilter
-
- """Filter by the LeadCleanInfo's lastStatusChangedDate field"""
- lastStatusChangedDate: SalesforceDateTimeFilter
-
- """Filter by the LeadCleanInfo's lastStatusChangedById field"""
- lastStatusChangedById: SalesforceIdFilter
-
- """Filter by the LeadCleanInfo's isInactive field"""
- isInactive: SalesforceBooleanFilter
-
- """Filter by the LeadCleanInfo's firstName field"""
- firstName: SalesforceStringFilter
-
- """Filter by the LeadCleanInfo's lastName field"""
- lastName: SalesforceStringFilter
-
- """Filter by the LeadCleanInfo's email field"""
- email: SalesforceStringFilter
-
- """Filter by the LeadCleanInfo's phone field"""
- phone: SalesforceStringFilter
-
- """Filter by the LeadCleanInfo's street field"""
- street: SalesforceStringFilter
-
- """Filter by the LeadCleanInfo's city field"""
- city: SalesforceStringFilter
-
- """Filter by the LeadCleanInfo's state field"""
- state: SalesforceStringFilter
-
- """Filter by the LeadCleanInfo's postalCode field"""
- postalCode: SalesforceStringFilter
-
- """Filter by the LeadCleanInfo's country field"""
- country: SalesforceStringFilter
-
- """Filter by the LeadCleanInfo's latitude field"""
- latitude: SalesforceFloatFilter
-
- """Filter by the LeadCleanInfo's longitude field"""
- longitude: SalesforceFloatFilter
-
- """Filter by the LeadCleanInfo's geocodeAccuracy field"""
- geocodeAccuracy: SalesforceStringFilter
-
- """Filter by the LeadCleanInfo's title field"""
- title: SalesforceStringFilter
-
- """Filter by the LeadCleanInfo's annualRevenue field"""
- annualRevenue: SalesforceFloatFilter
-
- """Filter by the LeadCleanInfo's numberOfEmployees field"""
- numberOfEmployees: SalesforceIntFilter
-
- """Filter by the LeadCleanInfo's industry field"""
- industry: SalesforceStringFilter
-
- """Filter by the LeadCleanInfo's companyName field"""
- companyName: SalesforceStringFilter
-
- """Filter by the LeadCleanInfo's companyDunsNumber field"""
- companyDunsNumber: SalesforceStringFilter
-
- """Filter by the LeadCleanInfo's contactStatusDataDotCom field"""
- contactStatusDataDotCom: SalesforceStringFilter
-
- """Filter by the LeadCleanInfo's isReviewedName field"""
- isReviewedName: SalesforceBooleanFilter
-
- """Filter by the LeadCleanInfo's isReviewedEmail field"""
- isReviewedEmail: SalesforceBooleanFilter
-
- """Filter by the LeadCleanInfo's isReviewedPhone field"""
- isReviewedPhone: SalesforceBooleanFilter
-
- """Filter by the LeadCleanInfo's isReviewedAddress field"""
- isReviewedAddress: SalesforceBooleanFilter
-
- """Filter by the LeadCleanInfo's isReviewedTitle field"""
- isReviewedTitle: SalesforceBooleanFilter
-
- """Filter by the LeadCleanInfo's isReviewedAnnualRevenue field"""
- isReviewedAnnualRevenue: SalesforceBooleanFilter
-
- """Filter by the LeadCleanInfo's isReviewedNumberOfEmployees field"""
- isReviewedNumberOfEmployees: SalesforceBooleanFilter
-
- """Filter by the LeadCleanInfo's isReviewedIndustry field"""
- isReviewedIndustry: SalesforceBooleanFilter
-
- """Filter by the LeadCleanInfo's isReviewedCompanyName field"""
- isReviewedCompanyName: SalesforceBooleanFilter
-
- """Filter by the LeadCleanInfo's isReviewedCompanyDunsNumber field"""
- isReviewedCompanyDunsNumber: SalesforceBooleanFilter
-
- """Filter by the LeadCleanInfo's isReviewedDandBCompanyDunsNumber field"""
- isReviewedDandBCompanyDunsNumber: SalesforceBooleanFilter
-
- """Filter by the LeadCleanInfo's isDifferentFirstName field"""
- isDifferentFirstName: SalesforceBooleanFilter
-
- """Filter by the LeadCleanInfo's isDifferentLastName field"""
- isDifferentLastName: SalesforceBooleanFilter
-
- """Filter by the LeadCleanInfo's isDifferentEmail field"""
- isDifferentEmail: SalesforceBooleanFilter
-
- """Filter by the LeadCleanInfo's isDifferentPhone field"""
- isDifferentPhone: SalesforceBooleanFilter
-
- """Filter by the LeadCleanInfo's isDifferentStreet field"""
- isDifferentStreet: SalesforceBooleanFilter
-
- """Filter by the LeadCleanInfo's isDifferentCity field"""
- isDifferentCity: SalesforceBooleanFilter
-
- """Filter by the LeadCleanInfo's isDifferentState field"""
- isDifferentState: SalesforceBooleanFilter
-
- """Filter by the LeadCleanInfo's isDifferentPostalCode field"""
- isDifferentPostalCode: SalesforceBooleanFilter
-
- """Filter by the LeadCleanInfo's isDifferentCountry field"""
- isDifferentCountry: SalesforceBooleanFilter
-
- """Filter by the LeadCleanInfo's isDifferentTitle field"""
- isDifferentTitle: SalesforceBooleanFilter
-
- """Filter by the LeadCleanInfo's isDifferentAnnualRevenue field"""
- isDifferentAnnualRevenue: SalesforceBooleanFilter
-
- """Filter by the LeadCleanInfo's isDifferentNumberOfEmployees field"""
- isDifferentNumberOfEmployees: SalesforceBooleanFilter
-
- """Filter by the LeadCleanInfo's isDifferentIndustry field"""
- isDifferentIndustry: SalesforceBooleanFilter
-
- """Filter by the LeadCleanInfo's isDifferentCompanyName field"""
- isDifferentCompanyName: SalesforceBooleanFilter
-
- """Filter by the LeadCleanInfo's isDifferentCompanyDunsNumber field"""
- isDifferentCompanyDunsNumber: SalesforceBooleanFilter
-
- """Filter by the LeadCleanInfo's isDifferentDandBCompanyDunsNumber field"""
- isDifferentDandBCompanyDunsNumber: SalesforceBooleanFilter
-
- """Filter by the LeadCleanInfo's isDifferentStateCode field"""
- isDifferentStateCode: SalesforceBooleanFilter
-
- """Filter by the LeadCleanInfo's isDifferentCountryCode field"""
- isDifferentCountryCode: SalesforceBooleanFilter
-
- """Filter by the LeadCleanInfo's cleanedByJob field"""
- cleanedByJob: SalesforceBooleanFilter
-
- """Filter by the LeadCleanInfo's cleanedByUser field"""
- cleanedByUser: SalesforceBooleanFilter
-
- """Filter by the LeadCleanInfo's dandBCompanyDunsNumber field"""
- dandBCompanyDunsNumber: SalesforceStringFilter
-
- """Filter by the LeadCleanInfo's dataDotComCompanyId field"""
- dataDotComCompanyId: SalesforceStringFilter
-
- """Filter by the LeadCleanInfo's isFlaggedWrongName field"""
- isFlaggedWrongName: SalesforceBooleanFilter
-
- """Filter by the LeadCleanInfo's isFlaggedWrongEmail field"""
- isFlaggedWrongEmail: SalesforceBooleanFilter
-
- """Filter by the LeadCleanInfo's isFlaggedWrongPhone field"""
- isFlaggedWrongPhone: SalesforceBooleanFilter
-
- """Filter by the LeadCleanInfo's isFlaggedWrongAddress field"""
- isFlaggedWrongAddress: SalesforceBooleanFilter
-
- """Filter by the LeadCleanInfo's isFlaggedWrongTitle field"""
- isFlaggedWrongTitle: SalesforceBooleanFilter
-
- """Filter by the LeadCleanInfo's isFlaggedWrongAnnualRevenue field"""
- isFlaggedWrongAnnualRevenue: SalesforceBooleanFilter
-
- """Filter by the LeadCleanInfo's isFlaggedWrongNumberOfEmployees field"""
- isFlaggedWrongNumberOfEmployees: SalesforceBooleanFilter
-
- """Filter by the LeadCleanInfo's isFlaggedWrongIndustry field"""
- isFlaggedWrongIndustry: SalesforceBooleanFilter
-
- """Filter by the LeadCleanInfo's isFlaggedWrongCompanyName field"""
- isFlaggedWrongCompanyName: SalesforceBooleanFilter
-
- """Filter by the LeadCleanInfo's isFlaggedWrongCompanyDunsNumber field"""
- isFlaggedWrongCompanyDunsNumber: SalesforceBooleanFilter
-
- """Filter by the LeadCleanInfo's dataDotComId field"""
- dataDotComId: SalesforceStringFilter
-
- """Checks for any expressions in this list."""
- or: [SalesforceLeadCleanInfoConnectionFilter!]
-
- """Checks for all expressions in this list."""
- and: [SalesforceLeadCleanInfoConnectionFilter!]
-}
-
-"""Field that Lead Clean Infos can be sorted by"""
-enum SalesforceLeadCleanInfoSortByFieldEnum {
- ID
- IS_DELETED
- NAME
- CREATED_DATE
- CREATED_BY_ID
- LAST_MODIFIED_DATE
- LAST_MODIFIED_BY_ID
- SYSTEM_MODSTAMP
- LEAD_ID
- LAST_MATCHED_DATE
- LAST_STATUS_CHANGED_DATE
- LAST_STATUS_CHANGED_BY_ID
- IS_INACTIVE
- FIRST_NAME
- LAST_NAME
- EMAIL
- PHONE
- STREET
- CITY
- STATE
- POSTAL_CODE
- COUNTRY
- LATITUDE
- LONGITUDE
- GEOCODE_ACCURACY
- TITLE
- ANNUAL_REVENUE
- NUMBER_OF_EMPLOYEES
- INDUSTRY
- COMPANY_NAME
- COMPANY_DUNS_NUMBER
- CONTACT_STATUS_DATA_DOT_COM
- DAND_B_COMPANY_DUNS_NUMBER
- DATA_DOT_COM_COMPANY_ID
- DATA_DOT_COM_ID
-}
-
-"""An edge in a connection."""
-type SalesforceLeadCleanInfoEdge {
- """The item at the end of the edge."""
- node: SalesforceLeadCleanInfo!
-
- """A cursor for use in pagination"""
- cursor: String!
-}
-
-"""Salesforce Lead Clean Infos connection, for use in pagination."""
-type SalesforceLeadCleanInfosConnection {
- """The count of all Lead Clean Info you could get from the connection."""
- totalCount: Int!
-
- """Pagination Information"""
- pageInfo: PageInfo!
-
- """List of Salesforce Lead Clean Infos"""
- nodes: [SalesforceLeadCleanInfo!]!
-
- """List of Lead Clean Info edges"""
- edges: [SalesforceLeadCleanInfoEdge!]!
-}
-
-"""
-A filter to be used against Holiday object types. All fields are combined with a logical ‘and.’
-"""
-input SalesforceHolidayConnectionFilter {
- """Filter against custom fields."""
- customField: SalesforceCustomFieldFilter
-
- """Filter by the Holiday's lastModifiedBy relation."""
- lastModifiedBy: SalesforceUserConnectionFilter
-
- """Filter by the Holiday's createdBy relation."""
- createdBy: SalesforceUserConnectionFilter
-
- """Filter by the Holiday's id field"""
- id: SalesforceIdFilter
-
- """Filter by the Holiday's name field"""
- name: SalesforceStringFilter
-
- """Filter by the Holiday's description field"""
- description: SalesforceStringFilter
-
- """Filter by the Holiday's isAllDay field"""
- isAllDay: SalesforceBooleanFilter
-
- """Filter by the Holiday's activityDate field"""
- activityDate: SalesforceDateFilter
-
- """Filter by the Holiday's startTimeInMinutes field"""
- startTimeInMinutes: SalesforceIntFilter
-
- """Filter by the Holiday's endTimeInMinutes field"""
- endTimeInMinutes: SalesforceIntFilter
-
- """Filter by the Holiday's createdDate field"""
- createdDate: SalesforceDateTimeFilter
-
- """Filter by the Holiday's createdById field"""
- createdById: SalesforceIdFilter
-
- """Filter by the Holiday's lastModifiedDate field"""
- lastModifiedDate: SalesforceDateTimeFilter
-
- """Filter by the Holiday's lastModifiedById field"""
- lastModifiedById: SalesforceIdFilter
-
- """Filter by the Holiday's systemModstamp field"""
- systemModstamp: SalesforceDateTimeFilter
-
- """Filter by the Holiday's isRecurrence field"""
- isRecurrence: SalesforceBooleanFilter
-
- """Filter by the Holiday's recurrenceStartDate field"""
- recurrenceStartDate: SalesforceDateFilter
-
- """Filter by the Holiday's recurrenceEndDateOnly field"""
- recurrenceEndDateOnly: SalesforceDateFilter
-
- """Filter by the Holiday's recurrenceType field"""
- recurrenceType: SalesforceStringFilter
-
- """Filter by the Holiday's recurrenceInterval field"""
- recurrenceInterval: SalesforceIntFilter
-
- """Filter by the Holiday's recurrenceDayOfWeekMask field"""
- recurrenceDayOfWeekMask: SalesforceIntFilter
-
- """Filter by the Holiday's recurrenceDayOfMonth field"""
- recurrenceDayOfMonth: SalesforceIntFilter
-
- """Filter by the Holiday's recurrenceInstance field"""
- recurrenceInstance: SalesforceStringFilter
-
- """Filter by the Holiday's recurrenceMonthOfYear field"""
- recurrenceMonthOfYear: SalesforceStringFilter
-
- """Checks for any expressions in this list."""
- or: [SalesforceHolidayConnectionFilter!]
-
- """Checks for all expressions in this list."""
- and: [SalesforceHolidayConnectionFilter!]
-}
-
-"""Field that Holidays can be sorted by"""
-enum SalesforceHolidaySortByFieldEnum {
- ID
- NAME
- DESCRIPTION
- IS_ALL_DAY
- ACTIVITY_DATE
- START_TIME_IN_MINUTES
- END_TIME_IN_MINUTES
- CREATED_DATE
- CREATED_BY_ID
- LAST_MODIFIED_DATE
- LAST_MODIFIED_BY_ID
- SYSTEM_MODSTAMP
- IS_RECURRENCE
- RECURRENCE_START_DATE
- RECURRENCE_END_DATE_ONLY
- RECURRENCE_TYPE
- RECURRENCE_INTERVAL
- RECURRENCE_DAY_OF_WEEK_MASK
- RECURRENCE_DAY_OF_MONTH
- RECURRENCE_INSTANCE
- RECURRENCE_MONTH_OF_YEAR
-}
-
-"""An edge in a connection."""
-type SalesforceHolidayEdge {
- """The item at the end of the edge."""
- node: SalesforceHoliday!
-
- """A cursor for use in pagination"""
- cursor: String!
-}
-
-"""Salesforce Holidays connection, for use in pagination."""
-type SalesforceHolidaysConnection {
- """The count of all Holiday you could get from the connection."""
- totalCount: Int!
-
- """Pagination Information"""
- pageInfo: PageInfo!
-
- """List of Salesforce Holidays"""
- nodes: [SalesforceHoliday!]!
-
- """List of Holiday edges"""
- edges: [SalesforceHolidayEdge!]!
-}
-
-"""
-A filter to be used against Folder object types. All fields are combined with a logical ‘and.’
-"""
-input SalesforceFolderConnectionFilter {
- """Filter against custom fields."""
- customField: SalesforceCustomFieldFilter
-
- """Filter by the Folder's lastModifiedBy relation."""
- lastModifiedBy: SalesforceUserConnectionFilter
-
- """Filter by the Folder's createdBy relation."""
- createdBy: SalesforceUserConnectionFilter
-
- """Filter by the Folder's id field"""
- id: SalesforceIdFilter
-
- """Filter by the Folder's name field"""
- name: SalesforceStringFilter
-
- """Filter by the Folder's developerName field"""
- developerName: SalesforceStringFilter
-
- """Filter by the Folder's accessType field"""
- accessType: SalesforceStringFilter
-
- """Filter by the Folder's isReadonly field"""
- isReadonly: SalesforceBooleanFilter
-
- """Filter by the Folder's type field"""
- type: SalesforceStringFilter
-
- """Filter by the Folder's namespacePrefix field"""
- namespacePrefix: SalesforceStringFilter
-
- """Filter by the Folder's createdDate field"""
- createdDate: SalesforceDateTimeFilter
-
- """Filter by the Folder's createdById field"""
- createdById: SalesforceIdFilter
-
- """Filter by the Folder's lastModifiedDate field"""
- lastModifiedDate: SalesforceDateTimeFilter
-
- """Filter by the Folder's lastModifiedById field"""
- lastModifiedById: SalesforceIdFilter
-
- """Filter by the Folder's systemModstamp field"""
- systemModstamp: SalesforceDateTimeFilter
-
- """Checks for any expressions in this list."""
- or: [SalesforceFolderConnectionFilter!]
-
- """Checks for all expressions in this list."""
- and: [SalesforceFolderConnectionFilter!]
-}
-
-"""Field that Folders can be sorted by"""
-enum SalesforceFolderSortByFieldEnum {
- ID
- NAME
- DEVELOPER_NAME
- ACCESS_TYPE
- IS_READONLY
- TYPE
- NAMESPACE_PREFIX
- CREATED_DATE
- CREATED_BY_ID
- LAST_MODIFIED_DATE
- LAST_MODIFIED_BY_ID
- SYSTEM_MODSTAMP
-}
-
-"""An edge in a connection."""
-type SalesforceFolderEdge {
- """The item at the end of the edge."""
- node: SalesforceFolder!
-
- """A cursor for use in pagination"""
- cursor: String!
-}
-
-"""Salesforce Folders connection, for use in pagination."""
-type SalesforceFoldersConnection {
- """The count of all Folder you could get from the connection."""
- totalCount: Int!
-
- """Pagination Information"""
- pageInfo: PageInfo!
-
- """List of Salesforce Folders"""
- nodes: [SalesforceFolder!]!
-
- """List of Folder edges"""
- edges: [SalesforceFolderEdge!]!
-}
-
-"""Field that Flow Interviews can be sorted by"""
-enum SalesforceFlowInterviewSortByFieldEnum {
- ID
- OWNER_ID
- IS_DELETED
- NAME
- CREATED_DATE
- CREATED_BY_ID
- LAST_MODIFIED_DATE
- LAST_MODIFIED_BY_ID
- SYSTEM_MODSTAMP
- CURRENT_ELEMENT
- INTERVIEW_LABEL
- PAUSE_LABEL
- GUID
-}
-
-"""An edge in a connection."""
-type SalesforceFlowInterviewEdge {
- """The item at the end of the edge."""
- node: SalesforceFlowInterview!
-
- """A cursor for use in pagination"""
- cursor: String!
-}
-
-"""Salesforce Flow Interviews connection, for use in pagination."""
-type SalesforceFlowInterviewsConnection {
- """The count of all Flow Interview you could get from the connection."""
- totalCount: Int!
-
- """Pagination Information"""
- pageInfo: PageInfo!
-
- """List of Salesforce Flow Interviews"""
- nodes: [SalesforceFlowInterview!]!
-
- """List of Flow Interview edges"""
- edges: [SalesforceFlowInterviewEdge!]!
-}
-
-"""
-A filter to be used against FileSearchActivity object types. All fields are combined with a logical ‘and.’
-"""
-input SalesforceFileSearchActivityConnectionFilter {
- """Filter against custom fields."""
- customField: SalesforceCustomFieldFilter
-
- """Filter by the FileSearchActivity's lastModifiedBy relation."""
- lastModifiedBy: SalesforceUserConnectionFilter
-
- """Filter by the FileSearchActivity's createdBy relation."""
- createdBy: SalesforceUserConnectionFilter
-
- """Filter by the FileSearchActivity's id field"""
- id: SalesforceIdFilter
-
- """Filter by the FileSearchActivity's isDeleted field"""
- isDeleted: SalesforceBooleanFilter
-
- """Filter by the FileSearchActivity's name field"""
- name: SalesforceStringFilter
-
- """Filter by the FileSearchActivity's createdDate field"""
- createdDate: SalesforceDateTimeFilter
-
- """Filter by the FileSearchActivity's createdById field"""
- createdById: SalesforceIdFilter
-
- """Filter by the FileSearchActivity's lastModifiedDate field"""
- lastModifiedDate: SalesforceDateTimeFilter
-
- """Filter by the FileSearchActivity's lastModifiedById field"""
- lastModifiedById: SalesforceIdFilter
-
- """Filter by the FileSearchActivity's systemModstamp field"""
- systemModstamp: SalesforceDateTimeFilter
-
- """Filter by the FileSearchActivity's searchTerm field"""
- searchTerm: SalesforceStringFilter
-
- """Filter by the FileSearchActivity's queryDate field"""
- queryDate: SalesforceDateFilter
-
- """Filter by the FileSearchActivity's countQueries field"""
- countQueries: SalesforceIntFilter
-
- """Filter by the FileSearchActivity's countUsers field"""
- countUsers: SalesforceIntFilter
-
- """Filter by the FileSearchActivity's avgNumResults field"""
- avgNumResults: SalesforceFloatFilter
-
- """Filter by the FileSearchActivity's period field"""
- period: SalesforceStringFilter
-
- """Filter by the FileSearchActivity's queryLanguage field"""
- queryLanguage: SalesforceStringFilter
-
- """Filter by the FileSearchActivity's clickRank field"""
- clickRank: SalesforceFloatFilter
-
- """Checks for any expressions in this list."""
- or: [SalesforceFileSearchActivityConnectionFilter!]
-
- """Checks for all expressions in this list."""
- and: [SalesforceFileSearchActivityConnectionFilter!]
-}
-
-"""Field that FileSearchActivities can be sorted by"""
-enum SalesforceFileSearchActivitySortByFieldEnum {
- ID
- IS_DELETED
- NAME
- CREATED_DATE
- CREATED_BY_ID
- LAST_MODIFIED_DATE
- LAST_MODIFIED_BY_ID
- SYSTEM_MODSTAMP
- SEARCH_TERM
- QUERY_DATE
- COUNT_QUERIES
- COUNT_USERS
- AVG_NUM_RESULTS
- PERIOD
- QUERY_LANGUAGE
- CLICK_RANK
-}
-
-"""An edge in a connection."""
-type SalesforceFileSearchActivityEdge {
- """The item at the end of the edge."""
- node: SalesforceFileSearchActivity!
-
- """A cursor for use in pagination"""
- cursor: String!
-}
-
-"""Salesforce FileSearchActivities connection, for use in pagination."""
-type SalesforceFileSearchActivitysConnection {
- """The count of all FileSearchActivity you could get from the connection."""
- totalCount: Int!
-
- """Pagination Information"""
- pageInfo: PageInfo!
-
- """List of Salesforce FileSearchActivities"""
- nodes: [SalesforceFileSearchActivity!]!
-
- """List of FileSearchActivity edges"""
- edges: [SalesforceFileSearchActivityEdge!]!
-}
-
-"""
-A filter to be used against EventLogFile object types. All fields are combined with a logical ‘and.’
-"""
-input SalesforceEventLogFileConnectionFilter {
- """Filter against custom fields."""
- customField: SalesforceCustomFieldFilter
-
- """Filter by the EventLogFile's lastModifiedBy relation."""
- lastModifiedBy: SalesforceUserConnectionFilter
-
- """Filter by the EventLogFile's createdBy relation."""
- createdBy: SalesforceUserConnectionFilter
-
- """Filter by the EventLogFile's id field"""
- id: SalesforceIdFilter
-
- """Filter by the EventLogFile's isDeleted field"""
- isDeleted: SalesforceBooleanFilter
-
- """Filter by the EventLogFile's createdDate field"""
- createdDate: SalesforceDateTimeFilter
-
- """Filter by the EventLogFile's createdById field"""
- createdById: SalesforceIdFilter
-
- """Filter by the EventLogFile's lastModifiedDate field"""
- lastModifiedDate: SalesforceDateTimeFilter
-
- """Filter by the EventLogFile's lastModifiedById field"""
- lastModifiedById: SalesforceIdFilter
-
- """Filter by the EventLogFile's systemModstamp field"""
- systemModstamp: SalesforceDateTimeFilter
-
- """Filter by the EventLogFile's eventType field"""
- eventType: SalesforceStringFilter
-
- """Filter by the EventLogFile's logDate field"""
- logDate: SalesforceDateTimeFilter
-
- """Filter by the EventLogFile's logFileLength field"""
- logFileLength: SalesforceFloatFilter
-
- """Filter by the EventLogFile's logFileContentType field"""
- logFileContentType: SalesforceStringFilter
-
- """Filter by the EventLogFile's apiVersion field"""
- apiVersion: SalesforceFloatFilter
-
- """Filter by the EventLogFile's sequence field"""
- sequence: SalesforceIntFilter
-
- """Filter by the EventLogFile's interval field"""
- interval: SalesforceStringFilter
-
- """Checks for any expressions in this list."""
- or: [SalesforceEventLogFileConnectionFilter!]
-
- """Checks for all expressions in this list."""
- and: [SalesforceEventLogFileConnectionFilter!]
-}
-
-"""Field that Event Log Files can be sorted by"""
-enum SalesforceEventLogFileSortByFieldEnum {
- ID
- IS_DELETED
- CREATED_DATE
- CREATED_BY_ID
- LAST_MODIFIED_DATE
- LAST_MODIFIED_BY_ID
- SYSTEM_MODSTAMP
- EVENT_TYPE
- LOG_DATE
- LOG_FILE_LENGTH
- LOG_FILE_CONTENT_TYPE
- API_VERSION
- SEQUENCE
- INTERVAL
-}
-
-"""An edge in a connection."""
-type SalesforceEventLogFileEdge {
- """The item at the end of the edge."""
- node: SalesforceEventLogFile!
-
- """A cursor for use in pagination"""
- cursor: String!
-}
-
-"""Salesforce Event Log Files connection, for use in pagination."""
-type SalesforceEventLogFilesConnection {
- """The count of all Event Log File you could get from the connection."""
- totalCount: Int!
-
- """Pagination Information"""
- pageInfo: PageInfo!
-
- """List of Salesforce Event Log Files"""
- nodes: [SalesforceEventLogFile!]!
-
- """List of Event Log File edges"""
- edges: [SalesforceEventLogFileEdge!]!
-}
-
-"""
-A filter to be used against EmailDomainKey object types. All fields are combined with a logical ‘and.’
-"""
-input SalesforceEmailDomainKeyConnectionFilter {
- """Filter against custom fields."""
- customField: SalesforceCustomFieldFilter
-
- """Filter by the EmailDomainKey's lastModifiedBy relation."""
- lastModifiedBy: SalesforceUserConnectionFilter
-
- """Filter by the EmailDomainKey's createdBy relation."""
- createdBy: SalesforceUserConnectionFilter
-
- """Filter by the EmailDomainKey's id field"""
- id: SalesforceIdFilter
-
- """Filter by the EmailDomainKey's isDeleted field"""
- isDeleted: SalesforceBooleanFilter
-
- """Filter by the EmailDomainKey's createdDate field"""
- createdDate: SalesforceDateTimeFilter
-
- """Filter by the EmailDomainKey's createdById field"""
- createdById: SalesforceIdFilter
-
- """Filter by the EmailDomainKey's lastModifiedDate field"""
- lastModifiedDate: SalesforceDateTimeFilter
-
- """Filter by the EmailDomainKey's lastModifiedById field"""
- lastModifiedById: SalesforceIdFilter
-
- """Filter by the EmailDomainKey's systemModstamp field"""
- systemModstamp: SalesforceDateTimeFilter
-
- """Filter by the EmailDomainKey's selector field"""
- selector: SalesforceStringFilter
-
- """Filter by the EmailDomainKey's domain field"""
- domain: SalesforceStringFilter
-
- """Filter by the EmailDomainKey's domainMatch field"""
- domainMatch: SalesforceStringFilter
-
- """Filter by the EmailDomainKey's isActive field"""
- isActive: SalesforceBooleanFilter
-
- """Checks for any expressions in this list."""
- or: [SalesforceEmailDomainKeyConnectionFilter!]
-
- """Checks for all expressions in this list."""
- and: [SalesforceEmailDomainKeyConnectionFilter!]
-}
-
-"""Field that Email Domain Keys can be sorted by"""
-enum SalesforceEmailDomainKeySortByFieldEnum {
- ID
- IS_DELETED
- CREATED_DATE
- CREATED_BY_ID
- LAST_MODIFIED_DATE
- LAST_MODIFIED_BY_ID
- SYSTEM_MODSTAMP
- SELECTOR
- DOMAIN
- DOMAIN_MATCH
- IS_ACTIVE
-}
-
-"""An edge in a connection."""
-type SalesforceEmailDomainKeyEdge {
- """The item at the end of the edge."""
- node: SalesforceEmailDomainKey!
-
- """A cursor for use in pagination"""
- cursor: String!
-}
-
-"""Salesforce Email Domain Keys connection, for use in pagination."""
-type SalesforceEmailDomainKeysConnection {
- """The count of all Email Domain Key you could get from the connection."""
- totalCount: Int!
-
- """Pagination Information"""
- pageInfo: PageInfo!
-
- """List of Salesforce Email Domain Keys"""
- nodes: [SalesforceEmailDomainKey!]!
-
- """List of Email Domain Key edges"""
- edges: [SalesforceEmailDomainKeyEdge!]!
-}
-
-"""
-A filter to be used against EmailCapture object types. All fields are combined with a logical ‘and.’
-"""
-input SalesforceEmailCaptureConnectionFilter {
- """Filter against custom fields."""
- customField: SalesforceCustomFieldFilter
-
- """Filter by the EmailCapture's lastModifiedBy relation."""
- lastModifiedBy: SalesforceUserConnectionFilter
-
- """Filter by the EmailCapture's createdBy relation."""
- createdBy: SalesforceUserConnectionFilter
-
- """Filter by the EmailCapture's id field"""
- id: SalesforceIdFilter
-
- """Filter by the EmailCapture's isDeleted field"""
- isDeleted: SalesforceBooleanFilter
-
- """Filter by the EmailCapture's createdDate field"""
- createdDate: SalesforceDateTimeFilter
-
- """Filter by the EmailCapture's createdById field"""
- createdById: SalesforceIdFilter
-
- """Filter by the EmailCapture's lastModifiedDate field"""
- lastModifiedDate: SalesforceDateTimeFilter
-
- """Filter by the EmailCapture's lastModifiedById field"""
- lastModifiedById: SalesforceIdFilter
-
- """Filter by the EmailCapture's systemModstamp field"""
- systemModstamp: SalesforceDateTimeFilter
-
- """Filter by the EmailCapture's isActive field"""
- isActive: SalesforceBooleanFilter
-
- """Filter by the EmailCapture's toPattern field"""
- toPattern: SalesforceStringFilter
-
- """Filter by the EmailCapture's fromPattern field"""
- fromPattern: SalesforceStringFilter
-
- """Filter by the EmailCapture's sender field"""
- sender: SalesforceStringFilter
-
- """Filter by the EmailCapture's recipient field"""
- recipient: SalesforceStringFilter
-
- """Filter by the EmailCapture's captureDate field"""
- captureDate: SalesforceDateTimeFilter
-
- """Filter by the EmailCapture's rawMessageLength field"""
- rawMessageLength: SalesforceIntFilter
-
- """Checks for any expressions in this list."""
- or: [SalesforceEmailCaptureConnectionFilter!]
-
- """Checks for all expressions in this list."""
- and: [SalesforceEmailCaptureConnectionFilter!]
-}
-
-"""Field that EmailCaptures can be sorted by"""
-enum SalesforceEmailCaptureSortByFieldEnum {
- ID
- IS_DELETED
- CREATED_DATE
- CREATED_BY_ID
- LAST_MODIFIED_DATE
- LAST_MODIFIED_BY_ID
- SYSTEM_MODSTAMP
- IS_ACTIVE
- TO_PATTERN
- FROM_PATTERN
- SENDER
- RECIPIENT
- CAPTURE_DATE
- RAW_MESSAGE_LENGTH
-}
-
-"""An edge in a connection."""
-type SalesforceEmailCaptureEdge {
- """The item at the end of the edge."""
- node: SalesforceEmailCapture!
-
- """A cursor for use in pagination"""
- cursor: String!
-}
-
-"""Salesforce EmailCaptures connection, for use in pagination."""
-type SalesforceEmailCapturesConnection {
- """The count of all EmailCapture you could get from the connection."""
- totalCount: Int!
-
- """Pagination Information"""
- pageInfo: PageInfo!
-
- """List of Salesforce EmailCaptures"""
- nodes: [SalesforceEmailCapture!]!
-
- """List of EmailCapture edges"""
- edges: [SalesforceEmailCaptureEdge!]!
-}
-
-"""Field that Duplicate Rules can be sorted by"""
-enum SalesforceDuplicateRuleSortByFieldEnum {
- ID
- IS_DELETED
- SOBJECT_TYPE
- DEVELOPER_NAME
- LANGUAGE
- MASTER_LABEL
- NAMESPACE_PREFIX
- CREATED_DATE
- CREATED_BY_ID
- LAST_MODIFIED_DATE
- LAST_MODIFIED_BY_ID
- SYSTEM_MODSTAMP
- IS_ACTIVE
- SOBJECT_SUBTYPE
- LAST_VIEWED_DATE
-}
-
-"""An edge in a connection."""
-type SalesforceDuplicateRuleEdge {
- """The item at the end of the edge."""
- node: SalesforceDuplicateRule!
-
- """A cursor for use in pagination"""
- cursor: String!
-}
-
-"""Salesforce Duplicate Rules connection, for use in pagination."""
-type SalesforceDuplicateRulesConnection {
- """The count of all Duplicate Rule you could get from the connection."""
- totalCount: Int!
-
- """Pagination Information"""
- pageInfo: PageInfo!
-
- """List of Salesforce Duplicate Rules"""
- nodes: [SalesforceDuplicateRule!]!
-
- """List of Duplicate Rule edges"""
- edges: [SalesforceDuplicateRuleEdge!]!
-}
-
-"""Field that Domains can be sorted by"""
-enum SalesforceDomainSortByFieldEnum {
- ID
- DOMAIN_TYPE
- DOMAIN
- CREATED_DATE
- CREATED_BY_ID
- LAST_MODIFIED_DATE
- LAST_MODIFIED_BY_ID
- SYSTEM_MODSTAMP
-}
-
-"""An edge in a connection."""
-type SalesforceDomainEdge {
- """The item at the end of the edge."""
- node: SalesforceDomain!
-
- """A cursor for use in pagination"""
- cursor: String!
-}
-
-"""Salesforce Domains connection, for use in pagination."""
-type SalesforceDomainsConnection {
- """The count of all Domain you could get from the connection."""
- totalCount: Int!
-
- """Pagination Information"""
- pageInfo: PageInfo!
-
- """List of Salesforce Domains"""
- nodes: [SalesforceDomain!]!
-
- """List of Domain edges"""
- edges: [SalesforceDomainEdge!]!
-}
-
-"""Field that Data.com Usages can be sorted by"""
-enum SalesforceDatacloudPurchaseUsageSortByFieldEnum {
- ID
- IS_DELETED
- NAME
- CREATED_DATE
- CREATED_BY_ID
- LAST_MODIFIED_DATE
- LAST_MODIFIED_BY_ID
- SYSTEM_MODSTAMP
- USER_ID
- USER_TYPE
- PURCHASE_TYPE
- DATACLOUD_ENTITY_TYPE
- USAGE
- DESCRIPTION
-}
-
-"""An edge in a connection."""
-type SalesforceDatacloudPurchaseUsageEdge {
- """The item at the end of the edge."""
- node: SalesforceDatacloudPurchaseUsage!
-
- """A cursor for use in pagination"""
- cursor: String!
-}
-
-"""Salesforce Data.com Usages connection, for use in pagination."""
-type SalesforceDatacloudPurchaseUsagesConnection {
- """The count of all Data.com Usage you could get from the connection."""
- totalCount: Int!
-
- """Pagination Information"""
- pageInfo: PageInfo!
-
- """List of Salesforce Data.com Usages"""
- nodes: [SalesforceDatacloudPurchaseUsage!]!
-
- """List of Data.com Usage edges"""
- edges: [SalesforceDatacloudPurchaseUsageEdge!]!
-}
-
-"""Field that Data Assessment Metrics can be sorted by"""
-enum SalesforceDataAssessmentMetricSortByFieldEnum {
- ID
- IS_DELETED
- NAME
- CREATED_DATE
- CREATED_BY_ID
- LAST_MODIFIED_DATE
- LAST_MODIFIED_BY_ID
- SYSTEM_MODSTAMP
- NUM_TOTAL
- NUM_PROCESSED
- NUM_MATCHED
- NUM_MATCHED_DIFFERENT
- NUM_UNMATCHED
- NUM_DUPLICATES
-}
-
-"""An edge in a connection."""
-type SalesforceDataAssessmentMetricEdge {
- """The item at the end of the edge."""
- node: SalesforceDataAssessmentMetric!
-
- """A cursor for use in pagination"""
- cursor: String!
-}
-
-"""Salesforce Data Assessment Metrics connection, for use in pagination."""
-type SalesforceDataAssessmentMetricsConnection {
- """
- The count of all Data Assessment Metric you could get from the connection.
- """
- totalCount: Int!
-
- """Pagination Information"""
- pageInfo: PageInfo!
-
- """List of Salesforce Data Assessment Metrics"""
- nodes: [SalesforceDataAssessmentMetric!]!
-
- """List of Data Assessment Metric edges"""
- edges: [SalesforceDataAssessmentMetricEdge!]!
-}
-
-"""Field that D&B Companies can be sorted by"""
-enum SalesforceDandBCompanySortByFieldEnum {
- ID
- IS_DELETED
- NAME
- CREATED_DATE
- CREATED_BY_ID
- LAST_MODIFIED_DATE
- LAST_MODIFIED_BY_ID
- SYSTEM_MODSTAMP
- LAST_VIEWED_DATE
- LAST_REFERENCED_DATE
- DUNS_NUMBER
- STREET
- CITY
- STATE
- POSTAL_CODE
- COUNTRY
- GEOCODE_ACCURACY_STANDARD
- PHONE
- FAX
- COUNTRY_ACCESS_CODE
- PUBLIC_INDICATOR
- STOCK_SYMBOL
- STOCK_EXCHANGE
- SALES_VOLUME
- URL
- OUT_OF_BUSINESS
- EMPLOYEES_TOTAL
- FIPS_MSA_CODE
- FIPS_MSA_DESC
- TRADE_STYLE_1
- YEAR_STARTED
- MAILING_STREET
- MAILING_CITY
- MAILING_STATE
- MAILING_POSTAL_CODE
- MAILING_COUNTRY
- MAILING_GEOCODE_ACCURACY
- LATITUDE
- LONGITUDE
- PRIMARY_SIC
- PRIMARY_SIC_DESC
- SECOND_SIC
- SECOND_SIC_DESC
- THIRD_SIC
- THIRD_SIC_DESC
- FOURTH_SIC
- FOURTH_SIC_DESC
- FIFTH_SIC
- FIFTH_SIC_DESC
- SIXTH_SIC
- SIXTH_SIC_DESC
- PRIMARY_NAICS
- PRIMARY_NAICS_DESC
- SECOND_NAICS
- SECOND_NAICS_DESC
- THIRD_NAICS
- THIRD_NAICS_DESC
- FOURTH_NAICS
- FOURTH_NAICS_DESC
- FIFTH_NAICS
- FIFTH_NAICS_DESC
- SIXTH_NAICS
- SIXTH_NAICS_DESC
- OWN_OR_RENT
- EMPLOYEES_HERE
- EMPLOYEES_HERE_RELIABILITY
- SALES_VOLUME_RELIABILITY
- CURRENCY_CODE
- LEGAL_STATUS
- GLOBAL_ULTIMATE_TOTAL_EMPLOYEES
- EMPLOYEES_TOTAL_RELIABILITY
- MINORITY_OWNED
- WOMEN_OWNED
- SMALL_BUSINESS
- MARKETING_SEGMENTATION_CLUSTER
- IMPORT_EXPORT_AGENT
- SUBSIDIARY
- TRADE_STYLE_2
- TRADE_STYLE_3
- TRADE_STYLE_4
- TRADE_STYLE_5
- NATIONAL_ID
- NATIONAL_ID_TYPE
- US_TAX_ID
- GEO_CODE_ACCURACY
- FAMILY_MEMBERS
- MARKETING_PRE_SCREEN
- GLOBAL_ULTIMATE_DUNS_NUMBER
- GLOBAL_ULTIMATE_BUSINESS_NAME
- PARENT_OR_HQ_DUNS_NUMBER
- PARENT_OR_HQ_BUSINESS_NAME
- DOMESTIC_ULTIMATE_DUNS_NUMBER
- DOMESTIC_ULTIMATE_BUSINESS_NAME
- LOCATION_STATUS
- COMPANY_CURRENCY_ISO_CODE
- FORTUNE_RANK
- INCLUDED_IN_SN_P_500
- PREMISES_MEASURE
- PREMISES_MEASURE_RELIABILITY
- PREMISES_MEASURE_UNIT
- EMPLOYEE_QUANTITY_GROWTH_RATE
- SALES_TURNOVER_GROWTH_RATE
- PRIMARY_SIC_8
- PRIMARY_SIC_8_DESC
- SECOND_SIC_8
- SECOND_SIC_8_DESC
- THIRD_SIC_8
- THIRD_SIC_8_DESC
- FOURTH_SIC_8
- FOURTH_SIC_8_DESC
- FIFTH_SIC_8
- FIFTH_SIC_8_DESC
- SIXTH_SIC_8
- SIXTH_SIC_8_DESC
- PRIOR_YEAR_EMPLOYEES
- PRIOR_YEAR_REVENUE
-}
-
-"""An edge in a connection."""
-type SalesforceDandBCompanyEdge {
- """The item at the end of the edge."""
- node: SalesforceDandBCompany!
-
- """A cursor for use in pagination"""
- cursor: String!
-}
-
-"""Salesforce D&B Companies connection, for use in pagination."""
-type SalesforceDandBCompanysConnection {
- """The count of all D&B Company you could get from the connection."""
- totalCount: Int!
-
- """Pagination Information"""
- pageInfo: PageInfo!
-
- """List of Salesforce D&B Companies"""
- nodes: [SalesforceDandBCompany!]!
-
- """List of D&B Company edges"""
- edges: [SalesforceDandBCompanyEdge!]!
-}
-
-"""Field that Custom Permissions can be sorted by"""
-enum SalesforceCustomPermissionSortByFieldEnum {
- ID
- IS_DELETED
- DEVELOPER_NAME
- LANGUAGE
- MASTER_LABEL
- NAMESPACE_PREFIX
- IS_PROTECTED
- CREATED_DATE
- CREATED_BY_ID
- LAST_MODIFIED_DATE
- LAST_MODIFIED_BY_ID
- SYSTEM_MODSTAMP
- DESCRIPTION
-}
-
-"""An edge in a connection."""
-type SalesforceCustomPermissionEdge {
- """The item at the end of the edge."""
- node: SalesforceCustomPermission!
-
- """A cursor for use in pagination"""
- cursor: String!
-}
-
-"""Salesforce Custom Permissions connection, for use in pagination."""
-type SalesforceCustomPermissionsConnection {
- """The count of all Custom Permission you could get from the connection."""
- totalCount: Int!
-
- """Pagination Information"""
- pageInfo: PageInfo!
-
- """List of Salesforce Custom Permissions"""
- nodes: [SalesforceCustomPermission!]!
-
- """List of Custom Permission edges"""
- edges: [SalesforceCustomPermissionEdge!]!
-}
-
-"""
-A filter to be used against CspTrustedSite object types. All fields are combined with a logical ‘and.’
-"""
-input SalesforceCspTrustedSiteConnectionFilter {
- """Filter against custom fields."""
- customField: SalesforceCustomFieldFilter
-
- """Filter by the CspTrustedSite's lastModifiedBy relation."""
- lastModifiedBy: SalesforceUserConnectionFilter
-
- """Filter by the CspTrustedSite's createdBy relation."""
- createdBy: SalesforceUserConnectionFilter
-
- """Filter by the CspTrustedSite's id field"""
- id: SalesforceIdFilter
-
- """Filter by the CspTrustedSite's isDeleted field"""
- isDeleted: SalesforceBooleanFilter
-
- """Filter by the CspTrustedSite's developerName field"""
- developerName: SalesforceStringFilter
-
- """Filter by the CspTrustedSite's language field"""
- language: SalesforceStringFilter
-
- """Filter by the CspTrustedSite's masterLabel field"""
- masterLabel: SalesforceStringFilter
-
- """Filter by the CspTrustedSite's namespacePrefix field"""
- namespacePrefix: SalesforceStringFilter
-
- """Filter by the CspTrustedSite's createdDate field"""
- createdDate: SalesforceDateTimeFilter
-
- """Filter by the CspTrustedSite's createdById field"""
- createdById: SalesforceIdFilter
-
- """Filter by the CspTrustedSite's lastModifiedDate field"""
- lastModifiedDate: SalesforceDateTimeFilter
-
- """Filter by the CspTrustedSite's lastModifiedById field"""
- lastModifiedById: SalesforceIdFilter
-
- """Filter by the CspTrustedSite's systemModstamp field"""
- systemModstamp: SalesforceDateTimeFilter
-
- """Filter by the CspTrustedSite's endpointUrl field"""
- endpointUrl: SalesforceStringFilter
-
- """Filter by the CspTrustedSite's description field"""
- description: SalesforceStringFilter
-
- """Filter by the CspTrustedSite's isActive field"""
- isActive: SalesforceBooleanFilter
-
- """Checks for any expressions in this list."""
- or: [SalesforceCspTrustedSiteConnectionFilter!]
-
- """Checks for all expressions in this list."""
- and: [SalesforceCspTrustedSiteConnectionFilter!]
-}
-
-"""Field that Content Security Policy Trusted Sites can be sorted by"""
-enum SalesforceCspTrustedSiteSortByFieldEnum {
- ID
- IS_DELETED
- DEVELOPER_NAME
- LANGUAGE
- MASTER_LABEL
- NAMESPACE_PREFIX
- CREATED_DATE
- CREATED_BY_ID
- LAST_MODIFIED_DATE
- LAST_MODIFIED_BY_ID
- SYSTEM_MODSTAMP
- ENDPOINT_URL
- DESCRIPTION
- IS_ACTIVE
-}
-
-"""An edge in a connection."""
-type SalesforceCspTrustedSiteEdge {
- """The item at the end of the edge."""
- node: SalesforceCspTrustedSite!
-
- """A cursor for use in pagination"""
- cursor: String!
-}
-
-"""
-Salesforce Content Security Policy Trusted Sites connection, for use in pagination.
-"""
-type SalesforceCspTrustedSitesConnection {
- """
- The count of all Content Security Policy Trusted Site you could get from the connection.
- """
- totalCount: Int!
-
- """Pagination Information"""
- pageInfo: PageInfo!
-
- """List of Salesforce Content Security Policy Trusted Sites"""
- nodes: [SalesforceCspTrustedSite!]!
-
- """List of Content Security Policy Trusted Site edges"""
- edges: [SalesforceCspTrustedSiteEdge!]!
-}
-
-"""
-A filter to be used against CorsWhitelistEntry object types. All fields are combined with a logical ‘and.’
-"""
-input SalesforceCorsWhitelistEntryConnectionFilter {
- """Filter against custom fields."""
- customField: SalesforceCustomFieldFilter
-
- """Filter by the CorsWhitelistEntry's lastModifiedBy relation."""
- lastModifiedBy: SalesforceUserConnectionFilter
-
- """Filter by the CorsWhitelistEntry's createdBy relation."""
- createdBy: SalesforceUserConnectionFilter
-
- """Filter by the CorsWhitelistEntry's id field"""
- id: SalesforceIdFilter
-
- """Filter by the CorsWhitelistEntry's isDeleted field"""
- isDeleted: SalesforceBooleanFilter
-
- """Filter by the CorsWhitelistEntry's developerName field"""
- developerName: SalesforceStringFilter
-
- """Filter by the CorsWhitelistEntry's language field"""
- language: SalesforceStringFilter
-
- """Filter by the CorsWhitelistEntry's masterLabel field"""
- masterLabel: SalesforceStringFilter
-
- """Filter by the CorsWhitelistEntry's namespacePrefix field"""
- namespacePrefix: SalesforceStringFilter
-
- """Filter by the CorsWhitelistEntry's createdDate field"""
- createdDate: SalesforceDateTimeFilter
-
- """Filter by the CorsWhitelistEntry's createdById field"""
- createdById: SalesforceIdFilter
-
- """Filter by the CorsWhitelistEntry's lastModifiedDate field"""
- lastModifiedDate: SalesforceDateTimeFilter
-
- """Filter by the CorsWhitelistEntry's lastModifiedById field"""
- lastModifiedById: SalesforceIdFilter
-
- """Filter by the CorsWhitelistEntry's systemModstamp field"""
- systemModstamp: SalesforceDateTimeFilter
-
- """Filter by the CorsWhitelistEntry's urlPattern field"""
- urlPattern: SalesforceStringFilter
-
- """Checks for any expressions in this list."""
- or: [SalesforceCorsWhitelistEntryConnectionFilter!]
-
- """Checks for all expressions in this list."""
- and: [SalesforceCorsWhitelistEntryConnectionFilter!]
-}
-
-"""Field that CORS Whitelist Origins can be sorted by"""
-enum SalesforceCorsWhitelistEntrySortByFieldEnum {
- ID
- IS_DELETED
- DEVELOPER_NAME
- LANGUAGE
- MASTER_LABEL
- NAMESPACE_PREFIX
- CREATED_DATE
- CREATED_BY_ID
- LAST_MODIFIED_DATE
- LAST_MODIFIED_BY_ID
- SYSTEM_MODSTAMP
- URL_PATTERN
-}
-
-"""An edge in a connection."""
-type SalesforceCorsWhitelistEntryEdge {
- """The item at the end of the edge."""
- node: SalesforceCorsWhitelistEntry!
-
- """A cursor for use in pagination"""
- cursor: String!
-}
-
-"""Salesforce CORS Whitelist Origins connection, for use in pagination."""
-type SalesforceCorsWhitelistEntrysConnection {
- """
- The count of all CORS Whitelist Origin you could get from the connection.
- """
- totalCount: Int!
-
- """Pagination Information"""
- pageInfo: PageInfo!
-
- """List of Salesforce CORS Whitelist Origins"""
- nodes: [SalesforceCorsWhitelistEntry!]!
-
- """List of CORS Whitelist Origin edges"""
- edges: [SalesforceCorsWhitelistEntryEdge!]!
-}
-
-"""
-A filter to be used against ContractStatus object types. All fields are combined with a logical ‘and.’
-"""
-input SalesforceContractStatusConnectionFilter {
- """Filter against custom fields."""
- customField: SalesforceCustomFieldFilter
-
- """Filter by the ContractStatus's lastModifiedBy relation."""
- lastModifiedBy: SalesforceUserConnectionFilter
-
- """Filter by the ContractStatus's createdBy relation."""
- createdBy: SalesforceUserConnectionFilter
-
- """Filter by the ContractStatus's id field"""
- id: SalesforceIdFilter
-
- """Filter by the ContractStatus's masterLabel field"""
- masterLabel: SalesforceStringFilter
-
- """Filter by the ContractStatus's apiName field"""
- apiName: SalesforceStringFilter
-
- """Filter by the ContractStatus's sortOrder field"""
- sortOrder: SalesforceIntFilter
-
- """Filter by the ContractStatus's isDefault field"""
- isDefault: SalesforceBooleanFilter
-
- """Filter by the ContractStatus's statusCode field"""
- statusCode: SalesforceStringFilter
-
- """Filter by the ContractStatus's createdById field"""
- createdById: SalesforceIdFilter
-
- """Filter by the ContractStatus's createdDate field"""
- createdDate: SalesforceDateTimeFilter
-
- """Filter by the ContractStatus's lastModifiedById field"""
- lastModifiedById: SalesforceIdFilter
-
- """Filter by the ContractStatus's lastModifiedDate field"""
- lastModifiedDate: SalesforceDateTimeFilter
-
- """Filter by the ContractStatus's systemModstamp field"""
- systemModstamp: SalesforceDateTimeFilter
-
- """Checks for any expressions in this list."""
- or: [SalesforceContractStatusConnectionFilter!]
-
- """Checks for all expressions in this list."""
- and: [SalesforceContractStatusConnectionFilter!]
-}
-
-"""Field that Contract Status Values can be sorted by"""
-enum SalesforceContractStatusSortByFieldEnum {
- ID
- MASTER_LABEL
- API_NAME
- SORT_ORDER
- IS_DEFAULT
- STATUS_CODE
- CREATED_BY_ID
- CREATED_DATE
- LAST_MODIFIED_BY_ID
- LAST_MODIFIED_DATE
- SYSTEM_MODSTAMP
-}
-
-"""An edge in a connection."""
-type SalesforceContractStatusEdge {
- """The item at the end of the edge."""
- node: SalesforceContractStatus!
-
- """A cursor for use in pagination"""
- cursor: String!
-}
-
-"""Salesforce Contract Status Values connection, for use in pagination."""
-type SalesforceContractStatussConnection {
- """
- The count of all Contract Status Value you could get from the connection.
- """
- totalCount: Int!
-
- """Pagination Information"""
- pageInfo: PageInfo!
-
- """List of Salesforce Contract Status Values"""
- nodes: [SalesforceContractStatus!]!
-
- """List of Contract Status Value edges"""
- edges: [SalesforceContractStatusEdge!]!
-}
-
-"""Field that Library Permissions can be sorted by"""
-enum SalesforceContentWorkspacePermissionSortByFieldEnum {
- ID
- NAME
- TYPE
- CREATED_BY_ID
- CREATED_DATE
- LAST_MODIFIED_DATE
- SYSTEM_MODSTAMP
- LAST_MODIFIED_BY_ID
- DESCRIPTION
-}
-
-"""An edge in a connection."""
-type SalesforceContentWorkspacePermissionEdge {
- """The item at the end of the edge."""
- node: SalesforceContentWorkspacePermission!
-
- """A cursor for use in pagination"""
- cursor: String!
-}
-
-"""Salesforce Library Permissions connection, for use in pagination."""
-type SalesforceContentWorkspacePermissionsConnection {
- """The count of all Library Permission you could get from the connection."""
- totalCount: Int!
-
- """Pagination Information"""
- pageInfo: PageInfo!
-
- """List of Salesforce Library Permissions"""
- nodes: [SalesforceContentWorkspacePermission!]!
-
- """List of Library Permission edges"""
- edges: [SalesforceContentWorkspacePermissionEdge!]!
-}
-
-"""
-A filter to be used against ContentUserSubscription object types. All fields are combined with a logical ‘and.’
-"""
-input SalesforceContentUserSubscriptionConnectionFilter {
- """Filter against custom fields."""
- customField: SalesforceCustomFieldFilter
-
- """Filter by the ContentUserSubscription's subscribedToUser relation."""
- subscribedToUser: SalesforceUserConnectionFilter
-
- """Filter by the ContentUserSubscription's subscriberUser relation."""
- subscriberUser: SalesforceUserConnectionFilter
-
- """Filter by the ContentUserSubscription's id field"""
- id: SalesforceIdFilter
-
- """Filter by the ContentUserSubscription's subscriberUserId field"""
- subscriberUserId: SalesforceIdFilter
-
- """Filter by the ContentUserSubscription's subscribedToUserId field"""
- subscribedToUserId: SalesforceIdFilter
-
- """Checks for any expressions in this list."""
- or: [SalesforceContentUserSubscriptionConnectionFilter!]
-
- """Checks for all expressions in this list."""
- and: [SalesforceContentUserSubscriptionConnectionFilter!]
-}
-
-"""Field that Content User Subscriptions can be sorted by"""
-enum SalesforceContentUserSubscriptionSortByFieldEnum {
- ID
- SUBSCRIBER_USER_ID
- SUBSCRIBED_TO_USER_ID
-}
-
-"""An edge in a connection."""
-type SalesforceContentUserSubscriptionEdge {
- """The item at the end of the edge."""
- node: SalesforceContentUserSubscription!
-
- """A cursor for use in pagination"""
- cursor: String!
-}
-
-"""
-Salesforce Content User Subscriptions connection, for use in pagination.
-"""
-type SalesforceContentUserSubscriptionsConnection {
- """
- The count of all Content User Subscription you could get from the connection.
- """
- totalCount: Int!
-
- """Pagination Information"""
- pageInfo: PageInfo!
-
- """List of Salesforce Content User Subscriptions"""
- nodes: [SalesforceContentUserSubscription!]!
-
- """List of Content User Subscription edges"""
- edges: [SalesforceContentUserSubscriptionEdge!]!
-}
-
-"""
-A filter to be used against ContentTagSubscription object types. All fields are combined with a logical ‘and.’
-"""
-input SalesforceContentTagSubscriptionConnectionFilter {
- """Filter against custom fields."""
- customField: SalesforceCustomFieldFilter
-
- """Filter by the ContentTagSubscription's user relation."""
- user: SalesforceUserConnectionFilter
-
- """Filter by the ContentTagSubscription's id field"""
- id: SalesforceIdFilter
-
- """Filter by the ContentTagSubscription's userId field"""
- userId: SalesforceIdFilter
-
- """Checks for any expressions in this list."""
- or: [SalesforceContentTagSubscriptionConnectionFilter!]
-
- """Checks for all expressions in this list."""
- and: [SalesforceContentTagSubscriptionConnectionFilter!]
-}
-
-"""Field that Content Tag Subscriptions can be sorted by"""
-enum SalesforceContentTagSubscriptionSortByFieldEnum {
- ID
- USER_ID
-}
-
-"""An edge in a connection."""
-type SalesforceContentTagSubscriptionEdge {
- """The item at the end of the edge."""
- node: SalesforceContentTagSubscription!
-
- """A cursor for use in pagination"""
- cursor: String!
-}
-
-"""
-Salesforce Content Tag Subscriptions connection, for use in pagination.
-"""
-type SalesforceContentTagSubscriptionsConnection {
- """
- The count of all Content Tag Subscription you could get from the connection.
- """
- totalCount: Int!
-
- """Pagination Information"""
- pageInfo: PageInfo!
-
- """List of Salesforce Content Tag Subscriptions"""
- nodes: [SalesforceContentTagSubscription!]!
-
- """List of Content Tag Subscription edges"""
- edges: [SalesforceContentTagSubscriptionEdge!]!
-}
-
-"""
-A filter to be used against ContactHistory object types. All fields are combined with a logical ‘and.’
-"""
-input SalesforceContactHistoryConnectionFilter {
- """Filter against custom fields."""
- customField: SalesforceCustomFieldFilter
-
- """Filter by the ContactHistory's createdBy relation."""
- createdBy: SalesforceUserConnectionFilter
-
- """Filter by the ContactHistory's contact relation."""
- contact: SalesforceContactConnectionFilter
-
- """Filter by the ContactHistory's id field"""
- id: SalesforceIdFilter
-
- """Filter by the ContactHistory's isDeleted field"""
- isDeleted: SalesforceBooleanFilter
-
- """Filter by the ContactHistory's contactId field"""
- contactId: SalesforceIdFilter
-
- """Filter by the ContactHistory's createdById field"""
- createdById: SalesforceIdFilter
-
- """Filter by the ContactHistory's createdDate field"""
- createdDate: SalesforceDateTimeFilter
-
- """Filter by the ContactHistory's field field"""
- field: SalesforceStringFilter
-
- """Checks for any expressions in this list."""
- or: [SalesforceContactHistoryConnectionFilter!]
-
- """Checks for all expressions in this list."""
- and: [SalesforceContactHistoryConnectionFilter!]
-}
-
-"""Field that Contact Histories can be sorted by"""
-enum SalesforceContactHistorySortByFieldEnum {
- ID
- IS_DELETED
- CONTACT_ID
- CREATED_BY_ID
- CREATED_DATE
- FIELD
- OLD_VALUE
- NEW_VALUE
-}
-
-"""An edge in a connection."""
-type SalesforceContactHistoryEdge {
- """The item at the end of the edge."""
- node: SalesforceContactHistory!
-
- """A cursor for use in pagination"""
- cursor: String!
-}
-
-"""Salesforce Contact Histories connection, for use in pagination."""
-type SalesforceContactHistorysConnection {
- """The count of all Contact History you could get from the connection."""
- totalCount: Int!
-
- """Pagination Information"""
- pageInfo: PageInfo!
-
- """List of Salesforce Contact Histories"""
- nodes: [SalesforceContactHistory!]!
-
- """List of Contact History edges"""
- edges: [SalesforceContactHistoryEdge!]!
-}
-
-"""
-A filter to be used against ContactCleanInfo object types. All fields are combined with a logical ‘and.’
-"""
-input SalesforceContactCleanInfoConnectionFilter {
- """Filter against custom fields."""
- customField: SalesforceCustomFieldFilter
-
- """Filter by the ContactCleanInfo's lastStatusChangedBy relation."""
- lastStatusChangedBy: SalesforceUserConnectionFilter
-
- """Filter by the ContactCleanInfo's contact relation."""
- contact: SalesforceContactConnectionFilter
-
- """Filter by the ContactCleanInfo's lastModifiedBy relation."""
- lastModifiedBy: SalesforceUserConnectionFilter
-
- """Filter by the ContactCleanInfo's createdBy relation."""
- createdBy: SalesforceUserConnectionFilter
-
- """Filter by the ContactCleanInfo's id field"""
- id: SalesforceIdFilter
-
- """Filter by the ContactCleanInfo's isDeleted field"""
- isDeleted: SalesforceBooleanFilter
-
- """Filter by the ContactCleanInfo's name field"""
- name: SalesforceStringFilter
-
- """Filter by the ContactCleanInfo's createdDate field"""
- createdDate: SalesforceDateTimeFilter
-
- """Filter by the ContactCleanInfo's createdById field"""
- createdById: SalesforceIdFilter
-
- """Filter by the ContactCleanInfo's lastModifiedDate field"""
- lastModifiedDate: SalesforceDateTimeFilter
-
- """Filter by the ContactCleanInfo's lastModifiedById field"""
- lastModifiedById: SalesforceIdFilter
-
- """Filter by the ContactCleanInfo's systemModstamp field"""
- systemModstamp: SalesforceDateTimeFilter
-
- """Filter by the ContactCleanInfo's contactId field"""
- contactId: SalesforceIdFilter
-
- """Filter by the ContactCleanInfo's lastMatchedDate field"""
- lastMatchedDate: SalesforceDateTimeFilter
-
- """Filter by the ContactCleanInfo's lastStatusChangedDate field"""
- lastStatusChangedDate: SalesforceDateTimeFilter
-
- """Filter by the ContactCleanInfo's lastStatusChangedById field"""
- lastStatusChangedById: SalesforceIdFilter
-
- """Filter by the ContactCleanInfo's isInactive field"""
- isInactive: SalesforceBooleanFilter
-
- """Filter by the ContactCleanInfo's firstName field"""
- firstName: SalesforceStringFilter
-
- """Filter by the ContactCleanInfo's lastName field"""
- lastName: SalesforceStringFilter
-
- """Filter by the ContactCleanInfo's email field"""
- email: SalesforceStringFilter
-
- """Filter by the ContactCleanInfo's phone field"""
- phone: SalesforceStringFilter
-
- """Filter by the ContactCleanInfo's street field"""
- street: SalesforceStringFilter
-
- """Filter by the ContactCleanInfo's city field"""
- city: SalesforceStringFilter
-
- """Filter by the ContactCleanInfo's state field"""
- state: SalesforceStringFilter
-
- """Filter by the ContactCleanInfo's postalCode field"""
- postalCode: SalesforceStringFilter
-
- """Filter by the ContactCleanInfo's country field"""
- country: SalesforceStringFilter
-
- """Filter by the ContactCleanInfo's latitude field"""
- latitude: SalesforceFloatFilter
-
- """Filter by the ContactCleanInfo's longitude field"""
- longitude: SalesforceFloatFilter
-
- """Filter by the ContactCleanInfo's geocodeAccuracy field"""
- geocodeAccuracy: SalesforceStringFilter
-
- """Filter by the ContactCleanInfo's title field"""
- title: SalesforceStringFilter
-
- """Filter by the ContactCleanInfo's contactStatusDataDotCom field"""
- contactStatusDataDotCom: SalesforceStringFilter
-
- """Filter by the ContactCleanInfo's isReviewedName field"""
- isReviewedName: SalesforceBooleanFilter
-
- """Filter by the ContactCleanInfo's isReviewedEmail field"""
- isReviewedEmail: SalesforceBooleanFilter
-
- """Filter by the ContactCleanInfo's isReviewedPhone field"""
- isReviewedPhone: SalesforceBooleanFilter
-
- """Filter by the ContactCleanInfo's isReviewedAddress field"""
- isReviewedAddress: SalesforceBooleanFilter
-
- """Filter by the ContactCleanInfo's isReviewedTitle field"""
- isReviewedTitle: SalesforceBooleanFilter
-
- """Filter by the ContactCleanInfo's isDifferentFirstName field"""
- isDifferentFirstName: SalesforceBooleanFilter
-
- """Filter by the ContactCleanInfo's isDifferentLastName field"""
- isDifferentLastName: SalesforceBooleanFilter
-
- """Filter by the ContactCleanInfo's isDifferentEmail field"""
- isDifferentEmail: SalesforceBooleanFilter
-
- """Filter by the ContactCleanInfo's isDifferentPhone field"""
- isDifferentPhone: SalesforceBooleanFilter
-
- """Filter by the ContactCleanInfo's isDifferentStreet field"""
- isDifferentStreet: SalesforceBooleanFilter
-
- """Filter by the ContactCleanInfo's isDifferentCity field"""
- isDifferentCity: SalesforceBooleanFilter
-
- """Filter by the ContactCleanInfo's isDifferentState field"""
- isDifferentState: SalesforceBooleanFilter
-
- """Filter by the ContactCleanInfo's isDifferentPostalCode field"""
- isDifferentPostalCode: SalesforceBooleanFilter
-
- """Filter by the ContactCleanInfo's isDifferentCountry field"""
- isDifferentCountry: SalesforceBooleanFilter
-
- """Filter by the ContactCleanInfo's isDifferentTitle field"""
- isDifferentTitle: SalesforceBooleanFilter
-
- """Filter by the ContactCleanInfo's isDifferentStateCode field"""
- isDifferentStateCode: SalesforceBooleanFilter
-
- """Filter by the ContactCleanInfo's isDifferentCountryCode field"""
- isDifferentCountryCode: SalesforceBooleanFilter
-
- """Filter by the ContactCleanInfo's cleanedByJob field"""
- cleanedByJob: SalesforceBooleanFilter
-
- """Filter by the ContactCleanInfo's cleanedByUser field"""
- cleanedByUser: SalesforceBooleanFilter
-
- """Filter by the ContactCleanInfo's isFlaggedWrongName field"""
- isFlaggedWrongName: SalesforceBooleanFilter
-
- """Filter by the ContactCleanInfo's isFlaggedWrongEmail field"""
- isFlaggedWrongEmail: SalesforceBooleanFilter
-
- """Filter by the ContactCleanInfo's isFlaggedWrongPhone field"""
- isFlaggedWrongPhone: SalesforceBooleanFilter
-
- """Filter by the ContactCleanInfo's isFlaggedWrongAddress field"""
- isFlaggedWrongAddress: SalesforceBooleanFilter
-
- """Filter by the ContactCleanInfo's isFlaggedWrongTitle field"""
- isFlaggedWrongTitle: SalesforceBooleanFilter
-
- """Filter by the ContactCleanInfo's dataDotComId field"""
- dataDotComId: SalesforceStringFilter
-
- """Checks for any expressions in this list."""
- or: [SalesforceContactCleanInfoConnectionFilter!]
-
- """Checks for all expressions in this list."""
- and: [SalesforceContactCleanInfoConnectionFilter!]
-}
-
-"""Field that Contact Clean Infos can be sorted by"""
-enum SalesforceContactCleanInfoSortByFieldEnum {
- ID
- IS_DELETED
- NAME
- CREATED_DATE
- CREATED_BY_ID
- LAST_MODIFIED_DATE
- LAST_MODIFIED_BY_ID
- SYSTEM_MODSTAMP
- CONTACT_ID
- LAST_MATCHED_DATE
- LAST_STATUS_CHANGED_DATE
- LAST_STATUS_CHANGED_BY_ID
- IS_INACTIVE
- FIRST_NAME
- LAST_NAME
- EMAIL
- PHONE
- STREET
- CITY
- STATE
- POSTAL_CODE
- COUNTRY
- LATITUDE
- LONGITUDE
- GEOCODE_ACCURACY
- TITLE
- CONTACT_STATUS_DATA_DOT_COM
- DATA_DOT_COM_ID
-}
-
-"""An edge in a connection."""
-type SalesforceContactCleanInfoEdge {
- """The item at the end of the edge."""
- node: SalesforceContactCleanInfo!
-
- """A cursor for use in pagination"""
- cursor: String!
-}
-
-"""Salesforce Contact Clean Infos connection, for use in pagination."""
-type SalesforceContactCleanInfosConnection {
- """The count of all Contact Clean Info you could get from the connection."""
- totalCount: Int!
-
- """Pagination Information"""
- pageInfo: PageInfo!
-
- """List of Salesforce Contact Clean Infos"""
- nodes: [SalesforceContactCleanInfo!]!
-
- """List of Contact Clean Info edges"""
- edges: [SalesforceContactCleanInfoEdge!]!
-}
-
-"""Field that Contacts can be sorted by"""
-enum SalesforceContactSortByFieldEnum {
- ID
- IS_DELETED
- MASTER_RECORD_ID
- ACCOUNT_ID
- LAST_NAME
- FIRST_NAME
- SALUTATION
- NAME
- OTHER_STREET
- OTHER_CITY
- OTHER_STATE
- OTHER_POSTAL_CODE
- OTHER_COUNTRY
- OTHER_LATITUDE
- OTHER_LONGITUDE
- OTHER_GEOCODE_ACCURACY
- MAILING_STREET
- MAILING_CITY
- MAILING_STATE
- MAILING_POSTAL_CODE
- MAILING_COUNTRY
- MAILING_LATITUDE
- MAILING_LONGITUDE
- MAILING_GEOCODE_ACCURACY
- PHONE
- FAX
- MOBILE_PHONE
- HOME_PHONE
- OTHER_PHONE
- ASSISTANT_PHONE
- REPORTS_TO_ID
- EMAIL
- TITLE
- DEPARTMENT
- ASSISTANT_NAME
- LEAD_SOURCE
- BIRTHDATE
- OWNER_ID
- CREATED_DATE
- CREATED_BY_ID
- LAST_MODIFIED_DATE
- LAST_MODIFIED_BY_ID
- SYSTEM_MODSTAMP
- LAST_ACTIVITY_DATE
- LAST_CU_REQUEST_DATE
- LAST_CU_UPDATE_DATE
- LAST_VIEWED_DATE
- LAST_REFERENCED_DATE
- EMAIL_BOUNCED_REASON
- EMAIL_BOUNCED_DATE
- IS_EMAIL_BOUNCED
- PHOTO_URL
- JIGSAW
- JIGSAW_CONTACT_ID
- CLEAN_STATUS
-}
-
-"""An edge in a connection."""
-type SalesforceContactEdge {
- """The item at the end of the edge."""
- node: SalesforceContact!
-
- """A cursor for use in pagination"""
- cursor: String!
-}
-
-"""Salesforce Contacts connection, for use in pagination."""
-type SalesforceContactsConnection {
- """The count of all Contact you could get from the connection."""
- totalCount: Int!
-
- """Pagination Information"""
- pageInfo: PageInfo!
-
- """List of Salesforce Contacts"""
- nodes: [SalesforceContact!]!
-
- """List of Contact edges"""
- edges: [SalesforceContactEdge!]!
-}
-
-"""Field that Connected Apps can be sorted by"""
-enum SalesforceConnectedApplicationSortByFieldEnum {
- ID
- NAME
- CREATED_DATE
- CREATED_BY_ID
- LAST_MODIFIED_DATE
- LAST_MODIFIED_BY_ID
- SYSTEM_MODSTAMP
- MOBILE_SESSION_TIMEOUT
- PIN_LENGTH
- START_URL
- MOBILE_START_URL
- REFRESH_TOKEN_VALIDITY_PERIOD
-}
-
-"""An edge in a connection."""
-type SalesforceConnectedApplicationEdge {
- """The item at the end of the edge."""
- node: SalesforceConnectedApplication!
-
- """A cursor for use in pagination"""
- cursor: String!
-}
-
-"""Salesforce Connected Apps connection, for use in pagination."""
-type SalesforceConnectedApplicationsConnection {
- """The count of all Connected App you could get from the connection."""
- totalCount: Int!
-
- """Pagination Information"""
- pageInfo: PageInfo!
-
- """List of Salesforce Connected Apps"""
- nodes: [SalesforceConnectedApplication!]!
-
- """List of Connected App edges"""
- edges: [SalesforceConnectedApplicationEdge!]!
-}
-
-"""Field that Zones can be sorted by"""
-enum SalesforceCommunitySortByFieldEnum {
- ID
- SYSTEM_MODSTAMP
- CREATED_DATE
- CREATED_BY_ID
- LAST_MODIFIED_DATE
- LAST_MODIFIED_BY_ID
- NAME
- DESCRIPTION
- IS_ACTIVE
- IS_PUBLISHED
-}
-
-"""An edge in a connection."""
-type SalesforceCommunityEdge {
- """The item at the end of the edge."""
- node: SalesforceCommunity!
-
- """A cursor for use in pagination"""
- cursor: String!
-}
-
-"""Salesforce Zones connection, for use in pagination."""
-type SalesforceCommunitysConnection {
- """The count of all Zone you could get from the connection."""
- totalCount: Int!
-
- """Pagination Information"""
- pageInfo: PageInfo!
-
- """List of Salesforce Zones"""
- nodes: [SalesforceCommunity!]!
-
- """List of Zone edges"""
- edges: [SalesforceCommunityEdge!]!
-}
-
-"""
-A filter to be used against ClientBrowser object types. All fields are combined with a logical ‘and.’
-"""
-input SalesforceClientBrowserConnectionFilter {
- """Filter against custom fields."""
- customField: SalesforceCustomFieldFilter
-
- """Filter by the ClientBrowser's users relation."""
- users: SalesforceUserConnectionFilter
-
- """Filter by the ClientBrowser's id field"""
- id: SalesforceIdFilter
-
- """Filter by the ClientBrowser's usersId field"""
- usersId: SalesforceIdFilter
-
- """Filter by the ClientBrowser's fullUserAgent field"""
- fullUserAgent: SalesforceStringFilter
-
- """Filter by the ClientBrowser's proxyInfo field"""
- proxyInfo: SalesforceStringFilter
-
- """Filter by the ClientBrowser's lastUpdate field"""
- lastUpdate: SalesforceDateTimeFilter
-
- """Filter by the ClientBrowser's createdDate field"""
- createdDate: SalesforceDateTimeFilter
-
- """Checks for any expressions in this list."""
- or: [SalesforceClientBrowserConnectionFilter!]
-
- """Checks for all expressions in this list."""
- and: [SalesforceClientBrowserConnectionFilter!]
-}
-
-"""Field that Client Browsers can be sorted by"""
-enum SalesforceClientBrowserSortByFieldEnum {
- ID
- USERS_ID
- FULL_USER_AGENT
- PROXY_INFO
- LAST_UPDATE
- CREATED_DATE
-}
-
-"""An edge in a connection."""
-type SalesforceClientBrowserEdge {
- """The item at the end of the edge."""
- node: SalesforceClientBrowser!
-
- """A cursor for use in pagination"""
- cursor: String!
-}
-
-"""Salesforce Client Browsers connection, for use in pagination."""
-type SalesforceClientBrowsersConnection {
- """The count of all Client Browser you could get from the connection."""
- totalCount: Int!
-
- """Pagination Information"""
- pageInfo: PageInfo!
-
- """List of Salesforce Client Browsers"""
- nodes: [SalesforceClientBrowser!]!
-
- """List of Client Browser edges"""
- edges: [SalesforceClientBrowserEdge!]!
-}
-
-"""
-A filter to be used against ChatterActivity object types. All fields are combined with a logical ‘and.’
-"""
-input SalesforceChatterActivityConnectionFilter {
- """Filter against custom fields."""
- customField: SalesforceCustomFieldFilter
-
- """Filter by the ChatterActivity's parent relation."""
- parent: SalesforceUserConnectionFilter
-
- """Filter by the ChatterActivity's id field"""
- id: SalesforceIdFilter
-
- """Filter by the ChatterActivity's parentId field"""
- parentId: SalesforceIdFilter
-
- """Filter by the ChatterActivity's postCount field"""
- postCount: SalesforceIntFilter
-
- """Filter by the ChatterActivity's commentCount field"""
- commentCount: SalesforceIntFilter
-
- """Filter by the ChatterActivity's commentReceivedCount field"""
- commentReceivedCount: SalesforceIntFilter
-
- """Filter by the ChatterActivity's likeReceivedCount field"""
- likeReceivedCount: SalesforceIntFilter
-
- """Filter by the ChatterActivity's influenceRawRank field"""
- influenceRawRank: SalesforceIntFilter
-
- """Filter by the ChatterActivity's systemModstamp field"""
- systemModstamp: SalesforceDateTimeFilter
-
- """Checks for any expressions in this list."""
- or: [SalesforceChatterActivityConnectionFilter!]
-
- """Checks for all expressions in this list."""
- and: [SalesforceChatterActivityConnectionFilter!]
-}
-
-"""Field that Chatter Activities can be sorted by"""
-enum SalesforceChatterActivitySortByFieldEnum {
- ID
- PARENT_ID
- POST_COUNT
- COMMENT_COUNT
- COMMENT_RECEIVED_COUNT
- LIKE_RECEIVED_COUNT
- INFLUENCE_RAW_RANK
- SYSTEM_MODSTAMP
-}
-
-"""An edge in a connection."""
-type SalesforceChatterActivityEdge {
- """The item at the end of the edge."""
- node: SalesforceChatterActivity!
-
- """A cursor for use in pagination"""
- cursor: String!
-}
-
-"""Salesforce Chatter Activities connection, for use in pagination."""
-type SalesforceChatterActivitysConnection {
- """The count of all Chatter Activity you could get from the connection."""
- totalCount: Int!
-
- """Pagination Information"""
- pageInfo: PageInfo!
-
- """List of Salesforce Chatter Activities"""
- nodes: [SalesforceChatterActivity!]!
-
- """List of Chatter Activity edges"""
- edges: [SalesforceChatterActivityEdge!]!
-}
-
-"""
-A filter to be used against CaseTeamTemplateRecord object types. All fields are combined with a logical ‘and.’
-"""
-input SalesforceCaseTeamTemplateRecordConnectionFilter {
- """Filter against custom fields."""
- customField: SalesforceCustomFieldFilter
-
- """Filter by the CaseTeamTemplateRecord's createdBy relation."""
- createdBy: SalesforceUserConnectionFilter
-
- """Filter by the CaseTeamTemplateRecord's teamTemplate relation."""
- teamTemplate: SalesforceCaseTeamTemplateConnectionFilter
-
- """Filter by the CaseTeamTemplateRecord's parent relation."""
- parent: SalesforceCaseConnectionFilter
-
- """Filter by the CaseTeamTemplateRecord's id field"""
- id: SalesforceIdFilter
-
- """Filter by the CaseTeamTemplateRecord's parentId field"""
- parentId: SalesforceIdFilter
-
- """Filter by the CaseTeamTemplateRecord's teamTemplateId field"""
- teamTemplateId: SalesforceIdFilter
-
- """Filter by the CaseTeamTemplateRecord's createdDate field"""
- createdDate: SalesforceDateTimeFilter
-
- """Filter by the CaseTeamTemplateRecord's createdById field"""
- createdById: SalesforceIdFilter
-
- """Filter by the CaseTeamTemplateRecord's systemModstamp field"""
- systemModstamp: SalesforceDateTimeFilter
-
- """Checks for any expressions in this list."""
- or: [SalesforceCaseTeamTemplateRecordConnectionFilter!]
-
- """Checks for all expressions in this list."""
- and: [SalesforceCaseTeamTemplateRecordConnectionFilter!]
-}
-
-"""Field that Predefined Case Team Records can be sorted by"""
-enum SalesforceCaseTeamTemplateRecordSortByFieldEnum {
- ID
- PARENT_ID
- TEAM_TEMPLATE_ID
- CREATED_DATE
- CREATED_BY_ID
- SYSTEM_MODSTAMP
-}
-
-"""An edge in a connection."""
-type SalesforceCaseTeamTemplateRecordEdge {
- """The item at the end of the edge."""
- node: SalesforceCaseTeamTemplateRecord!
-
- """A cursor for use in pagination"""
- cursor: String!
-}
-
-"""
-Salesforce Predefined Case Team Records connection, for use in pagination.
-"""
-type SalesforceCaseTeamTemplateRecordsConnection {
- """
- The count of all Predefined Case Team Record you could get from the connection.
- """
- totalCount: Int!
-
- """Pagination Information"""
- pageInfo: PageInfo!
-
- """List of Salesforce Predefined Case Team Records"""
- nodes: [SalesforceCaseTeamTemplateRecord!]!
-
- """List of Predefined Case Team Record edges"""
- edges: [SalesforceCaseTeamTemplateRecordEdge!]!
-}
-
-"""Field that Predefined Case Team Members can be sorted by"""
-enum SalesforceCaseTeamTemplateMemberSortByFieldEnum {
- ID
- TEAM_TEMPLATE_ID
- MEMBER_ID
- TEAM_ROLE_ID
- CREATED_DATE
- CREATED_BY_ID
- LAST_MODIFIED_DATE
- LAST_MODIFIED_BY_ID
- SYSTEM_MODSTAMP
-}
-
-"""An edge in a connection."""
-type SalesforceCaseTeamTemplateMemberEdge {
- """The item at the end of the edge."""
- node: SalesforceCaseTeamTemplateMember!
-
- """A cursor for use in pagination"""
- cursor: String!
-}
-
-"""
-Salesforce Predefined Case Team Members connection, for use in pagination.
-"""
-type SalesforceCaseTeamTemplateMembersConnection {
- """
- The count of all Predefined Case Team Member you could get from the connection.
- """
- totalCount: Int!
-
- """Pagination Information"""
- pageInfo: PageInfo!
-
- """List of Salesforce Predefined Case Team Members"""
- nodes: [SalesforceCaseTeamTemplateMember!]!
-
- """List of Predefined Case Team Member edges"""
- edges: [SalesforceCaseTeamTemplateMemberEdge!]!
-}
-
-"""Field that Predefined Case Teams can be sorted by"""
-enum SalesforceCaseTeamTemplateSortByFieldEnum {
- ID
- NAME
- DESCRIPTION
- CREATED_DATE
- CREATED_BY_ID
- LAST_MODIFIED_DATE
- LAST_MODIFIED_BY_ID
- SYSTEM_MODSTAMP
-}
-
-"""An edge in a connection."""
-type SalesforceCaseTeamTemplateEdge {
- """The item at the end of the edge."""
- node: SalesforceCaseTeamTemplate!
-
- """A cursor for use in pagination"""
- cursor: String!
-}
-
-"""Salesforce Predefined Case Teams connection, for use in pagination."""
-type SalesforceCaseTeamTemplatesConnection {
- """
- The count of all Predefined Case Team you could get from the connection.
- """
- totalCount: Int!
-
- """Pagination Information"""
- pageInfo: PageInfo!
-
- """List of Salesforce Predefined Case Teams"""
- nodes: [SalesforceCaseTeamTemplate!]!
-
- """List of Predefined Case Team edges"""
- edges: [SalesforceCaseTeamTemplateEdge!]!
-}
-
-"""Field that Case Team Member Roles can be sorted by"""
-enum SalesforceCaseTeamRoleSortByFieldEnum {
- ID
- NAME
- ACCESS_LEVEL
- CREATED_DATE
- CREATED_BY_ID
- LAST_MODIFIED_DATE
- LAST_MODIFIED_BY_ID
- SYSTEM_MODSTAMP
-}
-
-"""An edge in a connection."""
-type SalesforceCaseTeamRoleEdge {
- """The item at the end of the edge."""
- node: SalesforceCaseTeamRole!
-
- """A cursor for use in pagination"""
- cursor: String!
-}
-
-"""Salesforce Case Team Member Roles connection, for use in pagination."""
-type SalesforceCaseTeamRolesConnection {
- """
- The count of all Case Team Member Role you could get from the connection.
- """
- totalCount: Int!
-
- """Pagination Information"""
- pageInfo: PageInfo!
-
- """List of Salesforce Case Team Member Roles"""
- nodes: [SalesforceCaseTeamRole!]!
-
- """List of Case Team Member Role edges"""
- edges: [SalesforceCaseTeamRoleEdge!]!
-}
-
-"""
-A filter to be used against CaseTeamRole object types. All fields are combined with a logical ‘and.’
-"""
-input SalesforceCaseTeamRoleConnectionFilter {
- """Filter against custom fields."""
- customField: SalesforceCustomFieldFilter
-
- """Filter by the CaseTeamRole's lastModifiedBy relation."""
- lastModifiedBy: SalesforceUserConnectionFilter
-
- """Filter by the CaseTeamRole's createdBy relation."""
- createdBy: SalesforceUserConnectionFilter
-
- """Filter by the CaseTeamRole's id field"""
- id: SalesforceIdFilter
-
- """Filter by the CaseTeamRole's name field"""
- name: SalesforceStringFilter
-
- """Filter by the CaseTeamRole's accessLevel field"""
- accessLevel: SalesforceStringFilter
-
- """Filter by the CaseTeamRole's preferencesVisibleInCsp field"""
- preferencesVisibleInCsp: SalesforceBooleanFilter
-
- """Filter by the CaseTeamRole's createdDate field"""
- createdDate: SalesforceDateTimeFilter
-
- """Filter by the CaseTeamRole's createdById field"""
- createdById: SalesforceIdFilter
-
- """Filter by the CaseTeamRole's lastModifiedDate field"""
- lastModifiedDate: SalesforceDateTimeFilter
-
- """Filter by the CaseTeamRole's lastModifiedById field"""
- lastModifiedById: SalesforceIdFilter
-
- """Filter by the CaseTeamRole's systemModstamp field"""
- systemModstamp: SalesforceDateTimeFilter
-
- """Checks for any expressions in this list."""
- or: [SalesforceCaseTeamRoleConnectionFilter!]
-
- """Checks for all expressions in this list."""
- and: [SalesforceCaseTeamRoleConnectionFilter!]
-}
-
-"""
-A filter to be used against CaseTeamTemplate object types. All fields are combined with a logical ‘and.’
-"""
-input SalesforceCaseTeamTemplateConnectionFilter {
- """Filter against custom fields."""
- customField: SalesforceCustomFieldFilter
-
- """Filter by the CaseTeamTemplate's lastModifiedBy relation."""
- lastModifiedBy: SalesforceUserConnectionFilter
-
- """Filter by the CaseTeamTemplate's createdBy relation."""
- createdBy: SalesforceUserConnectionFilter
-
- """Filter by the CaseTeamTemplate's id field"""
- id: SalesforceIdFilter
-
- """Filter by the CaseTeamTemplate's name field"""
- name: SalesforceStringFilter
-
- """Filter by the CaseTeamTemplate's description field"""
- description: SalesforceStringFilter
-
- """Filter by the CaseTeamTemplate's createdDate field"""
- createdDate: SalesforceDateTimeFilter
-
- """Filter by the CaseTeamTemplate's createdById field"""
- createdById: SalesforceIdFilter
-
- """Filter by the CaseTeamTemplate's lastModifiedDate field"""
- lastModifiedDate: SalesforceDateTimeFilter
-
- """Filter by the CaseTeamTemplate's lastModifiedById field"""
- lastModifiedById: SalesforceIdFilter
-
- """Filter by the CaseTeamTemplate's systemModstamp field"""
- systemModstamp: SalesforceDateTimeFilter
-
- """Checks for any expressions in this list."""
- or: [SalesforceCaseTeamTemplateConnectionFilter!]
-
- """Checks for all expressions in this list."""
- and: [SalesforceCaseTeamTemplateConnectionFilter!]
-}
-
-"""
-A filter to be used against CaseTeamTemplateMember object types. All fields are combined with a logical ‘and.’
-"""
-input SalesforceCaseTeamTemplateMemberConnectionFilter {
- """Filter against custom fields."""
- customField: SalesforceCustomFieldFilter
-
- """Filter by the CaseTeamTemplateMember's lastModifiedBy relation."""
- lastModifiedBy: SalesforceUserConnectionFilter
-
- """Filter by the CaseTeamTemplateMember's createdBy relation."""
- createdBy: SalesforceUserConnectionFilter
-
- """Filter by the CaseTeamTemplateMember's teamRole relation."""
- teamRole: SalesforceCaseTeamRoleConnectionFilter
-
- """Filter by the CaseTeamTemplateMember's teamTemplate relation."""
- teamTemplate: SalesforceCaseTeamTemplateConnectionFilter
-
- """Filter by the CaseTeamTemplateMember's id field"""
- id: SalesforceIdFilter
-
- """Filter by the CaseTeamTemplateMember's teamTemplateId field"""
- teamTemplateId: SalesforceIdFilter
-
- """Filter by the CaseTeamTemplateMember's memberId field"""
- memberId: SalesforceIdFilter
-
- """Filter by the CaseTeamTemplateMember's teamRoleId field"""
- teamRoleId: SalesforceIdFilter
-
- """Filter by the CaseTeamTemplateMember's createdDate field"""
- createdDate: SalesforceDateTimeFilter
-
- """Filter by the CaseTeamTemplateMember's createdById field"""
- createdById: SalesforceIdFilter
-
- """Filter by the CaseTeamTemplateMember's lastModifiedDate field"""
- lastModifiedDate: SalesforceDateTimeFilter
-
- """Filter by the CaseTeamTemplateMember's lastModifiedById field"""
- lastModifiedById: SalesforceIdFilter
-
- """Filter by the CaseTeamTemplateMember's systemModstamp field"""
- systemModstamp: SalesforceDateTimeFilter
-
- """Checks for any expressions in this list."""
- or: [SalesforceCaseTeamTemplateMemberConnectionFilter!]
-
- """Checks for all expressions in this list."""
- and: [SalesforceCaseTeamTemplateMemberConnectionFilter!]
-}
-
-"""
-A filter to be used against CaseTeamMember object types. All fields are combined with a logical ‘and.’
-"""
-input SalesforceCaseTeamMemberConnectionFilter {
- """Filter against custom fields."""
- customField: SalesforceCustomFieldFilter
-
- """Filter by the CaseTeamMember's lastModifiedBy relation."""
- lastModifiedBy: SalesforceUserConnectionFilter
-
- """Filter by the CaseTeamMember's createdBy relation."""
- createdBy: SalesforceUserConnectionFilter
-
- """Filter by the CaseTeamMember's teamRole relation."""
- teamRole: SalesforceCaseTeamRoleConnectionFilter
-
- """Filter by the CaseTeamMember's teamTemplateMember relation."""
- teamTemplateMember: SalesforceCaseTeamTemplateMemberConnectionFilter
-
- """Filter by the CaseTeamMember's parent relation."""
- parent: SalesforceCaseConnectionFilter
-
- """Filter by the CaseTeamMember's id field"""
- id: SalesforceIdFilter
-
- """Filter by the CaseTeamMember's parentId field"""
- parentId: SalesforceIdFilter
-
- """Filter by the CaseTeamMember's memberId field"""
- memberId: SalesforceIdFilter
-
- """Filter by the CaseTeamMember's teamTemplateMemberId field"""
- teamTemplateMemberId: SalesforceIdFilter
-
- """Filter by the CaseTeamMember's teamRoleId field"""
- teamRoleId: SalesforceIdFilter
-
- """Filter by the CaseTeamMember's createdDate field"""
- createdDate: SalesforceDateTimeFilter
-
- """Filter by the CaseTeamMember's createdById field"""
- createdById: SalesforceIdFilter
-
- """Filter by the CaseTeamMember's lastModifiedDate field"""
- lastModifiedDate: SalesforceDateTimeFilter
-
- """Filter by the CaseTeamMember's lastModifiedById field"""
- lastModifiedById: SalesforceIdFilter
-
- """Filter by the CaseTeamMember's systemModstamp field"""
- systemModstamp: SalesforceDateTimeFilter
-
- """Checks for any expressions in this list."""
- or: [SalesforceCaseTeamMemberConnectionFilter!]
-
- """Checks for all expressions in this list."""
- and: [SalesforceCaseTeamMemberConnectionFilter!]
-}
-
-"""Field that Case Team Members can be sorted by"""
-enum SalesforceCaseTeamMemberSortByFieldEnum {
- ID
- PARENT_ID
- MEMBER_ID
- TEAM_TEMPLATE_MEMBER_ID
- TEAM_ROLE_ID
- CREATED_DATE
- CREATED_BY_ID
- LAST_MODIFIED_DATE
- LAST_MODIFIED_BY_ID
- SYSTEM_MODSTAMP
-}
-
-"""An edge in a connection."""
-type SalesforceCaseTeamMemberEdge {
- """The item at the end of the edge."""
- node: SalesforceCaseTeamMember!
-
- """A cursor for use in pagination"""
- cursor: String!
-}
-
-"""Salesforce Case Team Members connection, for use in pagination."""
-type SalesforceCaseTeamMembersConnection {
- """The count of all Case Team Member you could get from the connection."""
- totalCount: Int!
-
- """Pagination Information"""
- pageInfo: PageInfo!
-
- """List of Salesforce Case Team Members"""
- nodes: [SalesforceCaseTeamMember!]!
-
- """List of Case Team Member edges"""
- edges: [SalesforceCaseTeamMemberEdge!]!
-}
-
-"""
-A filter to be used against CaseStatus object types. All fields are combined with a logical ‘and.’
-"""
-input SalesforceCaseStatusConnectionFilter {
- """Filter against custom fields."""
- customField: SalesforceCustomFieldFilter
-
- """Filter by the CaseStatus's lastModifiedBy relation."""
- lastModifiedBy: SalesforceUserConnectionFilter
-
- """Filter by the CaseStatus's createdBy relation."""
- createdBy: SalesforceUserConnectionFilter
-
- """Filter by the CaseStatus's id field"""
- id: SalesforceIdFilter
-
- """Filter by the CaseStatus's masterLabel field"""
- masterLabel: SalesforceStringFilter
-
- """Filter by the CaseStatus's apiName field"""
- apiName: SalesforceStringFilter
-
- """Filter by the CaseStatus's sortOrder field"""
- sortOrder: SalesforceIntFilter
-
- """Filter by the CaseStatus's isDefault field"""
- isDefault: SalesforceBooleanFilter
-
- """Filter by the CaseStatus's isClosed field"""
- isClosed: SalesforceBooleanFilter
-
- """Filter by the CaseStatus's createdById field"""
- createdById: SalesforceIdFilter
-
- """Filter by the CaseStatus's createdDate field"""
- createdDate: SalesforceDateTimeFilter
-
- """Filter by the CaseStatus's lastModifiedById field"""
- lastModifiedById: SalesforceIdFilter
-
- """Filter by the CaseStatus's lastModifiedDate field"""
- lastModifiedDate: SalesforceDateTimeFilter
-
- """Filter by the CaseStatus's systemModstamp field"""
- systemModstamp: SalesforceDateTimeFilter
-
- """Checks for any expressions in this list."""
- or: [SalesforceCaseStatusConnectionFilter!]
-
- """Checks for all expressions in this list."""
- and: [SalesforceCaseStatusConnectionFilter!]
-}
-
-"""Field that Case Status Values can be sorted by"""
-enum SalesforceCaseStatusSortByFieldEnum {
- ID
- MASTER_LABEL
- API_NAME
- SORT_ORDER
- IS_DEFAULT
- IS_CLOSED
- CREATED_BY_ID
- CREATED_DATE
- LAST_MODIFIED_BY_ID
- LAST_MODIFIED_DATE
- SYSTEM_MODSTAMP
-}
-
-"""An edge in a connection."""
-type SalesforceCaseStatusEdge {
- """The item at the end of the edge."""
- node: SalesforceCaseStatus!
-
- """A cursor for use in pagination"""
- cursor: String!
-}
-
-"""Salesforce Case Status Values connection, for use in pagination."""
-type SalesforceCaseStatussConnection {
- """The count of all Case Status Value you could get from the connection."""
- totalCount: Int!
-
- """Pagination Information"""
- pageInfo: PageInfo!
-
- """List of Salesforce Case Status Values"""
- nodes: [SalesforceCaseStatus!]!
-
- """List of Case Status Value edges"""
- edges: [SalesforceCaseStatusEdge!]!
-}
-
-"""
-A filter to be used against CaseHistory object types. All fields are combined with a logical ‘and.’
-"""
-input SalesforceCaseHistoryConnectionFilter {
- """Filter against custom fields."""
- customField: SalesforceCustomFieldFilter
-
- """Filter by the CaseHistory's createdBy relation."""
- createdBy: SalesforceUserConnectionFilter
-
- """Filter by the CaseHistory's case relation."""
- case: SalesforceCaseConnectionFilter
-
- """Filter by the CaseHistory's id field"""
- id: SalesforceIdFilter
-
- """Filter by the CaseHistory's isDeleted field"""
- isDeleted: SalesforceBooleanFilter
-
- """Filter by the CaseHistory's caseId field"""
- caseId: SalesforceIdFilter
-
- """Filter by the CaseHistory's createdById field"""
- createdById: SalesforceIdFilter
-
- """Filter by the CaseHistory's createdDate field"""
- createdDate: SalesforceDateTimeFilter
-
- """Filter by the CaseHistory's field field"""
- field: SalesforceStringFilter
-
- """Checks for any expressions in this list."""
- or: [SalesforceCaseHistoryConnectionFilter!]
-
- """Checks for all expressions in this list."""
- and: [SalesforceCaseHistoryConnectionFilter!]
-}
-
-"""Field that Case Histories can be sorted by"""
-enum SalesforceCaseHistorySortByFieldEnum {
- ID
- IS_DELETED
- CASE_ID
- CREATED_BY_ID
- CREATED_DATE
- FIELD
- OLD_VALUE
- NEW_VALUE
-}
-
-"""An edge in a connection."""
-type SalesforceCaseHistoryEdge {
- """The item at the end of the edge."""
- node: SalesforceCaseHistory!
-
- """A cursor for use in pagination"""
- cursor: String!
-}
-
-"""Salesforce Case Histories connection, for use in pagination."""
-type SalesforceCaseHistorysConnection {
- """The count of all Case History you could get from the connection."""
- totalCount: Int!
-
- """Pagination Information"""
- pageInfo: PageInfo!
-
- """List of Salesforce Case Histories"""
- nodes: [SalesforceCaseHistory!]!
-
- """List of Case History edges"""
- edges: [SalesforceCaseHistoryEdge!]!
-}
-
-"""
-A filter to be used against CaseContactRole object types. All fields are combined with a logical ‘and.’
-"""
-input SalesforceCaseContactRoleConnectionFilter {
- """Filter against custom fields."""
- customField: SalesforceCustomFieldFilter
-
- """Filter by the CaseContactRole's lastModifiedBy relation."""
- lastModifiedBy: SalesforceUserConnectionFilter
-
- """Filter by the CaseContactRole's createdBy relation."""
- createdBy: SalesforceUserConnectionFilter
-
- """Filter by the CaseContactRole's contact relation."""
- contact: SalesforceContactConnectionFilter
-
- """Filter by the CaseContactRole's cases relation."""
- cases: SalesforceCaseConnectionFilter
-
- """Filter by the CaseContactRole's id field"""
- id: SalesforceIdFilter
-
- """Filter by the CaseContactRole's casesId field"""
- casesId: SalesforceIdFilter
-
- """Filter by the CaseContactRole's contactId field"""
- contactId: SalesforceIdFilter
-
- """Filter by the CaseContactRole's role field"""
- role: SalesforceStringFilter
-
- """Filter by the CaseContactRole's createdDate field"""
- createdDate: SalesforceDateTimeFilter
-
- """Filter by the CaseContactRole's createdById field"""
- createdById: SalesforceIdFilter
-
- """Filter by the CaseContactRole's lastModifiedDate field"""
- lastModifiedDate: SalesforceDateTimeFilter
-
- """Filter by the CaseContactRole's lastModifiedById field"""
- lastModifiedById: SalesforceIdFilter
-
- """Filter by the CaseContactRole's systemModstamp field"""
- systemModstamp: SalesforceDateTimeFilter
-
- """Filter by the CaseContactRole's isDeleted field"""
- isDeleted: SalesforceBooleanFilter
-
- """Checks for any expressions in this list."""
- or: [SalesforceCaseContactRoleConnectionFilter!]
-
- """Checks for all expressions in this list."""
- and: [SalesforceCaseContactRoleConnectionFilter!]
-}
-
-"""Field that Case Contact Roles can be sorted by"""
-enum SalesforceCaseContactRoleSortByFieldEnum {
- ID
- CASES_ID
- CONTACT_ID
- ROLE
- CREATED_DATE
- CREATED_BY_ID
- LAST_MODIFIED_DATE
- LAST_MODIFIED_BY_ID
- SYSTEM_MODSTAMP
- IS_DELETED
-}
-
-"""An edge in a connection."""
-type SalesforceCaseContactRoleEdge {
- """The item at the end of the edge."""
- node: SalesforceCaseContactRole!
-
- """A cursor for use in pagination"""
- cursor: String!
-}
-
-"""Salesforce Case Contact Roles connection, for use in pagination."""
-type SalesforceCaseContactRolesConnection {
- """The count of all Case Contact Role you could get from the connection."""
- totalCount: Int!
-
- """Pagination Information"""
- pageInfo: PageInfo!
-
- """List of Salesforce Case Contact Roles"""
- nodes: [SalesforceCaseContactRole!]!
-
- """List of Case Contact Role edges"""
- edges: [SalesforceCaseContactRoleEdge!]!
-}
-
-"""
-A filter to be used against CaseComment object types. All fields are combined with a logical ‘and.’
-"""
-input SalesforceCaseCommentConnectionFilter {
- """Filter against custom fields."""
- customField: SalesforceCustomFieldFilter
-
- """Filter by the CaseComment's lastModifiedBy relation."""
- lastModifiedBy: SalesforceUserConnectionFilter
-
- """Filter by the CaseComment's createdBy relation."""
- createdBy: SalesforceUserConnectionFilter
-
- """Filter by the CaseComment's parent relation."""
- parent: SalesforceCaseConnectionFilter
-
- """Filter by the CaseComment's id field"""
- id: SalesforceIdFilter
-
- """Filter by the CaseComment's parentId field"""
- parentId: SalesforceIdFilter
-
- """Filter by the CaseComment's isPublished field"""
- isPublished: SalesforceBooleanFilter
-
- """Filter by the CaseComment's commentBody field"""
- commentBody: SalesforceStringFilter
-
- """Filter by the CaseComment's createdById field"""
- createdById: SalesforceIdFilter
-
- """Filter by the CaseComment's createdDate field"""
- createdDate: SalesforceDateTimeFilter
-
- """Filter by the CaseComment's systemModstamp field"""
- systemModstamp: SalesforceDateTimeFilter
-
- """Filter by the CaseComment's lastModifiedDate field"""
- lastModifiedDate: SalesforceDateTimeFilter
-
- """Filter by the CaseComment's lastModifiedById field"""
- lastModifiedById: SalesforceIdFilter
-
- """Filter by the CaseComment's isDeleted field"""
- isDeleted: SalesforceBooleanFilter
-
- """Checks for any expressions in this list."""
- or: [SalesforceCaseCommentConnectionFilter!]
-
- """Checks for all expressions in this list."""
- and: [SalesforceCaseCommentConnectionFilter!]
-}
-
-"""Field that Case Comments can be sorted by"""
-enum SalesforceCaseCommentSortByFieldEnum {
- ID
- PARENT_ID
- IS_PUBLISHED
- COMMENT_BODY
- CREATED_BY_ID
- CREATED_DATE
- SYSTEM_MODSTAMP
- LAST_MODIFIED_DATE
- LAST_MODIFIED_BY_ID
- IS_DELETED
-}
-
-"""An edge in a connection."""
-type SalesforceCaseCommentEdge {
- """The item at the end of the edge."""
- node: SalesforceCaseComment!
-
- """A cursor for use in pagination"""
- cursor: String!
-}
-
-"""Salesforce Case Comments connection, for use in pagination."""
-type SalesforceCaseCommentsConnection {
- """The count of all Case Comment you could get from the connection."""
- totalCount: Int!
-
- """Pagination Information"""
- pageInfo: PageInfo!
-
- """List of Salesforce Case Comments"""
- nodes: [SalesforceCaseComment!]!
-
- """List of Case Comment edges"""
- edges: [SalesforceCaseCommentEdge!]!
-}
-
-"""Field that Call Centers can be sorted by"""
-enum SalesforceCallCenterSortByFieldEnum {
- ID
- NAME
- INTERNAL_NAME
- VERSION
- ADAPTER_URL
- CUSTOM_SETTINGS
- SYSTEM_MODSTAMP
- CREATED_DATE
- CREATED_BY_ID
- LAST_MODIFIED_DATE
- LAST_MODIFIED_BY_ID
-}
-
-"""An edge in a connection."""
-type SalesforceCallCenterEdge {
- """The item at the end of the edge."""
- node: SalesforceCallCenter!
-
- """A cursor for use in pagination"""
- cursor: String!
-}
-
-"""Salesforce Call Centers connection, for use in pagination."""
-type SalesforceCallCentersConnection {
- """The count of all Call Center you could get from the connection."""
- totalCount: Int!
-
- """Pagination Information"""
- pageInfo: PageInfo!
-
- """List of Salesforce Call Centers"""
- nodes: [SalesforceCallCenter!]!
-
- """List of Call Center edges"""
- edges: [SalesforceCallCenterEdge!]!
-}
-
-"""Field that Business Processes can be sorted by"""
-enum SalesforceBusinessProcessSortByFieldEnum {
- ID
- NAME
- NAMESPACE_PREFIX
- DESCRIPTION
- TABLE_ENUM_OR_ID
- IS_ACTIVE
- CREATED_BY_ID
- CREATED_DATE
- LAST_MODIFIED_BY_ID
- LAST_MODIFIED_DATE
- SYSTEM_MODSTAMP
-}
-
-"""An edge in a connection."""
-type SalesforceBusinessProcessEdge {
- """The item at the end of the edge."""
- node: SalesforceBusinessProcess!
-
- """A cursor for use in pagination"""
- cursor: String!
-}
-
-"""Salesforce Business Processes connection, for use in pagination."""
-type SalesforceBusinessProcesssConnection {
- """The count of all Business Process you could get from the connection."""
- totalCount: Int!
-
- """Pagination Information"""
- pageInfo: PageInfo!
-
- """List of Salesforce Business Processes"""
- nodes: [SalesforceBusinessProcess!]!
-
- """List of Business Process edges"""
- edges: [SalesforceBusinessProcessEdge!]!
-}
-
-"""
-A filter to be used against BusinessHours object types. All fields are combined with a logical ‘and.’
-"""
-input SalesforceBusinessHoursConnectionFilter {
- """Filter against custom fields."""
- customField: SalesforceCustomFieldFilter
-
- """Filter by the BusinessHours's lastModifiedBy relation."""
- lastModifiedBy: SalesforceUserConnectionFilter
-
- """Filter by the BusinessHours's createdBy relation."""
- createdBy: SalesforceUserConnectionFilter
-
- """Filter by the BusinessHours's id field"""
- id: SalesforceIdFilter
-
- """Filter by the BusinessHours's name field"""
- name: SalesforceStringFilter
-
- """Filter by the BusinessHours's isActive field"""
- isActive: SalesforceBooleanFilter
-
- """Filter by the BusinessHours's isDefault field"""
- isDefault: SalesforceBooleanFilter
-
- """Filter by the BusinessHours's timeZoneSidKey field"""
- timeZoneSidKey: SalesforceStringFilter
-
- """Filter by the BusinessHours's systemModstamp field"""
- systemModstamp: SalesforceDateTimeFilter
-
- """Filter by the BusinessHours's createdDate field"""
- createdDate: SalesforceDateTimeFilter
-
- """Filter by the BusinessHours's createdById field"""
- createdById: SalesforceIdFilter
-
- """Filter by the BusinessHours's lastModifiedDate field"""
- lastModifiedDate: SalesforceDateTimeFilter
-
- """Filter by the BusinessHours's lastModifiedById field"""
- lastModifiedById: SalesforceIdFilter
-
- """Filter by the BusinessHours's lastViewedDate field"""
- lastViewedDate: SalesforceDateTimeFilter
-
- """Checks for any expressions in this list."""
- or: [SalesforceBusinessHoursConnectionFilter!]
-
- """Checks for all expressions in this list."""
- and: [SalesforceBusinessHoursConnectionFilter!]
-}
-
-"""Field that Business Hours can be sorted by"""
-enum SalesforceBusinessHoursSortByFieldEnum {
- ID
- NAME
- IS_ACTIVE
- IS_DEFAULT
- SUNDAY_START_TIME
- SUNDAY_END_TIME
- MONDAY_START_TIME
- MONDAY_END_TIME
- TUESDAY_START_TIME
- TUESDAY_END_TIME
- WEDNESDAY_START_TIME
- WEDNESDAY_END_TIME
- THURSDAY_START_TIME
- THURSDAY_END_TIME
- FRIDAY_START_TIME
- FRIDAY_END_TIME
- SATURDAY_START_TIME
- SATURDAY_END_TIME
- TIME_ZONE_SID_KEY
- SYSTEM_MODSTAMP
- CREATED_DATE
- CREATED_BY_ID
- LAST_MODIFIED_DATE
- LAST_MODIFIED_BY_ID
- LAST_VIEWED_DATE
-}
-
-"""An edge in a connection."""
-type SalesforceBusinessHoursEdge {
- """The item at the end of the edge."""
- node: SalesforceBusinessHours!
-
- """A cursor for use in pagination"""
- cursor: String!
-}
-
-"""Salesforce Business Hours connection, for use in pagination."""
-type SalesforceBusinessHourssConnection {
- """The count of all Business Hours you could get from the connection."""
- totalCount: Int!
-
- """Pagination Information"""
- pageInfo: PageInfo!
-
- """List of Salesforce Business Hours"""
- nodes: [SalesforceBusinessHours!]!
-
- """List of Business Hours edges"""
- edges: [SalesforceBusinessHoursEdge!]!
-}
-
-"""Field that Letterheads can be sorted by"""
-enum SalesforceBrandTemplateSortByFieldEnum {
- ID
- NAME
- DEVELOPER_NAME
- IS_ACTIVE
- DESCRIPTION
- NAMESPACE_PREFIX
- CREATED_DATE
- CREATED_BY_ID
- LAST_MODIFIED_DATE
- LAST_MODIFIED_BY_ID
- SYSTEM_MODSTAMP
-}
-
-"""An edge in a connection."""
-type SalesforceBrandTemplateEdge {
- """The item at the end of the edge."""
- node: SalesforceBrandTemplate!
-
- """A cursor for use in pagination"""
- cursor: String!
-}
-
-"""Salesforce Letterheads connection, for use in pagination."""
-type SalesforceBrandTemplatesConnection {
- """The count of all Letterhead you could get from the connection."""
- totalCount: Int!
-
- """Pagination Information"""
- pageInfo: PageInfo!
-
- """List of Salesforce Letterheads"""
- nodes: [SalesforceBrandTemplate!]!
-
- """List of Letterhead edges"""
- edges: [SalesforceBrandTemplateEdge!]!
-}
-
-"""Field that Authentication Configurations can be sorted by"""
-enum SalesforceAuthConfigSortByFieldEnum {
- ID
- IS_DELETED
- DEVELOPER_NAME
- LANGUAGE
- MASTER_LABEL
- NAMESPACE_PREFIX
- CREATED_DATE
- CREATED_BY_ID
- LAST_MODIFIED_DATE
- LAST_MODIFIED_BY_ID
- SYSTEM_MODSTAMP
- URL
- IS_ACTIVE
- TYPE
-}
-
-"""An edge in a connection."""
-type SalesforceAuthConfigEdge {
- """The item at the end of the edge."""
- node: SalesforceAuthConfig!
-
- """A cursor for use in pagination"""
- cursor: String!
-}
-
-"""
-Salesforce Authentication Configurations connection, for use in pagination.
-"""
-type SalesforceAuthConfigsConnection {
- """
- The count of all Authentication Configuration you could get from the connection.
- """
- totalCount: Int!
-
- """Pagination Information"""
- pageInfo: PageInfo!
-
- """List of Salesforce Authentication Configurations"""
- nodes: [SalesforceAuthConfig!]!
-
- """List of Authentication Configuration edges"""
- edges: [SalesforceAuthConfigEdge!]!
-}
-
-"""Field that Lightning Component Bundles can be sorted by"""
-enum SalesforceAuraDefinitionBundleSortByFieldEnum {
- ID
- IS_DELETED
- DEVELOPER_NAME
- LANGUAGE
- MASTER_LABEL
- NAMESPACE_PREFIX
- CREATED_DATE
- CREATED_BY_ID
- LAST_MODIFIED_DATE
- LAST_MODIFIED_BY_ID
- SYSTEM_MODSTAMP
- API_VERSION
- DESCRIPTION
-}
-
-"""An edge in a connection."""
-type SalesforceAuraDefinitionBundleEdge {
- """The item at the end of the edge."""
- node: SalesforceAuraDefinitionBundle!
-
- """A cursor for use in pagination"""
- cursor: String!
-}
-
-"""
-Salesforce Lightning Component Bundles connection, for use in pagination.
-"""
-type SalesforceAuraDefinitionBundlesConnection {
- """
- The count of all Lightning Component Bundle you could get from the connection.
- """
- totalCount: Int!
-
- """Pagination Information"""
- pageInfo: PageInfo!
-
- """List of Salesforce Lightning Component Bundles"""
- nodes: [SalesforceAuraDefinitionBundle!]!
-
- """List of Lightning Component Bundle edges"""
- edges: [SalesforceAuraDefinitionBundleEdge!]!
-}
-
-"""
-A filter to be used against AssignmentRule object types. All fields are combined with a logical ‘and.’
-"""
-input SalesforceAssignmentRuleConnectionFilter {
- """Filter against custom fields."""
- customField: SalesforceCustomFieldFilter
-
- """Filter by the AssignmentRule's lastModifiedBy relation."""
- lastModifiedBy: SalesforceUserConnectionFilter
-
- """Filter by the AssignmentRule's createdBy relation."""
- createdBy: SalesforceUserConnectionFilter
-
- """Filter by the AssignmentRule's id field"""
- id: SalesforceIdFilter
-
- """Filter by the AssignmentRule's name field"""
- name: SalesforceStringFilter
-
- """Filter by the AssignmentRule's sobjectType field"""
- sobjectType: SalesforceStringFilter
-
- """Filter by the AssignmentRule's active field"""
- active: SalesforceBooleanFilter
-
- """Filter by the AssignmentRule's createdById field"""
- createdById: SalesforceIdFilter
-
- """Filter by the AssignmentRule's createdDate field"""
- createdDate: SalesforceDateTimeFilter
-
- """Filter by the AssignmentRule's lastModifiedById field"""
- lastModifiedById: SalesforceIdFilter
-
- """Filter by the AssignmentRule's lastModifiedDate field"""
- lastModifiedDate: SalesforceDateTimeFilter
-
- """Filter by the AssignmentRule's systemModstamp field"""
- systemModstamp: SalesforceDateTimeFilter
-
- """Checks for any expressions in this list."""
- or: [SalesforceAssignmentRuleConnectionFilter!]
-
- """Checks for all expressions in this list."""
- and: [SalesforceAssignmentRuleConnectionFilter!]
-}
-
-"""Field that Assignment Rules can be sorted by"""
-enum SalesforceAssignmentRuleSortByFieldEnum {
- ID
- NAME
- SOBJECT_TYPE
- ACTIVE
- CREATED_BY_ID
- CREATED_DATE
- LAST_MODIFIED_BY_ID
- LAST_MODIFIED_DATE
- SYSTEM_MODSTAMP
-}
-
-"""An edge in a connection."""
-type SalesforceAssignmentRuleEdge {
- """The item at the end of the edge."""
- node: SalesforceAssignmentRule!
-
- """A cursor for use in pagination"""
- cursor: String!
-}
-
-"""Salesforce Assignment Rules connection, for use in pagination."""
-type SalesforceAssignmentRulesConnection {
- """The count of all Assignment Rule you could get from the connection."""
- totalCount: Int!
-
- """Pagination Information"""
- pageInfo: PageInfo!
-
- """List of Salesforce Assignment Rules"""
- nodes: [SalesforceAssignmentRule!]!
-
- """List of Assignment Rule edges"""
- edges: [SalesforceAssignmentRuleEdge!]!
-}
-
-"""
-A filter to be used against AppMenuItem object types. All fields are combined with a logical ‘and.’
-"""
-input SalesforceAppMenuItemConnectionFilter {
- """Filter against custom fields."""
- customField: SalesforceCustomFieldFilter
-
- """Filter by the AppMenuItem's lastModifiedBy relation."""
- lastModifiedBy: SalesforceUserConnectionFilter
-
- """Filter by the AppMenuItem's createdBy relation."""
- createdBy: SalesforceUserConnectionFilter
-
- """Filter by the AppMenuItem's id field"""
- id: SalesforceIdFilter
-
- """Filter by the AppMenuItem's isDeleted field"""
- isDeleted: SalesforceBooleanFilter
-
- """Filter by the AppMenuItem's createdDate field"""
- createdDate: SalesforceDateTimeFilter
-
- """Filter by the AppMenuItem's createdById field"""
- createdById: SalesforceIdFilter
-
- """Filter by the AppMenuItem's lastModifiedDate field"""
- lastModifiedDate: SalesforceDateTimeFilter
-
- """Filter by the AppMenuItem's lastModifiedById field"""
- lastModifiedById: SalesforceIdFilter
-
- """Filter by the AppMenuItem's systemModstamp field"""
- systemModstamp: SalesforceDateTimeFilter
-
- """Filter by the AppMenuItem's sortOrder field"""
- sortOrder: SalesforceIntFilter
-
- """Filter by the AppMenuItem's name field"""
- name: SalesforceStringFilter
-
- """Filter by the AppMenuItem's namespacePrefix field"""
- namespacePrefix: SalesforceStringFilter
-
- """Filter by the AppMenuItem's label field"""
- label: SalesforceStringFilter
-
- """Filter by the AppMenuItem's description field"""
- description: SalesforceStringFilter
-
- """Filter by the AppMenuItem's startUrl field"""
- startUrl: SalesforceStringFilter
-
- """Filter by the AppMenuItem's mobileStartUrl field"""
- mobileStartUrl: SalesforceStringFilter
-
- """Filter by the AppMenuItem's logoUrl field"""
- logoUrl: SalesforceStringFilter
-
- """Filter by the AppMenuItem's iconUrl field"""
- iconUrl: SalesforceStringFilter
-
- """Filter by the AppMenuItem's infoUrl field"""
- infoUrl: SalesforceStringFilter
-
- """Filter by the AppMenuItem's isUsingAdminAuthorization field"""
- isUsingAdminAuthorization: SalesforceBooleanFilter
-
- """Filter by the AppMenuItem's mobilePlatform field"""
- mobilePlatform: SalesforceStringFilter
-
- """Filter by the AppMenuItem's mobileMinOsVer field"""
- mobileMinOsVer: SalesforceStringFilter
-
- """Filter by the AppMenuItem's mobileDeviceType field"""
- mobileDeviceType: SalesforceStringFilter
-
- """Filter by the AppMenuItem's isRegisteredDeviceOnly field"""
- isRegisteredDeviceOnly: SalesforceBooleanFilter
-
- """Filter by the AppMenuItem's mobileAppVer field"""
- mobileAppVer: SalesforceStringFilter
-
- """Filter by the AppMenuItem's mobileAppInstalledDate field"""
- mobileAppInstalledDate: SalesforceDateTimeFilter
-
- """Filter by the AppMenuItem's mobileAppInstalledVersion field"""
- mobileAppInstalledVersion: SalesforceStringFilter
-
- """Filter by the AppMenuItem's mobileAppBinaryId field"""
- mobileAppBinaryId: SalesforceStringFilter
-
- """Filter by the AppMenuItem's mobileAppInstallUrl field"""
- mobileAppInstallUrl: SalesforceStringFilter
-
- """Filter by the AppMenuItem's canvasEnabled field"""
- canvasEnabled: SalesforceBooleanFilter
-
- """Filter by the AppMenuItem's canvasReferenceId field"""
- canvasReferenceId: SalesforceStringFilter
-
- """Filter by the AppMenuItem's canvasUrl field"""
- canvasUrl: SalesforceStringFilter
-
- """Filter by the AppMenuItem's canvasAccessMethod field"""
- canvasAccessMethod: SalesforceStringFilter
-
- """Filter by the AppMenuItem's canvasSelectedLocations field"""
- canvasSelectedLocations: SalesforceStringFilter
-
- """Filter by the AppMenuItem's canvasOptions field"""
- canvasOptions: SalesforceStringFilter
-
- """Filter by the AppMenuItem's type field"""
- type: SalesforceStringFilter
-
- """Filter by the AppMenuItem's applicationId field"""
- applicationId: SalesforceIdFilter
-
- """Filter by the AppMenuItem's userSortOrder field"""
- userSortOrder: SalesforceIntFilter
-
- """Filter by the AppMenuItem's isVisible field"""
- isVisible: SalesforceBooleanFilter
-
- """Filter by the AppMenuItem's isAccessible field"""
- isAccessible: SalesforceBooleanFilter
-
- """Checks for any expressions in this list."""
- or: [SalesforceAppMenuItemConnectionFilter!]
-
- """Checks for all expressions in this list."""
- and: [SalesforceAppMenuItemConnectionFilter!]
-}
-
-"""Field that AppMenuItems can be sorted by"""
-enum SalesforceAppMenuItemSortByFieldEnum {
- ID
- IS_DELETED
- CREATED_DATE
- CREATED_BY_ID
- LAST_MODIFIED_DATE
- LAST_MODIFIED_BY_ID
- SYSTEM_MODSTAMP
- SORT_ORDER
- NAME
- NAMESPACE_PREFIX
- LABEL
- DESCRIPTION
- START_URL
- MOBILE_START_URL
- LOGO_URL
- ICON_URL
- INFO_URL
- IS_USING_ADMIN_AUTHORIZATION
- MOBILE_PLATFORM
- MOBILE_MIN_OS_VER
- MOBILE_DEVICE_TYPE
- IS_REGISTERED_DEVICE_ONLY
- MOBILE_APP_VER
- MOBILE_APP_INSTALLED_DATE
- MOBILE_APP_INSTALLED_VERSION
- MOBILE_APP_BINARY_ID
- MOBILE_APP_INSTALL_URL
- CANVAS_ENABLED
- CANVAS_REFERENCE_ID
- CANVAS_URL
- CANVAS_ACCESS_METHOD
- CANVAS_SELECTED_LOCATIONS
- CANVAS_OPTIONS
- TYPE
- APPLICATION_ID
- USER_SORT_ORDER
- IS_VISIBLE
- IS_ACCESSIBLE
-}
-
-"""An edge in a connection."""
-type SalesforceAppMenuItemEdge {
- """The item at the end of the edge."""
- node: SalesforceAppMenuItem!
-
- """A cursor for use in pagination"""
- cursor: String!
-}
-
-"""Salesforce AppMenuItems connection, for use in pagination."""
-type SalesforceAppMenuItemsConnection {
- """The count of all AppMenuItem you could get from the connection."""
- totalCount: Int!
-
- """Pagination Information"""
- pageInfo: PageInfo!
-
- """List of Salesforce AppMenuItems"""
- nodes: [SalesforceAppMenuItem!]!
-
- """List of AppMenuItem edges"""
- edges: [SalesforceAppMenuItemEdge!]!
-}
-
-"""
-A filter to be used against ApexTrigger object types. All fields are combined with a logical ‘and.’
-"""
-input SalesforceApexTriggerConnectionFilter {
- """Filter against custom fields."""
- customField: SalesforceCustomFieldFilter
-
- """Filter by the ApexTrigger's lastModifiedBy relation."""
- lastModifiedBy: SalesforceUserConnectionFilter
-
- """Filter by the ApexTrigger's createdBy relation."""
- createdBy: SalesforceUserConnectionFilter
-
- """Filter by the ApexTrigger's id field"""
- id: SalesforceIdFilter
-
- """Filter by the ApexTrigger's namespacePrefix field"""
- namespacePrefix: SalesforceStringFilter
-
- """Filter by the ApexTrigger's name field"""
- name: SalesforceStringFilter
-
- """Filter by the ApexTrigger's tableEnumOrId field"""
- tableEnumOrId: SalesforceStringFilter
-
- """Filter by the ApexTrigger's usageBeforeInsert field"""
- usageBeforeInsert: SalesforceBooleanFilter
-
- """Filter by the ApexTrigger's usageAfterInsert field"""
- usageAfterInsert: SalesforceBooleanFilter
-
- """Filter by the ApexTrigger's usageBeforeUpdate field"""
- usageBeforeUpdate: SalesforceBooleanFilter
-
- """Filter by the ApexTrigger's usageAfterUpdate field"""
- usageAfterUpdate: SalesforceBooleanFilter
-
- """Filter by the ApexTrigger's usageBeforeDelete field"""
- usageBeforeDelete: SalesforceBooleanFilter
-
- """Filter by the ApexTrigger's usageAfterDelete field"""
- usageAfterDelete: SalesforceBooleanFilter
-
- """Filter by the ApexTrigger's usageIsBulk field"""
- usageIsBulk: SalesforceBooleanFilter
-
- """Filter by the ApexTrigger's usageAfterUndelete field"""
- usageAfterUndelete: SalesforceBooleanFilter
-
- """Filter by the ApexTrigger's apiVersion field"""
- apiVersion: SalesforceFloatFilter
-
- """Filter by the ApexTrigger's status field"""
- status: SalesforceStringFilter
-
- """Filter by the ApexTrigger's isValid field"""
- isValid: SalesforceBooleanFilter
-
- """Filter by the ApexTrigger's bodyCrc field"""
- bodyCrc: SalesforceFloatFilter
-
- """Filter by the ApexTrigger's lengthWithoutComments field"""
- lengthWithoutComments: SalesforceIntFilter
-
- """Filter by the ApexTrigger's createdDate field"""
- createdDate: SalesforceDateTimeFilter
-
- """Filter by the ApexTrigger's createdById field"""
- createdById: SalesforceIdFilter
-
- """Filter by the ApexTrigger's lastModifiedDate field"""
- lastModifiedDate: SalesforceDateTimeFilter
-
- """Filter by the ApexTrigger's lastModifiedById field"""
- lastModifiedById: SalesforceIdFilter
-
- """Filter by the ApexTrigger's systemModstamp field"""
- systemModstamp: SalesforceDateTimeFilter
-
- """Checks for any expressions in this list."""
- or: [SalesforceApexTriggerConnectionFilter!]
-
- """Checks for all expressions in this list."""
- and: [SalesforceApexTriggerConnectionFilter!]
-}
-
-"""Field that Apex Triggers can be sorted by"""
-enum SalesforceApexTriggerSortByFieldEnum {
- ID
- NAMESPACE_PREFIX
- NAME
- TABLE_ENUM_OR_ID
- API_VERSION
- STATUS
- IS_VALID
- BODY_CRC
- LENGTH_WITHOUT_COMMENTS
- CREATED_DATE
- CREATED_BY_ID
- LAST_MODIFIED_DATE
- LAST_MODIFIED_BY_ID
- SYSTEM_MODSTAMP
-}
-
-"""An edge in a connection."""
-type SalesforceApexTriggerEdge {
- """The item at the end of the edge."""
- node: SalesforceApexTrigger!
-
- """A cursor for use in pagination"""
- cursor: String!
-}
-
-"""Salesforce Apex Triggers connection, for use in pagination."""
-type SalesforceApexTriggersConnection {
- """The count of all Apex Trigger you could get from the connection."""
- totalCount: Int!
-
- """Pagination Information"""
- pageInfo: PageInfo!
-
- """List of Salesforce Apex Triggers"""
- nodes: [SalesforceApexTrigger!]!
-
- """List of Apex Trigger edges"""
- edges: [SalesforceApexTriggerEdge!]!
-}
-
-"""Field that Apex Test Suites can be sorted by"""
-enum SalesforceApexTestSuiteSortByFieldEnum {
- ID
- IS_DELETED
- CREATED_DATE
- CREATED_BY_ID
- LAST_MODIFIED_DATE
- LAST_MODIFIED_BY_ID
- SYSTEM_MODSTAMP
- TEST_SUITE_NAME
-}
-
-"""An edge in a connection."""
-type SalesforceApexTestSuiteEdge {
- """The item at the end of the edge."""
- node: SalesforceApexTestSuite!
-
- """A cursor for use in pagination"""
- cursor: String!
-}
-
-"""Salesforce Apex Test Suites connection, for use in pagination."""
-type SalesforceApexTestSuitesConnection {
- """The count of all Apex Test Suite you could get from the connection."""
- totalCount: Int!
-
- """Pagination Information"""
- pageInfo: PageInfo!
-
- """List of Salesforce Apex Test Suites"""
- nodes: [SalesforceApexTestSuite!]!
-
- """List of Apex Test Suite edges"""
- edges: [SalesforceApexTestSuiteEdge!]!
-}
-
-"""Field that Visualforce Pages can be sorted by"""
-enum SalesforceApexPageSortByFieldEnum {
- ID
- NAMESPACE_PREFIX
- NAME
- API_VERSION
- MASTER_LABEL
- DESCRIPTION
- CONTROLLER_TYPE
- CONTROLLER_KEY
- IS_AVAILABLE_IN_TOUCH
- IS_CONFIRMATION_TOKEN_REQUIRED
- CREATED_DATE
- CREATED_BY_ID
- LAST_MODIFIED_DATE
- LAST_MODIFIED_BY_ID
- SYSTEM_MODSTAMP
-}
-
-"""An edge in a connection."""
-type SalesforceApexPageEdge {
- """The item at the end of the edge."""
- node: SalesforceApexPage!
-
- """A cursor for use in pagination"""
- cursor: String!
-}
-
-"""Salesforce Visualforce Pages connection, for use in pagination."""
-type SalesforceApexPagesConnection {
- """The count of all Visualforce Page you could get from the connection."""
- totalCount: Int!
-
- """Pagination Information"""
- pageInfo: PageInfo!
-
- """List of Salesforce Visualforce Pages"""
- nodes: [SalesforceApexPage!]!
-
- """List of Visualforce Page edges"""
- edges: [SalesforceApexPageEdge!]!
-}
-
-"""Field that Apex Debug Logs can be sorted by"""
-enum SalesforceApexLogSortByFieldEnum {
- ID
- LOG_USER_ID
- LOG_LENGTH
- LAST_MODIFIED_DATE
- REQUEST
- OPERATION
- APPLICATION
- STATUS
- DURATION_MILLISECONDS
- SYSTEM_MODSTAMP
- START_TIME
- LOCATION
-}
-
-"""An edge in a connection."""
-type SalesforceApexLogEdge {
- """The item at the end of the edge."""
- node: SalesforceApexLog!
-
- """A cursor for use in pagination"""
- cursor: String!
-}
-
-"""Salesforce Apex Debug Logs connection, for use in pagination."""
-type SalesforceApexLogsConnection {
- """The count of all Apex Debug Log you could get from the connection."""
- totalCount: Int!
-
- """Pagination Information"""
- pageInfo: PageInfo!
-
- """List of Salesforce Apex Debug Logs"""
- nodes: [SalesforceApexLog!]!
-
- """List of Apex Debug Log edges"""
- edges: [SalesforceApexLogEdge!]!
-}
-
-"""
-A filter to be used against ApexEmailNotification object types. All fields are combined with a logical ‘and.’
-"""
-input SalesforceApexEmailNotificationConnectionFilter {
- """Filter against custom fields."""
- customField: SalesforceCustomFieldFilter
-
- """Filter by the ApexEmailNotification's user relation."""
- user: SalesforceUserConnectionFilter
-
- """Filter by the ApexEmailNotification's lastModifiedBy relation."""
- lastModifiedBy: SalesforceUserConnectionFilter
-
- """Filter by the ApexEmailNotification's createdBy relation."""
- createdBy: SalesforceUserConnectionFilter
-
- """Filter by the ApexEmailNotification's id field"""
- id: SalesforceIdFilter
-
- """Filter by the ApexEmailNotification's isDeleted field"""
- isDeleted: SalesforceBooleanFilter
-
- """Filter by the ApexEmailNotification's createdDate field"""
- createdDate: SalesforceDateTimeFilter
-
- """Filter by the ApexEmailNotification's createdById field"""
- createdById: SalesforceIdFilter
-
- """Filter by the ApexEmailNotification's lastModifiedDate field"""
- lastModifiedDate: SalesforceDateTimeFilter
-
- """Filter by the ApexEmailNotification's lastModifiedById field"""
- lastModifiedById: SalesforceIdFilter
-
- """Filter by the ApexEmailNotification's systemModstamp field"""
- systemModstamp: SalesforceDateTimeFilter
-
- """Filter by the ApexEmailNotification's userId field"""
- userId: SalesforceIdFilter
-
- """Filter by the ApexEmailNotification's email field"""
- email: SalesforceStringFilter
-
- """Checks for any expressions in this list."""
- or: [SalesforceApexEmailNotificationConnectionFilter!]
-
- """Checks for all expressions in this list."""
- and: [SalesforceApexEmailNotificationConnectionFilter!]
-}
-
-"""Field that Apex Email Notifications can be sorted by"""
-enum SalesforceApexEmailNotificationSortByFieldEnum {
- ID
- IS_DELETED
- CREATED_DATE
- CREATED_BY_ID
- LAST_MODIFIED_DATE
- LAST_MODIFIED_BY_ID
- SYSTEM_MODSTAMP
- USER_ID
- EMAIL
-}
-
-"""An edge in a connection."""
-type SalesforceApexEmailNotificationEdge {
- """The item at the end of the edge."""
- node: SalesforceApexEmailNotification!
-
- """A cursor for use in pagination"""
- cursor: String!
-}
-
-"""Salesforce Apex Email Notifications connection, for use in pagination."""
-type SalesforceApexEmailNotificationsConnection {
- """
- The count of all Apex Email Notification you could get from the connection.
- """
- totalCount: Int!
-
- """Pagination Information"""
- pageInfo: PageInfo!
-
- """List of Salesforce Apex Email Notifications"""
- nodes: [SalesforceApexEmailNotification!]!
-
- """List of Apex Email Notification edges"""
- edges: [SalesforceApexEmailNotificationEdge!]!
-}
-
-"""
-A filter to be used against ApexComponent object types. All fields are combined with a logical ‘and.’
-"""
-input SalesforceApexComponentConnectionFilter {
- """Filter against custom fields."""
- customField: SalesforceCustomFieldFilter
-
- """Filter by the ApexComponent's lastModifiedBy relation."""
- lastModifiedBy: SalesforceUserConnectionFilter
-
- """Filter by the ApexComponent's createdBy relation."""
- createdBy: SalesforceUserConnectionFilter
-
- """Filter by the ApexComponent's id field"""
- id: SalesforceIdFilter
-
- """Filter by the ApexComponent's namespacePrefix field"""
- namespacePrefix: SalesforceStringFilter
-
- """Filter by the ApexComponent's name field"""
- name: SalesforceStringFilter
-
- """Filter by the ApexComponent's apiVersion field"""
- apiVersion: SalesforceFloatFilter
-
- """Filter by the ApexComponent's masterLabel field"""
- masterLabel: SalesforceStringFilter
-
- """Filter by the ApexComponent's description field"""
- description: SalesforceStringFilter
-
- """Filter by the ApexComponent's controllerType field"""
- controllerType: SalesforceStringFilter
-
- """Filter by the ApexComponent's controllerKey field"""
- controllerKey: SalesforceStringFilter
-
- """Filter by the ApexComponent's createdDate field"""
- createdDate: SalesforceDateTimeFilter
-
- """Filter by the ApexComponent's createdById field"""
- createdById: SalesforceIdFilter
-
- """Filter by the ApexComponent's lastModifiedDate field"""
- lastModifiedDate: SalesforceDateTimeFilter
-
- """Filter by the ApexComponent's lastModifiedById field"""
- lastModifiedById: SalesforceIdFilter
-
- """Filter by the ApexComponent's systemModstamp field"""
- systemModstamp: SalesforceDateTimeFilter
-
- """Checks for any expressions in this list."""
- or: [SalesforceApexComponentConnectionFilter!]
-
- """Checks for all expressions in this list."""
- and: [SalesforceApexComponentConnectionFilter!]
-}
-
-"""Field that Visualforce Components can be sorted by"""
-enum SalesforceApexComponentSortByFieldEnum {
- ID
- NAMESPACE_PREFIX
- NAME
- API_VERSION
- MASTER_LABEL
- DESCRIPTION
- CONTROLLER_TYPE
- CONTROLLER_KEY
- CREATED_DATE
- CREATED_BY_ID
- LAST_MODIFIED_DATE
- LAST_MODIFIED_BY_ID
- SYSTEM_MODSTAMP
-}
-
-"""An edge in a connection."""
-type SalesforceApexComponentEdge {
- """The item at the end of the edge."""
- node: SalesforceApexComponent!
-
- """A cursor for use in pagination"""
- cursor: String!
-}
-
-"""Salesforce Visualforce Components connection, for use in pagination."""
-type SalesforceApexComponentsConnection {
- """
- The count of all Visualforce Component you could get from the connection.
- """
- totalCount: Int!
-
- """Pagination Information"""
- pageInfo: PageInfo!
-
- """List of Salesforce Visualforce Components"""
- nodes: [SalesforceApexComponent!]!
-
- """List of Visualforce Component edges"""
- edges: [SalesforceApexComponentEdge!]!
-}
-
-"""Field that Apex Classes can be sorted by"""
-enum SalesforceApexClassSortByFieldEnum {
- ID
- NAMESPACE_PREFIX
- NAME
- API_VERSION
- STATUS
- IS_VALID
- BODY_CRC
- LENGTH_WITHOUT_COMMENTS
- CREATED_DATE
- CREATED_BY_ID
- LAST_MODIFIED_DATE
- LAST_MODIFIED_BY_ID
- SYSTEM_MODSTAMP
-}
-
-"""An edge in a connection."""
-type SalesforceApexClassEdge {
- """The item at the end of the edge."""
- node: SalesforceApexClass!
-
- """A cursor for use in pagination"""
- cursor: String!
-}
-
-"""Salesforce Apex Classes connection, for use in pagination."""
-type SalesforceApexClasssConnection {
- """The count of all Apex Class you could get from the connection."""
- totalCount: Int!
-
- """Pagination Information"""
- pageInfo: PageInfo!
-
- """List of Salesforce Apex Classes"""
- nodes: [SalesforceApexClass!]!
-
- """List of Apex Class edges"""
- edges: [SalesforceApexClassEdge!]!
-}
-
-"""Field that Action Link Group Templates can be sorted by"""
-enum SalesforceActionLinkGroupTemplateSortByFieldEnum {
- ID
- IS_DELETED
- DEVELOPER_NAME
- LANGUAGE
- MASTER_LABEL
- NAMESPACE_PREFIX
- CREATED_DATE
- CREATED_BY_ID
- LAST_MODIFIED_DATE
- LAST_MODIFIED_BY_ID
- SYSTEM_MODSTAMP
- EXECUTIONS_ALLOWED
- HOURS_UNTIL_EXPIRATION
- CATEGORY
- IS_PUBLISHED
-}
-
-"""An edge in a connection."""
-type SalesforceActionLinkGroupTemplateEdge {
- """The item at the end of the edge."""
- node: SalesforceActionLinkGroupTemplate!
-
- """A cursor for use in pagination"""
- cursor: String!
-}
-
-"""
-Salesforce Action Link Group Templates connection, for use in pagination.
-"""
-type SalesforceActionLinkGroupTemplatesConnection {
- """
- The count of all Action Link Group Template you could get from the connection.
- """
- totalCount: Int!
-
- """Pagination Information"""
- pageInfo: PageInfo!
-
- """List of Salesforce Action Link Group Templates"""
- nodes: [SalesforceActionLinkGroupTemplate!]!
-
- """List of Action Link Group Template edges"""
- edges: [SalesforceActionLinkGroupTemplateEdge!]!
-}
-
-"""
-A filter to be used against AccountHistory object types. All fields are combined with a logical ‘and.’
-"""
-input SalesforceAccountHistoryConnectionFilter {
- """Filter against custom fields."""
- customField: SalesforceCustomFieldFilter
-
- """Filter by the AccountHistory's createdBy relation."""
- createdBy: SalesforceUserConnectionFilter
-
- """Filter by the AccountHistory's account relation."""
- account: SalesforceAccountConnectionFilter
-
- """Filter by the AccountHistory's id field"""
- id: SalesforceIdFilter
-
- """Filter by the AccountHistory's isDeleted field"""
- isDeleted: SalesforceBooleanFilter
-
- """Filter by the AccountHistory's accountId field"""
- accountId: SalesforceIdFilter
-
- """Filter by the AccountHistory's createdById field"""
- createdById: SalesforceIdFilter
-
- """Filter by the AccountHistory's createdDate field"""
- createdDate: SalesforceDateTimeFilter
-
- """Filter by the AccountHistory's field field"""
- field: SalesforceStringFilter
-
- """Checks for any expressions in this list."""
- or: [SalesforceAccountHistoryConnectionFilter!]
-
- """Checks for all expressions in this list."""
- and: [SalesforceAccountHistoryConnectionFilter!]
-}
-
-"""Field that Account Histories can be sorted by"""
-enum SalesforceAccountHistorySortByFieldEnum {
- ID
- IS_DELETED
- ACCOUNT_ID
- CREATED_BY_ID
- CREATED_DATE
- FIELD
- OLD_VALUE
- NEW_VALUE
-}
-
-"""An edge in a connection."""
-type SalesforceAccountHistoryEdge {
- """The item at the end of the edge."""
- node: SalesforceAccountHistory!
-
- """A cursor for use in pagination"""
- cursor: String!
-}
-
-"""Salesforce Account Histories connection, for use in pagination."""
-type SalesforceAccountHistorysConnection {
- """The count of all Account History you could get from the connection."""
- totalCount: Int!
-
- """Pagination Information"""
- pageInfo: PageInfo!
-
- """List of Salesforce Account Histories"""
- nodes: [SalesforceAccountHistory!]!
-
- """List of Account History edges"""
- edges: [SalesforceAccountHistoryEdge!]!
-}
-
-"""
-A filter to be used against AccountContactRole object types. All fields are combined with a logical ‘and.’
-"""
-input SalesforceAccountContactRoleConnectionFilter {
- """Filter against custom fields."""
- customField: SalesforceCustomFieldFilter
-
- """Filter by the AccountContactRole's contact relation."""
- contact: SalesforceContactConnectionFilter
-
- """Filter by the AccountContactRole's account relation."""
- account: SalesforceAccountConnectionFilter
-
- """Filter by the AccountContactRole's lastModifiedBy relation."""
- lastModifiedBy: SalesforceUserConnectionFilter
-
- """Filter by the AccountContactRole's createdBy relation."""
- createdBy: SalesforceUserConnectionFilter
-
- """Filter by the AccountContactRole's id field"""
- id: SalesforceIdFilter
-
- """Filter by the AccountContactRole's isDeleted field"""
- isDeleted: SalesforceBooleanFilter
-
- """Filter by the AccountContactRole's createdDate field"""
- createdDate: SalesforceDateTimeFilter
-
- """Filter by the AccountContactRole's createdById field"""
- createdById: SalesforceIdFilter
-
- """Filter by the AccountContactRole's lastModifiedDate field"""
- lastModifiedDate: SalesforceDateTimeFilter
-
- """Filter by the AccountContactRole's lastModifiedById field"""
- lastModifiedById: SalesforceIdFilter
-
- """Filter by the AccountContactRole's systemModstamp field"""
- systemModstamp: SalesforceDateTimeFilter
-
- """Filter by the AccountContactRole's accountId field"""
- accountId: SalesforceIdFilter
-
- """Filter by the AccountContactRole's contactId field"""
- contactId: SalesforceIdFilter
-
- """Filter by the AccountContactRole's role field"""
- role: SalesforceStringFilter
-
- """Filter by the AccountContactRole's isPrimary field"""
- isPrimary: SalesforceBooleanFilter
-
- """Checks for any expressions in this list."""
- or: [SalesforceAccountContactRoleConnectionFilter!]
-
- """Checks for all expressions in this list."""
- and: [SalesforceAccountContactRoleConnectionFilter!]
-}
-
-"""Field that Account Contact Roles can be sorted by"""
-enum SalesforceAccountContactRoleSortByFieldEnum {
- ID
- IS_DELETED
- CREATED_DATE
- CREATED_BY_ID
- LAST_MODIFIED_DATE
- LAST_MODIFIED_BY_ID
- SYSTEM_MODSTAMP
- ACCOUNT_ID
- CONTACT_ID
- ROLE
- IS_PRIMARY
-}
-
-"""An edge in a connection."""
-type SalesforceAccountContactRoleEdge {
- """The item at the end of the edge."""
- node: SalesforceAccountContactRole!
-
- """A cursor for use in pagination"""
- cursor: String!
-}
-
-"""Salesforce Account Contact Roles connection, for use in pagination."""
-type SalesforceAccountContactRolesConnection {
- """
- The count of all Account Contact Role you could get from the connection.
- """
- totalCount: Int!
-
- """Pagination Information"""
- pageInfo: PageInfo!
-
- """List of Salesforce Account Contact Roles"""
- nodes: [SalesforceAccountContactRole!]!
-
- """List of Account Contact Role edges"""
- edges: [SalesforceAccountContactRoleEdge!]!
-}
-
-"""
-A filter to be used against AccountCleanInfo object types. All fields are combined with a logical ‘and.’
-"""
-input SalesforceAccountCleanInfoConnectionFilter {
- """Filter against custom fields."""
- customField: SalesforceCustomFieldFilter
-
- """Filter by the AccountCleanInfo's lastStatusChangedBy relation."""
- lastStatusChangedBy: SalesforceUserConnectionFilter
-
- """Filter by the AccountCleanInfo's account relation."""
- account: SalesforceAccountConnectionFilter
-
- """Filter by the AccountCleanInfo's lastModifiedBy relation."""
- lastModifiedBy: SalesforceUserConnectionFilter
-
- """Filter by the AccountCleanInfo's createdBy relation."""
- createdBy: SalesforceUserConnectionFilter
-
- """Filter by the AccountCleanInfo's id field"""
- id: SalesforceIdFilter
-
- """Filter by the AccountCleanInfo's isDeleted field"""
- isDeleted: SalesforceBooleanFilter
-
- """Filter by the AccountCleanInfo's name field"""
- name: SalesforceStringFilter
-
- """Filter by the AccountCleanInfo's createdDate field"""
- createdDate: SalesforceDateTimeFilter
-
- """Filter by the AccountCleanInfo's createdById field"""
- createdById: SalesforceIdFilter
-
- """Filter by the AccountCleanInfo's lastModifiedDate field"""
- lastModifiedDate: SalesforceDateTimeFilter
-
- """Filter by the AccountCleanInfo's lastModifiedById field"""
- lastModifiedById: SalesforceIdFilter
-
- """Filter by the AccountCleanInfo's systemModstamp field"""
- systemModstamp: SalesforceDateTimeFilter
-
- """Filter by the AccountCleanInfo's accountId field"""
- accountId: SalesforceIdFilter
-
- """Filter by the AccountCleanInfo's lastMatchedDate field"""
- lastMatchedDate: SalesforceDateTimeFilter
-
- """Filter by the AccountCleanInfo's lastStatusChangedDate field"""
- lastStatusChangedDate: SalesforceDateTimeFilter
-
- """Filter by the AccountCleanInfo's lastStatusChangedById field"""
- lastStatusChangedById: SalesforceIdFilter
-
- """Filter by the AccountCleanInfo's isInactive field"""
- isInactive: SalesforceBooleanFilter
-
- """Filter by the AccountCleanInfo's companyName field"""
- companyName: SalesforceStringFilter
-
- """Filter by the AccountCleanInfo's phone field"""
- phone: SalesforceStringFilter
-
- """Filter by the AccountCleanInfo's street field"""
- street: SalesforceStringFilter
-
- """Filter by the AccountCleanInfo's city field"""
- city: SalesforceStringFilter
-
- """Filter by the AccountCleanInfo's state field"""
- state: SalesforceStringFilter
-
- """Filter by the AccountCleanInfo's postalCode field"""
- postalCode: SalesforceStringFilter
-
- """Filter by the AccountCleanInfo's country field"""
- country: SalesforceStringFilter
-
- """Filter by the AccountCleanInfo's latitude field"""
- latitude: SalesforceFloatFilter
-
- """Filter by the AccountCleanInfo's longitude field"""
- longitude: SalesforceFloatFilter
-
- """Filter by the AccountCleanInfo's geocodeAccuracy field"""
- geocodeAccuracy: SalesforceStringFilter
-
- """Filter by the AccountCleanInfo's website field"""
- website: SalesforceStringFilter
-
- """Filter by the AccountCleanInfo's tickerSymbol field"""
- tickerSymbol: SalesforceStringFilter
-
- """Filter by the AccountCleanInfo's annualRevenue field"""
- annualRevenue: SalesforceFloatFilter
-
- """Filter by the AccountCleanInfo's numberOfEmployees field"""
- numberOfEmployees: SalesforceIntFilter
-
- """Filter by the AccountCleanInfo's industry field"""
- industry: SalesforceStringFilter
-
- """Filter by the AccountCleanInfo's ownership field"""
- ownership: SalesforceStringFilter
-
- """Filter by the AccountCleanInfo's dunsNumber field"""
- dunsNumber: SalesforceStringFilter
-
- """Filter by the AccountCleanInfo's sic field"""
- sic: SalesforceStringFilter
-
- """Filter by the AccountCleanInfo's sicDescription field"""
- sicDescription: SalesforceStringFilter
-
- """Filter by the AccountCleanInfo's naicsCode field"""
- naicsCode: SalesforceStringFilter
-
- """Filter by the AccountCleanInfo's naicsDescription field"""
- naicsDescription: SalesforceStringFilter
-
- """Filter by the AccountCleanInfo's yearStarted field"""
- yearStarted: SalesforceStringFilter
-
- """Filter by the AccountCleanInfo's fax field"""
- fax: SalesforceStringFilter
-
- """Filter by the AccountCleanInfo's accountSite field"""
- accountSite: SalesforceStringFilter
-
- """Filter by the AccountCleanInfo's tradestyle field"""
- tradestyle: SalesforceStringFilter
-
- """Filter by the AccountCleanInfo's dandBCompanyDunsNumber field"""
- dandBCompanyDunsNumber: SalesforceStringFilter
-
- """Filter by the AccountCleanInfo's dunsRightMatchGrade field"""
- dunsRightMatchGrade: SalesforceStringFilter
-
- """Filter by the AccountCleanInfo's dunsRightMatchConfidence field"""
- dunsRightMatchConfidence: SalesforceIntFilter
-
- """Filter by the AccountCleanInfo's companyStatusDataDotCom field"""
- companyStatusDataDotCom: SalesforceStringFilter
-
- """Filter by the AccountCleanInfo's isReviewedCompanyName field"""
- isReviewedCompanyName: SalesforceBooleanFilter
-
- """Filter by the AccountCleanInfo's isReviewedPhone field"""
- isReviewedPhone: SalesforceBooleanFilter
-
- """Filter by the AccountCleanInfo's isReviewedAddress field"""
- isReviewedAddress: SalesforceBooleanFilter
-
- """Filter by the AccountCleanInfo's isReviewedWebsite field"""
- isReviewedWebsite: SalesforceBooleanFilter
-
- """Filter by the AccountCleanInfo's isReviewedTickerSymbol field"""
- isReviewedTickerSymbol: SalesforceBooleanFilter
-
- """Filter by the AccountCleanInfo's isReviewedAnnualRevenue field"""
- isReviewedAnnualRevenue: SalesforceBooleanFilter
-
- """Filter by the AccountCleanInfo's isReviewedNumberOfEmployees field"""
- isReviewedNumberOfEmployees: SalesforceBooleanFilter
-
- """Filter by the AccountCleanInfo's isReviewedIndustry field"""
- isReviewedIndustry: SalesforceBooleanFilter
-
- """Filter by the AccountCleanInfo's isReviewedOwnership field"""
- isReviewedOwnership: SalesforceBooleanFilter
-
- """Filter by the AccountCleanInfo's isReviewedDunsNumber field"""
- isReviewedDunsNumber: SalesforceBooleanFilter
-
- """Filter by the AccountCleanInfo's isReviewedSic field"""
- isReviewedSic: SalesforceBooleanFilter
-
- """Filter by the AccountCleanInfo's isReviewedSicDescription field"""
- isReviewedSicDescription: SalesforceBooleanFilter
-
- """Filter by the AccountCleanInfo's isReviewedNaicsCode field"""
- isReviewedNaicsCode: SalesforceBooleanFilter
-
- """Filter by the AccountCleanInfo's isReviewedNaicsDescription field"""
- isReviewedNaicsDescription: SalesforceBooleanFilter
-
- """Filter by the AccountCleanInfo's isReviewedYearStarted field"""
- isReviewedYearStarted: SalesforceBooleanFilter
-
- """Filter by the AccountCleanInfo's isReviewedFax field"""
- isReviewedFax: SalesforceBooleanFilter
-
- """Filter by the AccountCleanInfo's isReviewedAccountSite field"""
- isReviewedAccountSite: SalesforceBooleanFilter
-
- """Filter by the AccountCleanInfo's isReviewedDescription field"""
- isReviewedDescription: SalesforceBooleanFilter
-
- """Filter by the AccountCleanInfo's isReviewedTradestyle field"""
- isReviewedTradestyle: SalesforceBooleanFilter
-
- """
- Filter by the AccountCleanInfo's isReviewedDandBCompanyDunsNumber field
- """
- isReviewedDandBCompanyDunsNumber: SalesforceBooleanFilter
-
- """Filter by the AccountCleanInfo's isDifferentCompanyName field"""
- isDifferentCompanyName: SalesforceBooleanFilter
-
- """Filter by the AccountCleanInfo's isDifferentPhone field"""
- isDifferentPhone: SalesforceBooleanFilter
-
- """Filter by the AccountCleanInfo's isDifferentStreet field"""
- isDifferentStreet: SalesforceBooleanFilter
-
- """Filter by the AccountCleanInfo's isDifferentCity field"""
- isDifferentCity: SalesforceBooleanFilter
-
- """Filter by the AccountCleanInfo's isDifferentState field"""
- isDifferentState: SalesforceBooleanFilter
-
- """Filter by the AccountCleanInfo's isDifferentPostalCode field"""
- isDifferentPostalCode: SalesforceBooleanFilter
-
- """Filter by the AccountCleanInfo's isDifferentCountry field"""
- isDifferentCountry: SalesforceBooleanFilter
-
- """Filter by the AccountCleanInfo's isDifferentWebsite field"""
- isDifferentWebsite: SalesforceBooleanFilter
-
- """Filter by the AccountCleanInfo's isDifferentTickerSymbol field"""
- isDifferentTickerSymbol: SalesforceBooleanFilter
-
- """Filter by the AccountCleanInfo's isDifferentAnnualRevenue field"""
- isDifferentAnnualRevenue: SalesforceBooleanFilter
-
- """Filter by the AccountCleanInfo's isDifferentNumberOfEmployees field"""
- isDifferentNumberOfEmployees: SalesforceBooleanFilter
-
- """Filter by the AccountCleanInfo's isDifferentIndustry field"""
- isDifferentIndustry: SalesforceBooleanFilter
-
- """Filter by the AccountCleanInfo's isDifferentOwnership field"""
- isDifferentOwnership: SalesforceBooleanFilter
-
- """Filter by the AccountCleanInfo's isDifferentDunsNumber field"""
- isDifferentDunsNumber: SalesforceBooleanFilter
-
- """Filter by the AccountCleanInfo's isDifferentSic field"""
- isDifferentSic: SalesforceBooleanFilter
-
- """Filter by the AccountCleanInfo's isDifferentSicDescription field"""
- isDifferentSicDescription: SalesforceBooleanFilter
-
- """Filter by the AccountCleanInfo's isDifferentNaicsCode field"""
- isDifferentNaicsCode: SalesforceBooleanFilter
-
- """Filter by the AccountCleanInfo's isDifferentNaicsDescription field"""
- isDifferentNaicsDescription: SalesforceBooleanFilter
-
- """Filter by the AccountCleanInfo's isDifferentYearStarted field"""
- isDifferentYearStarted: SalesforceBooleanFilter
-
- """Filter by the AccountCleanInfo's isDifferentFax field"""
- isDifferentFax: SalesforceBooleanFilter
-
- """Filter by the AccountCleanInfo's isDifferentAccountSite field"""
- isDifferentAccountSite: SalesforceBooleanFilter
-
- """Filter by the AccountCleanInfo's isDifferentDescription field"""
- isDifferentDescription: SalesforceBooleanFilter
-
- """Filter by the AccountCleanInfo's isDifferentTradestyle field"""
- isDifferentTradestyle: SalesforceBooleanFilter
-
- """
- Filter by the AccountCleanInfo's isDifferentDandBCompanyDunsNumber field
- """
- isDifferentDandBCompanyDunsNumber: SalesforceBooleanFilter
-
- """Filter by the AccountCleanInfo's isDifferentStateCode field"""
- isDifferentStateCode: SalesforceBooleanFilter
-
- """Filter by the AccountCleanInfo's isDifferentCountryCode field"""
- isDifferentCountryCode: SalesforceBooleanFilter
-
- """Filter by the AccountCleanInfo's cleanedByJob field"""
- cleanedByJob: SalesforceBooleanFilter
-
- """Filter by the AccountCleanInfo's cleanedByUser field"""
- cleanedByUser: SalesforceBooleanFilter
-
- """Filter by the AccountCleanInfo's isFlaggedWrongCompanyName field"""
- isFlaggedWrongCompanyName: SalesforceBooleanFilter
-
- """Filter by the AccountCleanInfo's isFlaggedWrongPhone field"""
- isFlaggedWrongPhone: SalesforceBooleanFilter
-
- """Filter by the AccountCleanInfo's isFlaggedWrongAddress field"""
- isFlaggedWrongAddress: SalesforceBooleanFilter
-
- """Filter by the AccountCleanInfo's isFlaggedWrongWebsite field"""
- isFlaggedWrongWebsite: SalesforceBooleanFilter
-
- """Filter by the AccountCleanInfo's isFlaggedWrongTickerSymbol field"""
- isFlaggedWrongTickerSymbol: SalesforceBooleanFilter
-
- """Filter by the AccountCleanInfo's isFlaggedWrongAnnualRevenue field"""
- isFlaggedWrongAnnualRevenue: SalesforceBooleanFilter
-
- """Filter by the AccountCleanInfo's isFlaggedWrongNumberOfEmployees field"""
- isFlaggedWrongNumberOfEmployees: SalesforceBooleanFilter
-
- """Filter by the AccountCleanInfo's isFlaggedWrongIndustry field"""
- isFlaggedWrongIndustry: SalesforceBooleanFilter
-
- """Filter by the AccountCleanInfo's isFlaggedWrongOwnership field"""
- isFlaggedWrongOwnership: SalesforceBooleanFilter
-
- """Filter by the AccountCleanInfo's isFlaggedWrongDunsNumber field"""
- isFlaggedWrongDunsNumber: SalesforceBooleanFilter
-
- """Filter by the AccountCleanInfo's isFlaggedWrongSic field"""
- isFlaggedWrongSic: SalesforceBooleanFilter
-
- """Filter by the AccountCleanInfo's isFlaggedWrongSicDescription field"""
- isFlaggedWrongSicDescription: SalesforceBooleanFilter
-
- """Filter by the AccountCleanInfo's isFlaggedWrongNaicsCode field"""
- isFlaggedWrongNaicsCode: SalesforceBooleanFilter
-
- """Filter by the AccountCleanInfo's isFlaggedWrongNaicsDescription field"""
- isFlaggedWrongNaicsDescription: SalesforceBooleanFilter
-
- """Filter by the AccountCleanInfo's isFlaggedWrongYearStarted field"""
- isFlaggedWrongYearStarted: SalesforceBooleanFilter
-
- """Filter by the AccountCleanInfo's isFlaggedWrongFax field"""
- isFlaggedWrongFax: SalesforceBooleanFilter
-
- """Filter by the AccountCleanInfo's isFlaggedWrongAccountSite field"""
- isFlaggedWrongAccountSite: SalesforceBooleanFilter
-
- """Filter by the AccountCleanInfo's isFlaggedWrongDescription field"""
- isFlaggedWrongDescription: SalesforceBooleanFilter
-
- """Filter by the AccountCleanInfo's isFlaggedWrongTradestyle field"""
- isFlaggedWrongTradestyle: SalesforceBooleanFilter
-
- """Filter by the AccountCleanInfo's dataDotComId field"""
- dataDotComId: SalesforceStringFilter
-
- """Checks for any expressions in this list."""
- or: [SalesforceAccountCleanInfoConnectionFilter!]
-
- """Checks for all expressions in this list."""
- and: [SalesforceAccountCleanInfoConnectionFilter!]
-}
-
-"""Field that Account Clean Infos can be sorted by"""
-enum SalesforceAccountCleanInfoSortByFieldEnum {
- ID
- IS_DELETED
- NAME
- CREATED_DATE
- CREATED_BY_ID
- LAST_MODIFIED_DATE
- LAST_MODIFIED_BY_ID
- SYSTEM_MODSTAMP
- ACCOUNT_ID
- LAST_MATCHED_DATE
- LAST_STATUS_CHANGED_DATE
- LAST_STATUS_CHANGED_BY_ID
- IS_INACTIVE
- COMPANY_NAME
- PHONE
- STREET
- CITY
- STATE
- POSTAL_CODE
- COUNTRY
- LATITUDE
- LONGITUDE
- GEOCODE_ACCURACY
- WEBSITE
- TICKER_SYMBOL
- ANNUAL_REVENUE
- NUMBER_OF_EMPLOYEES
- INDUSTRY
- OWNERSHIP
- DUNS_NUMBER
- SIC
- SIC_DESCRIPTION
- NAICS_CODE
- NAICS_DESCRIPTION
- YEAR_STARTED
- FAX
- ACCOUNT_SITE
- TRADESTYLE
- DAND_B_COMPANY_DUNS_NUMBER
- DUNS_RIGHT_MATCH_GRADE
- DUNS_RIGHT_MATCH_CONFIDENCE
- COMPANY_STATUS_DATA_DOT_COM
- DATA_DOT_COM_ID
-}
-
-"""An edge in a connection."""
-type SalesforceAccountCleanInfoEdge {
- """The item at the end of the edge."""
- node: SalesforceAccountCleanInfo!
-
- """A cursor for use in pagination"""
- cursor: String!
-}
-
-"""Salesforce Account Clean Infos connection, for use in pagination."""
-type SalesforceAccountCleanInfosConnection {
- """The count of all Account Clean Info you could get from the connection."""
- totalCount: Int!
-
- """Pagination Information"""
- pageInfo: PageInfo!
-
- """List of Salesforce Account Clean Infos"""
- nodes: [SalesforceAccountCleanInfo!]!
-
- """List of Account Clean Info edges"""
- edges: [SalesforceAccountCleanInfoEdge!]!
-}
-
-"""Field that Roles can be sorted by"""
-enum SalesforceUserRoleSortByFieldEnum {
- ID
- NAME
- PARENT_ROLE_ID
- ROLLUP_DESCRIPTION
- OPPORTUNITY_ACCESS_FOR_ACCOUNT_OWNER
- CASE_ACCESS_FOR_ACCOUNT_OWNER
- CONTACT_ACCESS_FOR_ACCOUNT_OWNER
- FORECAST_USER_ID
- MAY_FORECAST_MANAGER_SHARE
- LAST_MODIFIED_DATE
- LAST_MODIFIED_BY_ID
- SYSTEM_MODSTAMP
- DEVELOPER_NAME
- PORTAL_ACCOUNT_ID
- PORTAL_TYPE
- PORTAL_ACCOUNT_OWNER_ID
-}
-
-"""An edge in a connection."""
-type SalesforceUserRoleEdge {
- """The item at the end of the edge."""
- node: SalesforceUserRole!
-
- """A cursor for use in pagination"""
- cursor: String!
-}
-
-"""Salesforce Roles connection, for use in pagination."""
-type SalesforceUserRolesConnection {
- """The count of all Role you could get from the connection."""
- totalCount: Int!
-
- """Pagination Information"""
- pageInfo: PageInfo!
-
- """List of Salesforce Roles"""
- nodes: [SalesforceUserRole!]!
-
- """List of Role edges"""
- edges: [SalesforceUserRoleEdge!]!
-}
-
-"""An edge in a connection."""
-type SalesforceForecastShareEdge {
- """The item at the end of the edge."""
- node: SalesforceForecastShare!
-
- """A cursor for use in pagination"""
- cursor: String!
-}
-
-union SalesforceCaseOwnerUnion = SalesforceUser | SalesforceGroup
-
-union SalesforceFieldDefinitionBusinessOwnerUnion = SalesforceUser | SalesforceGroup
-
-union SalesforceUserDelegatedApproverUnion = SalesforceUser | SalesforceGroup
-
-union SalesforceEntityDefinitionDataStewardUnion = SalesforceUser | SalesforceGroup
-
-union SalesforceLeadOwnerUnion = SalesforceUser | SalesforceGroup
-
-union SalesforceProcessInstanceHistoryOriginalActorUnion = SalesforceUser | SalesforceGroup
-
-union SalesforceProcessInstanceHistoryActorUnion = SalesforceUser | SalesforceGroup
-
-"""
-A filter to be used against UserShare object types. All fields are combined with a logical ‘and.’
-"""
-input SalesforceUserShareConnectionFilter {
- """Filter against custom fields."""
- customField: SalesforceCustomFieldFilter
-
- """Filter by the UserShare's lastModifiedBy relation."""
- lastModifiedBy: SalesforceUserConnectionFilter
-
- """Filter by the UserShare's user relation."""
- user: SalesforceUserConnectionFilter
-
- """Filter by the UserShare's id field"""
- id: SalesforceIdFilter
-
- """Filter by the UserShare's userId field"""
- userId: SalesforceIdFilter
-
- """Filter by the UserShare's userOrGroupId field"""
- userOrGroupId: SalesforceIdFilter
-
- """Filter by the UserShare's userAccessLevel field"""
- userAccessLevel: SalesforceStringFilter
-
- """Filter by the UserShare's rowCause field"""
- rowCause: SalesforceStringFilter
-
- """Filter by the UserShare's lastModifiedDate field"""
- lastModifiedDate: SalesforceDateTimeFilter
-
- """Filter by the UserShare's lastModifiedById field"""
- lastModifiedById: SalesforceIdFilter
-
- """Filter by the UserShare's isActive field"""
- isActive: SalesforceBooleanFilter
-
- """Checks for any expressions in this list."""
- or: [SalesforceUserShareConnectionFilter!]
-
- """Checks for all expressions in this list."""
- and: [SalesforceUserShareConnectionFilter!]
-}
-
-"""Field that User Shares can be sorted by"""
-enum SalesforceUserShareSortByFieldEnum {
- ID
- USER_ID
- USER_OR_GROUP_ID
- USER_ACCESS_LEVEL
- ROW_CAUSE
- LAST_MODIFIED_DATE
- LAST_MODIFIED_BY_ID
- IS_ACTIVE
-}
-
-"""An edge in a connection."""
-type SalesforceUserShareEdge {
- """The item at the end of the edge."""
- node: SalesforceUserShare!
-
- """A cursor for use in pagination"""
- cursor: String!
-}
-
-"""Salesforce User Shares connection, for use in pagination."""
-type SalesforceUserSharesConnection {
- """The count of all User Share you could get from the connection."""
- totalCount: Int!
-
- """Pagination Information"""
- pageInfo: PageInfo!
-
- """List of Salesforce User Shares"""
- nodes: [SalesforceUserShare!]!
-
- """List of User Share edges"""
- edges: [SalesforceUserShareEdge!]!
-}
-
-"""
-A filter to be used against UserProvisioningRequestShare object types. All fields are combined with a logical ‘and.’
-"""
-input SalesforceUserProvisioningRequestShareConnectionFilter {
- """Filter against custom fields."""
- customField: SalesforceCustomFieldFilter
-
- """Filter by the UserProvisioningRequestShare's lastModifiedBy relation."""
- lastModifiedBy: SalesforceUserConnectionFilter
-
- """Filter by the UserProvisioningRequestShare's parent relation."""
- parent: SalesforceUserProvisioningRequestConnectionFilter
-
- """Filter by the UserProvisioningRequestShare's id field"""
- id: SalesforceIdFilter
-
- """Filter by the UserProvisioningRequestShare's parentId field"""
- parentId: SalesforceIdFilter
-
- """Filter by the UserProvisioningRequestShare's userOrGroupId field"""
- userOrGroupId: SalesforceIdFilter
-
- """Filter by the UserProvisioningRequestShare's accessLevel field"""
- accessLevel: SalesforceStringFilter
-
- """Filter by the UserProvisioningRequestShare's rowCause field"""
- rowCause: SalesforceStringFilter
-
- """Filter by the UserProvisioningRequestShare's lastModifiedDate field"""
- lastModifiedDate: SalesforceDateTimeFilter
-
- """Filter by the UserProvisioningRequestShare's lastModifiedById field"""
- lastModifiedById: SalesforceIdFilter
-
- """Filter by the UserProvisioningRequestShare's isDeleted field"""
- isDeleted: SalesforceBooleanFilter
-
- """Checks for any expressions in this list."""
- or: [SalesforceUserProvisioningRequestShareConnectionFilter!]
-
- """Checks for all expressions in this list."""
- and: [SalesforceUserProvisioningRequestShareConnectionFilter!]
-}
-
-"""Field that User Provisioning Request Shares can be sorted by"""
-enum SalesforceUserProvisioningRequestShareSortByFieldEnum {
- ID
- PARENT_ID
- USER_OR_GROUP_ID
- ACCESS_LEVEL
- ROW_CAUSE
- LAST_MODIFIED_DATE
- LAST_MODIFIED_BY_ID
- IS_DELETED
-}
-
-"""An edge in a connection."""
-type SalesforceUserProvisioningRequestShareEdge {
- """The item at the end of the edge."""
- node: SalesforceUserProvisioningRequestShare!
-
- """A cursor for use in pagination"""
- cursor: String!
-}
-
-"""
-Salesforce User Provisioning Request Shares connection, for use in pagination.
-"""
-type SalesforceUserProvisioningRequestSharesConnection {
- """
- The count of all User Provisioning Request Share you could get from the connection.
- """
- totalCount: Int!
-
- """Pagination Information"""
- pageInfo: PageInfo!
-
- """List of Salesforce User Provisioning Request Shares"""
- nodes: [SalesforceUserProvisioningRequestShare!]!
-
- """List of User Provisioning Request Share edges"""
- edges: [SalesforceUserProvisioningRequestShareEdge!]!
-}
-
-"""
-A filter to be used against UserAppMenuCustomizationShare object types. All fields are combined with a logical ‘and.’
-"""
-input SalesforceUserAppMenuCustomizationShareConnectionFilter {
- """Filter against custom fields."""
- customField: SalesforceCustomFieldFilter
-
- """Filter by the UserAppMenuCustomizationShare's lastModifiedBy relation."""
- lastModifiedBy: SalesforceUserConnectionFilter
-
- """Filter by the UserAppMenuCustomizationShare's parent relation."""
- parent: SalesforceUserAppMenuCustomizationConnectionFilter
-
- """Filter by the UserAppMenuCustomizationShare's id field"""
- id: SalesforceIdFilter
-
- """Filter by the UserAppMenuCustomizationShare's parentId field"""
- parentId: SalesforceIdFilter
-
- """Filter by the UserAppMenuCustomizationShare's userOrGroupId field"""
- userOrGroupId: SalesforceIdFilter
-
- """Filter by the UserAppMenuCustomizationShare's accessLevel field"""
- accessLevel: SalesforceStringFilter
-
- """Filter by the UserAppMenuCustomizationShare's rowCause field"""
- rowCause: SalesforceStringFilter
-
- """Filter by the UserAppMenuCustomizationShare's lastModifiedDate field"""
- lastModifiedDate: SalesforceDateTimeFilter
-
- """Filter by the UserAppMenuCustomizationShare's lastModifiedById field"""
- lastModifiedById: SalesforceIdFilter
-
- """Filter by the UserAppMenuCustomizationShare's isDeleted field"""
- isDeleted: SalesforceBooleanFilter
-
- """Checks for any expressions in this list."""
- or: [SalesforceUserAppMenuCustomizationShareConnectionFilter!]
-
- """Checks for all expressions in this list."""
- and: [SalesforceUserAppMenuCustomizationShareConnectionFilter!]
-}
-
-"""Field that UserAppMenuCustomization Shares can be sorted by"""
-enum SalesforceUserAppMenuCustomizationShareSortByFieldEnum {
- ID
- PARENT_ID
- USER_OR_GROUP_ID
- ACCESS_LEVEL
- ROW_CAUSE
- LAST_MODIFIED_DATE
- LAST_MODIFIED_BY_ID
- IS_DELETED
-}
-
-"""An edge in a connection."""
-type SalesforceUserAppMenuCustomizationShareEdge {
- """The item at the end of the edge."""
- node: SalesforceUserAppMenuCustomizationShare!
-
- """A cursor for use in pagination"""
- cursor: String!
-}
-
-"""
-Salesforce UserAppMenuCustomization Shares connection, for use in pagination.
-"""
-type SalesforceUserAppMenuCustomizationSharesConnection {
- """
- The count of all UserAppMenuCustomization Share you could get from the connection.
- """
- totalCount: Int!
-
- """Pagination Information"""
- pageInfo: PageInfo!
-
- """List of Salesforce UserAppMenuCustomization Shares"""
- nodes: [SalesforceUserAppMenuCustomizationShare!]!
-
- """List of UserAppMenuCustomization Share edges"""
- edges: [SalesforceUserAppMenuCustomizationShareEdge!]!
-}
-
-"""
-A filter to be used against TodayGoal object types. All fields are combined with a logical ‘and.’
-"""
-input SalesforceTodayGoalConnectionFilter {
- """Filter against custom fields."""
- customField: SalesforceCustomFieldFilter
-
- """Filter by the TodayGoal's user relation."""
- user: SalesforceUserConnectionFilter
-
- """Filter by the TodayGoal's lastModifiedBy relation."""
- lastModifiedBy: SalesforceUserConnectionFilter
-
- """Filter by the TodayGoal's createdBy relation."""
- createdBy: SalesforceUserConnectionFilter
-
- """Filter by the TodayGoal's id field"""
- id: SalesforceIdFilter
-
- """Filter by the TodayGoal's ownerId field"""
- ownerId: SalesforceIdFilter
-
- """Filter by the TodayGoal's isDeleted field"""
- isDeleted: SalesforceBooleanFilter
-
- """Filter by the TodayGoal's name field"""
- name: SalesforceStringFilter
-
- """Filter by the TodayGoal's createdDate field"""
- createdDate: SalesforceDateTimeFilter
-
- """Filter by the TodayGoal's createdById field"""
- createdById: SalesforceIdFilter
-
- """Filter by the TodayGoal's lastModifiedDate field"""
- lastModifiedDate: SalesforceDateTimeFilter
-
- """Filter by the TodayGoal's lastModifiedById field"""
- lastModifiedById: SalesforceIdFilter
-
- """Filter by the TodayGoal's systemModstamp field"""
- systemModstamp: SalesforceDateTimeFilter
-
- """Filter by the TodayGoal's value field"""
- value: SalesforceFloatFilter
-
- """Filter by the TodayGoal's userId field"""
- userId: SalesforceIdFilter
-
- """Checks for any expressions in this list."""
- or: [SalesforceTodayGoalConnectionFilter!]
-
- """Checks for all expressions in this list."""
- and: [SalesforceTodayGoalConnectionFilter!]
-}
-
-"""
-A filter to be used against TodayGoalShare object types. All fields are combined with a logical ‘and.’
-"""
-input SalesforceTodayGoalShareConnectionFilter {
- """Filter against custom fields."""
- customField: SalesforceCustomFieldFilter
-
- """Filter by the TodayGoalShare's lastModifiedBy relation."""
- lastModifiedBy: SalesforceUserConnectionFilter
-
- """Filter by the TodayGoalShare's parent relation."""
- parent: SalesforceTodayGoalConnectionFilter
-
- """Filter by the TodayGoalShare's id field"""
- id: SalesforceIdFilter
-
- """Filter by the TodayGoalShare's parentId field"""
- parentId: SalesforceIdFilter
-
- """Filter by the TodayGoalShare's userOrGroupId field"""
- userOrGroupId: SalesforceIdFilter
-
- """Filter by the TodayGoalShare's accessLevel field"""
- accessLevel: SalesforceStringFilter
-
- """Filter by the TodayGoalShare's rowCause field"""
- rowCause: SalesforceStringFilter
-
- """Filter by the TodayGoalShare's lastModifiedDate field"""
- lastModifiedDate: SalesforceDateTimeFilter
-
- """Filter by the TodayGoalShare's lastModifiedById field"""
- lastModifiedById: SalesforceIdFilter
-
- """Filter by the TodayGoalShare's isDeleted field"""
- isDeleted: SalesforceBooleanFilter
-
- """Checks for any expressions in this list."""
- or: [SalesforceTodayGoalShareConnectionFilter!]
-
- """Checks for all expressions in this list."""
- and: [SalesforceTodayGoalShareConnectionFilter!]
-}
-
-"""Field that Goal Shares can be sorted by"""
-enum SalesforceTodayGoalShareSortByFieldEnum {
- ID
- PARENT_ID
- USER_OR_GROUP_ID
- ACCESS_LEVEL
- ROW_CAUSE
- LAST_MODIFIED_DATE
- LAST_MODIFIED_BY_ID
- IS_DELETED
-}
-
-"""An edge in a connection."""
-type SalesforceTodayGoalShareEdge {
- """The item at the end of the edge."""
- node: SalesforceTodayGoalShare!
-
- """A cursor for use in pagination"""
- cursor: String!
-}
-
-"""Salesforce Goal Shares connection, for use in pagination."""
-type SalesforceTodayGoalSharesConnection {
- """The count of all Goal Share you could get from the connection."""
- totalCount: Int!
-
- """Pagination Information"""
- pageInfo: PageInfo!
-
- """List of Salesforce Goal Shares"""
- nodes: [SalesforceTodayGoalShare!]!
-
- """List of Goal Share edges"""
- edges: [SalesforceTodayGoalShareEdge!]!
-}
-
-"""
-A filter to be used against StreamingChannel object types. All fields are combined with a logical ‘and.’
-"""
-input SalesforceStreamingChannelConnectionFilter {
- """Filter against custom fields."""
- customField: SalesforceCustomFieldFilter
-
- """Filter by the StreamingChannel's lastModifiedBy relation."""
- lastModifiedBy: SalesforceUserConnectionFilter
-
- """Filter by the StreamingChannel's createdBy relation."""
- createdBy: SalesforceUserConnectionFilter
-
- """Filter by the StreamingChannel's id field"""
- id: SalesforceIdFilter
-
- """Filter by the StreamingChannel's ownerId field"""
- ownerId: SalesforceIdFilter
-
- """Filter by the StreamingChannel's isDeleted field"""
- isDeleted: SalesforceBooleanFilter
-
- """Filter by the StreamingChannel's name field"""
- name: SalesforceStringFilter
-
- """Filter by the StreamingChannel's createdDate field"""
- createdDate: SalesforceDateTimeFilter
-
- """Filter by the StreamingChannel's createdById field"""
- createdById: SalesforceIdFilter
-
- """Filter by the StreamingChannel's lastModifiedDate field"""
- lastModifiedDate: SalesforceDateTimeFilter
-
- """Filter by the StreamingChannel's lastModifiedById field"""
- lastModifiedById: SalesforceIdFilter
-
- """Filter by the StreamingChannel's systemModstamp field"""
- systemModstamp: SalesforceDateTimeFilter
-
- """Filter by the StreamingChannel's lastViewedDate field"""
- lastViewedDate: SalesforceDateTimeFilter
-
- """Filter by the StreamingChannel's lastReferencedDate field"""
- lastReferencedDate: SalesforceDateTimeFilter
-
- """Filter by the StreamingChannel's isDynamic field"""
- isDynamic: SalesforceBooleanFilter
-
- """Filter by the StreamingChannel's description field"""
- description: SalesforceStringFilter
-
- """Checks for any expressions in this list."""
- or: [SalesforceStreamingChannelConnectionFilter!]
-
- """Checks for all expressions in this list."""
- and: [SalesforceStreamingChannelConnectionFilter!]
-}
-
-"""
-A filter to be used against StreamingChannelShare object types. All fields are combined with a logical ‘and.’
-"""
-input SalesforceStreamingChannelShareConnectionFilter {
- """Filter against custom fields."""
- customField: SalesforceCustomFieldFilter
-
- """Filter by the StreamingChannelShare's lastModifiedBy relation."""
- lastModifiedBy: SalesforceUserConnectionFilter
-
- """Filter by the StreamingChannelShare's parent relation."""
- parent: SalesforceStreamingChannelConnectionFilter
-
- """Filter by the StreamingChannelShare's id field"""
- id: SalesforceIdFilter
-
- """Filter by the StreamingChannelShare's parentId field"""
- parentId: SalesforceIdFilter
-
- """Filter by the StreamingChannelShare's userOrGroupId field"""
- userOrGroupId: SalesforceIdFilter
-
- """Filter by the StreamingChannelShare's accessLevel field"""
- accessLevel: SalesforceStringFilter
-
- """Filter by the StreamingChannelShare's rowCause field"""
- rowCause: SalesforceStringFilter
-
- """Filter by the StreamingChannelShare's lastModifiedDate field"""
- lastModifiedDate: SalesforceDateTimeFilter
-
- """Filter by the StreamingChannelShare's lastModifiedById field"""
- lastModifiedById: SalesforceIdFilter
-
- """Filter by the StreamingChannelShare's isDeleted field"""
- isDeleted: SalesforceBooleanFilter
-
- """Checks for any expressions in this list."""
- or: [SalesforceStreamingChannelShareConnectionFilter!]
-
- """Checks for all expressions in this list."""
- and: [SalesforceStreamingChannelShareConnectionFilter!]
-}
-
-"""Field that Streaming Channel Shares can be sorted by"""
-enum SalesforceStreamingChannelShareSortByFieldEnum {
- ID
- PARENT_ID
- USER_OR_GROUP_ID
- ACCESS_LEVEL
- ROW_CAUSE
- LAST_MODIFIED_DATE
- LAST_MODIFIED_BY_ID
- IS_DELETED
-}
-
-"""An edge in a connection."""
-type SalesforceStreamingChannelShareEdge {
- """The item at the end of the edge."""
- node: SalesforceStreamingChannelShare!
-
- """A cursor for use in pagination"""
- cursor: String!
-}
-
-"""Salesforce Streaming Channel Shares connection, for use in pagination."""
-type SalesforceStreamingChannelSharesConnection {
- """
- The count of all Streaming Channel Share you could get from the connection.
- """
- totalCount: Int!
-
- """Pagination Information"""
- pageInfo: PageInfo!
-
- """List of Salesforce Streaming Channel Shares"""
- nodes: [SalesforceStreamingChannelShare!]!
-
- """List of Streaming Channel Share edges"""
- edges: [SalesforceStreamingChannelShareEdge!]!
-}
-
-"""
-A filter to be used against QuickTextShare object types. All fields are combined with a logical ‘and.’
-"""
-input SalesforceQuickTextShareConnectionFilter {
- """Filter against custom fields."""
- customField: SalesforceCustomFieldFilter
-
- """Filter by the QuickTextShare's lastModifiedBy relation."""
- lastModifiedBy: SalesforceUserConnectionFilter
-
- """Filter by the QuickTextShare's parent relation."""
- parent: SalesforceQuickTextConnectionFilter
-
- """Filter by the QuickTextShare's id field"""
- id: SalesforceIdFilter
-
- """Filter by the QuickTextShare's parentId field"""
- parentId: SalesforceIdFilter
-
- """Filter by the QuickTextShare's userOrGroupId field"""
- userOrGroupId: SalesforceIdFilter
-
- """Filter by the QuickTextShare's accessLevel field"""
- accessLevel: SalesforceStringFilter
-
- """Filter by the QuickTextShare's rowCause field"""
- rowCause: SalesforceStringFilter
-
- """Filter by the QuickTextShare's lastModifiedDate field"""
- lastModifiedDate: SalesforceDateTimeFilter
-
- """Filter by the QuickTextShare's lastModifiedById field"""
- lastModifiedById: SalesforceIdFilter
-
- """Filter by the QuickTextShare's isDeleted field"""
- isDeleted: SalesforceBooleanFilter
-
- """Checks for any expressions in this list."""
- or: [SalesforceQuickTextShareConnectionFilter!]
-
- """Checks for all expressions in this list."""
- and: [SalesforceQuickTextShareConnectionFilter!]
-}
-
-"""Field that Quick Text Shares can be sorted by"""
-enum SalesforceQuickTextShareSortByFieldEnum {
- ID
- PARENT_ID
- USER_OR_GROUP_ID
- ACCESS_LEVEL
- ROW_CAUSE
- LAST_MODIFIED_DATE
- LAST_MODIFIED_BY_ID
- IS_DELETED
-}
-
-"""An edge in a connection."""
-type SalesforceQuickTextShareEdge {
- """The item at the end of the edge."""
- node: SalesforceQuickTextShare!
-
- """A cursor for use in pagination"""
- cursor: String!
-}
-
-"""Salesforce Quick Text Shares connection, for use in pagination."""
-type SalesforceQuickTextSharesConnection {
- """The count of all Quick Text Share you could get from the connection."""
- totalCount: Int!
-
- """Pagination Information"""
- pageInfo: PageInfo!
-
- """List of Salesforce Quick Text Shares"""
- nodes: [SalesforceQuickTextShare!]!
-
- """List of Quick Text Share edges"""
- edges: [SalesforceQuickTextShareEdge!]!
-}
-
-"""
-A filter to be used against QueueSobject object types. All fields are combined with a logical ‘and.’
-"""
-input SalesforceQueueSobjectConnectionFilter {
- """Filter against custom fields."""
- customField: SalesforceCustomFieldFilter
-
- """Filter by the QueueSobject's createdBy relation."""
- createdBy: SalesforceUserConnectionFilter
-
- """Filter by the QueueSobject's queue relation."""
- queue: SalesforceGroupConnectionFilter
-
- """Filter by the QueueSobject's id field"""
- id: SalesforceIdFilter
-
- """Filter by the QueueSobject's queueId field"""
- queueId: SalesforceIdFilter
-
- """Filter by the QueueSobject's sobjectType field"""
- sobjectType: SalesforceStringFilter
-
- """Filter by the QueueSobject's createdById field"""
- createdById: SalesforceIdFilter
-
- """Filter by the QueueSobject's systemModstamp field"""
- systemModstamp: SalesforceDateTimeFilter
-
- """Checks for any expressions in this list."""
- or: [SalesforceQueueSobjectConnectionFilter!]
-
- """Checks for all expressions in this list."""
- and: [SalesforceQueueSobjectConnectionFilter!]
-}
-
-"""Field that Queue Sobjects can be sorted by"""
-enum SalesforceQueueSobjectSortByFieldEnum {
- ID
- QUEUE_ID
- SOBJECT_TYPE
- CREATED_BY_ID
- SYSTEM_MODSTAMP
-}
-
-"""An edge in a connection."""
-type SalesforceQueueSobjectEdge {
- """The item at the end of the edge."""
- node: SalesforceQueueSobject!
-
- """A cursor for use in pagination"""
- cursor: String!
-}
-
-"""Salesforce Queue Sobjects connection, for use in pagination."""
-type SalesforceQueueSobjectsConnection {
- """The count of all Queue Sobject you could get from the connection."""
- totalCount: Int!
-
- """Pagination Information"""
- pageInfo: PageInfo!
-
- """List of Salesforce Queue Sobjects"""
- nodes: [SalesforceQueueSobject!]!
-
- """List of Queue Sobject edges"""
- edges: [SalesforceQueueSobjectEdge!]!
-}
-
-"""
-A filter to be used against OrgDeleteRequest object types. All fields are combined with a logical ‘and.’
-"""
-input SalesforceOrgDeleteRequestConnectionFilter {
- """Filter against custom fields."""
- customField: SalesforceCustomFieldFilter
-
- """Filter by the OrgDeleteRequest's lastModifiedBy relation."""
- lastModifiedBy: SalesforceUserConnectionFilter
-
- """Filter by the OrgDeleteRequest's createdBy relation."""
- createdBy: SalesforceUserConnectionFilter
-
- """Filter by the OrgDeleteRequest's id field"""
- id: SalesforceIdFilter
-
- """Filter by the OrgDeleteRequest's ownerId field"""
- ownerId: SalesforceIdFilter
-
- """Filter by the OrgDeleteRequest's isDeleted field"""
- isDeleted: SalesforceBooleanFilter
-
- """Filter by the OrgDeleteRequest's name field"""
- name: SalesforceStringFilter
-
- """Filter by the OrgDeleteRequest's createdDate field"""
- createdDate: SalesforceDateTimeFilter
-
- """Filter by the OrgDeleteRequest's createdById field"""
- createdById: SalesforceIdFilter
-
- """Filter by the OrgDeleteRequest's lastModifiedDate field"""
- lastModifiedDate: SalesforceDateTimeFilter
-
- """Filter by the OrgDeleteRequest's lastModifiedById field"""
- lastModifiedById: SalesforceIdFilter
-
- """Filter by the OrgDeleteRequest's systemModstamp field"""
- systemModstamp: SalesforceDateTimeFilter
-
- """Filter by the OrgDeleteRequest's requestType field"""
- requestType: SalesforceStringFilter
-
- """Checks for any expressions in this list."""
- or: [SalesforceOrgDeleteRequestConnectionFilter!]
-
- """Checks for all expressions in this list."""
- and: [SalesforceOrgDeleteRequestConnectionFilter!]
-}
-
-"""
-A filter to be used against OrgDeleteRequestShare object types. All fields are combined with a logical ‘and.’
-"""
-input SalesforceOrgDeleteRequestShareConnectionFilter {
- """Filter against custom fields."""
- customField: SalesforceCustomFieldFilter
-
- """Filter by the OrgDeleteRequestShare's lastModifiedBy relation."""
- lastModifiedBy: SalesforceUserConnectionFilter
-
- """Filter by the OrgDeleteRequestShare's parent relation."""
- parent: SalesforceOrgDeleteRequestConnectionFilter
-
- """Filter by the OrgDeleteRequestShare's id field"""
- id: SalesforceIdFilter
-
- """Filter by the OrgDeleteRequestShare's parentId field"""
- parentId: SalesforceIdFilter
-
- """Filter by the OrgDeleteRequestShare's userOrGroupId field"""
- userOrGroupId: SalesforceIdFilter
-
- """Filter by the OrgDeleteRequestShare's accessLevel field"""
- accessLevel: SalesforceStringFilter
-
- """Filter by the OrgDeleteRequestShare's rowCause field"""
- rowCause: SalesforceStringFilter
-
- """Filter by the OrgDeleteRequestShare's lastModifiedDate field"""
- lastModifiedDate: SalesforceDateTimeFilter
-
- """Filter by the OrgDeleteRequestShare's lastModifiedById field"""
- lastModifiedById: SalesforceIdFilter
-
- """Filter by the OrgDeleteRequestShare's isDeleted field"""
- isDeleted: SalesforceBooleanFilter
-
- """Checks for any expressions in this list."""
- or: [SalesforceOrgDeleteRequestShareConnectionFilter!]
-
- """Checks for all expressions in this list."""
- and: [SalesforceOrgDeleteRequestShareConnectionFilter!]
-}
-
-"""Field that Org Delete Request Shares can be sorted by"""
-enum SalesforceOrgDeleteRequestShareSortByFieldEnum {
- ID
- PARENT_ID
- USER_OR_GROUP_ID
- ACCESS_LEVEL
- ROW_CAUSE
- LAST_MODIFIED_DATE
- LAST_MODIFIED_BY_ID
- IS_DELETED
-}
-
-"""An edge in a connection."""
-type SalesforceOrgDeleteRequestShareEdge {
- """The item at the end of the edge."""
- node: SalesforceOrgDeleteRequestShare!
-
- """A cursor for use in pagination"""
- cursor: String!
-}
-
-"""
-Salesforce Org Delete Request Shares connection, for use in pagination.
-"""
-type SalesforceOrgDeleteRequestSharesConnection {
- """
- The count of all Org Delete Request Share you could get from the connection.
- """
- totalCount: Int!
-
- """Pagination Information"""
- pageInfo: PageInfo!
-
- """List of Salesforce Org Delete Request Shares"""
- nodes: [SalesforceOrgDeleteRequestShare!]!
-
- """List of Org Delete Request Share edges"""
- edges: [SalesforceOrgDeleteRequestShareEdge!]!
-}
-
-"""
-A filter to be used against MacroShare object types. All fields are combined with a logical ‘and.’
-"""
-input SalesforceMacroShareConnectionFilter {
- """Filter against custom fields."""
- customField: SalesforceCustomFieldFilter
-
- """Filter by the MacroShare's lastModifiedBy relation."""
- lastModifiedBy: SalesforceUserConnectionFilter
-
- """Filter by the MacroShare's parent relation."""
- parent: SalesforceMacroConnectionFilter
-
- """Filter by the MacroShare's id field"""
- id: SalesforceIdFilter
-
- """Filter by the MacroShare's parentId field"""
- parentId: SalesforceIdFilter
-
- """Filter by the MacroShare's userOrGroupId field"""
- userOrGroupId: SalesforceIdFilter
-
- """Filter by the MacroShare's accessLevel field"""
- accessLevel: SalesforceStringFilter
-
- """Filter by the MacroShare's rowCause field"""
- rowCause: SalesforceStringFilter
-
- """Filter by the MacroShare's lastModifiedDate field"""
- lastModifiedDate: SalesforceDateTimeFilter
-
- """Filter by the MacroShare's lastModifiedById field"""
- lastModifiedById: SalesforceIdFilter
-
- """Filter by the MacroShare's isDeleted field"""
- isDeleted: SalesforceBooleanFilter
-
- """Checks for any expressions in this list."""
- or: [SalesforceMacroShareConnectionFilter!]
-
- """Checks for all expressions in this list."""
- and: [SalesforceMacroShareConnectionFilter!]
-}
-
-"""Field that Macro Shares can be sorted by"""
-enum SalesforceMacroShareSortByFieldEnum {
- ID
- PARENT_ID
- USER_OR_GROUP_ID
- ACCESS_LEVEL
- ROW_CAUSE
- LAST_MODIFIED_DATE
- LAST_MODIFIED_BY_ID
- IS_DELETED
-}
-
-"""An edge in a connection."""
-type SalesforceMacroShareEdge {
- """The item at the end of the edge."""
- node: SalesforceMacroShare!
-
- """A cursor for use in pagination"""
- cursor: String!
-}
-
-"""Salesforce Macro Shares connection, for use in pagination."""
-type SalesforceMacroSharesConnection {
- """The count of all Macro Share you could get from the connection."""
- totalCount: Int!
-
- """Pagination Information"""
- pageInfo: PageInfo!
-
- """List of Salesforce Macro Shares"""
- nodes: [SalesforceMacroShare!]!
-
- """List of Macro Share edges"""
- edges: [SalesforceMacroShareEdge!]!
-}
-
-"""
-A filter to be used against ListEmailShare object types. All fields are combined with a logical ‘and.’
-"""
-input SalesforceListEmailShareConnectionFilter {
- """Filter against custom fields."""
- customField: SalesforceCustomFieldFilter
-
- """Filter by the ListEmailShare's lastModifiedBy relation."""
- lastModifiedBy: SalesforceUserConnectionFilter
-
- """Filter by the ListEmailShare's parent relation."""
- parent: SalesforceListEmailConnectionFilter
-
- """Filter by the ListEmailShare's id field"""
- id: SalesforceIdFilter
-
- """Filter by the ListEmailShare's parentId field"""
- parentId: SalesforceIdFilter
-
- """Filter by the ListEmailShare's userOrGroupId field"""
- userOrGroupId: SalesforceIdFilter
-
- """Filter by the ListEmailShare's accessLevel field"""
- accessLevel: SalesforceStringFilter
-
- """Filter by the ListEmailShare's rowCause field"""
- rowCause: SalesforceStringFilter
-
- """Filter by the ListEmailShare's lastModifiedDate field"""
- lastModifiedDate: SalesforceDateTimeFilter
-
- """Filter by the ListEmailShare's lastModifiedById field"""
- lastModifiedById: SalesforceIdFilter
-
- """Filter by the ListEmailShare's isDeleted field"""
- isDeleted: SalesforceBooleanFilter
-
- """Checks for any expressions in this list."""
- or: [SalesforceListEmailShareConnectionFilter!]
-
- """Checks for all expressions in this list."""
- and: [SalesforceListEmailShareConnectionFilter!]
-}
-
-"""Field that List Email Shares can be sorted by"""
-enum SalesforceListEmailShareSortByFieldEnum {
- ID
- PARENT_ID
- USER_OR_GROUP_ID
- ACCESS_LEVEL
- ROW_CAUSE
- LAST_MODIFIED_DATE
- LAST_MODIFIED_BY_ID
- IS_DELETED
-}
-
-"""An edge in a connection."""
-type SalesforceListEmailShareEdge {
- """The item at the end of the edge."""
- node: SalesforceListEmailShare!
-
- """A cursor for use in pagination"""
- cursor: String!
-}
-
-"""Salesforce List Email Shares connection, for use in pagination."""
-type SalesforceListEmailSharesConnection {
- """The count of all List Email Share you could get from the connection."""
- totalCount: Int!
-
- """Pagination Information"""
- pageInfo: PageInfo!
-
- """List of Salesforce List Email Shares"""
- nodes: [SalesforceListEmailShare!]!
-
- """List of List Email Share edges"""
- edges: [SalesforceListEmailShareEdge!]!
-}
-
-"""
-A filter to be used against LeadShare object types. All fields are combined with a logical ‘and.’
-"""
-input SalesforceLeadShareConnectionFilter {
- """Filter against custom fields."""
- customField: SalesforceCustomFieldFilter
-
- """Filter by the LeadShare's lastModifiedBy relation."""
- lastModifiedBy: SalesforceUserConnectionFilter
-
- """Filter by the LeadShare's lead relation."""
- lead: SalesforceLeadConnectionFilter
-
- """Filter by the LeadShare's id field"""
- id: SalesforceIdFilter
-
- """Filter by the LeadShare's leadId field"""
- leadId: SalesforceIdFilter
-
- """Filter by the LeadShare's userOrGroupId field"""
- userOrGroupId: SalesforceIdFilter
-
- """Filter by the LeadShare's leadAccessLevel field"""
- leadAccessLevel: SalesforceStringFilter
-
- """Filter by the LeadShare's rowCause field"""
- rowCause: SalesforceStringFilter
-
- """Filter by the LeadShare's lastModifiedDate field"""
- lastModifiedDate: SalesforceDateTimeFilter
-
- """Filter by the LeadShare's lastModifiedById field"""
- lastModifiedById: SalesforceIdFilter
-
- """Filter by the LeadShare's isDeleted field"""
- isDeleted: SalesforceBooleanFilter
-
- """Checks for any expressions in this list."""
- or: [SalesforceLeadShareConnectionFilter!]
-
- """Checks for all expressions in this list."""
- and: [SalesforceLeadShareConnectionFilter!]
-}
-
-"""Field that Lead Shares can be sorted by"""
-enum SalesforceLeadShareSortByFieldEnum {
- ID
- LEAD_ID
- USER_OR_GROUP_ID
- LEAD_ACCESS_LEVEL
- ROW_CAUSE
- LAST_MODIFIED_DATE
- LAST_MODIFIED_BY_ID
- IS_DELETED
-}
-
-"""An edge in a connection."""
-type SalesforceLeadShareEdge {
- """The item at the end of the edge."""
- node: SalesforceLeadShare!
-
- """A cursor for use in pagination"""
- cursor: String!
-}
-
-"""Salesforce Lead Shares connection, for use in pagination."""
-type SalesforceLeadSharesConnection {
- """The count of all Lead Share you could get from the connection."""
- totalCount: Int!
-
- """Pagination Information"""
- pageInfo: PageInfo!
-
- """List of Salesforce Lead Shares"""
- nodes: [SalesforceLeadShare!]!
-
- """List of Lead Share edges"""
- edges: [SalesforceLeadShareEdge!]!
-}
-
-"""
-A filter to be used against GroupMember object types. All fields are combined with a logical ‘and.’
-"""
-input SalesforceGroupMemberConnectionFilter {
- """Filter against custom fields."""
- customField: SalesforceCustomFieldFilter
-
- """Filter by the GroupMember's group relation."""
- group: SalesforceGroupConnectionFilter
-
- """Filter by the GroupMember's id field"""
- id: SalesforceIdFilter
-
- """Filter by the GroupMember's groupId field"""
- groupId: SalesforceIdFilter
-
- """Filter by the GroupMember's userOrGroupId field"""
- userOrGroupId: SalesforceIdFilter
-
- """Filter by the GroupMember's systemModstamp field"""
- systemModstamp: SalesforceDateTimeFilter
-
- """Checks for any expressions in this list."""
- or: [SalesforceGroupMemberConnectionFilter!]
-
- """Checks for all expressions in this list."""
- and: [SalesforceGroupMemberConnectionFilter!]
-}
-
-"""Field that Group Members can be sorted by"""
-enum SalesforceGroupMemberSortByFieldEnum {
- ID
- GROUP_ID
- USER_OR_GROUP_ID
- SYSTEM_MODSTAMP
-}
-
-"""An edge in a connection."""
-type SalesforceGroupMemberEdge {
- """The item at the end of the edge."""
- node: SalesforceGroupMember!
-
- """A cursor for use in pagination"""
- cursor: String!
-}
-
-"""Salesforce Group Members connection, for use in pagination."""
-type SalesforceGroupMembersConnection {
- """The count of all Group Member you could get from the connection."""
- totalCount: Int!
-
- """Pagination Information"""
- pageInfo: PageInfo!
-
- """List of Salesforce Group Members"""
- nodes: [SalesforceGroupMember!]!
-
- """List of Group Member edges"""
- edges: [SalesforceGroupMemberEdge!]!
-}
-
-"""
-A filter to be used against ForecastShare object types. All fields are combined with a logical ‘and.’
-"""
-input SalesforceForecastShareConnectionFilter {
- """Filter against custom fields."""
- customField: SalesforceCustomFieldFilter
-
- """Filter by the ForecastShare's lastModifiedBy relation."""
- lastModifiedBy: SalesforceUserConnectionFilter
-
- """Filter by the ForecastShare's userRole relation."""
- userRole: SalesforceUserRoleConnectionFilter
-
- """Filter by the ForecastShare's id field"""
- id: SalesforceIdFilter
-
- """Filter by the ForecastShare's userRoleId field"""
- userRoleId: SalesforceIdFilter
-
- """Filter by the ForecastShare's userOrGroupId field"""
- userOrGroupId: SalesforceIdFilter
-
- """Filter by the ForecastShare's accessLevel field"""
- accessLevel: SalesforceStringFilter
-
- """Filter by the ForecastShare's canSubmit field"""
- canSubmit: SalesforceBooleanFilter
-
- """Filter by the ForecastShare's rowCause field"""
- rowCause: SalesforceStringFilter
-
- """Filter by the ForecastShare's lastModifiedDate field"""
- lastModifiedDate: SalesforceDateTimeFilter
-
- """Filter by the ForecastShare's lastModifiedById field"""
- lastModifiedById: SalesforceIdFilter
-
- """Checks for any expressions in this list."""
- or: [SalesforceForecastShareConnectionFilter!]
-
- """Checks for all expressions in this list."""
- and: [SalesforceForecastShareConnectionFilter!]
-}
-
-"""Field that Forecast Shares can be sorted by"""
-enum SalesforceForecastShareSortByFieldEnum {
- ID
- USER_ROLE_ID
- USER_OR_GROUP_ID
- ACCESS_LEVEL
- CAN_SUBMIT
- ROW_CAUSE
- LAST_MODIFIED_DATE
- LAST_MODIFIED_BY_ID
-}
-
-"""
-A filter to be used against FlowInterviewShare object types. All fields are combined with a logical ‘and.’
-"""
-input SalesforceFlowInterviewShareConnectionFilter {
- """Filter against custom fields."""
- customField: SalesforceCustomFieldFilter
-
- """Filter by the FlowInterviewShare's lastModifiedBy relation."""
- lastModifiedBy: SalesforceUserConnectionFilter
-
- """Filter by the FlowInterviewShare's parent relation."""
- parent: SalesforceFlowInterviewConnectionFilter
-
- """Filter by the FlowInterviewShare's id field"""
- id: SalesforceIdFilter
-
- """Filter by the FlowInterviewShare's parentId field"""
- parentId: SalesforceIdFilter
-
- """Filter by the FlowInterviewShare's userOrGroupId field"""
- userOrGroupId: SalesforceIdFilter
-
- """Filter by the FlowInterviewShare's accessLevel field"""
- accessLevel: SalesforceStringFilter
-
- """Filter by the FlowInterviewShare's rowCause field"""
- rowCause: SalesforceStringFilter
-
- """Filter by the FlowInterviewShare's lastModifiedDate field"""
- lastModifiedDate: SalesforceDateTimeFilter
-
- """Filter by the FlowInterviewShare's lastModifiedById field"""
- lastModifiedById: SalesforceIdFilter
-
- """Filter by the FlowInterviewShare's isDeleted field"""
- isDeleted: SalesforceBooleanFilter
-
- """Checks for any expressions in this list."""
- or: [SalesforceFlowInterviewShareConnectionFilter!]
-
- """Checks for all expressions in this list."""
- and: [SalesforceFlowInterviewShareConnectionFilter!]
-}
-
-"""Field that Flow Interview Shares can be sorted by"""
-enum SalesforceFlowInterviewShareSortByFieldEnum {
- ID
- PARENT_ID
- USER_OR_GROUP_ID
- ACCESS_LEVEL
- ROW_CAUSE
- LAST_MODIFIED_DATE
- LAST_MODIFIED_BY_ID
- IS_DELETED
-}
-
-"""An edge in a connection."""
-type SalesforceFlowInterviewShareEdge {
- """The item at the end of the edge."""
- node: SalesforceFlowInterviewShare!
-
- """A cursor for use in pagination"""
- cursor: String!
-}
-
-"""Salesforce Flow Interview Shares connection, for use in pagination."""
-type SalesforceFlowInterviewSharesConnection {
- """
- The count of all Flow Interview Share you could get from the connection.
- """
- totalCount: Int!
-
- """Pagination Information"""
- pageInfo: PageInfo!
-
- """List of Salesforce Flow Interview Shares"""
- nodes: [SalesforceFlowInterviewShare!]!
-
- """List of Flow Interview Share edges"""
- edges: [SalesforceFlowInterviewShareEdge!]!
-}
-
-"""
-A filter to be used against ContactShare object types. All fields are combined with a logical ‘and.’
-"""
-input SalesforceContactShareConnectionFilter {
- """Filter against custom fields."""
- customField: SalesforceCustomFieldFilter
-
- """Filter by the ContactShare's lastModifiedBy relation."""
- lastModifiedBy: SalesforceUserConnectionFilter
-
- """Filter by the ContactShare's contact relation."""
- contact: SalesforceContactConnectionFilter
-
- """Filter by the ContactShare's id field"""
- id: SalesforceIdFilter
-
- """Filter by the ContactShare's contactId field"""
- contactId: SalesforceIdFilter
-
- """Filter by the ContactShare's userOrGroupId field"""
- userOrGroupId: SalesforceIdFilter
-
- """Filter by the ContactShare's contactAccessLevel field"""
- contactAccessLevel: SalesforceStringFilter
-
- """Filter by the ContactShare's rowCause field"""
- rowCause: SalesforceStringFilter
-
- """Filter by the ContactShare's lastModifiedDate field"""
- lastModifiedDate: SalesforceDateTimeFilter
-
- """Filter by the ContactShare's lastModifiedById field"""
- lastModifiedById: SalesforceIdFilter
-
- """Filter by the ContactShare's isDeleted field"""
- isDeleted: SalesforceBooleanFilter
-
- """Checks for any expressions in this list."""
- or: [SalesforceContactShareConnectionFilter!]
-
- """Checks for all expressions in this list."""
- and: [SalesforceContactShareConnectionFilter!]
-}
-
-"""Field that Contact Shares can be sorted by"""
-enum SalesforceContactShareSortByFieldEnum {
- ID
- CONTACT_ID
- USER_OR_GROUP_ID
- CONTACT_ACCESS_LEVEL
- ROW_CAUSE
- LAST_MODIFIED_DATE
- LAST_MODIFIED_BY_ID
- IS_DELETED
-}
-
-"""An edge in a connection."""
-type SalesforceContactShareEdge {
- """The item at the end of the edge."""
- node: SalesforceContactShare!
-
- """A cursor for use in pagination"""
- cursor: String!
-}
-
-"""Salesforce Contact Shares connection, for use in pagination."""
-type SalesforceContactSharesConnection {
- """The count of all Contact Share you could get from the connection."""
- totalCount: Int!
-
- """Pagination Information"""
- pageInfo: PageInfo!
-
- """List of Salesforce Contact Shares"""
- nodes: [SalesforceContactShare!]!
-
- """List of Contact Share edges"""
- edges: [SalesforceContactShareEdge!]!
-}
-
-"""
-A filter to be used against CaseShare object types. All fields are combined with a logical ‘and.’
-"""
-input SalesforceCaseShareConnectionFilter {
- """Filter against custom fields."""
- customField: SalesforceCustomFieldFilter
-
- """Filter by the CaseShare's lastModifiedBy relation."""
- lastModifiedBy: SalesforceUserConnectionFilter
-
- """Filter by the CaseShare's case relation."""
- case: SalesforceCaseConnectionFilter
-
- """Filter by the CaseShare's id field"""
- id: SalesforceIdFilter
-
- """Filter by the CaseShare's caseId field"""
- caseId: SalesforceIdFilter
-
- """Filter by the CaseShare's userOrGroupId field"""
- userOrGroupId: SalesforceIdFilter
-
- """Filter by the CaseShare's caseAccessLevel field"""
- caseAccessLevel: SalesforceStringFilter
-
- """Filter by the CaseShare's rowCause field"""
- rowCause: SalesforceStringFilter
-
- """Filter by the CaseShare's lastModifiedDate field"""
- lastModifiedDate: SalesforceDateTimeFilter
-
- """Filter by the CaseShare's lastModifiedById field"""
- lastModifiedById: SalesforceIdFilter
-
- """Filter by the CaseShare's isDeleted field"""
- isDeleted: SalesforceBooleanFilter
-
- """Checks for any expressions in this list."""
- or: [SalesforceCaseShareConnectionFilter!]
-
- """Checks for all expressions in this list."""
- and: [SalesforceCaseShareConnectionFilter!]
-}
-
-"""Field that Case Shares can be sorted by"""
-enum SalesforceCaseShareSortByFieldEnum {
- ID
- CASE_ID
- USER_OR_GROUP_ID
- CASE_ACCESS_LEVEL
- ROW_CAUSE
- LAST_MODIFIED_DATE
- LAST_MODIFIED_BY_ID
- IS_DELETED
-}
-
-"""An edge in a connection."""
-type SalesforceCaseShareEdge {
- """The item at the end of the edge."""
- node: SalesforceCaseShare!
-
- """A cursor for use in pagination"""
- cursor: String!
-}
-
-"""Salesforce Case Shares connection, for use in pagination."""
-type SalesforceCaseSharesConnection {
- """The count of all Case Share you could get from the connection."""
- totalCount: Int!
-
- """Pagination Information"""
- pageInfo: PageInfo!
-
- """List of Salesforce Case Shares"""
- nodes: [SalesforceCaseShare!]!
-
- """List of Case Share edges"""
- edges: [SalesforceCaseShareEdge!]!
-}
-
-"""
-A filter to be used against AccountShare object types. All fields are combined with a logical ‘and.’
-"""
-input SalesforceAccountShareConnectionFilter {
- """Filter against custom fields."""
- customField: SalesforceCustomFieldFilter
-
- """Filter by the AccountShare's lastModifiedBy relation."""
- lastModifiedBy: SalesforceUserConnectionFilter
-
- """Filter by the AccountShare's account relation."""
- account: SalesforceAccountConnectionFilter
-
- """Filter by the AccountShare's id field"""
- id: SalesforceIdFilter
-
- """Filter by the AccountShare's accountId field"""
- accountId: SalesforceIdFilter
-
- """Filter by the AccountShare's userOrGroupId field"""
- userOrGroupId: SalesforceIdFilter
-
- """Filter by the AccountShare's accountAccessLevel field"""
- accountAccessLevel: SalesforceStringFilter
-
- """Filter by the AccountShare's opportunityAccessLevel field"""
- opportunityAccessLevel: SalesforceStringFilter
-
- """Filter by the AccountShare's caseAccessLevel field"""
- caseAccessLevel: SalesforceStringFilter
-
- """Filter by the AccountShare's contactAccessLevel field"""
- contactAccessLevel: SalesforceStringFilter
-
- """Filter by the AccountShare's rowCause field"""
- rowCause: SalesforceStringFilter
-
- """Filter by the AccountShare's lastModifiedDate field"""
- lastModifiedDate: SalesforceDateTimeFilter
-
- """Filter by the AccountShare's lastModifiedById field"""
- lastModifiedById: SalesforceIdFilter
-
- """Filter by the AccountShare's isDeleted field"""
- isDeleted: SalesforceBooleanFilter
-
- """Checks for any expressions in this list."""
- or: [SalesforceAccountShareConnectionFilter!]
-
- """Checks for all expressions in this list."""
- and: [SalesforceAccountShareConnectionFilter!]
-}
-
-"""Field that Account Shares can be sorted by"""
-enum SalesforceAccountShareSortByFieldEnum {
- ID
- ACCOUNT_ID
- USER_OR_GROUP_ID
- ACCOUNT_ACCESS_LEVEL
- OPPORTUNITY_ACCESS_LEVEL
- CASE_ACCESS_LEVEL
- CONTACT_ACCESS_LEVEL
- ROW_CAUSE
- LAST_MODIFIED_DATE
- LAST_MODIFIED_BY_ID
- IS_DELETED
-}
-
-"""An edge in a connection."""
-type SalesforceAccountShareEdge {
- """The item at the end of the edge."""
- node: SalesforceAccountShare!
-
- """A cursor for use in pagination"""
- cursor: String!
-}
-
-"""Salesforce Account Shares connection, for use in pagination."""
-type SalesforceAccountSharesConnection {
- """The count of all Account Share you could get from the connection."""
- totalCount: Int!
-
- """Pagination Information"""
- pageInfo: PageInfo!
-
- """List of Salesforce Account Shares"""
- nodes: [SalesforceAccountShare!]!
-
- """List of Account Share edges"""
- edges: [SalesforceAccountShareEdge!]!
-}
-
-"""Field that Stamps can be sorted by"""
-enum SalesforceStampSortByFieldEnum {
- ID
- IS_DELETED
- PARENT_ID
- MASTER_LABEL
- CREATED_DATE
- CREATED_BY_ID
- LAST_MODIFIED_DATE
- LAST_MODIFIED_BY_ID
- SYSTEM_MODSTAMP
- DESCRIPTION
-}
-
-"""An edge in a connection."""
-type SalesforceStampEdge {
- """The item at the end of the edge."""
- node: SalesforceStamp!
-
- """A cursor for use in pagination"""
- cursor: String!
-}
-
-"""Salesforce Stamps connection, for use in pagination."""
-type SalesforceStampsConnection {
- """The count of all Stamp you could get from the connection."""
- totalCount: Int!
-
- """Pagination Information"""
- pageInfo: PageInfo!
-
- """List of Salesforce Stamps"""
- nodes: [SalesforceStamp!]!
-
- """List of Stamp edges"""
- edges: [SalesforceStampEdge!]!
-}
-
-"""
-A filter to be used against Group object types. All fields are combined with a logical ‘and.’
-"""
-input SalesforceGroupConnectionFilter {
- """Filter against custom fields."""
- customField: SalesforceCustomFieldFilter
-
- """Filter by the Group's lastModifiedBy relation."""
- lastModifiedBy: SalesforceUserConnectionFilter
-
- """Filter by the Group's createdBy relation."""
- createdBy: SalesforceUserConnectionFilter
-
- """Filter by the Group's id field"""
- id: SalesforceIdFilter
-
- """Filter by the Group's name field"""
- name: SalesforceStringFilter
-
- """Filter by the Group's developerName field"""
- developerName: SalesforceStringFilter
-
- """Filter by the Group's relatedId field"""
- relatedId: SalesforceIdFilter
-
- """Filter by the Group's type field"""
- type: SalesforceStringFilter
-
- """Filter by the Group's email field"""
- email: SalesforceStringFilter
-
- """Filter by the Group's ownerId field"""
- ownerId: SalesforceIdFilter
-
- """Filter by the Group's doesSendEmailToMembers field"""
- doesSendEmailToMembers: SalesforceBooleanFilter
-
- """Filter by the Group's doesIncludeBosses field"""
- doesIncludeBosses: SalesforceBooleanFilter
-
- """Filter by the Group's createdDate field"""
- createdDate: SalesforceDateTimeFilter
-
- """Filter by the Group's createdById field"""
- createdById: SalesforceIdFilter
-
- """Filter by the Group's lastModifiedDate field"""
- lastModifiedDate: SalesforceDateTimeFilter
-
- """Filter by the Group's lastModifiedById field"""
- lastModifiedById: SalesforceIdFilter
-
- """Filter by the Group's systemModstamp field"""
- systemModstamp: SalesforceDateTimeFilter
-
- """Checks for any expressions in this list."""
- or: [SalesforceGroupConnectionFilter!]
-
- """Checks for all expressions in this list."""
- and: [SalesforceGroupConnectionFilter!]
-}
-
-"""Field that Groups can be sorted by"""
-enum SalesforceGroupSortByFieldEnum {
- ID
- NAME
- DEVELOPER_NAME
- RELATED_ID
- TYPE
- EMAIL
- OWNER_ID
- DOES_SEND_EMAIL_TO_MEMBERS
- DOES_INCLUDE_BOSSES
- CREATED_DATE
- CREATED_BY_ID
- LAST_MODIFIED_DATE
- LAST_MODIFIED_BY_ID
- SYSTEM_MODSTAMP
-}
-
-"""An edge in a connection."""
-type SalesforceGroupEdge {
- """The item at the end of the edge."""
- node: SalesforceGroup!
-
- """A cursor for use in pagination"""
- cursor: String!
-}
-
-"""Salesforce Groups connection, for use in pagination."""
-type SalesforceGroupsConnection {
- """The count of all Group you could get from the connection."""
- totalCount: Int!
-
- """Pagination Information"""
- pageInfo: PageInfo!
-
- """List of Salesforce Groups"""
- nodes: [SalesforceGroup!]!
-
- """List of Group edges"""
- edges: [SalesforceGroupEdge!]!
-}
-
-"""An edge in a connection."""
-type SalesforceContentDocumentLinkEdge {
- """The item at the end of the edge."""
- node: SalesforceContentDocumentLink!
-
- """A cursor for use in pagination"""
- cursor: String!
-}
-
-"""
-A filter to be used against TopicUserEvent object types. All fields are combined with a logical ‘and.’
-"""
-input SalesforceTopicUserEventConnectionFilter {
- """Filter against custom fields."""
- customField: SalesforceCustomFieldFilter
-
- """Filter by the TopicUserEvent's topic relation."""
- topic: SalesforceTopicConnectionFilter
-
- """Filter by the TopicUserEvent's user relation."""
- user: SalesforceUserConnectionFilter
-
- """Filter by the TopicUserEvent's id field"""
- id: SalesforceIdFilter
-
- """Filter by the TopicUserEvent's userId field"""
- userId: SalesforceIdFilter
-
- """Filter by the TopicUserEvent's topicId field"""
- topicId: SalesforceIdFilter
-
- """Filter by the TopicUserEvent's actionEnum field"""
- actionEnum: SalesforceStringFilter
-
- """Filter by the TopicUserEvent's createdDate field"""
- createdDate: SalesforceDateTimeFilter
-
- """Checks for any expressions in this list."""
- or: [SalesforceTopicUserEventConnectionFilter!]
-
- """Checks for all expressions in this list."""
- and: [SalesforceTopicUserEventConnectionFilter!]
-}
-
-"""Field that Topic User Events can be sorted by"""
-enum SalesforceTopicUserEventSortByFieldEnum {
- ID
- USER_ID
- TOPIC_ID
- ACTION_ENUM
- CREATED_DATE
-}
-
-"""An edge in a connection."""
-type SalesforceTopicUserEventEdge {
- """The item at the end of the edge."""
- node: SalesforceTopicUserEvent!
-
- """A cursor for use in pagination"""
- cursor: String!
-}
-
-"""Salesforce Topic User Events connection, for use in pagination."""
-type SalesforceTopicUserEventsConnection {
- """The count of all Topic User Event you could get from the connection."""
- totalCount: Int!
-
- """Pagination Information"""
- pageInfo: PageInfo!
-
- """List of Salesforce Topic User Events"""
- nodes: [SalesforceTopicUserEvent!]!
-
- """List of Topic User Event edges"""
- edges: [SalesforceTopicUserEventEdge!]!
-}
-
-"""
-A filter to be used against KnowledgeableUser object types. All fields are combined with a logical ‘and.’
-"""
-input SalesforceKnowledgeableUserConnectionFilter {
- """Filter against custom fields."""
- customField: SalesforceCustomFieldFilter
-
- """Filter by the KnowledgeableUser's topic relation."""
- topic: SalesforceTopicConnectionFilter
-
- """Filter by the KnowledgeableUser's user relation."""
- user: SalesforceUserConnectionFilter
-
- """Filter by the KnowledgeableUser's id field"""
- id: SalesforceIdFilter
-
- """Filter by the KnowledgeableUser's userId field"""
- userId: SalesforceIdFilter
-
- """Filter by the KnowledgeableUser's topicId field"""
- topicId: SalesforceIdFilter
-
- """Filter by the KnowledgeableUser's rawRank field"""
- rawRank: SalesforceIntFilter
-
- """Filter by the KnowledgeableUser's systemModstamp field"""
- systemModstamp: SalesforceDateTimeFilter
-
- """Checks for any expressions in this list."""
- or: [SalesforceKnowledgeableUserConnectionFilter!]
-
- """Checks for all expressions in this list."""
- and: [SalesforceKnowledgeableUserConnectionFilter!]
-}
-
-"""Field that Knowledgeable Users can be sorted by"""
-enum SalesforceKnowledgeableUserSortByFieldEnum {
- ID
- USER_ID
- TOPIC_ID
- RAW_RANK
- SYSTEM_MODSTAMP
-}
-
-"""An edge in a connection."""
-type SalesforceKnowledgeableUserEdge {
- """The item at the end of the edge."""
- node: SalesforceKnowledgeableUser!
-
- """A cursor for use in pagination"""
- cursor: String!
-}
-
-"""Salesforce Knowledgeable Users connection, for use in pagination."""
-type SalesforceKnowledgeableUsersConnection {
- """The count of all Knowledgeable User you could get from the connection."""
- totalCount: Int!
-
- """Pagination Information"""
- pageInfo: PageInfo!
-
- """List of Salesforce Knowledgeable Users"""
- nodes: [SalesforceKnowledgeableUser!]!
-
- """List of Knowledgeable User edges"""
- edges: [SalesforceKnowledgeableUserEdge!]!
-}
-
-"""An edge in a connection."""
-type SalesforceContentVersionEdge {
- """The item at the end of the edge."""
- node: SalesforceContentVersion!
-
- """A cursor for use in pagination"""
- cursor: String!
-}
-
-"""
-A filter to be used against UserFeed object types. All fields are combined with a logical ‘and.’
-"""
-input SalesforceUserFeedConnectionFilter {
- """Filter against custom fields."""
- customField: SalesforceCustomFieldFilter
-
- """Filter by the UserFeed's insertedBy relation."""
- insertedBy: SalesforceUserConnectionFilter
-
- """Filter by the UserFeed's relatedRecord relation."""
- relatedRecord: SalesforceContentVersionConnectionFilter
-
- """Filter by the UserFeed's createdBy relation."""
- createdBy: SalesforceUserConnectionFilter
-
- """Filter by the UserFeed's parent relation."""
- parent: SalesforceUserConnectionFilter
-
- """Filter by the UserFeed's id field"""
- id: SalesforceIdFilter
-
- """Filter by the UserFeed's parentId field"""
- parentId: SalesforceIdFilter
-
- """Filter by the UserFeed's type field"""
- type: SalesforceStringFilter
-
- """Filter by the UserFeed's createdById field"""
- createdById: SalesforceIdFilter
-
- """Filter by the UserFeed's createdDate field"""
- createdDate: SalesforceDateTimeFilter
-
- """Filter by the UserFeed's isDeleted field"""
- isDeleted: SalesforceBooleanFilter
-
- """Filter by the UserFeed's lastModifiedDate field"""
- lastModifiedDate: SalesforceDateTimeFilter
-
- """Filter by the UserFeed's systemModstamp field"""
- systemModstamp: SalesforceDateTimeFilter
-
- """Filter by the UserFeed's commentCount field"""
- commentCount: SalesforceIntFilter
-
- """Filter by the UserFeed's likeCount field"""
- likeCount: SalesforceIntFilter
-
- """Filter by the UserFeed's isRichText field"""
- isRichText: SalesforceBooleanFilter
-
- """Checks for any expressions in this list."""
- or: [SalesforceUserFeedConnectionFilter!]
-
- """Checks for all expressions in this list."""
- and: [SalesforceUserFeedConnectionFilter!]
-}
-
-"""Field that User Feeds can be sorted by"""
-enum SalesforceUserFeedSortByFieldEnum {
- ID
- PARENT_ID
- TYPE
- CREATED_BY_ID
- CREATED_DATE
- IS_DELETED
- LAST_MODIFIED_DATE
- SYSTEM_MODSTAMP
- COMMENT_COUNT
- LIKE_COUNT
- TITLE
- BODY
- LINK_URL
- IS_RICH_TEXT
- RELATED_RECORD_ID
- INSERTED_BY_ID
-}
-
-"""An edge in a connection."""
-type SalesforceUserFeedEdge {
- """The item at the end of the edge."""
- node: SalesforceUserFeed!
-
- """A cursor for use in pagination"""
- cursor: String!
-}
-
-"""Salesforce User Feeds connection, for use in pagination."""
-type SalesforceUserFeedsConnection {
- """The count of all User Feed you could get from the connection."""
- totalCount: Int!
-
- """Pagination Information"""
- pageInfo: PageInfo!
-
- """List of Salesforce User Feeds"""
- nodes: [SalesforceUserFeed!]!
-
- """List of User Feed edges"""
- edges: [SalesforceUserFeedEdge!]!
-}
-
-"""
-A filter to be used against TopicFeed object types. All fields are combined with a logical ‘and.’
-"""
-input SalesforceTopicFeedConnectionFilter {
- """Filter against custom fields."""
- customField: SalesforceCustomFieldFilter
-
- """Filter by the TopicFeed's insertedBy relation."""
- insertedBy: SalesforceUserConnectionFilter
-
- """Filter by the TopicFeed's relatedRecord relation."""
- relatedRecord: SalesforceContentVersionConnectionFilter
-
- """Filter by the TopicFeed's createdBy relation."""
- createdBy: SalesforceUserConnectionFilter
-
- """Filter by the TopicFeed's parent relation."""
- parent: SalesforceTopicConnectionFilter
-
- """Filter by the TopicFeed's id field"""
- id: SalesforceIdFilter
-
- """Filter by the TopicFeed's parentId field"""
- parentId: SalesforceIdFilter
-
- """Filter by the TopicFeed's type field"""
- type: SalesforceStringFilter
-
- """Filter by the TopicFeed's createdById field"""
- createdById: SalesforceIdFilter
-
- """Filter by the TopicFeed's createdDate field"""
- createdDate: SalesforceDateTimeFilter
-
- """Filter by the TopicFeed's isDeleted field"""
- isDeleted: SalesforceBooleanFilter
-
- """Filter by the TopicFeed's lastModifiedDate field"""
- lastModifiedDate: SalesforceDateTimeFilter
-
- """Filter by the TopicFeed's systemModstamp field"""
- systemModstamp: SalesforceDateTimeFilter
-
- """Filter by the TopicFeed's commentCount field"""
- commentCount: SalesforceIntFilter
-
- """Filter by the TopicFeed's likeCount field"""
- likeCount: SalesforceIntFilter
-
- """Filter by the TopicFeed's isRichText field"""
- isRichText: SalesforceBooleanFilter
-
- """Checks for any expressions in this list."""
- or: [SalesforceTopicFeedConnectionFilter!]
-
- """Checks for all expressions in this list."""
- and: [SalesforceTopicFeedConnectionFilter!]
-}
-
-"""Field that Topic Feeds can be sorted by"""
-enum SalesforceTopicFeedSortByFieldEnum {
- ID
- PARENT_ID
- TYPE
- CREATED_BY_ID
- CREATED_DATE
- IS_DELETED
- LAST_MODIFIED_DATE
- SYSTEM_MODSTAMP
- COMMENT_COUNT
- LIKE_COUNT
- TITLE
- BODY
- LINK_URL
- IS_RICH_TEXT
- RELATED_RECORD_ID
- INSERTED_BY_ID
-}
-
-"""An edge in a connection."""
-type SalesforceTopicFeedEdge {
- """The item at the end of the edge."""
- node: SalesforceTopicFeed!
-
- """A cursor for use in pagination"""
- cursor: String!
-}
-
-"""Salesforce Topic Feeds connection, for use in pagination."""
-type SalesforceTopicFeedsConnection {
- """The count of all Topic Feed you could get from the connection."""
- totalCount: Int!
-
- """Pagination Information"""
- pageInfo: PageInfo!
-
- """List of Salesforce Topic Feeds"""
- nodes: [SalesforceTopicFeed!]!
-
- """List of Topic Feed edges"""
- edges: [SalesforceTopicFeedEdge!]!
-}
-
-"""
-A filter to be used against LeadFeed object types. All fields are combined with a logical ‘and.’
-"""
-input SalesforceLeadFeedConnectionFilter {
- """Filter against custom fields."""
- customField: SalesforceCustomFieldFilter
-
- """Filter by the LeadFeed's insertedBy relation."""
- insertedBy: SalesforceUserConnectionFilter
-
- """Filter by the LeadFeed's relatedRecord relation."""
- relatedRecord: SalesforceContentVersionConnectionFilter
-
- """Filter by the LeadFeed's createdBy relation."""
- createdBy: SalesforceUserConnectionFilter
-
- """Filter by the LeadFeed's parent relation."""
- parent: SalesforceLeadConnectionFilter
-
- """Filter by the LeadFeed's id field"""
- id: SalesforceIdFilter
-
- """Filter by the LeadFeed's parentId field"""
- parentId: SalesforceIdFilter
-
- """Filter by the LeadFeed's type field"""
- type: SalesforceStringFilter
-
- """Filter by the LeadFeed's createdById field"""
- createdById: SalesforceIdFilter
-
- """Filter by the LeadFeed's createdDate field"""
- createdDate: SalesforceDateTimeFilter
-
- """Filter by the LeadFeed's isDeleted field"""
- isDeleted: SalesforceBooleanFilter
-
- """Filter by the LeadFeed's lastModifiedDate field"""
- lastModifiedDate: SalesforceDateTimeFilter
-
- """Filter by the LeadFeed's systemModstamp field"""
- systemModstamp: SalesforceDateTimeFilter
-
- """Filter by the LeadFeed's commentCount field"""
- commentCount: SalesforceIntFilter
-
- """Filter by the LeadFeed's likeCount field"""
- likeCount: SalesforceIntFilter
-
- """Filter by the LeadFeed's isRichText field"""
- isRichText: SalesforceBooleanFilter
-
- """Checks for any expressions in this list."""
- or: [SalesforceLeadFeedConnectionFilter!]
-
- """Checks for all expressions in this list."""
- and: [SalesforceLeadFeedConnectionFilter!]
-}
-
-"""Field that Lead Feeds can be sorted by"""
-enum SalesforceLeadFeedSortByFieldEnum {
- ID
- PARENT_ID
- TYPE
- CREATED_BY_ID
- CREATED_DATE
- IS_DELETED
- LAST_MODIFIED_DATE
- SYSTEM_MODSTAMP
- COMMENT_COUNT
- LIKE_COUNT
- TITLE
- BODY
- LINK_URL
- IS_RICH_TEXT
- RELATED_RECORD_ID
- INSERTED_BY_ID
-}
-
-"""An edge in a connection."""
-type SalesforceLeadFeedEdge {
- """The item at the end of the edge."""
- node: SalesforceLeadFeed!
-
- """A cursor for use in pagination"""
- cursor: String!
-}
-
-"""Salesforce Lead Feeds connection, for use in pagination."""
-type SalesforceLeadFeedsConnection {
- """The count of all Lead Feed you could get from the connection."""
- totalCount: Int!
-
- """Pagination Information"""
- pageInfo: PageInfo!
-
- """List of Salesforce Lead Feeds"""
- nodes: [SalesforceLeadFeed!]!
-
- """List of Lead Feed edges"""
- edges: [SalesforceLeadFeedEdge!]!
-}
-
-"""
-A filter to be used against ContentVersionRating object types. All fields are combined with a logical ‘and.’
-"""
-input SalesforceContentVersionRatingConnectionFilter {
- """Filter against custom fields."""
- customField: SalesforceCustomFieldFilter
-
- """Filter by the ContentVersionRating's contentVersion relation."""
- contentVersion: SalesforceContentVersionConnectionFilter
-
- """Filter by the ContentVersionRating's user relation."""
- user: SalesforceUserConnectionFilter
-
- """Filter by the ContentVersionRating's id field"""
- id: SalesforceIdFilter
-
- """Filter by the ContentVersionRating's userId field"""
- userId: SalesforceIdFilter
-
- """Filter by the ContentVersionRating's contentVersionId field"""
- contentVersionId: SalesforceIdFilter
-
- """Filter by the ContentVersionRating's rating field"""
- rating: SalesforceIntFilter
-
- """Filter by the ContentVersionRating's userComment field"""
- userComment: SalesforceStringFilter
-
- """Filter by the ContentVersionRating's lastModifiedDate field"""
- lastModifiedDate: SalesforceDateTimeFilter
-
- """Checks for any expressions in this list."""
- or: [SalesforceContentVersionRatingConnectionFilter!]
-
- """Checks for all expressions in this list."""
- and: [SalesforceContentVersionRatingConnectionFilter!]
-}
-
-"""Field that Content Version Ratings can be sorted by"""
-enum SalesforceContentVersionRatingSortByFieldEnum {
- ID
- USER_ID
- CONTENT_VERSION_ID
- RATING
- USER_COMMENT
- LAST_MODIFIED_DATE
-}
-
-"""An edge in a connection."""
-type SalesforceContentVersionRatingEdge {
- """The item at the end of the edge."""
- node: SalesforceContentVersionRating!
-
- """A cursor for use in pagination"""
- cursor: String!
-}
-
-"""Salesforce Content Version Ratings connection, for use in pagination."""
-type SalesforceContentVersionRatingsConnection {
- """
- The count of all Content Version Rating you could get from the connection.
- """
- totalCount: Int!
-
- """Pagination Information"""
- pageInfo: PageInfo!
-
- """List of Salesforce Content Version Ratings"""
- nodes: [SalesforceContentVersionRating!]!
-
- """List of Content Version Rating edges"""
- edges: [SalesforceContentVersionRatingEdge!]!
-}
-
-"""
-A filter to be used against ContentVersionHistory object types. All fields are combined with a logical ‘and.’
-"""
-input SalesforceContentVersionHistoryConnectionFilter {
- """Filter against custom fields."""
- customField: SalesforceCustomFieldFilter
-
- """Filter by the ContentVersionHistory's createdBy relation."""
- createdBy: SalesforceUserConnectionFilter
-
- """Filter by the ContentVersionHistory's contentVersion relation."""
- contentVersion: SalesforceContentVersionConnectionFilter
-
- """Filter by the ContentVersionHistory's id field"""
- id: SalesforceIdFilter
-
- """Filter by the ContentVersionHistory's isDeleted field"""
- isDeleted: SalesforceBooleanFilter
-
- """Filter by the ContentVersionHistory's contentVersionId field"""
- contentVersionId: SalesforceIdFilter
-
- """Filter by the ContentVersionHistory's createdById field"""
- createdById: SalesforceIdFilter
-
- """Filter by the ContentVersionHistory's createdDate field"""
- createdDate: SalesforceDateTimeFilter
-
- """Filter by the ContentVersionHistory's field field"""
- field: SalesforceStringFilter
-
- """Checks for any expressions in this list."""
- or: [SalesforceContentVersionHistoryConnectionFilter!]
-
- """Checks for all expressions in this list."""
- and: [SalesforceContentVersionHistoryConnectionFilter!]
-}
-
-"""Field that Content Version Histories can be sorted by"""
-enum SalesforceContentVersionHistorySortByFieldEnum {
- ID
- IS_DELETED
- CONTENT_VERSION_ID
- CREATED_BY_ID
- CREATED_DATE
- FIELD
- OLD_VALUE
- NEW_VALUE
-}
-
-"""An edge in a connection."""
-type SalesforceContentVersionHistoryEdge {
- """The item at the end of the edge."""
- node: SalesforceContentVersionHistory!
-
- """A cursor for use in pagination"""
- cursor: String!
-}
-
-"""
-Salesforce Content Version Histories connection, for use in pagination.
-"""
-type SalesforceContentVersionHistorysConnection {
- """
- The count of all Content Version History you could get from the connection.
- """
- totalCount: Int!
-
- """Pagination Information"""
- pageInfo: PageInfo!
-
- """List of Salesforce Content Version Histories"""
- nodes: [SalesforceContentVersionHistory!]!
-
- """List of Content Version History edges"""
- edges: [SalesforceContentVersionHistoryEdge!]!
-}
-
-"""
-A filter to be used against ContactFeed object types. All fields are combined with a logical ‘and.’
-"""
-input SalesforceContactFeedConnectionFilter {
- """Filter against custom fields."""
- customField: SalesforceCustomFieldFilter
-
- """Filter by the ContactFeed's insertedBy relation."""
- insertedBy: SalesforceUserConnectionFilter
-
- """Filter by the ContactFeed's relatedRecord relation."""
- relatedRecord: SalesforceContentVersionConnectionFilter
-
- """Filter by the ContactFeed's createdBy relation."""
- createdBy: SalesforceUserConnectionFilter
-
- """Filter by the ContactFeed's parent relation."""
- parent: SalesforceContactConnectionFilter
-
- """Filter by the ContactFeed's id field"""
- id: SalesforceIdFilter
-
- """Filter by the ContactFeed's parentId field"""
- parentId: SalesforceIdFilter
-
- """Filter by the ContactFeed's type field"""
- type: SalesforceStringFilter
-
- """Filter by the ContactFeed's createdById field"""
- createdById: SalesforceIdFilter
-
- """Filter by the ContactFeed's createdDate field"""
- createdDate: SalesforceDateTimeFilter
-
- """Filter by the ContactFeed's isDeleted field"""
- isDeleted: SalesforceBooleanFilter
-
- """Filter by the ContactFeed's lastModifiedDate field"""
- lastModifiedDate: SalesforceDateTimeFilter
-
- """Filter by the ContactFeed's systemModstamp field"""
- systemModstamp: SalesforceDateTimeFilter
-
- """Filter by the ContactFeed's commentCount field"""
- commentCount: SalesforceIntFilter
-
- """Filter by the ContactFeed's likeCount field"""
- likeCount: SalesforceIntFilter
-
- """Filter by the ContactFeed's isRichText field"""
- isRichText: SalesforceBooleanFilter
-
- """Checks for any expressions in this list."""
- or: [SalesforceContactFeedConnectionFilter!]
-
- """Checks for all expressions in this list."""
- and: [SalesforceContactFeedConnectionFilter!]
-}
-
-"""Field that Contact Feeds can be sorted by"""
-enum SalesforceContactFeedSortByFieldEnum {
- ID
- PARENT_ID
- TYPE
- CREATED_BY_ID
- CREATED_DATE
- IS_DELETED
- LAST_MODIFIED_DATE
- SYSTEM_MODSTAMP
- COMMENT_COUNT
- LIKE_COUNT
- TITLE
- BODY
- LINK_URL
- IS_RICH_TEXT
- RELATED_RECORD_ID
- INSERTED_BY_ID
-}
-
-"""An edge in a connection."""
-type SalesforceContactFeedEdge {
- """The item at the end of the edge."""
- node: SalesforceContactFeed!
-
- """A cursor for use in pagination"""
- cursor: String!
-}
-
-"""Salesforce Contact Feeds connection, for use in pagination."""
-type SalesforceContactFeedsConnection {
- """The count of all Contact Feed you could get from the connection."""
- totalCount: Int!
-
- """Pagination Information"""
- pageInfo: PageInfo!
-
- """List of Salesforce Contact Feeds"""
- nodes: [SalesforceContactFeed!]!
-
- """List of Contact Feed edges"""
- edges: [SalesforceContactFeedEdge!]!
-}
-
-"""
-A filter to be used against CaseFeed object types. All fields are combined with a logical ‘and.’
-"""
-input SalesforceCaseFeedConnectionFilter {
- """Filter against custom fields."""
- customField: SalesforceCustomFieldFilter
-
- """Filter by the CaseFeed's insertedBy relation."""
- insertedBy: SalesforceUserConnectionFilter
-
- """Filter by the CaseFeed's relatedRecord relation."""
- relatedRecord: SalesforceContentVersionConnectionFilter
-
- """Filter by the CaseFeed's createdBy relation."""
- createdBy: SalesforceUserConnectionFilter
-
- """Filter by the CaseFeed's parent relation."""
- parent: SalesforceCaseConnectionFilter
-
- """Filter by the CaseFeed's id field"""
- id: SalesforceIdFilter
-
- """Filter by the CaseFeed's parentId field"""
- parentId: SalesforceIdFilter
-
- """Filter by the CaseFeed's type field"""
- type: SalesforceStringFilter
-
- """Filter by the CaseFeed's createdById field"""
- createdById: SalesforceIdFilter
-
- """Filter by the CaseFeed's createdDate field"""
- createdDate: SalesforceDateTimeFilter
-
- """Filter by the CaseFeed's isDeleted field"""
- isDeleted: SalesforceBooleanFilter
-
- """Filter by the CaseFeed's lastModifiedDate field"""
- lastModifiedDate: SalesforceDateTimeFilter
-
- """Filter by the CaseFeed's systemModstamp field"""
- systemModstamp: SalesforceDateTimeFilter
-
- """Filter by the CaseFeed's commentCount field"""
- commentCount: SalesforceIntFilter
-
- """Filter by the CaseFeed's likeCount field"""
- likeCount: SalesforceIntFilter
-
- """Filter by the CaseFeed's isRichText field"""
- isRichText: SalesforceBooleanFilter
-
- """Checks for any expressions in this list."""
- or: [SalesforceCaseFeedConnectionFilter!]
-
- """Checks for all expressions in this list."""
- and: [SalesforceCaseFeedConnectionFilter!]
-}
-
-"""Field that Case Feeds can be sorted by"""
-enum SalesforceCaseFeedSortByFieldEnum {
- ID
- PARENT_ID
- TYPE
- CREATED_BY_ID
- CREATED_DATE
- IS_DELETED
- LAST_MODIFIED_DATE
- SYSTEM_MODSTAMP
- COMMENT_COUNT
- LIKE_COUNT
- TITLE
- BODY
- LINK_URL
- IS_RICH_TEXT
- RELATED_RECORD_ID
- INSERTED_BY_ID
-}
-
-"""An edge in a connection."""
-type SalesforceCaseFeedEdge {
- """The item at the end of the edge."""
- node: SalesforceCaseFeed!
-
- """A cursor for use in pagination"""
- cursor: String!
-}
-
-"""Salesforce Case Feeds connection, for use in pagination."""
-type SalesforceCaseFeedsConnection {
- """The count of all Case Feed you could get from the connection."""
- totalCount: Int!
-
- """Pagination Information"""
- pageInfo: PageInfo!
-
- """List of Salesforce Case Feeds"""
- nodes: [SalesforceCaseFeed!]!
-
- """List of Case Feed edges"""
- edges: [SalesforceCaseFeedEdge!]!
-}
-
-"""
-A filter to be used against AccountFeed object types. All fields are combined with a logical ‘and.’
-"""
-input SalesforceAccountFeedConnectionFilter {
- """Filter against custom fields."""
- customField: SalesforceCustomFieldFilter
-
- """Filter by the AccountFeed's insertedBy relation."""
- insertedBy: SalesforceUserConnectionFilter
-
- """Filter by the AccountFeed's relatedRecord relation."""
- relatedRecord: SalesforceContentVersionConnectionFilter
-
- """Filter by the AccountFeed's createdBy relation."""
- createdBy: SalesforceUserConnectionFilter
-
- """Filter by the AccountFeed's parent relation."""
- parent: SalesforceAccountConnectionFilter
-
- """Filter by the AccountFeed's id field"""
- id: SalesforceIdFilter
-
- """Filter by the AccountFeed's parentId field"""
- parentId: SalesforceIdFilter
-
- """Filter by the AccountFeed's type field"""
- type: SalesforceStringFilter
-
- """Filter by the AccountFeed's createdById field"""
- createdById: SalesforceIdFilter
-
- """Filter by the AccountFeed's createdDate field"""
- createdDate: SalesforceDateTimeFilter
-
- """Filter by the AccountFeed's isDeleted field"""
- isDeleted: SalesforceBooleanFilter
-
- """Filter by the AccountFeed's lastModifiedDate field"""
- lastModifiedDate: SalesforceDateTimeFilter
-
- """Filter by the AccountFeed's systemModstamp field"""
- systemModstamp: SalesforceDateTimeFilter
-
- """Filter by the AccountFeed's commentCount field"""
- commentCount: SalesforceIntFilter
-
- """Filter by the AccountFeed's likeCount field"""
- likeCount: SalesforceIntFilter
-
- """Filter by the AccountFeed's isRichText field"""
- isRichText: SalesforceBooleanFilter
-
- """Checks for any expressions in this list."""
- or: [SalesforceAccountFeedConnectionFilter!]
-
- """Checks for all expressions in this list."""
- and: [SalesforceAccountFeedConnectionFilter!]
-}
-
-"""Field that Account Feeds can be sorted by"""
-enum SalesforceAccountFeedSortByFieldEnum {
- ID
- PARENT_ID
- TYPE
- CREATED_BY_ID
- CREATED_DATE
- IS_DELETED
- LAST_MODIFIED_DATE
- SYSTEM_MODSTAMP
- COMMENT_COUNT
- LIKE_COUNT
- TITLE
- BODY
- LINK_URL
- IS_RICH_TEXT
- RELATED_RECORD_ID
- INSERTED_BY_ID
-}
-
-"""An edge in a connection."""
-type SalesforceAccountFeedEdge {
- """The item at the end of the edge."""
- node: SalesforceAccountFeed!
-
- """A cursor for use in pagination"""
- cursor: String!
-}
-
-"""Salesforce Account Feeds connection, for use in pagination."""
-type SalesforceAccountFeedsConnection {
- """The count of all Account Feed you could get from the connection."""
- totalCount: Int!
-
- """Pagination Information"""
- pageInfo: PageInfo!
-
- """List of Salesforce Account Feeds"""
- nodes: [SalesforceAccountFeed!]!
-
- """List of Account Feed edges"""
- edges: [SalesforceAccountFeedEdge!]!
-}
-
-"""Content Body"""
-type SalesforceContentBody {
- """Content Body ID"""
- id: String!
-
- """Collection of Salesforce ContentVersion"""
- contentVersions(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceContentVersionConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceContentVersionSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceContentVersionSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of ContentVersions to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceContentVersionsConnection
- customFields(
- """
- List of custom fields to return. By default, returns all custom fields.
- """
- fields: [String!]
- ): JSON!
-}
-
-"""
-A filter to be used against ContentVersionComment object types. All fields are combined with a logical ‘and.’
-"""
-input SalesforceContentVersionCommentConnectionFilter {
- """Filter against custom fields."""
- customField: SalesforceCustomFieldFilter
-
- """Filter by the ContentVersionComment's contentVersion relation."""
- contentVersion: SalesforceContentVersionConnectionFilter
-
- """Filter by the ContentVersionComment's contentDocument relation."""
- contentDocument: SalesforceContentDocumentConnectionFilter
-
- """Filter by the ContentVersionComment's id field"""
- id: SalesforceIdFilter
-
- """Filter by the ContentVersionComment's contentDocumentId field"""
- contentDocumentId: SalesforceIdFilter
-
- """Filter by the ContentVersionComment's contentVersionId field"""
- contentVersionId: SalesforceIdFilter
-
- """Filter by the ContentVersionComment's userComment field"""
- userComment: SalesforceStringFilter
-
- """Filter by the ContentVersionComment's createdDate field"""
- createdDate: SalesforceDateTimeFilter
-
- """Checks for any expressions in this list."""
- or: [SalesforceContentVersionCommentConnectionFilter!]
-
- """Checks for all expressions in this list."""
- and: [SalesforceContentVersionCommentConnectionFilter!]
-}
-
-"""Field that Content Version Comments can be sorted by"""
-enum SalesforceContentVersionCommentSortByFieldEnum {
- ID
- CONTENT_DOCUMENT_ID
- CONTENT_VERSION_ID
- USER_COMMENT
- CREATED_DATE
-}
-
-"""An edge in a connection."""
-type SalesforceContentVersionCommentEdge {
- """The item at the end of the edge."""
- node: SalesforceContentVersionComment!
-
- """A cursor for use in pagination"""
- cursor: String!
-}
-
-"""Salesforce Content Version Comments connection, for use in pagination."""
-type SalesforceContentVersionCommentsConnection {
- """
- The count of all Content Version Comment you could get from the connection.
- """
- totalCount: Int!
-
- """Pagination Information"""
- pageInfo: PageInfo!
-
- """List of Salesforce Content Version Comments"""
- nodes: [SalesforceContentVersionComment!]!
-
- """List of Content Version Comment edges"""
- edges: [SalesforceContentVersionCommentEdge!]!
-}
-
-"""
-A filter to be used against ContentDocumentSubscription object types. All fields are combined with a logical ‘and.’
-"""
-input SalesforceContentDocumentSubscriptionConnectionFilter {
- """Filter against custom fields."""
- customField: SalesforceCustomFieldFilter
-
- """Filter by the ContentDocumentSubscription's contentDocument relation."""
- contentDocument: SalesforceContentDocumentConnectionFilter
-
- """Filter by the ContentDocumentSubscription's user relation."""
- user: SalesforceUserConnectionFilter
-
- """Filter by the ContentDocumentSubscription's id field"""
- id: SalesforceIdFilter
-
- """Filter by the ContentDocumentSubscription's userId field"""
- userId: SalesforceIdFilter
-
- """Filter by the ContentDocumentSubscription's contentDocumentId field"""
- contentDocumentId: SalesforceIdFilter
-
- """Filter by the ContentDocumentSubscription's isCommentSub field"""
- isCommentSub: SalesforceBooleanFilter
-
- """Filter by the ContentDocumentSubscription's isDocumentSub field"""
- isDocumentSub: SalesforceBooleanFilter
-
- """Checks for any expressions in this list."""
- or: [SalesforceContentDocumentSubscriptionConnectionFilter!]
-
- """Checks for all expressions in this list."""
- and: [SalesforceContentDocumentSubscriptionConnectionFilter!]
-}
-
-"""Field that Content Document Subscriptions can be sorted by"""
-enum SalesforceContentDocumentSubscriptionSortByFieldEnum {
- ID
- USER_ID
- CONTENT_DOCUMENT_ID
- IS_COMMENT_SUB
- IS_DOCUMENT_SUB
-}
-
-"""An edge in a connection."""
-type SalesforceContentDocumentSubscriptionEdge {
- """The item at the end of the edge."""
- node: SalesforceContentDocumentSubscription!
-
- """A cursor for use in pagination"""
- cursor: String!
-}
-
-"""
-Salesforce Content Document Subscriptions connection, for use in pagination.
-"""
-type SalesforceContentDocumentSubscriptionsConnection {
- """
- The count of all Content Document Subscription you could get from the connection.
- """
- totalCount: Int!
-
- """Pagination Information"""
- pageInfo: PageInfo!
-
- """List of Salesforce Content Document Subscriptions"""
- nodes: [SalesforceContentDocumentSubscription!]!
-
- """List of Content Document Subscription edges"""
- edges: [SalesforceContentDocumentSubscriptionEdge!]!
-}
-
-"""
-A filter to be used against ContentDocumentHistory object types. All fields are combined with a logical ‘and.’
-"""
-input SalesforceContentDocumentHistoryConnectionFilter {
- """Filter against custom fields."""
- customField: SalesforceCustomFieldFilter
-
- """Filter by the ContentDocumentHistory's createdBy relation."""
- createdBy: SalesforceUserConnectionFilter
-
- """Filter by the ContentDocumentHistory's contentDocument relation."""
- contentDocument: SalesforceContentDocumentConnectionFilter
-
- """Filter by the ContentDocumentHistory's id field"""
- id: SalesforceIdFilter
-
- """Filter by the ContentDocumentHistory's isDeleted field"""
- isDeleted: SalesforceBooleanFilter
-
- """Filter by the ContentDocumentHistory's contentDocumentId field"""
- contentDocumentId: SalesforceIdFilter
-
- """Filter by the ContentDocumentHistory's createdById field"""
- createdById: SalesforceIdFilter
-
- """Filter by the ContentDocumentHistory's createdDate field"""
- createdDate: SalesforceDateTimeFilter
-
- """Filter by the ContentDocumentHistory's field field"""
- field: SalesforceStringFilter
-
- """Checks for any expressions in this list."""
- or: [SalesforceContentDocumentHistoryConnectionFilter!]
-
- """Checks for all expressions in this list."""
- and: [SalesforceContentDocumentHistoryConnectionFilter!]
-}
-
-"""Field that Content Document Histories can be sorted by"""
-enum SalesforceContentDocumentHistorySortByFieldEnum {
- ID
- IS_DELETED
- CONTENT_DOCUMENT_ID
- CREATED_BY_ID
- CREATED_DATE
- FIELD
- OLD_VALUE
- NEW_VALUE
-}
-
-"""An edge in a connection."""
-type SalesforceContentDocumentHistoryEdge {
- """The item at the end of the edge."""
- node: SalesforceContentDocumentHistory!
-
- """A cursor for use in pagination"""
- cursor: String!
-}
-
-"""
-Salesforce Content Document Histories connection, for use in pagination.
-"""
-type SalesforceContentDocumentHistorysConnection {
- """
- The count of all Content Document History you could get from the connection.
- """
- totalCount: Int!
-
- """Pagination Information"""
- pageInfo: PageInfo!
-
- """List of Salesforce Content Document Histories"""
- nodes: [SalesforceContentDocumentHistory!]!
-
- """List of Content Document History edges"""
- edges: [SalesforceContentDocumentHistoryEdge!]!
-}
-
-"""
-A filter to be used against ContentDocumentFeed object types. All fields are combined with a logical ‘and.’
-"""
-input SalesforceContentDocumentFeedConnectionFilter {
- """Filter against custom fields."""
- customField: SalesforceCustomFieldFilter
-
- """Filter by the ContentDocumentFeed's insertedBy relation."""
- insertedBy: SalesforceUserConnectionFilter
-
- """Filter by the ContentDocumentFeed's relatedRecord relation."""
- relatedRecord: SalesforceContentVersionConnectionFilter
-
- """Filter by the ContentDocumentFeed's createdBy relation."""
- createdBy: SalesforceUserConnectionFilter
-
- """Filter by the ContentDocumentFeed's parent relation."""
- parent: SalesforceContentDocumentConnectionFilter
-
- """Filter by the ContentDocumentFeed's id field"""
- id: SalesforceIdFilter
-
- """Filter by the ContentDocumentFeed's parentId field"""
- parentId: SalesforceIdFilter
-
- """Filter by the ContentDocumentFeed's type field"""
- type: SalesforceStringFilter
-
- """Filter by the ContentDocumentFeed's createdById field"""
- createdById: SalesforceIdFilter
-
- """Filter by the ContentDocumentFeed's createdDate field"""
- createdDate: SalesforceDateTimeFilter
-
- """Filter by the ContentDocumentFeed's isDeleted field"""
- isDeleted: SalesforceBooleanFilter
-
- """Filter by the ContentDocumentFeed's lastModifiedDate field"""
- lastModifiedDate: SalesforceDateTimeFilter
-
- """Filter by the ContentDocumentFeed's systemModstamp field"""
- systemModstamp: SalesforceDateTimeFilter
-
- """Filter by the ContentDocumentFeed's commentCount field"""
- commentCount: SalesforceIntFilter
-
- """Filter by the ContentDocumentFeed's likeCount field"""
- likeCount: SalesforceIntFilter
-
- """Filter by the ContentDocumentFeed's isRichText field"""
- isRichText: SalesforceBooleanFilter
-
- """Checks for any expressions in this list."""
- or: [SalesforceContentDocumentFeedConnectionFilter!]
-
- """Checks for all expressions in this list."""
- and: [SalesforceContentDocumentFeedConnectionFilter!]
-}
-
-"""Field that ContentDocument Feeds can be sorted by"""
-enum SalesforceContentDocumentFeedSortByFieldEnum {
- ID
- PARENT_ID
- TYPE
- CREATED_BY_ID
- CREATED_DATE
- IS_DELETED
- LAST_MODIFIED_DATE
- SYSTEM_MODSTAMP
- COMMENT_COUNT
- LIKE_COUNT
- TITLE
- BODY
- LINK_URL
- IS_RICH_TEXT
- RELATED_RECORD_ID
- INSERTED_BY_ID
-}
-
-"""An edge in a connection."""
-type SalesforceContentDocumentFeedEdge {
- """The item at the end of the edge."""
- node: SalesforceContentDocumentFeed!
-
- """A cursor for use in pagination"""
- cursor: String!
-}
-
-"""Salesforce ContentDocument Feeds connection, for use in pagination."""
-type SalesforceContentDocumentFeedsConnection {
- """
- The count of all ContentDocument Feed you could get from the connection.
- """
- totalCount: Int!
-
- """Pagination Information"""
- pageInfo: PageInfo!
-
- """List of Salesforce ContentDocument Feeds"""
- nodes: [SalesforceContentDocumentFeed!]!
-
- """List of ContentDocument Feed edges"""
- edges: [SalesforceContentDocumentFeedEdge!]!
-}
-
-"""Field that Asset Files can be sorted by"""
-enum SalesforceContentAssetSortByFieldEnum {
- ID
- IS_DELETED
- DEVELOPER_NAME
- LANGUAGE
- MASTER_LABEL
- NAMESPACE_PREFIX
- CREATED_DATE
- CREATED_BY_ID
- LAST_MODIFIED_DATE
- LAST_MODIFIED_BY_ID
- SYSTEM_MODSTAMP
- CONTENT_DOCUMENT_ID
- IS_VISIBLE_BY_EXTERNAL_USERS
-}
-
-"""An edge in a connection."""
-type SalesforceContentAssetEdge {
- """The item at the end of the edge."""
- node: SalesforceContentAsset!
-
- """A cursor for use in pagination"""
- cursor: String!
-}
-
-"""Salesforce Asset Files connection, for use in pagination."""
-type SalesforceContentAssetsConnection {
- """The count of all Asset File you could get from the connection."""
- totalCount: Int!
-
- """Pagination Information"""
- pageInfo: PageInfo!
-
- """List of Salesforce Asset Files"""
- nodes: [SalesforceContentAsset!]!
-
- """List of Asset File edges"""
- edges: [SalesforceContentAssetEdge!]!
-}
-
-"""
-A filter to be used against ContentWorkspaceSubscription object types. All fields are combined with a logical ‘and.’
-"""
-input SalesforceContentWorkspaceSubscriptionConnectionFilter {
- """Filter against custom fields."""
- customField: SalesforceCustomFieldFilter
-
- """
- Filter by the ContentWorkspaceSubscription's contentWorkspace relation.
- """
- contentWorkspace: SalesforceContentWorkspaceConnectionFilter
-
- """Filter by the ContentWorkspaceSubscription's user relation."""
- user: SalesforceUserConnectionFilter
-
- """Filter by the ContentWorkspaceSubscription's id field"""
- id: SalesforceIdFilter
-
- """Filter by the ContentWorkspaceSubscription's userId field"""
- userId: SalesforceIdFilter
-
- """Filter by the ContentWorkspaceSubscription's contentWorkspaceId field"""
- contentWorkspaceId: SalesforceIdFilter
-
- """Checks for any expressions in this list."""
- or: [SalesforceContentWorkspaceSubscriptionConnectionFilter!]
-
- """Checks for all expressions in this list."""
- and: [SalesforceContentWorkspaceSubscriptionConnectionFilter!]
-}
-
-"""Field that Content Workspace Subscriptions can be sorted by"""
-enum SalesforceContentWorkspaceSubscriptionSortByFieldEnum {
- ID
- USER_ID
- CONTENT_WORKSPACE_ID
-}
-
-"""An edge in a connection."""
-type SalesforceContentWorkspaceSubscriptionEdge {
- """The item at the end of the edge."""
- node: SalesforceContentWorkspaceSubscription!
-
- """A cursor for use in pagination"""
- cursor: String!
-}
-
-"""
-Salesforce Content Workspace Subscriptions connection, for use in pagination.
-"""
-type SalesforceContentWorkspaceSubscriptionsConnection {
- """
- The count of all Content Workspace Subscription you could get from the connection.
- """
- totalCount: Int!
-
- """Pagination Information"""
- pageInfo: PageInfo!
-
- """List of Salesforce Content Workspace Subscriptions"""
- nodes: [SalesforceContentWorkspaceSubscription!]!
-
- """List of Content Workspace Subscription edges"""
- edges: [SalesforceContentWorkspaceSubscriptionEdge!]!
-}
-
-"""
-A filter to be used against ContentWorkspaceDoc object types. All fields are combined with a logical ‘and.’
-"""
-input SalesforceContentWorkspaceDocConnectionFilter {
- """Filter against custom fields."""
- customField: SalesforceCustomFieldFilter
-
- """Filter by the ContentWorkspaceDoc's contentDocument relation."""
- contentDocument: SalesforceContentDocumentConnectionFilter
-
- """Filter by the ContentWorkspaceDoc's contentWorkspace relation."""
- contentWorkspace: SalesforceContentWorkspaceConnectionFilter
-
- """Filter by the ContentWorkspaceDoc's id field"""
- id: SalesforceIdFilter
-
- """Filter by the ContentWorkspaceDoc's contentWorkspaceId field"""
- contentWorkspaceId: SalesforceIdFilter
-
- """Filter by the ContentWorkspaceDoc's contentDocumentId field"""
- contentDocumentId: SalesforceIdFilter
-
- """Filter by the ContentWorkspaceDoc's createdDate field"""
- createdDate: SalesforceDateTimeFilter
-
- """Filter by the ContentWorkspaceDoc's systemModstamp field"""
- systemModstamp: SalesforceDateTimeFilter
-
- """Filter by the ContentWorkspaceDoc's isOwner field"""
- isOwner: SalesforceBooleanFilter
-
- """Filter by the ContentWorkspaceDoc's isDeleted field"""
- isDeleted: SalesforceBooleanFilter
-
- """Checks for any expressions in this list."""
- or: [SalesforceContentWorkspaceDocConnectionFilter!]
-
- """Checks for all expressions in this list."""
- and: [SalesforceContentWorkspaceDocConnectionFilter!]
-}
-
-"""Field that Library Documents can be sorted by"""
-enum SalesforceContentWorkspaceDocSortByFieldEnum {
- ID
- CONTENT_WORKSPACE_ID
- CONTENT_DOCUMENT_ID
- CREATED_DATE
- SYSTEM_MODSTAMP
- IS_OWNER
- IS_DELETED
-}
-
-"""An edge in a connection."""
-type SalesforceContentWorkspaceDocEdge {
- """The item at the end of the edge."""
- node: SalesforceContentWorkspaceDoc!
-
- """A cursor for use in pagination"""
- cursor: String!
-}
-
-"""Salesforce Library Documents connection, for use in pagination."""
-type SalesforceContentWorkspaceDocsConnection {
- """The count of all Library Document you could get from the connection."""
- totalCount: Int!
-
- """Pagination Information"""
- pageInfo: PageInfo!
-
- """List of Salesforce Library Documents"""
- nodes: [SalesforceContentWorkspaceDoc!]!
-
- """List of Library Document edges"""
- edges: [SalesforceContentWorkspaceDocEdge!]!
-}
-
-union SalesforceStreamingChannelShareUserOrGroupUnion = SalesforceUser | SalesforceGroup
-
-"""Streaming Channel Share"""
-type SalesforceStreamingChannelShare implements OneGraphNode {
- """Custom Object Share ID"""
- id: String!
-
- """Parent ID"""
- parentId: String!
-
- """Parent ID"""
- parent: SalesforceStreamingChannel!
-
- """User/Group ID"""
- userOrGroupId: String!
-
- """User/Group ID"""
- userOrGroup: SalesforceStreamingChannelShareUserOrGroupUnion!
-
- """Custom Object Access"""
- accessLevel: String!
-
- """Row Cause"""
- rowCause: String
-
- """Last Modified Date"""
- lastModifiedDate: String!
-
- """Last Modified By ID"""
- lastModifiedById: String!
-
- """Last Modified By ID"""
- lastModifiedBy: SalesforceUser!
-
- """Deleted"""
- isDeleted: Boolean!
- customFields(
- """
- List of custom fields to return. By default, returns all custom fields.
- """
- fields: [String!]
- ): JSON!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-"""Case Comment"""
-type SalesforceCaseComment implements OneGraphNode {
- """Linked Github IssueComment"""
- gitHubIssueComment: GitHubIssueComment
-
- """Case Comment ID"""
- id: String!
-
- """Parent ID"""
- parentId: String!
-
- """Parent ID"""
- parent: SalesforceCase!
-
- """Published"""
- isPublished: Boolean!
-
- """Body"""
- commentBody: String
-
- """Created By ID"""
- createdById: String!
-
- """Created By ID"""
- createdBy: SalesforceUser!
-
- """Created Date"""
- createdDate: String!
-
- """System Modstamp"""
- systemModstamp: String!
-
- """Last Modified Date"""
- lastModifiedDate: String!
-
- """Last Modified By ID"""
- lastModifiedById: String!
-
- """Last Modified By ID"""
- lastModifiedBy: SalesforceUser!
-
- """Deleted"""
- isDeleted: Boolean!
- customFields(
- """
- List of custom fields to return. By default, returns all custom fields.
- """
- fields: [String!]
- ): JSON!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-"""Content User Subscription"""
-type SalesforceContentUserSubscription implements OneGraphNode {
- """ContentUserSubscription ID"""
- id: String!
-
- """User ID"""
- subscriberUserId: String!
-
- """User ID"""
- subscriberUser: SalesforceUser!
-
- """User ID"""
- subscribedToUserId: String!
-
- """User ID"""
- subscribedToUser: SalesforceUser!
- customFields(
- """
- List of custom fields to return. By default, returns all custom fields.
- """
- fields: [String!]
- ): JSON!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-"""Visualforce Component"""
-type SalesforceApexComponent implements OneGraphNode {
- """Component ID"""
- id: String!
-
- """Namespace Prefix"""
- namespacePrefix: String
-
- """Name"""
- name: String!
-
- """Api Version"""
- apiVersion: Float!
-
- """Label"""
- masterLabel: String!
-
- """Description"""
- description: String
-
- """Controller Type"""
- controllerType: String!
-
- """Controller Key"""
- controllerKey: String
-
- """Markup"""
- markup: String!
-
- """Created Date"""
- createdDate: String!
-
- """Created By ID"""
- createdById: String!
-
- """Created By ID"""
- createdBy: SalesforceUser!
-
- """Last Modified Date"""
- lastModifiedDate: String!
-
- """Last Modified By ID"""
- lastModifiedById: String!
-
- """Last Modified By ID"""
- lastModifiedBy: SalesforceUser!
-
- """System Modstamp"""
- systemModstamp: String!
- customFields(
- """
- List of custom fields to return. By default, returns all custom fields.
- """
- fields: [String!]
- ): JSON!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-union SalesforceMacroShareUserOrGroupUnion = SalesforceUser | SalesforceGroup
-
-"""Macro Share"""
-type SalesforceMacroShare implements OneGraphNode {
- """Custom Object Share ID"""
- id: String!
-
- """Parent ID"""
- parentId: String!
-
- """Parent ID"""
- parent: SalesforceMacro!
-
- """User/Group ID"""
- userOrGroupId: String!
-
- """User/Group ID"""
- userOrGroup: SalesforceMacroShareUserOrGroupUnion!
-
- """Custom Object Access"""
- accessLevel: String!
-
- """Row Cause"""
- rowCause: String
-
- """Last Modified Date"""
- lastModifiedDate: String!
-
- """Last Modified By ID"""
- lastModifiedById: String!
-
- """Last Modified By ID"""
- lastModifiedBy: SalesforceUser!
-
- """Deleted"""
- isDeleted: Boolean!
- customFields(
- """
- List of custom fields to return. By default, returns all custom fields.
- """
- fields: [String!]
- ): JSON!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-"""User Login"""
-type SalesforceUserLogin implements OneGraphNode {
- """User Login ID"""
- id: String!
-
- """User ID"""
- userId: String
-
- """User ID"""
- user: SalesforceUser
-
- """Is Frozen"""
- isFrozen: Boolean!
-
- """Is Password Locked"""
- isPasswordLocked: Boolean!
-
- """Last Modified Date"""
- lastModifiedDate: String!
-
- """Last Modified By ID"""
- lastModifiedById: String!
-
- """Last Modified By ID"""
- lastModifiedBy: SalesforceUser!
- customFields(
- """
- List of custom fields to return. By default, returns all custom fields.
- """
- fields: [String!]
- ): JSON!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-"""Apex Trigger"""
-type SalesforceApexTrigger implements OneGraphNode {
- """Trigger ID"""
- id: String!
-
- """Namespace Prefix"""
- namespacePrefix: String
-
- """Name"""
- name: String!
-
- """Custom Object Definition ID"""
- tableEnumOrId: String
-
- """BeforeInsert"""
- usageBeforeInsert: Boolean!
-
- """AfterInsert"""
- usageAfterInsert: Boolean!
-
- """BeforeUpdate"""
- usageBeforeUpdate: Boolean!
-
- """AfterUpdate"""
- usageAfterUpdate: Boolean!
-
- """BeforeDelete"""
- usageBeforeDelete: Boolean!
-
- """AfterDelete"""
- usageAfterDelete: Boolean!
-
- """IsBulk"""
- usageIsBulk: Boolean!
-
- """AfterUndelete"""
- usageAfterUndelete: Boolean!
-
- """Api Version"""
- apiVersion: Float!
-
- """Status"""
- status: String!
-
- """Is Valid"""
- isValid: Boolean!
-
- """Body CRC"""
- bodyCrc: Float
-
- """Body"""
- body: String
-
- """Size Without Comments"""
- lengthWithoutComments: Int!
-
- """Created Date"""
- createdDate: String!
-
- """Created By ID"""
- createdById: String!
-
- """Created By ID"""
- createdBy: SalesforceUser!
-
- """Last Modified Date"""
- lastModifiedDate: String!
-
- """Last Modified By ID"""
- lastModifiedById: String!
-
- """Last Modified By ID"""
- lastModifiedBy: SalesforceUser!
-
- """System Modstamp"""
- systemModstamp: String!
- customFields(
- """
- List of custom fields to return. By default, returns all custom fields.
- """
- fields: [String!]
- ): JSON!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-union SalesforceAccountShareUserOrGroupUnion = SalesforceUser | SalesforceGroup
-
-"""Account Share"""
-type SalesforceAccountShare implements OneGraphNode {
- """Account Share ID"""
- id: String!
-
- """Account ID"""
- accountId: String!
-
- """Account ID"""
- account: SalesforceAccount!
-
- """User/Group ID"""
- userOrGroupId: String!
-
- """User/Group ID"""
- userOrGroup: SalesforceAccountShareUserOrGroupUnion!
-
- """Account Access"""
- accountAccessLevel: String!
-
- """Opportunity Access"""
- opportunityAccessLevel: String!
-
- """Case Access"""
- caseAccessLevel: String!
-
- """Contact Access"""
- contactAccessLevel: String
-
- """Row Cause"""
- rowCause: String
-
- """Last Modified Date"""
- lastModifiedDate: String!
-
- """Last Modified By ID"""
- lastModifiedById: String!
-
- """Last Modified By ID"""
- lastModifiedBy: SalesforceUser!
-
- """Deleted"""
- isDeleted: Boolean!
- customFields(
- """
- List of custom fields to return. By default, returns all custom fields.
- """
- fields: [String!]
- ): JSON!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-union SalesforceUserAppMenuCustomizationShareUserOrGroupUnion = SalesforceUser | SalesforceGroup
-
-"""UserAppMenuCustomization Share"""
-type SalesforceUserAppMenuCustomizationShare implements OneGraphNode {
- """Custom Object Share ID"""
- id: String!
-
- """Parent ID"""
- parentId: String!
-
- """Parent ID"""
- parent: SalesforceUserAppMenuCustomization!
-
- """User/Group ID"""
- userOrGroupId: String!
-
- """User/Group ID"""
- userOrGroup: SalesforceUserAppMenuCustomizationShareUserOrGroupUnion!
-
- """Custom Object Access"""
- accessLevel: String!
-
- """Row Cause"""
- rowCause: String
-
- """Last Modified Date"""
- lastModifiedDate: String!
-
- """Last Modified By ID"""
- lastModifiedById: String!
-
- """Last Modified By ID"""
- lastModifiedBy: SalesforceUser!
-
- """Deleted"""
- isDeleted: Boolean!
- customFields(
- """
- List of custom fields to return. By default, returns all custom fields.
- """
- fields: [String!]
- ): JSON!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-"""AppMenuItem"""
-type SalesforceAppMenuItem implements OneGraphNode {
- """AppMenuItem ID"""
- id: String!
-
- """Deleted"""
- isDeleted: Boolean!
-
- """Created Date"""
- createdDate: String!
-
- """Created By ID"""
- createdById: String!
-
- """Created By ID"""
- createdBy: SalesforceUser!
-
- """Last Modified Date"""
- lastModifiedDate: String!
-
- """Last Modified By ID"""
- lastModifiedById: String!
-
- """Last Modified By ID"""
- lastModifiedBy: SalesforceUser!
-
- """System Modstamp"""
- systemModstamp: String!
-
- """Sort Order"""
- sortOrder: Int!
-
- """Developer Name"""
- name: String
-
- """Namespace Prefix"""
- namespacePrefix: String
-
- """Label"""
- label: String
-
- """Description"""
- description: String
-
- """Start Url"""
- startUrl: String
-
- """Mobile Start Url"""
- mobileStartUrl: String
-
- """Logo Image URL"""
- logoUrl: String
-
- """Icon Url"""
- iconUrl: String
-
- """Info URL"""
- infoUrl: String
-
- """IsUsingAdminAuthorization"""
- isUsingAdminAuthorization: Boolean!
-
- """Mobile device OS platform"""
- mobilePlatform: String
-
- """Minimum required mobile device OS version"""
- mobileMinOsVer: String
-
- """Type of mobile device"""
- mobileDeviceType: String
-
- """App requires a registered mobile device"""
- isRegisteredDeviceOnly: Boolean!
-
- """Version of the mobile app"""
- mobileAppVer: String
-
- """Date the mobile app was most recently installed"""
- mobileAppInstalledDate: String
-
- """Most recently installed version of the mobile app"""
- mobileAppInstalledVersion: String
-
- """ID for the related mobile app binary"""
- mobileAppBinaryId: String
-
- """URL to install the mobile app"""
- mobileAppInstallUrl: String
-
- """Is this a canvas-enabled application"""
- canvasEnabled: Boolean!
-
- """The identifier used to render the canvas application."""
- canvasReferenceId: String
-
- """The canvas url for the canvas application"""
- canvasUrl: String
-
- """The configured access method for the canvas application"""
- canvasAccessMethod: String
-
- """The selected/supported locations of the canvas application"""
- canvasSelectedLocations: String
-
- """The options to hide publisher header or publisher share button"""
- canvasOptions: String
-
- """App Type"""
- type: String
-
- """Application ID"""
- applicationId: String
-
- """User Sort Order"""
- userSortOrder: Int
-
- """Is Visible"""
- isVisible: Boolean!
-
- """Is Accessible"""
- isAccessible: Boolean!
- customFields(
- """
- List of custom fields to return. By default, returns all custom fields.
- """
- fields: [String!]
- ): JSON!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-union SalesforceUserProvisioningRequestShareUserOrGroupUnion = SalesforceUser | SalesforceGroup
-
-"""User Provisioning Request Share"""
-type SalesforceUserProvisioningRequestShare implements OneGraphNode {
- """Custom Object Share ID"""
- id: String!
-
- """Parent ID"""
- parentId: String!
-
- """Parent ID"""
- parent: SalesforceUserProvisioningRequest!
-
- """User/Group ID"""
- userOrGroupId: String!
-
- """User/Group ID"""
- userOrGroup: SalesforceUserProvisioningRequestShareUserOrGroupUnion!
-
- """Custom Object Access"""
- accessLevel: String!
-
- """Row Cause"""
- rowCause: String
-
- """Last Modified Date"""
- lastModifiedDate: String!
-
- """Last Modified By ID"""
- lastModifiedById: String!
-
- """Last Modified By ID"""
- lastModifiedBy: SalesforceUser!
-
- """Deleted"""
- isDeleted: Boolean!
- customFields(
- """
- List of custom fields to return. By default, returns all custom fields.
- """
- fields: [String!]
- ): JSON!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-"""Apex Email Notification"""
-type SalesforceApexEmailNotification implements OneGraphNode {
- """ApexEmailNotification ID"""
- id: String!
-
- """Deleted"""
- isDeleted: Boolean!
-
- """Created Date"""
- createdDate: String!
-
- """Created By ID"""
- createdById: String!
-
- """Created By ID"""
- createdBy: SalesforceUser!
-
- """Last Modified Date"""
- lastModifiedDate: String!
-
- """Last Modified By ID"""
- lastModifiedById: String!
-
- """Last Modified By ID"""
- lastModifiedBy: SalesforceUser!
-
- """System Modstamp"""
- systemModstamp: String!
-
- """User ID"""
- userId: String
-
- """User ID"""
- user: SalesforceUser
-
- """email"""
- email: String
- customFields(
- """
- List of custom fields to return. By default, returns all custom fields.
- """
- fields: [String!]
- ): JSON!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-"""Contact History"""
-type SalesforceContactHistory implements OneGraphNode {
- """Contact History ID"""
- id: String!
-
- """Deleted"""
- isDeleted: Boolean!
-
- """Contact ID"""
- contactId: String!
-
- """Contact ID"""
- contact: SalesforceContact!
-
- """Created By ID"""
- createdById: String!
-
- """Created By ID"""
- createdBy: SalesforceUser!
-
- """Created Date"""
- createdDate: String!
-
- """Changed Field"""
- field: String!
-
- """Old Value"""
- oldValue: String
-
- """New Value"""
- newValue: String
- customFields(
- """
- List of custom fields to return. By default, returns all custom fields.
- """
- fields: [String!]
- ): JSON!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-"""Content Version History"""
-type SalesforceContentVersionHistory implements OneGraphNode {
- """Content Version ID"""
- id: String!
-
- """Deleted"""
- isDeleted: Boolean!
-
- """ContentVersion ID"""
- contentVersionId: String!
-
- """ContentVersion ID"""
- contentVersion: SalesforceContentVersion!
-
- """Created By ID"""
- createdById: String!
-
- """Created By ID"""
- createdBy: SalesforceUser!
-
- """Created Date"""
- createdDate: String!
-
- """Changed Field"""
- field: String!
-
- """Old Value"""
- oldValue: String
-
- """New Value"""
- newValue: String
- customFields(
- """
- List of custom fields to return. By default, returns all custom fields.
- """
- fields: [String!]
- ): JSON!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-"""Assignment Rule"""
-type SalesforceAssignmentRule implements OneGraphNode {
- """Rule ID"""
- id: String!
-
- """Name"""
- name: String
-
- """SObject Type"""
- sobjectType: String
-
- """Active"""
- active: Boolean!
-
- """Created By ID"""
- createdById: String!
-
- """Created By ID"""
- createdBy: SalesforceUser!
-
- """Created Date"""
- createdDate: String!
-
- """Last Modified By ID"""
- lastModifiedById: String!
-
- """Last Modified By ID"""
- lastModifiedBy: SalesforceUser!
-
- """Last Modified Date"""
- lastModifiedDate: String!
-
- """System Modstamp"""
- systemModstamp: String!
- customFields(
- """
- List of custom fields to return. By default, returns all custom fields.
- """
- fields: [String!]
- ): JSON!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-union SalesforceFlowInterviewShareUserOrGroupUnion = SalesforceUser | SalesforceGroup
-
-"""Flow Interview Share"""
-type SalesforceFlowInterviewShare implements OneGraphNode {
- """Custom Object Share ID"""
- id: String!
-
- """Parent ID"""
- parentId: String!
-
- """Parent ID"""
- parent: SalesforceFlowInterview!
-
- """User/Group ID"""
- userOrGroupId: String!
-
- """User/Group ID"""
- userOrGroup: SalesforceFlowInterviewShareUserOrGroupUnion!
-
- """Custom Object Access"""
- accessLevel: String!
-
- """Row Cause"""
- rowCause: String
-
- """Last Modified Date"""
- lastModifiedDate: String!
-
- """Last Modified By ID"""
- lastModifiedById: String!
-
- """Last Modified By ID"""
- lastModifiedBy: SalesforceUser!
-
- """Deleted"""
- isDeleted: Boolean!
- customFields(
- """
- List of custom fields to return. By default, returns all custom fields.
- """
- fields: [String!]
- ): JSON!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-union SalesforceOrgDeleteRequestShareUserOrGroupUnion = SalesforceUser | SalesforceGroup
-
-"""Org Delete Request Share"""
-type SalesforceOrgDeleteRequestShare implements OneGraphNode {
- """Custom Object Share ID"""
- id: String!
-
- """Parent ID"""
- parentId: String!
-
- """Parent ID"""
- parent: SalesforceOrgDeleteRequest!
-
- """User/Group ID"""
- userOrGroupId: String!
-
- """User/Group ID"""
- userOrGroup: SalesforceOrgDeleteRequestShareUserOrGroupUnion!
-
- """Custom Object Access"""
- accessLevel: String!
-
- """Row Cause"""
- rowCause: String
-
- """Last Modified Date"""
- lastModifiedDate: String!
-
- """Last Modified By ID"""
- lastModifiedById: String!
-
- """Last Modified By ID"""
- lastModifiedBy: SalesforceUser!
-
- """Deleted"""
- isDeleted: Boolean!
- customFields(
- """
- List of custom fields to return. By default, returns all custom fields.
- """
- fields: [String!]
- ): JSON!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-union SalesforceQuickTextShareUserOrGroupUnion = SalesforceUser | SalesforceGroup
-
-"""Quick Text Share"""
-type SalesforceQuickTextShare implements OneGraphNode {
- """Custom Object Share ID"""
- id: String!
-
- """Parent ID"""
- parentId: String!
-
- """Parent ID"""
- parent: SalesforceQuickText!
-
- """User/Group ID"""
- userOrGroupId: String!
-
- """User/Group ID"""
- userOrGroup: SalesforceQuickTextShareUserOrGroupUnion!
-
- """Custom Object Access"""
- accessLevel: String!
-
- """Row Cause"""
- rowCause: String
-
- """Last Modified Date"""
- lastModifiedDate: String!
-
- """Last Modified By ID"""
- lastModifiedById: String!
-
- """Last Modified By ID"""
- lastModifiedBy: SalesforceUser!
-
- """Deleted"""
- isDeleted: Boolean!
- customFields(
- """
- List of custom fields to return. By default, returns all custom fields.
- """
- fields: [String!]
- ): JSON!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-"""Lead Status Value"""
-type SalesforceLeadStatus implements OneGraphNode {
- """Lead Status Value ID"""
- id: String!
-
- """Master Label"""
- masterLabel: String
-
- """Api Name"""
- apiName: String!
-
- """Sort Order"""
- sortOrder: Int
-
- """Is Default"""
- isDefault: Boolean!
-
- """Is Converted"""
- isConverted: Boolean!
-
- """Created By ID"""
- createdById: String!
-
- """Created By ID"""
- createdBy: SalesforceUser!
-
- """Created Date"""
- createdDate: String!
-
- """Last Modified By ID"""
- lastModifiedById: String!
-
- """Last Modified By ID"""
- lastModifiedBy: SalesforceUser!
-
- """Last Modified Date"""
- lastModifiedDate: String!
-
- """System Modstamp"""
- systemModstamp: String!
- customFields(
- """
- List of custom fields to return. By default, returns all custom fields.
- """
- fields: [String!]
- ): JSON!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-"""Organization-wide From Email Address"""
-type SalesforceOrgWideEmailAddress implements OneGraphNode {
- """Organization-wide From Email Address ID"""
- id: String!
-
- """Created By ID"""
- createdById: String!
-
- """Created By ID"""
- createdBy: SalesforceUser!
-
- """Created Date"""
- createdDate: String!
-
- """Last Modified Date"""
- lastModifiedDate: String!
-
- """Last Modified By ID"""
- lastModifiedById: String!
-
- """Last Modified By ID"""
- lastModifiedBy: SalesforceUser!
-
- """System Modstamp"""
- systemModstamp: String!
-
- """Email Address"""
- address: String!
-
- """Display Name"""
- displayName: String!
-
- """Allow All Profiles"""
- isAllowAllProfiles: Boolean!
- customFields(
- """
- List of custom fields to return. By default, returns all custom fields.
- """
- fields: [String!]
- ): JSON!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-"""Knowledgeable User"""
-type SalesforceKnowledgeableUser implements OneGraphNode {
- """Knowledgeable User ID"""
- id: String!
-
- """User ID"""
- userId: String!
-
- """User ID"""
- user: SalesforceUser!
-
- """Topic ID"""
- topicId: String!
-
- """Topic ID"""
- topic: SalesforceTopic!
-
- """Rank"""
- rawRank: Int
-
- """System Modstamp"""
- systemModstamp: String!
- customFields(
- """
- List of custom fields to return. By default, returns all custom fields.
- """
- fields: [String!]
- ): JSON!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-"""Setup Audit Trail Entry"""
-type SalesforceSetupAuditTrail implements OneGraphNode {
- """Setup Audit Trail ID"""
- id: String!
-
- """Action"""
- action: String!
-
- """Section"""
- section: String
-
- """Created Date"""
- createdDate: String!
-
- """Created By ID"""
- createdById: String!
-
- """Created By ID"""
- createdBy: SalesforceUser!
-
- """Display"""
- display: String
-
- """Delegate User"""
- delegateUser: String
-
- """Source Namespace Prefix"""
- responsibleNamespacePrefix: String
- customFields(
- """
- List of custom fields to return. By default, returns all custom fields.
- """
- fields: [String!]
- ): JSON!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-"""Content Security Policy Trusted Site"""
-type SalesforceCspTrustedSite implements OneGraphNode {
- """Trusted Site ID"""
- id: String!
-
- """Deleted"""
- isDeleted: Boolean!
-
- """Trusted Site Name"""
- developerName: String!
-
- """Master Language"""
- language: String
-
- """Label"""
- masterLabel: String!
-
- """Namespace Prefix"""
- namespacePrefix: String
-
- """Created Date"""
- createdDate: String!
-
- """Created By ID"""
- createdById: String!
-
- """Created By ID"""
- createdBy: SalesforceUser!
-
- """Last Modified Date"""
- lastModifiedDate: String!
-
- """Last Modified By ID"""
- lastModifiedById: String!
-
- """Last Modified By ID"""
- lastModifiedBy: SalesforceUser!
-
- """System Modstamp"""
- systemModstamp: String!
-
- """Trusted Site URL"""
- endpointUrl: String!
-
- """Description"""
- description: String
-
- """Active"""
- isActive: Boolean!
- customFields(
- """
- List of custom fields to return. By default, returns all custom fields.
- """
- fields: [String!]
- ): JSON!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-"""Content Tag Subscription"""
-type SalesforceContentTagSubscription implements OneGraphNode {
- """ContentTagSubscription ID"""
- id: String!
-
- """User ID"""
- userId: String
-
- """User ID"""
- user: SalesforceUser
- customFields(
- """
- List of custom fields to return. By default, returns all custom fields.
- """
- fields: [String!]
- ): JSON!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-"""Business Hours"""
-type SalesforceBusinessHours implements OneGraphNode {
- """Business Hours ID"""
- id: String!
-
- """Business Hours Name"""
- name: String!
-
- """Active"""
- isActive: Boolean!
-
- """Default Business Hours"""
- isDefault: Boolean!
-
- """Sunday Start"""
- sundayStartTime: String
-
- """Sunday End"""
- sundayEndTime: String
-
- """Monday Start"""
- mondayStartTime: String
-
- """Monday End"""
- mondayEndTime: String
-
- """Tuesday Start"""
- tuesdayStartTime: String
-
- """Tuesday End"""
- tuesdayEndTime: String
-
- """Wednesday Start"""
- wednesdayStartTime: String
-
- """Wednesday End"""
- wednesdayEndTime: String
-
- """Thursday Start"""
- thursdayStartTime: String
-
- """Thursday End"""
- thursdayEndTime: String
-
- """Friday Start"""
- fridayStartTime: String
-
- """Friday End"""
- fridayEndTime: String
-
- """Saturday Start"""
- saturdayStartTime: String
-
- """Saturday End"""
- saturdayEndTime: String
-
- """Time Zone"""
- timeZoneSidKey: String!
-
- """System Modstamp"""
- systemModstamp: String!
-
- """Created Date"""
- createdDate: String!
-
- """Created By ID"""
- createdById: String!
-
- """Created By ID"""
- createdBy: SalesforceUser!
-
- """Last Modified Date"""
- lastModifiedDate: String!
-
- """Last Modified By ID"""
- lastModifiedById: String!
-
- """Last Modified By ID"""
- lastModifiedBy: SalesforceUser!
-
- """Last Viewed Date"""
- lastViewedDate: String
- customFields(
- """
- List of custom fields to return. By default, returns all custom fields.
- """
- fields: [String!]
- ): JSON!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-"""Topic User Event"""
-type SalesforceTopicUserEvent implements OneGraphNode {
- """Event ID"""
- id: String!
-
- """User ID"""
- userId: String!
-
- """User ID"""
- user: SalesforceUser!
-
- """Topic ID"""
- topicId: String!
-
- """Topic ID"""
- topic: SalesforceTopic!
-
- """Action"""
- actionEnum: String!
-
- """Create Date"""
- createdDate: String!
- customFields(
- """
- List of custom fields to return. By default, returns all custom fields.
- """
- fields: [String!]
- ): JSON!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-"""Security Custom Baseline"""
-type SalesforceSecurityCustomBaseline implements OneGraphNode {
- """Security Custom Baseline ID"""
- id: String!
-
- """Deleted"""
- isDeleted: Boolean!
-
- """Name"""
- developerName: String!
-
- """Master Language"""
- language: String
-
- """Label"""
- masterLabel: String!
-
- """Namespace Prefix"""
- namespacePrefix: String
-
- """Created Date"""
- createdDate: String!
-
- """Created By ID"""
- createdById: String!
-
- """Created By ID"""
- createdBy: SalesforceUser!
-
- """Last Modified Date"""
- lastModifiedDate: String!
-
- """Last Modified By ID"""
- lastModifiedById: String!
-
- """Last Modified By ID"""
- lastModifiedBy: SalesforceUser!
-
- """System Modstamp"""
- systemModstamp: String!
-
- """Baseline"""
- baseline: String
-
- """Is Default Baseline"""
- isDefault: Boolean!
- customFields(
- """
- List of custom fields to return. By default, returns all custom fields.
- """
- fields: [String!]
- ): JSON!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-"""Lead History"""
-type SalesforceLeadHistory implements OneGraphNode {
- """Lead History ID"""
- id: String!
-
- """Deleted"""
- isDeleted: Boolean!
-
- """Lead ID"""
- leadId: String!
-
- """Lead ID"""
- lead: SalesforceLead!
-
- """Created By ID"""
- createdById: String!
-
- """Created By ID"""
- createdBy: SalesforceUser!
-
- """Created Date"""
- createdDate: String!
-
- """Changed Field"""
- field: String!
-
- """Old Value"""
- oldValue: String
-
- """New Value"""
- newValue: String
- customFields(
- """
- List of custom fields to return. By default, returns all custom fields.
- """
- fields: [String!]
- ): JSON!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-"""Task Priority Value"""
-type SalesforceTaskPriority implements OneGraphNode {
- """Task Priority Value ID"""
- id: String!
-
- """Master Label"""
- masterLabel: String
-
- """Api Name"""
- apiName: String!
-
- """Sort Order"""
- sortOrder: Int
-
- """Is Default"""
- isDefault: Boolean!
-
- """Is High Priority"""
- isHighPriority: Boolean!
-
- """Created By ID"""
- createdById: String!
-
- """Created By ID"""
- createdBy: SalesforceUser!
-
- """Created Date"""
- createdDate: String!
-
- """Last Modified By ID"""
- lastModifiedById: String!
-
- """Last Modified By ID"""
- lastModifiedBy: SalesforceUser!
-
- """Last Modified Date"""
- lastModifiedDate: String!
-
- """System Modstamp"""
- systemModstamp: String!
- customFields(
- """
- List of custom fields to return. By default, returns all custom fields.
- """
- fields: [String!]
- ): JSON!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-"""Queue Sobject"""
-type SalesforceQueueSobject implements OneGraphNode {
- """Queue Sobject ID"""
- id: String!
-
- """Group ID"""
- queueId: String!
-
- """Group ID"""
- queue: SalesforceGroup!
-
- """Sobject Type"""
- sobjectType: String!
-
- """Created By ID"""
- createdById: String!
-
- """Created By ID"""
- createdBy: SalesforceUser!
-
- """System Modstamp"""
- systemModstamp: String!
- customFields(
- """
- List of custom fields to return. By default, returns all custom fields.
- """
- fields: [String!]
- ): JSON!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-"""
-A filter to be used against AdditionalNumber object types. All fields are combined with a logical ‘and.’
-"""
-input SalesforceAdditionalNumberConnectionFilter {
- """Filter against custom fields."""
- customField: SalesforceCustomFieldFilter
-
- """Filter by the AdditionalNumber's lastModifiedBy relation."""
- lastModifiedBy: SalesforceUserConnectionFilter
-
- """Filter by the AdditionalNumber's createdBy relation."""
- createdBy: SalesforceUserConnectionFilter
-
- """Filter by the AdditionalNumber's callCenter relation."""
- callCenter: SalesforceCallCenterConnectionFilter
-
- """Filter by the AdditionalNumber's id field"""
- id: SalesforceIdFilter
-
- """Filter by the AdditionalNumber's isDeleted field"""
- isDeleted: SalesforceBooleanFilter
-
- """Filter by the AdditionalNumber's callCenterId field"""
- callCenterId: SalesforceIdFilter
-
- """Filter by the AdditionalNumber's name field"""
- name: SalesforceStringFilter
-
- """Filter by the AdditionalNumber's description field"""
- description: SalesforceStringFilter
-
- """Filter by the AdditionalNumber's phone field"""
- phone: SalesforceStringFilter
-
- """Filter by the AdditionalNumber's createdDate field"""
- createdDate: SalesforceDateTimeFilter
-
- """Filter by the AdditionalNumber's createdById field"""
- createdById: SalesforceIdFilter
-
- """Filter by the AdditionalNumber's lastModifiedDate field"""
- lastModifiedDate: SalesforceDateTimeFilter
-
- """Filter by the AdditionalNumber's lastModifiedById field"""
- lastModifiedById: SalesforceIdFilter
-
- """Filter by the AdditionalNumber's systemModstamp field"""
- systemModstamp: SalesforceDateTimeFilter
-
- """Checks for any expressions in this list."""
- or: [SalesforceAdditionalNumberConnectionFilter!]
-
- """Checks for all expressions in this list."""
- and: [SalesforceAdditionalNumberConnectionFilter!]
-}
-
-"""Field that Additional Directory Numbers can be sorted by"""
-enum SalesforceAdditionalNumberSortByFieldEnum {
- ID
- IS_DELETED
- CALL_CENTER_ID
- NAME
- DESCRIPTION
- PHONE
- CREATED_DATE
- CREATED_BY_ID
- LAST_MODIFIED_DATE
- LAST_MODIFIED_BY_ID
- SYSTEM_MODSTAMP
-}
-
-"""An edge in a connection."""
-type SalesforceAdditionalNumberEdge {
- """The item at the end of the edge."""
- node: SalesforceAdditionalNumber!
-
- """A cursor for use in pagination"""
- cursor: String!
-}
-
-"""Additional Directory Number"""
-type SalesforceAdditionalNumber implements OneGraphNode {
- """Additional Directory Number ID"""
- id: String!
-
- """Deleted"""
- isDeleted: Boolean!
-
- """Call Center ID"""
- callCenterId: String
-
- """Call Center ID"""
- callCenter: SalesforceCallCenter
-
- """Name"""
- name: String!
-
- """Description"""
- description: String
-
- """Phone"""
- phone: String
-
- """Created Date"""
- createdDate: String!
-
- """Created By ID"""
- createdById: String!
-
- """Created By ID"""
- createdBy: SalesforceUser!
-
- """Last Modified Date"""
- lastModifiedDate: String!
-
- """Last Modified By ID"""
- lastModifiedById: String!
-
- """Last Modified By ID"""
- lastModifiedBy: SalesforceUser!
-
- """System Modstamp"""
- systemModstamp: String!
- customFields(
- """
- List of custom fields to return. By default, returns all custom fields.
- """
- fields: [String!]
- ): JSON!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-"""
-Salesforce Additional Directory Numbers connection, for use in pagination.
-"""
-type SalesforceAdditionalNumbersConnection {
- """
- The count of all Additional Directory Number you could get from the connection.
- """
- totalCount: Int!
-
- """Pagination Information"""
- pageInfo: PageInfo!
-
- """List of Salesforce Additional Directory Numbers"""
- nodes: [SalesforceAdditionalNumber!]!
-
- """List of Additional Directory Number edges"""
- edges: [SalesforceAdditionalNumberEdge!]!
-}
-
-"""Call Center"""
-type SalesforceCallCenter implements OneGraphNode {
- """Call Center ID"""
- id: String!
-
- """Name"""
- name: String!
-
- """Internal Name"""
- internalName: String!
-
- """Version"""
- version: Float
-
- """CTI Adapter URL"""
- adapterUrl: String
-
- """Custom Settings"""
- customSettings: String
-
- """System Modstamp"""
- systemModstamp: String!
-
- """Created Date"""
- createdDate: String!
-
- """Created By ID"""
- createdById: String!
-
- """Created By ID"""
- createdBy: SalesforceUser!
-
- """Last Modified Date"""
- lastModifiedDate: String!
-
- """Last Modified By ID"""
- lastModifiedById: String!
-
- """Last Modified By ID"""
- lastModifiedBy: SalesforceUser!
-
- """Collection of Salesforce AdditionalNumber"""
- additionalNumbers(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceAdditionalNumberConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceAdditionalNumberSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceAdditionalNumberSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of AdditionalNumbers to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceAdditionalNumbersConnection
-
- """Collection of Salesforce User"""
- users(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceUserConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceUserSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceUserSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of Users to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceUsersConnection
- customFields(
- """
- List of custom fields to return. By default, returns all custom fields.
- """
- fields: [String!]
- ): JSON!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-union SalesforceCaseTeamMemberMemberUnion = SalesforceUser | SalesforceContact
-
-"""Case Team Member"""
-type SalesforceCaseTeamMember implements OneGraphNode {
- """Team Member Id"""
- id: String!
-
- """Case ID"""
- parentId: String!
-
- """Case ID"""
- parent: SalesforceCase!
-
- """Member ID"""
- memberId: String!
-
- """Member ID"""
- member: SalesforceCaseTeamMemberMemberUnion!
-
- """Team Template Member ID"""
- teamTemplateMemberId: String
-
- """Team Template Member ID"""
- teamTemplateMember: SalesforceCaseTeamTemplateMember
-
- """Team Role ID"""
- teamRoleId: String!
-
- """Team Role ID"""
- teamRole: SalesforceCaseTeamRole!
-
- """Created Date"""
- createdDate: String!
-
- """Created By ID"""
- createdById: String!
-
- """Created By ID"""
- createdBy: SalesforceUser!
-
- """Last Modified Date"""
- lastModifiedDate: String!
-
- """Last Modified By ID"""
- lastModifiedById: String!
-
- """Last Modified By ID"""
- lastModifiedBy: SalesforceUser!
-
- """System Modstamp"""
- systemModstamp: String!
- customFields(
- """
- List of custom fields to return. By default, returns all custom fields.
- """
- fields: [String!]
- ): JSON!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-"""Mail Merge Template"""
-type SalesforceMailmergeTemplate implements OneGraphNode {
- """Mail Merge Template ID"""
- id: String!
-
- """Deleted"""
- isDeleted: Boolean!
-
- """Name"""
- name: String!
-
- """Description"""
- description: String
-
- """File"""
- filename: String!
-
- """Body Length"""
- bodyLength: Int
-
- """Body"""
- body: String!
-
- """Last Used Date"""
- lastUsedDate: String
-
- """Created Date"""
- createdDate: String!
-
- """Created By ID"""
- createdById: String!
-
- """Created By ID"""
- createdBy: SalesforceUser!
-
- """Last Modified Date"""
- lastModifiedDate: String!
-
- """Last Modified By ID"""
- lastModifiedById: String!
-
- """Last Modified By ID"""
- lastModifiedBy: SalesforceUser!
-
- """System Modstamp"""
- systemModstamp: String!
-
- """Attachment has been scanned for XSS"""
- securityOptionsAttachmentScannedForXss: Boolean!
-
- """XSS threat was detected in the attachment"""
- securityOptionsAttachmentHasXssThreat: Boolean!
-
- """Attachment has been scanned for Flash Injection"""
- securityOptionsAttachmentScannedforFlash: Boolean!
-
- """Flash Injection was detected in the attachment"""
- securityOptionsAttachmentHasFlash: Boolean!
- customFields(
- """
- List of custom fields to return. By default, returns all custom fields.
- """
- fields: [String!]
- ): JSON!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-"""User Preference"""
-type SalesforceUserPreference implements OneGraphNode {
- """User Preference ID"""
- id: String!
-
- """User ID"""
- userId: String!
-
- """User ID"""
- user: SalesforceUser!
-
- """Preference"""
- preference: String!
-
- """Value"""
- value: String
-
- """System Modstamp"""
- systemModstamp: String!
- customFields(
- """
- List of custom fields to return. By default, returns all custom fields.
- """
- fields: [String!]
- ): JSON!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-"""Account History"""
-type SalesforceAccountHistory implements OneGraphNode {
- """Account History ID"""
- id: String!
-
- """Deleted"""
- isDeleted: Boolean!
-
- """Account ID"""
- accountId: String!
-
- """Account ID"""
- account: SalesforceAccount!
-
- """Created By ID"""
- createdById: String!
-
- """Created By ID"""
- createdBy: SalesforceUser!
-
- """Created Date"""
- createdDate: String!
-
- """Changed Field"""
- field: String!
-
- """Old Value"""
- oldValue: String
-
- """New Value"""
- newValue: String
- customFields(
- """
- List of custom fields to return. By default, returns all custom fields.
- """
- fields: [String!]
- ): JSON!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-"""Event Log File"""
-type SalesforceEventLogFile implements OneGraphNode {
- """Event Log File ID"""
- id: String!
-
- """Deleted"""
- isDeleted: Boolean!
-
- """Created Date"""
- createdDate: String!
-
- """Created By ID"""
- createdById: String!
-
- """Created By ID"""
- createdBy: SalesforceUser!
-
- """Last Modified Date"""
- lastModifiedDate: String!
-
- """Last Modified By ID"""
- lastModifiedById: String!
-
- """Last Modified By ID"""
- lastModifiedBy: SalesforceUser!
-
- """System Modstamp"""
- systemModstamp: String!
-
- """Event Type"""
- eventType: String!
-
- """Log Date"""
- logDate: String!
-
- """Log File Length"""
- logFileLength: Float!
-
- """Log File Content Type"""
- logFileContentType: String!
-
- """API Version"""
- apiVersion: Float!
-
- """Sequence"""
- sequence: Int!
-
- """Interval"""
- interval: String
-
- """Log File Field Names"""
- logFileFieldNames: String
-
- """Log File Field Types"""
- logFileFieldTypes: String
-
- """Log File"""
- logFile: String!
- customFields(
- """
- List of custom fields to return. By default, returns all custom fields.
- """
- fields: [String!]
- ): JSON!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-"""EmailCapture"""
-type SalesforceEmailCapture implements OneGraphNode {
- """Email Capture ID"""
- id: String!
-
- """Deleted"""
- isDeleted: Boolean!
-
- """Created Date"""
- createdDate: String!
-
- """Created By ID"""
- createdById: String!
-
- """Created By ID"""
- createdBy: SalesforceUser!
-
- """Last Modified Date"""
- lastModifiedDate: String!
-
- """Last Modified By ID"""
- lastModifiedById: String!
-
- """Last Modified By ID"""
- lastModifiedBy: SalesforceUser!
-
- """System Modstamp"""
- systemModstamp: String!
-
- """Active"""
- isActive: Boolean!
-
- """To"""
- toPattern: String!
-
- """From"""
- fromPattern: String
-
- """Sender"""
- sender: String
-
- """Recipient"""
- recipient: String
-
- """Capture Date"""
- captureDate: String
-
- """Raw Message Length"""
- rawMessageLength: Int
-
- """Raw Message"""
- rawMessage: String
- customFields(
- """
- List of custom fields to return. By default, returns all custom fields.
- """
- fields: [String!]
- ): JSON!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-"""Opportunity Stage"""
-type SalesforceOpportunityStage implements OneGraphNode {
- """Opportunity Stage ID"""
- id: String!
-
- """Master Label"""
- masterLabel: String
-
- """Api Name"""
- apiName: String!
-
- """Is Active"""
- isActive: Boolean!
-
- """Sort Order"""
- sortOrder: Int
-
- """Closed"""
- isClosed: Boolean!
-
- """Won"""
- isWon: Boolean!
-
- """Forecast Category"""
- forecastCategory: String!
-
- """Forecast Category Name"""
- forecastCategoryName: String!
-
- """Probability (%)"""
- defaultProbability: Float
-
- """Description"""
- description: String
-
- """Created By ID"""
- createdById: String!
-
- """Created By ID"""
- createdBy: SalesforceUser!
-
- """Created Date"""
- createdDate: String!
-
- """Last Modified By ID"""
- lastModifiedById: String!
-
- """Last Modified By ID"""
- lastModifiedBy: SalesforceUser!
-
- """Last Modified Date"""
- lastModifiedDate: String!
-
- """System Modstamp"""
- systemModstamp: String!
- customFields(
- """
- List of custom fields to return. By default, returns all custom fields.
- """
- fields: [String!]
- ): JSON!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-"""
-A filter to be used against ActionLinkGroupTemplate object types. All fields are combined with a logical ‘and.’
-"""
-input SalesforceActionLinkGroupTemplateConnectionFilter {
- """Filter against custom fields."""
- customField: SalesforceCustomFieldFilter
-
- """Filter by the ActionLinkGroupTemplate's lastModifiedBy relation."""
- lastModifiedBy: SalesforceUserConnectionFilter
-
- """Filter by the ActionLinkGroupTemplate's createdBy relation."""
- createdBy: SalesforceUserConnectionFilter
-
- """Filter by the ActionLinkGroupTemplate's id field"""
- id: SalesforceIdFilter
-
- """Filter by the ActionLinkGroupTemplate's isDeleted field"""
- isDeleted: SalesforceBooleanFilter
-
- """Filter by the ActionLinkGroupTemplate's developerName field"""
- developerName: SalesforceStringFilter
-
- """Filter by the ActionLinkGroupTemplate's language field"""
- language: SalesforceStringFilter
-
- """Filter by the ActionLinkGroupTemplate's masterLabel field"""
- masterLabel: SalesforceStringFilter
-
- """Filter by the ActionLinkGroupTemplate's namespacePrefix field"""
- namespacePrefix: SalesforceStringFilter
-
- """Filter by the ActionLinkGroupTemplate's createdDate field"""
- createdDate: SalesforceDateTimeFilter
-
- """Filter by the ActionLinkGroupTemplate's createdById field"""
- createdById: SalesforceIdFilter
-
- """Filter by the ActionLinkGroupTemplate's lastModifiedDate field"""
- lastModifiedDate: SalesforceDateTimeFilter
-
- """Filter by the ActionLinkGroupTemplate's lastModifiedById field"""
- lastModifiedById: SalesforceIdFilter
-
- """Filter by the ActionLinkGroupTemplate's systemModstamp field"""
- systemModstamp: SalesforceDateTimeFilter
-
- """Filter by the ActionLinkGroupTemplate's executionsAllowed field"""
- executionsAllowed: SalesforceStringFilter
-
- """Filter by the ActionLinkGroupTemplate's hoursUntilExpiration field"""
- hoursUntilExpiration: SalesforceIntFilter
-
- """Filter by the ActionLinkGroupTemplate's category field"""
- category: SalesforceStringFilter
-
- """Filter by the ActionLinkGroupTemplate's isPublished field"""
- isPublished: SalesforceBooleanFilter
-
- """Checks for any expressions in this list."""
- or: [SalesforceActionLinkGroupTemplateConnectionFilter!]
-
- """Checks for all expressions in this list."""
- and: [SalesforceActionLinkGroupTemplateConnectionFilter!]
-}
-
-"""
-A filter to be used against ActionLinkTemplate object types. All fields are combined with a logical ‘and.’
-"""
-input SalesforceActionLinkTemplateConnectionFilter {
- """Filter against custom fields."""
- customField: SalesforceCustomFieldFilter
-
- """Filter by the ActionLinkTemplate's actionLinkGroupTemplate relation."""
- actionLinkGroupTemplate: SalesforceActionLinkGroupTemplateConnectionFilter
-
- """Filter by the ActionLinkTemplate's lastModifiedBy relation."""
- lastModifiedBy: SalesforceUserConnectionFilter
-
- """Filter by the ActionLinkTemplate's createdBy relation."""
- createdBy: SalesforceUserConnectionFilter
-
- """Filter by the ActionLinkTemplate's id field"""
- id: SalesforceIdFilter
-
- """Filter by the ActionLinkTemplate's isDeleted field"""
- isDeleted: SalesforceBooleanFilter
-
- """Filter by the ActionLinkTemplate's createdDate field"""
- createdDate: SalesforceDateTimeFilter
-
- """Filter by the ActionLinkTemplate's createdById field"""
- createdById: SalesforceIdFilter
-
- """Filter by the ActionLinkTemplate's lastModifiedDate field"""
- lastModifiedDate: SalesforceDateTimeFilter
-
- """Filter by the ActionLinkTemplate's lastModifiedById field"""
- lastModifiedById: SalesforceIdFilter
-
- """Filter by the ActionLinkTemplate's systemModstamp field"""
- systemModstamp: SalesforceDateTimeFilter
-
- """Filter by the ActionLinkTemplate's actionLinkGroupTemplateId field"""
- actionLinkGroupTemplateId: SalesforceIdFilter
-
- """Filter by the ActionLinkTemplate's labelKey field"""
- labelKey: SalesforceStringFilter
-
- """Filter by the ActionLinkTemplate's method field"""
- method: SalesforceStringFilter
-
- """Filter by the ActionLinkTemplate's linkType field"""
- linkType: SalesforceStringFilter
-
- """Filter by the ActionLinkTemplate's position field"""
- position: SalesforceIntFilter
-
- """Filter by the ActionLinkTemplate's isConfirmationRequired field"""
- isConfirmationRequired: SalesforceBooleanFilter
-
- """Filter by the ActionLinkTemplate's isGroupDefault field"""
- isGroupDefault: SalesforceBooleanFilter
-
- """Filter by the ActionLinkTemplate's userVisibility field"""
- userVisibility: SalesforceStringFilter
-
- """Filter by the ActionLinkTemplate's userAlias field"""
- userAlias: SalesforceStringFilter
-
- """Filter by the ActionLinkTemplate's label field"""
- label: SalesforceStringFilter
-
- """Checks for any expressions in this list."""
- or: [SalesforceActionLinkTemplateConnectionFilter!]
-
- """Checks for all expressions in this list."""
- and: [SalesforceActionLinkTemplateConnectionFilter!]
-}
-
-"""Field that Action Link Templates can be sorted by"""
-enum SalesforceActionLinkTemplateSortByFieldEnum {
- ID
- IS_DELETED
- CREATED_DATE
- CREATED_BY_ID
- LAST_MODIFIED_DATE
- LAST_MODIFIED_BY_ID
- SYSTEM_MODSTAMP
- ACTION_LINK_GROUP_TEMPLATE_ID
- LABEL_KEY
- METHOD
- LINK_TYPE
- POSITION
- IS_CONFIRMATION_REQUIRED
- IS_GROUP_DEFAULT
- USER_VISIBILITY
- USER_ALIAS
- LABEL
-}
-
-"""An edge in a connection."""
-type SalesforceActionLinkTemplateEdge {
- """The item at the end of the edge."""
- node: SalesforceActionLinkTemplate!
-
- """A cursor for use in pagination"""
- cursor: String!
-}
-
-"""Salesforce Action Link Templates connection, for use in pagination."""
-type SalesforceActionLinkTemplatesConnection {
- """
- The count of all Action Link Template you could get from the connection.
- """
- totalCount: Int!
-
- """Pagination Information"""
- pageInfo: PageInfo!
-
- """List of Salesforce Action Link Templates"""
- nodes: [SalesforceActionLinkTemplate!]!
-
- """List of Action Link Template edges"""
- edges: [SalesforceActionLinkTemplateEdge!]!
-}
-
-"""Action Link Group Template"""
-type SalesforceActionLinkGroupTemplate implements OneGraphNode {
- """Action Link Group Template ID"""
- id: String!
-
- """Deleted"""
- isDeleted: Boolean!
-
- """Developer Name"""
- developerName: String!
-
- """Master Language"""
- language: String
-
- """Name"""
- masterLabel: String!
-
- """Namespace Prefix"""
- namespacePrefix: String
-
- """Created Date"""
- createdDate: String!
-
- """Created By ID"""
- createdById: String!
-
- """Created By ID"""
- createdBy: SalesforceUser!
-
- """Last Modified Date"""
- lastModifiedDate: String!
-
- """Last Modified By ID"""
- lastModifiedById: String!
-
- """Last Modified By ID"""
- lastModifiedBy: SalesforceUser!
-
- """System Modstamp"""
- systemModstamp: String!
-
- """Executions Allowed"""
- executionsAllowed: String!
-
- """Hours until Expiration"""
- hoursUntilExpiration: Int
-
- """Category"""
- category: String!
-
- """Published"""
- isPublished: Boolean!
-
- """Collection of Salesforce ActionLinkTemplate"""
- actionLinkTemplates(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceActionLinkTemplateConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceActionLinkTemplateSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceActionLinkTemplateSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of ActionLinkTemplates to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceActionLinkTemplatesConnection
- customFields(
- """
- List of custom fields to return. By default, returns all custom fields.
- """
- fields: [String!]
- ): JSON!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-"""Action Link Template"""
-type SalesforceActionLinkTemplate implements OneGraphNode {
- """Action Link Template ID"""
- id: String!
-
- """Deleted"""
- isDeleted: Boolean!
-
- """Created Date"""
- createdDate: String!
-
- """Created By ID"""
- createdById: String!
-
- """Created By ID"""
- createdBy: SalesforceUser!
-
- """Last Modified Date"""
- lastModifiedDate: String!
-
- """Last Modified By ID"""
- lastModifiedById: String!
-
- """Last Modified By ID"""
- lastModifiedBy: SalesforceUser!
-
- """System Modstamp"""
- systemModstamp: String!
-
- """Action Link Group Template ID"""
- actionLinkGroupTemplateId: String!
-
- """Action Link Group Template ID"""
- actionLinkGroupTemplate: SalesforceActionLinkGroupTemplate!
-
- """Label Key"""
- labelKey: String!
-
- """HTTP Method"""
- method: String!
-
- """Action Type"""
- linkType: String!
-
- """Position"""
- position: Int!
-
- """Confirmation Required"""
- isConfirmationRequired: Boolean!
-
- """Default Link in Group"""
- isGroupDefault: Boolean!
-
- """User Visibility"""
- userVisibility: String!
-
- """Custom User Alias"""
- userAlias: String
-
- """Label"""
- label: String
-
- """Action URL"""
- actionUrl: String!
-
- """HTTP Request Body"""
- requestBody: String
-
- """HTTP Headers"""
- headers: String
- customFields(
- """
- List of custom fields to return. By default, returns all custom fields.
- """
- fields: [String!]
- ): JSON!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-union SalesforceContactShareUserOrGroupUnion = SalesforceUser | SalesforceGroup
-
-"""Contact Share"""
-type SalesforceContactShare implements OneGraphNode {
- """Contact Share ID"""
- id: String!
-
- """Contact ID"""
- contactId: String!
-
- """Contact ID"""
- contact: SalesforceContact!
-
- """User/Group ID"""
- userOrGroupId: String!
-
- """User/Group ID"""
- userOrGroup: SalesforceContactShareUserOrGroupUnion!
-
- """Contact Access"""
- contactAccessLevel: String!
-
- """Row Cause"""
- rowCause: String
-
- """Last Modified Date"""
- lastModifiedDate: String!
-
- """Last Modified By ID"""
- lastModifiedById: String!
-
- """Last Modified By ID"""
- lastModifiedBy: SalesforceUser!
-
- """Deleted"""
- isDeleted: Boolean!
- customFields(
- """
- List of custom fields to return. By default, returns all custom fields.
- """
- fields: [String!]
- ): JSON!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-union SalesforceUserShareUserOrGroupUnion = SalesforceUser | SalesforceGroup
-
-"""User Share"""
-type SalesforceUserShare implements OneGraphNode {
- """User Share ID"""
- id: String!
-
- """User ID"""
- userId: String!
-
- """User ID"""
- user: SalesforceUser!
-
- """User/Group ID"""
- userOrGroupId: String!
-
- """User/Group ID"""
- userOrGroup: SalesforceUserShareUserOrGroupUnion!
-
- """User Access Level"""
- userAccessLevel: String!
-
- """Row Cause"""
- rowCause: String
-
- """Last Modified Date"""
- lastModifiedDate: String!
-
- """Last Modified By ID"""
- lastModifiedById: String!
-
- """Last Modified By ID"""
- lastModifiedBy: SalesforceUser!
-
- """Active"""
- isActive: Boolean!
- customFields(
- """
- List of custom fields to return. By default, returns all custom fields.
- """
- fields: [String!]
- ): JSON!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-"""
-A filter to be used against PackageLicense object types. All fields are combined with a logical ‘and.’
-"""
-input SalesforcePackageLicenseConnectionFilter {
- """Filter against custom fields."""
- customField: SalesforceCustomFieldFilter
-
- """Filter by the PackageLicense's id field"""
- id: SalesforceIdFilter
-
- """Filter by the PackageLicense's status field"""
- status: SalesforceStringFilter
-
- """Filter by the PackageLicense's isProvisioned field"""
- isProvisioned: SalesforceBooleanFilter
-
- """Filter by the PackageLicense's allowedLicenses field"""
- allowedLicenses: SalesforceIntFilter
-
- """Filter by the PackageLicense's usedLicenses field"""
- usedLicenses: SalesforceIntFilter
-
- """Filter by the PackageLicense's expirationDate field"""
- expirationDate: SalesforceDateTimeFilter
-
- """Filter by the PackageLicense's createdDate field"""
- createdDate: SalesforceDateTimeFilter
-
- """Filter by the PackageLicense's lastModifiedDate field"""
- lastModifiedDate: SalesforceDateTimeFilter
-
- """Filter by the PackageLicense's systemModstamp field"""
- systemModstamp: SalesforceDateTimeFilter
-
- """Filter by the PackageLicense's namespacePrefix field"""
- namespacePrefix: SalesforceStringFilter
-
- """Checks for any expressions in this list."""
- or: [SalesforcePackageLicenseConnectionFilter!]
-
- """Checks for all expressions in this list."""
- and: [SalesforcePackageLicenseConnectionFilter!]
-}
-
-"""
-A filter to be used against UserPackageLicense object types. All fields are combined with a logical ‘and.’
-"""
-input SalesforceUserPackageLicenseConnectionFilter {
- """Filter against custom fields."""
- customField: SalesforceCustomFieldFilter
-
- """Filter by the UserPackageLicense's lastModifiedBy relation."""
- lastModifiedBy: SalesforceUserConnectionFilter
-
- """Filter by the UserPackageLicense's createdBy relation."""
- createdBy: SalesforceUserConnectionFilter
-
- """Filter by the UserPackageLicense's user relation."""
- user: SalesforceUserConnectionFilter
-
- """Filter by the UserPackageLicense's packageLicense relation."""
- packageLicense: SalesforcePackageLicenseConnectionFilter
-
- """Filter by the UserPackageLicense's id field"""
- id: SalesforceIdFilter
-
- """Filter by the UserPackageLicense's packageLicenseId field"""
- packageLicenseId: SalesforceIdFilter
-
- """Filter by the UserPackageLicense's userId field"""
- userId: SalesforceIdFilter
-
- """Filter by the UserPackageLicense's createdDate field"""
- createdDate: SalesforceDateTimeFilter
-
- """Filter by the UserPackageLicense's createdById field"""
- createdById: SalesforceIdFilter
-
- """Filter by the UserPackageLicense's lastModifiedDate field"""
- lastModifiedDate: SalesforceDateTimeFilter
-
- """Filter by the UserPackageLicense's lastModifiedById field"""
- lastModifiedById: SalesforceIdFilter
-
- """Filter by the UserPackageLicense's systemModstamp field"""
- systemModstamp: SalesforceDateTimeFilter
-
- """Checks for any expressions in this list."""
- or: [SalesforceUserPackageLicenseConnectionFilter!]
-
- """Checks for all expressions in this list."""
- and: [SalesforceUserPackageLicenseConnectionFilter!]
-}
-
-"""Field that User Package Licenses can be sorted by"""
-enum SalesforceUserPackageLicenseSortByFieldEnum {
- ID
- PACKAGE_LICENSE_ID
- USER_ID
- CREATED_DATE
- CREATED_BY_ID
- LAST_MODIFIED_DATE
- LAST_MODIFIED_BY_ID
- SYSTEM_MODSTAMP
-}
-
-"""An edge in a connection."""
-type SalesforceUserPackageLicenseEdge {
- """The item at the end of the edge."""
- node: SalesforceUserPackageLicense!
-
- """A cursor for use in pagination"""
- cursor: String!
-}
-
-"""Salesforce User Package Licenses connection, for use in pagination."""
-type SalesforceUserPackageLicensesConnection {
- """
- The count of all User Package License you could get from the connection.
- """
- totalCount: Int!
-
- """Pagination Information"""
- pageInfo: PageInfo!
-
- """List of Salesforce User Package Licenses"""
- nodes: [SalesforceUserPackageLicense!]!
-
- """List of User Package License edges"""
- edges: [SalesforceUserPackageLicenseEdge!]!
-}
-
-"""Package License"""
-type SalesforcePackageLicense implements OneGraphNode {
- """Package License ID"""
- id: String!
-
- """Status"""
- status: String!
-
- """Is Provisioned"""
- isProvisioned: Boolean!
-
- """Allowed Licenses"""
- allowedLicenses: Int!
-
- """Used Licenses"""
- usedLicenses: Int!
-
- """Expiration Date"""
- expirationDate: String
-
- """Created Date"""
- createdDate: String!
-
- """Last Modified Date"""
- lastModifiedDate: String!
-
- """System Modstamp"""
- systemModstamp: String!
-
- """Namespace Prefix"""
- namespacePrefix: String!
-
- """Collection of Salesforce UserPackageLicense"""
- userPackageLicenses(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceUserPackageLicenseConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceUserPackageLicenseSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceUserPackageLicenseSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of UserPackageLicenses to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceUserPackageLicensesConnection
- customFields(
- """
- List of custom fields to return. By default, returns all custom fields.
- """
- fields: [String!]
- ): JSON!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-"""User Package License"""
-type SalesforceUserPackageLicense implements OneGraphNode {
- """User Package License ID"""
- id: String!
-
- """Package License ID"""
- packageLicenseId: String!
-
- """Package License ID"""
- packageLicense: SalesforcePackageLicense!
-
- """Assigned User ID"""
- userId: String!
-
- """Assigned User ID"""
- user: SalesforceUser!
-
- """Created Date"""
- createdDate: String!
-
- """Created By ID"""
- createdById: String!
-
- """Created By ID"""
- createdBy: SalesforceUser!
-
- """Last Modified Date"""
- lastModifiedDate: String!
-
- """Last Modified By ID"""
- lastModifiedById: String!
-
- """Last Modified By ID"""
- lastModifiedBy: SalesforceUser!
-
- """System Modstamp"""
- systemModstamp: String!
- customFields(
- """
- List of custom fields to return. By default, returns all custom fields.
- """
- fields: [String!]
- ): JSON!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-"""Partner Role Value"""
-type SalesforcePartnerRole implements OneGraphNode {
- """Partner Role Value ID"""
- id: String!
-
- """Master Label"""
- masterLabel: String
-
- """Api Name"""
- apiName: String!
-
- """Sort Order"""
- sortOrder: Int
-
- """Reverse Role"""
- reverseRole: String
-
- """Created By ID"""
- createdById: String!
-
- """Created By ID"""
- createdBy: SalesforceUser!
-
- """Created Date"""
- createdDate: String!
-
- """Last Modified By ID"""
- lastModifiedById: String!
-
- """Last Modified By ID"""
- lastModifiedBy: SalesforceUser!
-
- """Last Modified Date"""
- lastModifiedDate: String!
-
- """System Modstamp"""
- systemModstamp: String!
- customFields(
- """
- List of custom fields to return. By default, returns all custom fields.
- """
- fields: [String!]
- ): JSON!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-"""Client Browser"""
-type SalesforceClientBrowser implements OneGraphNode {
- """Client Browser ID"""
- id: String!
-
- """User ID"""
- usersId: String!
-
- """User ID"""
- users: SalesforceUser!
-
- """Full User Agent"""
- fullUserAgent: String
-
- """Proxy Info"""
- proxyInfo: String
-
- """Last Update"""
- lastUpdate: String
-
- """Created Date"""
- createdDate: String!
- customFields(
- """
- List of custom fields to return. By default, returns all custom fields.
- """
- fields: [String!]
- ): JSON!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-"""Content Workspace Subscription"""
-type SalesforceContentWorkspaceSubscription implements OneGraphNode {
- """ContentWorkspaceSubscription ID"""
- id: String!
-
- """User ID"""
- userId: String!
-
- """User ID"""
- user: SalesforceUser!
-
- """Workspace ID"""
- contentWorkspaceId: String!
-
- """Workspace ID"""
- contentWorkspace: SalesforceContentWorkspace!
- customFields(
- """
- List of custom fields to return. By default, returns all custom fields.
- """
- fields: [String!]
- ): JSON!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-"""Tenant Usage Entitlement"""
-type SalesforceTenantUsageEntitlement implements OneGraphNode {
- """Tenant Usage Entitlement ID"""
- id: String!
-
- """Deleted"""
- isDeleted: Boolean!
-
- """Created Date"""
- createdDate: String!
-
- """Created By ID"""
- createdById: String!
-
- """Created By ID"""
- createdBy: SalesforceUser!
-
- """Last Modified Date"""
- lastModifiedDate: String!
-
- """Last Modified By ID"""
- lastModifiedById: String!
-
- """Last Modified By ID"""
- lastModifiedBy: SalesforceUser!
-
- """System Modstamp"""
- systemModstamp: String!
-
- """Resource Group Key"""
- resourceGroupKey: String!
-
- """Setting"""
- setting: String!
-
- """Start Date"""
- startDate: String!
-
- """End Date"""
- endDate: String
-
- """Current Amount Allowed"""
- currentAmountAllowed: Float!
-
- """Frequency"""
- frequency: String
-
- """Is Persistent Resource"""
- isPersistentResource: Boolean!
-
- """Has Rollover"""
- hasRollover: Boolean!
-
- """Overage Grace"""
- overageGrace: Float
-
- """Amount Used"""
- amountUsed: Float
-
- """Usage Date"""
- usageDate: String
-
- """Setting Label"""
- masterLabel: String
- customFields(
- """
- List of custom fields to return. By default, returns all custom fields.
- """
- fields: [String!]
- ): JSON!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-"""Content Document History"""
-type SalesforceContentDocumentHistory implements OneGraphNode {
- """Content Document ID"""
- id: String!
-
- """Deleted"""
- isDeleted: Boolean!
-
- """ContentDocument ID"""
- contentDocumentId: String!
-
- """ContentDocument ID"""
- contentDocument: SalesforceContentDocument!
-
- """Created By ID"""
- createdById: String!
-
- """Created By ID"""
- createdBy: SalesforceUser!
-
- """Created Date"""
- createdDate: String!
-
- """Changed Field"""
- field: String!
-
- """Old Value"""
- oldValue: String
-
- """New Value"""
- newValue: String
- customFields(
- """
- List of custom fields to return. By default, returns all custom fields.
- """
- fields: [String!]
- ): JSON!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-union SalesforceListEmailShareUserOrGroupUnion = SalesforceUser | SalesforceGroup
-
-"""List Email Share"""
-type SalesforceListEmailShare implements OneGraphNode {
- """Custom Object Share ID"""
- id: String!
-
- """Parent ID"""
- parentId: String!
-
- """Parent ID"""
- parent: SalesforceListEmail!
-
- """User/Group ID"""
- userOrGroupId: String!
-
- """User/Group ID"""
- userOrGroup: SalesforceListEmailShareUserOrGroupUnion!
-
- """Custom Object Access"""
- accessLevel: String!
-
- """Row Cause"""
- rowCause: String
-
- """Last Modified Date"""
- lastModifiedDate: String!
-
- """Last Modified By ID"""
- lastModifiedById: String!
-
- """Last Modified By ID"""
- lastModifiedBy: SalesforceUser!
-
- """Deleted"""
- isDeleted: Boolean!
- customFields(
- """
- List of custom fields to return. By default, returns all custom fields.
- """
- fields: [String!]
- ): JSON!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-"""Field that Periods can be sorted by"""
-enum SalesforcePeriodSortByFieldEnum {
- ID
- FISCAL_YEAR_SETTINGS_ID
- TYPE
- START_DATE
- END_DATE
- SYSTEM_MODSTAMP
- IS_FORECAST_PERIOD
- QUARTER_LABEL
- PERIOD_LABEL
- NUMBER
-}
-
-"""An edge in a connection."""
-type SalesforcePeriodEdge {
- """The item at the end of the edge."""
- node: SalesforcePeriod!
-
- """A cursor for use in pagination"""
- cursor: String!
-}
-
-"""Salesforce Periods connection, for use in pagination."""
-type SalesforcePeriodsConnection {
- """The count of all Period you could get from the connection."""
- totalCount: Int!
-
- """Pagination Information"""
- pageInfo: PageInfo!
-
- """List of Salesforce Periods"""
- nodes: [SalesforcePeriod!]!
-
- """List of Period edges"""
- edges: [SalesforcePeriodEdge!]!
-}
-
-"""
-A filter to be used against Period object types. All fields are combined with a logical ‘and.’
-"""
-input SalesforcePeriodConnectionFilter {
- """Filter against custom fields."""
- customField: SalesforceCustomFieldFilter
-
- """Filter by the Period's fiscalYearSettings relation."""
- fiscalYearSettings: SalesforceFiscalYearSettingsConnectionFilter
-
- """Filter by the Period's id field"""
- id: SalesforceIdFilter
-
- """Filter by the Period's fiscalYearSettingsId field"""
- fiscalYearSettingsId: SalesforceIdFilter
-
- """Filter by the Period's type field"""
- type: SalesforceStringFilter
-
- """Filter by the Period's startDate field"""
- startDate: SalesforceDateFilter
-
- """Filter by the Period's endDate field"""
- endDate: SalesforceDateFilter
-
- """Filter by the Period's systemModstamp field"""
- systemModstamp: SalesforceDateTimeFilter
-
- """Filter by the Period's isForecastPeriod field"""
- isForecastPeriod: SalesforceBooleanFilter
-
- """Filter by the Period's quarterLabel field"""
- quarterLabel: SalesforceStringFilter
-
- """Filter by the Period's periodLabel field"""
- periodLabel: SalesforceStringFilter
-
- """Filter by the Period's number field"""
- number: SalesforceIntFilter
-
- """Checks for any expressions in this list."""
- or: [SalesforcePeriodConnectionFilter!]
-
- """Checks for all expressions in this list."""
- and: [SalesforcePeriodConnectionFilter!]
-}
-
-"""
-A filter to be used against FiscalYearSettings object types. All fields are combined with a logical ‘and.’
-"""
-input SalesforceFiscalYearSettingsConnectionFilter {
- """Filter against custom fields."""
- customField: SalesforceCustomFieldFilter
-
- """Filter by the FiscalYearSettings's period relation."""
- period: SalesforcePeriodConnectionFilter
-
- """Filter by the FiscalYearSettings's id field"""
- id: SalesforceIdFilter
-
- """Filter by the FiscalYearSettings's periodId field"""
- periodId: SalesforceIdFilter
-
- """Filter by the FiscalYearSettings's startDate field"""
- startDate: SalesforceDateFilter
-
- """Filter by the FiscalYearSettings's endDate field"""
- endDate: SalesforceDateFilter
-
- """Filter by the FiscalYearSettings's name field"""
- name: SalesforceStringFilter
-
- """Filter by the FiscalYearSettings's isStandardYear field"""
- isStandardYear: SalesforceBooleanFilter
-
- """Filter by the FiscalYearSettings's yearType field"""
- yearType: SalesforceStringFilter
-
- """Filter by the FiscalYearSettings's quarterLabelScheme field"""
- quarterLabelScheme: SalesforceStringFilter
-
- """Filter by the FiscalYearSettings's periodLabelScheme field"""
- periodLabelScheme: SalesforceStringFilter
-
- """Filter by the FiscalYearSettings's weekLabelScheme field"""
- weekLabelScheme: SalesforceStringFilter
-
- """Filter by the FiscalYearSettings's quarterPrefix field"""
- quarterPrefix: SalesforceStringFilter
-
- """Filter by the FiscalYearSettings's periodPrefix field"""
- periodPrefix: SalesforceStringFilter
-
- """Filter by the FiscalYearSettings's weekStartDay field"""
- weekStartDay: SalesforceIntFilter
-
- """Filter by the FiscalYearSettings's description field"""
- description: SalesforceStringFilter
-
- """Filter by the FiscalYearSettings's systemModstamp field"""
- systemModstamp: SalesforceDateTimeFilter
-
- """Checks for any expressions in this list."""
- or: [SalesforceFiscalYearSettingsConnectionFilter!]
-
- """Checks for all expressions in this list."""
- and: [SalesforceFiscalYearSettingsConnectionFilter!]
-}
-
-"""Field that Fiscal Year Settings can be sorted by"""
-enum SalesforceFiscalYearSettingsSortByFieldEnum {
- ID
- PERIOD_ID
- START_DATE
- END_DATE
- NAME
- IS_STANDARD_YEAR
- YEAR_TYPE
- QUARTER_LABEL_SCHEME
- PERIOD_LABEL_SCHEME
- WEEK_LABEL_SCHEME
- QUARTER_PREFIX
- PERIOD_PREFIX
- WEEK_START_DAY
- DESCRIPTION
- SYSTEM_MODSTAMP
-}
-
-"""An edge in a connection."""
-type SalesforceFiscalYearSettingsEdge {
- """The item at the end of the edge."""
- node: SalesforceFiscalYearSettings!
-
- """A cursor for use in pagination"""
- cursor: String!
-}
-
-"""Salesforce Fiscal Year Settings connection, for use in pagination."""
-type SalesforceFiscalYearSettingssConnection {
- """
- The count of all Fiscal Year Settings you could get from the connection.
- """
- totalCount: Int!
-
- """Pagination Information"""
- pageInfo: PageInfo!
-
- """List of Salesforce Fiscal Year Settings"""
- nodes: [SalesforceFiscalYearSettings!]!
-
- """List of Fiscal Year Settings edges"""
- edges: [SalesforceFiscalYearSettingsEdge!]!
-}
-
-"""Period"""
-type SalesforcePeriod implements OneGraphNode {
- """Period ID"""
- id: String!
-
- """Fiscal Year Settings ID"""
- fiscalYearSettingsId: String
-
- """Fiscal Year Settings ID"""
- fiscalYearSettings: SalesforceFiscalYearSettings
-
- """Type"""
- type: String
-
- """Start Date"""
- startDate: String!
-
- """End Date"""
- endDate: String!
-
- """System Modstamp"""
- systemModstamp: String!
-
- """Is Forecast Period"""
- isForecastPeriod: Boolean!
-
- """Quarter Name"""
- quarterLabel: String
-
- """Period Name"""
- periodLabel: String
-
- """Number"""
- number: Int
-
- """Fully Qualified Label"""
- fullyQualifiedLabel: String
-
- """Collection of Salesforce FiscalYearSettings"""
- fiscalYearSettingsPlural(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceFiscalYearSettingsConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceFiscalYearSettingsSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceFiscalYearSettingsSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of FiscalYearSettings to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceFiscalYearSettingssConnection
- customFields(
- """
- List of custom fields to return. By default, returns all custom fields.
- """
- fields: [String!]
- ): JSON!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-"""Fiscal Year Settings"""
-type SalesforceFiscalYearSettings implements OneGraphNode {
- """Fiscal Year Settings ID"""
- id: String!
-
- """Period ID"""
- periodId: String
-
- """Period ID"""
- period: SalesforcePeriod
-
- """Start Date"""
- startDate: String
-
- """End Date"""
- endDate: String
-
- """Name"""
- name: String!
-
- """Is Standard Year"""
- isStandardYear: Boolean!
-
- """Year Type"""
- yearType: String
-
- """Quarter Name Scheme"""
- quarterLabelScheme: String
-
- """Period Name Scheme"""
- periodLabelScheme: String
-
- """Week Name Scheme"""
- weekLabelScheme: String
-
- """Quarter Prefix"""
- quarterPrefix: String
-
- """Period Prefix"""
- periodPrefix: String
-
- """Week Start Day"""
- weekStartDay: Int
-
- """Description"""
- description: String
-
- """System Modstamp"""
- systemModstamp: String!
-
- """Collection of Salesforce Period"""
- periods(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforcePeriodConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforcePeriodSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforcePeriodSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of Periods to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforcePeriodsConnection
- customFields(
- """
- List of custom fields to return. By default, returns all custom fields.
- """
- fields: [String!]
- ): JSON!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-union SalesforceTodayGoalShareUserOrGroupUnion = SalesforceUser | SalesforceGroup
-
-"""Goal Share"""
-type SalesforceTodayGoalShare implements OneGraphNode {
- """Custom Object Share ID"""
- id: String!
-
- """Parent ID"""
- parentId: String!
-
- """Parent ID"""
- parent: SalesforceTodayGoal!
-
- """User/Group ID"""
- userOrGroupId: String!
-
- """User/Group ID"""
- userOrGroup: SalesforceTodayGoalShareUserOrGroupUnion!
-
- """Custom Object Access"""
- accessLevel: String!
-
- """Row Cause"""
- rowCause: String
-
- """Last Modified Date"""
- lastModifiedDate: String!
-
- """Last Modified By ID"""
- lastModifiedById: String!
-
- """Last Modified By ID"""
- lastModifiedBy: SalesforceUser!
-
- """Deleted"""
- isDeleted: Boolean!
- customFields(
- """
- List of custom fields to return. By default, returns all custom fields.
- """
- fields: [String!]
- ): JSON!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-"""Solution Status Value"""
-type SalesforceSolutionStatus implements OneGraphNode {
- """Solution Status Value ID"""
- id: String!
-
- """Master Label"""
- masterLabel: String
-
- """Api Name"""
- apiName: String!
-
- """Sort Order"""
- sortOrder: Int
-
- """Is Default"""
- isDefault: Boolean!
-
- """Is Reviewed"""
- isReviewed: Boolean!
-
- """Created By ID"""
- createdById: String!
-
- """Created By ID"""
- createdBy: SalesforceUser!
-
- """Created Date"""
- createdDate: String!
-
- """Last Modified By ID"""
- lastModifiedById: String!
-
- """Last Modified By ID"""
- lastModifiedBy: SalesforceUser!
-
- """Last Modified Date"""
- lastModifiedDate: String!
-
- """System Modstamp"""
- systemModstamp: String!
- customFields(
- """
- List of custom fields to return. By default, returns all custom fields.
- """
- fields: [String!]
- ): JSON!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-"""
-A filter to be used against CronJobDetail object types. All fields are combined with a logical ‘and.’
-"""
-input SalesforceCronJobDetailConnectionFilter {
- """Filter against custom fields."""
- customField: SalesforceCustomFieldFilter
-
- """Filter by the CronJobDetail's id field"""
- id: SalesforceIdFilter
-
- """Filter by the CronJobDetail's name field"""
- name: SalesforceStringFilter
-
- """Filter by the CronJobDetail's jobType field"""
- jobType: SalesforceStringFilter
-
- """Checks for any expressions in this list."""
- or: [SalesforceCronJobDetailConnectionFilter!]
-
- """Checks for all expressions in this list."""
- and: [SalesforceCronJobDetailConnectionFilter!]
-}
-
-"""
-A filter to be used against CronTrigger object types. All fields are combined with a logical ‘and.’
-"""
-input SalesforceCronTriggerConnectionFilter {
- """Filter against custom fields."""
- customField: SalesforceCustomFieldFilter
-
- """Filter by the CronTrigger's createdBy relation."""
- createdBy: SalesforceUserConnectionFilter
-
- """Filter by the CronTrigger's lastModifiedBy relation."""
- lastModifiedBy: SalesforceUserConnectionFilter
-
- """Filter by the CronTrigger's owner relation."""
- owner: SalesforceUserConnectionFilter
-
- """Filter by the CronTrigger's cronJobDetail relation."""
- cronJobDetail: SalesforceCronJobDetailConnectionFilter
-
- """Filter by the CronTrigger's id field"""
- id: SalesforceIdFilter
-
- """Filter by the CronTrigger's cronJobDetailId field"""
- cronJobDetailId: SalesforceIdFilter
-
- """Filter by the CronTrigger's nextFireTime field"""
- nextFireTime: SalesforceDateTimeFilter
-
- """Filter by the CronTrigger's previousFireTime field"""
- previousFireTime: SalesforceDateTimeFilter
-
- """Filter by the CronTrigger's state field"""
- state: SalesforceStringFilter
-
- """Filter by the CronTrigger's startTime field"""
- startTime: SalesforceDateTimeFilter
-
- """Filter by the CronTrigger's endTime field"""
- endTime: SalesforceDateTimeFilter
-
- """Filter by the CronTrigger's cronExpression field"""
- cronExpression: SalesforceStringFilter
-
- """Filter by the CronTrigger's timeZoneSidKey field"""
- timeZoneSidKey: SalesforceStringFilter
-
- """Filter by the CronTrigger's ownerId field"""
- ownerId: SalesforceIdFilter
-
- """Filter by the CronTrigger's lastModifiedById field"""
- lastModifiedById: SalesforceIdFilter
-
- """Filter by the CronTrigger's createdById field"""
- createdById: SalesforceIdFilter
-
- """Filter by the CronTrigger's createdDate field"""
- createdDate: SalesforceDateTimeFilter
-
- """Filter by the CronTrigger's timesTriggered field"""
- timesTriggered: SalesforceIntFilter
-
- """Checks for any expressions in this list."""
- or: [SalesforceCronTriggerConnectionFilter!]
-
- """Checks for all expressions in this list."""
- and: [SalesforceCronTriggerConnectionFilter!]
-}
-
-"""Field that Scheduled Jobs can be sorted by"""
-enum SalesforceCronTriggerSortByFieldEnum {
- ID
- CRON_JOB_DETAIL_ID
- NEXT_FIRE_TIME
- PREVIOUS_FIRE_TIME
- STATE
- START_TIME
- END_TIME
- CRON_EXPRESSION
- TIME_ZONE_SID_KEY
- OWNER_ID
- LAST_MODIFIED_BY_ID
- CREATED_BY_ID
- CREATED_DATE
- TIMES_TRIGGERED
-}
-
-"""An edge in a connection."""
-type SalesforceCronTriggerEdge {
- """The item at the end of the edge."""
- node: SalesforceCronTrigger!
-
- """A cursor for use in pagination"""
- cursor: String!
-}
-
-"""Scheduled Jobs"""
-type SalesforceCronTrigger implements OneGraphNode {
- """Scheduled Job ID"""
- id: String!
-
- """Job ID"""
- cronJobDetailId: String
-
- """Job ID"""
- cronJobDetail: SalesforceCronJobDetail
-
- """Next Run Time"""
- nextFireTime: String
-
- """Previous Run Time"""
- previousFireTime: String
-
- """Job State"""
- state: String
-
- """Start Time"""
- startTime: String
-
- """End Time"""
- endTime: String
-
- """Cron Expression"""
- cronExpression: String
-
- """Java Time Zone Id"""
- timeZoneSidKey: String
-
- """User ID"""
- ownerId: String
-
- """User ID"""
- owner: SalesforceUser
-
- """Last Modified By ID"""
- lastModifiedById: String!
-
- """Last Modified By ID"""
- lastModifiedBy: SalesforceUser!
-
- """Created By ID"""
- createdById: String!
-
- """Created By ID"""
- createdBy: SalesforceUser!
-
- """Created Date"""
- createdDate: String!
-
- """Job Fired Count"""
- timesTriggered: Int
- customFields(
- """
- List of custom fields to return. By default, returns all custom fields.
- """
- fields: [String!]
- ): JSON!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-"""Salesforce Scheduled Jobs connection, for use in pagination."""
-type SalesforceCronTriggersConnection {
- """The count of all Scheduled Jobs you could get from the connection."""
- totalCount: Int!
-
- """Pagination Information"""
- pageInfo: PageInfo!
-
- """List of Salesforce Scheduled Jobs"""
- nodes: [SalesforceCronTrigger!]!
-
- """List of Scheduled Jobs edges"""
- edges: [SalesforceCronTriggerEdge!]!
-}
-
-"""Cron Job"""
-type SalesforceCronJobDetail implements OneGraphNode {
- """Job ID"""
- id: String!
-
- """Job Name"""
- name: String!
-
- """Type"""
- jobType: String
-
- """Collection of Salesforce CronTrigger"""
- cronTriggers(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceCronTriggerConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceCronTriggerSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceCronTriggerSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of CronTriggers to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceCronTriggersConnection
- customFields(
- """
- List of custom fields to return. By default, returns all custom fields.
- """
- fields: [String!]
- ): JSON!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-union SalesforceCaseShareUserOrGroupUnion = SalesforceUser | SalesforceGroup
-
-"""Case Share"""
-type SalesforceCaseShare implements OneGraphNode {
- """Case Share ID"""
- id: String!
-
- """Case ID"""
- caseId: String!
-
- """Case ID"""
- case: SalesforceCase!
-
- """User/Group ID"""
- userOrGroupId: String!
-
- """User/Group ID"""
- userOrGroup: SalesforceCaseShareUserOrGroupUnion!
-
- """Case Access"""
- caseAccessLevel: String!
-
- """Row Cause"""
- rowCause: String
-
- """Last Modified Date"""
- lastModifiedDate: String!
-
- """Last Modified By ID"""
- lastModifiedById: String!
-
- """Last Modified By ID"""
- lastModifiedBy: SalesforceUser!
-
- """Deleted"""
- isDeleted: Boolean!
- customFields(
- """
- List of custom fields to return. By default, returns all custom fields.
- """
- fields: [String!]
- ): JSON!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-"""Login IP"""
-type SalesforceLoginIp implements OneGraphNode {
- """Login IP ID"""
- id: String!
-
- """User ID"""
- usersId: String!
-
- """User ID"""
- users: SalesforceUser!
-
- """Source IP"""
- sourceIp: String
-
- """Created Date"""
- createdDate: String!
-
- """IsAuthenticated"""
- isAuthenticated: Boolean!
-
- """Challenge SentDate"""
- challengeSentDate: String
-
- """Challenge Method"""
- challengeMethod: String
- customFields(
- """
- List of custom fields to return. By default, returns all custom fields.
- """
- fields: [String!]
- ): JSON!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-"""Email Domain Key"""
-type SalesforceEmailDomainKey implements OneGraphNode {
- """Email Domain Key ID"""
- id: String!
-
- """Deleted"""
- isDeleted: Boolean!
-
- """Created Date"""
- createdDate: String!
-
- """Created By ID"""
- createdById: String!
-
- """Created By ID"""
- createdBy: SalesforceUser!
-
- """Last Modified Date"""
- lastModifiedDate: String!
-
- """Last Modified By ID"""
- lastModifiedById: String!
-
- """Last Modified By ID"""
- lastModifiedBy: SalesforceUser!
-
- """System Modstamp"""
- systemModstamp: String!
-
- """Selector"""
- selector: String!
-
- """Domain"""
- domain: String!
-
- """Domain Match"""
- domainMatch: String!
-
- """Active"""
- isActive: Boolean!
-
- """Public Key"""
- publicKey: String
-
- """Private Key"""
- privateKey: String
- customFields(
- """
- List of custom fields to return. By default, returns all custom fields.
- """
- fields: [String!]
- ): JSON!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-"""Chatter Activity"""
-type SalesforceChatterActivity implements OneGraphNode {
- """Chatter Activity ID"""
- id: String!
-
- """Parent ID"""
- parentId: String
-
- """Parent ID"""
- parent: SalesforceUser
-
- """Post Count"""
- postCount: Int!
-
- """Comment Count"""
- commentCount: Int!
-
- """Comment Received Count"""
- commentReceivedCount: Int!
-
- """Like Received Count"""
- likeReceivedCount: Int!
-
- """Influence Raw Rank"""
- influenceRawRank: Int!
-
- """System Modstamp"""
- systemModstamp: String!
- customFields(
- """
- List of custom fields to return. By default, returns all custom fields.
- """
- fields: [String!]
- ): JSON!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-"""Case History"""
-type SalesforceCaseHistory implements OneGraphNode {
- """Case History ID"""
- id: String!
-
- """Deleted"""
- isDeleted: Boolean!
-
- """Case ID"""
- caseId: String!
-
- """Case ID"""
- case: SalesforceCase!
-
- """Created By ID"""
- createdById: String!
-
- """Created By ID"""
- createdBy: SalesforceUser!
-
- """Created Date"""
- createdDate: String!
-
- """Changed Field"""
- field: String!
-
- """Old Value"""
- oldValue: String
-
- """New Value"""
- newValue: String
- customFields(
- """
- List of custom fields to return. By default, returns all custom fields.
- """
- fields: [String!]
- ): JSON!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-"""List View Chart"""
-type SalesforceListViewChart implements OneGraphNode {
- """List View Chart ID"""
- id: String!
-
- """Deleted"""
- isDeleted: Boolean!
-
- """Custom Object Definition ID"""
- sobjectType: String!
-
- """API Name"""
- developerName: String!
-
- """Master Language"""
- language: String
-
- """Label"""
- masterLabel: String!
-
- """Created Date"""
- createdDate: String!
-
- """Created By ID"""
- createdById: String!
-
- """Created By ID"""
- createdBy: SalesforceUser!
-
- """Last Modified Date"""
- lastModifiedDate: String!
-
- """Last Modified By ID"""
- lastModifiedById: String!
-
- """Last Modified By ID"""
- lastModifiedBy: SalesforceUser!
-
- """System Modstamp"""
- systemModstamp: String!
-
- """User ID"""
- ownerId: String!
-
- """User ID"""
- owner: SalesforceUser!
-
- """Chart Type"""
- chartType: String!
-
- """Custom Field Definition ID"""
- groupingField: String
-
- """Custom Field Definition ID"""
- aggregateField: String
-
- """Aggregate Type"""
- aggregateType: String!
-
- """Collection of Salesforce UserListView"""
- userListViews(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceUserListViewConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceUserListViewSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceUserListViewSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of UserListViews to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceUserListViewsConnection
- customFields(
- """
- List of custom fields to return. By default, returns all custom fields.
- """
- fields: [String!]
- ): JSON!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-"""Case Team Member Role"""
-type SalesforceCaseTeamRole implements OneGraphNode {
- """Team Role Id"""
- id: String!
-
- """Name"""
- name: String!
-
- """Access Level"""
- accessLevel: String!
-
- """Visible in Customer Portal"""
- preferencesVisibleInCsp: Boolean!
-
- """Created Date"""
- createdDate: String!
-
- """Created By ID"""
- createdById: String!
-
- """Created By ID"""
- createdBy: SalesforceUser!
-
- """Last Modified Date"""
- lastModifiedDate: String!
-
- """Last Modified By ID"""
- lastModifiedById: String!
-
- """Last Modified By ID"""
- lastModifiedBy: SalesforceUser!
-
- """System Modstamp"""
- systemModstamp: String!
- customFields(
- """
- List of custom fields to return. By default, returns all custom fields.
- """
- fields: [String!]
- ): JSON!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-union SalesforceCaseTeamTemplateMemberMemberUnion = SalesforceUser | SalesforceContact
-
-"""Predefined Case Team Member"""
-type SalesforceCaseTeamTemplateMember implements OneGraphNode {
- """Team Template Member Id"""
- id: String!
-
- """Team Template ID"""
- teamTemplateId: String!
-
- """Team Template ID"""
- teamTemplate: SalesforceCaseTeamTemplate!
-
- """Member ID"""
- memberId: String!
-
- """Member ID"""
- member: SalesforceCaseTeamTemplateMemberMemberUnion!
-
- """Team Role ID"""
- teamRoleId: String
-
- """Team Role ID"""
- teamRole: SalesforceCaseTeamRole
-
- """Created Date"""
- createdDate: String!
-
- """Created By ID"""
- createdById: String!
-
- """Created By ID"""
- createdBy: SalesforceUser!
-
- """Last Modified Date"""
- lastModifiedDate: String!
-
- """Last Modified By ID"""
- lastModifiedById: String!
-
- """Last Modified By ID"""
- lastModifiedBy: SalesforceUser!
-
- """System Modstamp"""
- systemModstamp: String!
- customFields(
- """
- List of custom fields to return. By default, returns all custom fields.
- """
- fields: [String!]
- ): JSON!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-union SalesforceGroupMemberUserOrGroupUnion = SalesforceUser | SalesforceGroup
-
-"""Group Member"""
-type SalesforceGroupMember implements OneGraphNode {
- """Group Member ID"""
- id: String!
-
- """Group ID"""
- groupId: String!
-
- """Group ID"""
- group: SalesforceGroup!
-
- """User/Group ID"""
- userOrGroupId: String!
-
- """User/Group ID"""
- userOrGroup: SalesforceGroupMemberUserOrGroupUnion!
-
- """System Modstamp"""
- systemModstamp: String!
- customFields(
- """
- List of custom fields to return. By default, returns all custom fields.
- """
- fields: [String!]
- ): JSON!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-"""Predefined Case Team"""
-type SalesforceCaseTeamTemplate implements OneGraphNode {
- """Team Template Id"""
- id: String!
-
- """Name"""
- name: String!
-
- """Description"""
- description: String
-
- """Created Date"""
- createdDate: String!
-
- """Created By ID"""
- createdById: String!
-
- """Created By ID"""
- createdBy: SalesforceUser!
-
- """Last Modified Date"""
- lastModifiedDate: String!
-
- """Last Modified By ID"""
- lastModifiedById: String!
-
- """Last Modified By ID"""
- lastModifiedBy: SalesforceUser!
-
- """System Modstamp"""
- systemModstamp: String!
- customFields(
- """
- List of custom fields to return. By default, returns all custom fields.
- """
- fields: [String!]
- ): JSON!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-"""Predefined Case Team Record"""
-type SalesforceCaseTeamTemplateRecord implements OneGraphNode {
- """Predefined Team Record Id"""
- id: String!
-
- """Case ID"""
- parentId: String!
-
- """Case ID"""
- parent: SalesforceCase!
-
- """Team Template ID"""
- teamTemplateId: String!
-
- """Team Template ID"""
- teamTemplate: SalesforceCaseTeamTemplate!
-
- """Created Date"""
- createdDate: String!
-
- """Created By ID"""
- createdById: String!
-
- """Created By ID"""
- createdBy: SalesforceUser!
-
- """System Modstamp"""
- systemModstamp: String!
- customFields(
- """
- List of custom fields to return. By default, returns all custom fields.
- """
- fields: [String!]
- ): JSON!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-"""CORS Whitelist Origin"""
-type SalesforceCorsWhitelistEntry implements OneGraphNode {
- """CORS Whitelist Origin ID"""
- id: String!
-
- """Deleted"""
- isDeleted: Boolean!
-
- """Name"""
- developerName: String!
-
- """Master Language"""
- language: String
-
- """Label"""
- masterLabel: String!
-
- """Namespace Prefix"""
- namespacePrefix: String
-
- """Created Date"""
- createdDate: String!
-
- """Created By ID"""
- createdById: String!
-
- """Created By ID"""
- createdBy: SalesforceUser!
-
- """Last Modified Date"""
- lastModifiedDate: String!
-
- """Last Modified By ID"""
- lastModifiedById: String!
-
- """Last Modified By ID"""
- lastModifiedBy: SalesforceUser!
-
- """System Modstamp"""
- systemModstamp: String!
-
- """Origin URL Pattern"""
- urlPattern: String!
- customFields(
- """
- List of custom fields to return. By default, returns all custom fields.
- """
- fields: [String!]
- ): JSON!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-union SalesforceLeadShareUserOrGroupUnion = SalesforceUser | SalesforceGroup
-
-"""Lead Share"""
-type SalesforceLeadShare implements OneGraphNode {
- """Lead Share ID"""
- id: String!
-
- """Lead ID"""
- leadId: String!
-
- """Lead ID"""
- lead: SalesforceLead!
-
- """User/Group ID"""
- userOrGroupId: String!
-
- """User/Group ID"""
- userOrGroup: SalesforceLeadShareUserOrGroupUnion!
-
- """Lead Access"""
- leadAccessLevel: String!
-
- """Row Cause"""
- rowCause: String
-
- """Last Modified Date"""
- lastModifiedDate: String!
-
- """Last Modified By ID"""
- lastModifiedById: String!
-
- """Last Modified By ID"""
- lastModifiedBy: SalesforceUser!
-
- """Deleted"""
- isDeleted: Boolean!
- customFields(
- """
- List of custom fields to return. By default, returns all custom fields.
- """
- fields: [String!]
- ): JSON!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-"""
-A filter to be used against PlatformCachePartition object types. All fields are combined with a logical ‘and.’
-"""
-input SalesforcePlatformCachePartitionConnectionFilter {
- """Filter against custom fields."""
- customField: SalesforceCustomFieldFilter
-
- """Filter by the PlatformCachePartition's lastModifiedBy relation."""
- lastModifiedBy: SalesforceUserConnectionFilter
-
- """Filter by the PlatformCachePartition's createdBy relation."""
- createdBy: SalesforceUserConnectionFilter
-
- """Filter by the PlatformCachePartition's id field"""
- id: SalesforceIdFilter
-
- """Filter by the PlatformCachePartition's isDeleted field"""
- isDeleted: SalesforceBooleanFilter
-
- """Filter by the PlatformCachePartition's developerName field"""
- developerName: SalesforceStringFilter
-
- """Filter by the PlatformCachePartition's language field"""
- language: SalesforceStringFilter
-
- """Filter by the PlatformCachePartition's masterLabel field"""
- masterLabel: SalesforceStringFilter
-
- """Filter by the PlatformCachePartition's namespacePrefix field"""
- namespacePrefix: SalesforceStringFilter
-
- """Filter by the PlatformCachePartition's createdDate field"""
- createdDate: SalesforceDateTimeFilter
-
- """Filter by the PlatformCachePartition's createdById field"""
- createdById: SalesforceIdFilter
-
- """Filter by the PlatformCachePartition's lastModifiedDate field"""
- lastModifiedDate: SalesforceDateTimeFilter
-
- """Filter by the PlatformCachePartition's lastModifiedById field"""
- lastModifiedById: SalesforceIdFilter
-
- """Filter by the PlatformCachePartition's systemModstamp field"""
- systemModstamp: SalesforceDateTimeFilter
-
- """Filter by the PlatformCachePartition's isDefaultPartition field"""
- isDefaultPartition: SalesforceBooleanFilter
-
- """Checks for any expressions in this list."""
- or: [SalesforcePlatformCachePartitionConnectionFilter!]
-
- """Checks for all expressions in this list."""
- and: [SalesforcePlatformCachePartitionConnectionFilter!]
-}
-
-"""
-A filter to be used against PlatformCachePartitionType object types. All fields are combined with a logical ‘and.’
-"""
-input SalesforcePlatformCachePartitionTypeConnectionFilter {
- """Filter against custom fields."""
- customField: SalesforceCustomFieldFilter
-
- """
- Filter by the PlatformCachePartitionType's platformCachePartition relation.
- """
- platformCachePartition: SalesforcePlatformCachePartitionConnectionFilter
-
- """Filter by the PlatformCachePartitionType's lastModifiedBy relation."""
- lastModifiedBy: SalesforceUserConnectionFilter
-
- """Filter by the PlatformCachePartitionType's createdBy relation."""
- createdBy: SalesforceUserConnectionFilter
-
- """Filter by the PlatformCachePartitionType's id field"""
- id: SalesforceIdFilter
-
- """Filter by the PlatformCachePartitionType's isDeleted field"""
- isDeleted: SalesforceBooleanFilter
-
- """Filter by the PlatformCachePartitionType's createdDate field"""
- createdDate: SalesforceDateTimeFilter
-
- """Filter by the PlatformCachePartitionType's createdById field"""
- createdById: SalesforceIdFilter
-
- """Filter by the PlatformCachePartitionType's lastModifiedDate field"""
- lastModifiedDate: SalesforceDateTimeFilter
-
- """Filter by the PlatformCachePartitionType's lastModifiedById field"""
- lastModifiedById: SalesforceIdFilter
-
- """Filter by the PlatformCachePartitionType's systemModstamp field"""
- systemModstamp: SalesforceDateTimeFilter
-
- """
- Filter by the PlatformCachePartitionType's platformCachePartitionId field
- """
- platformCachePartitionId: SalesforceIdFilter
-
- """Filter by the PlatformCachePartitionType's cacheType field"""
- cacheType: SalesforceStringFilter
-
- """Filter by the PlatformCachePartitionType's allocatedCapacity field"""
- allocatedCapacity: SalesforceIntFilter
-
- """
- Filter by the PlatformCachePartitionType's allocatedPurchasedCapacity field
- """
- allocatedPurchasedCapacity: SalesforceIntFilter
-
- """
- Filter by the PlatformCachePartitionType's allocatedTrialCapacity field
- """
- allocatedTrialCapacity: SalesforceIntFilter
-
- """Checks for any expressions in this list."""
- or: [SalesforcePlatformCachePartitionTypeConnectionFilter!]
-
- """Checks for all expressions in this list."""
- and: [SalesforcePlatformCachePartitionTypeConnectionFilter!]
-}
-
-"""Field that Platform Cache Partition Types can be sorted by"""
-enum SalesforcePlatformCachePartitionTypeSortByFieldEnum {
- ID
- IS_DELETED
- CREATED_DATE
- CREATED_BY_ID
- LAST_MODIFIED_DATE
- LAST_MODIFIED_BY_ID
- SYSTEM_MODSTAMP
- PLATFORM_CACHE_PARTITION_ID
- CACHE_TYPE
- ALLOCATED_CAPACITY
- ALLOCATED_PURCHASED_CAPACITY
- ALLOCATED_TRIAL_CAPACITY
-}
-
-"""An edge in a connection."""
-type SalesforcePlatformCachePartitionTypeEdge {
- """The item at the end of the edge."""
- node: SalesforcePlatformCachePartitionType!
-
- """A cursor for use in pagination"""
- cursor: String!
-}
-
-"""
-Salesforce Platform Cache Partition Types connection, for use in pagination.
-"""
-type SalesforcePlatformCachePartitionTypesConnection {
- """
- The count of all Platform Cache Partition Type you could get from the connection.
- """
- totalCount: Int!
-
- """Pagination Information"""
- pageInfo: PageInfo!
-
- """List of Salesforce Platform Cache Partition Types"""
- nodes: [SalesforcePlatformCachePartitionType!]!
-
- """List of Platform Cache Partition Type edges"""
- edges: [SalesforcePlatformCachePartitionTypeEdge!]!
-}
-
-"""Platform Cache Partition"""
-type SalesforcePlatformCachePartition implements OneGraphNode {
- """Platform Cache Partition ID"""
- id: String!
-
- """Deleted"""
- isDeleted: Boolean!
-
- """Name"""
- developerName: String!
-
- """Master Language"""
- language: String
-
- """Label"""
- masterLabel: String!
-
- """Namespace Prefix"""
- namespacePrefix: String
-
- """Created Date"""
- createdDate: String!
-
- """Created By ID"""
- createdById: String!
-
- """Created By ID"""
- createdBy: SalesforceUser!
-
- """Last Modified Date"""
- lastModifiedDate: String!
-
- """Last Modified By ID"""
- lastModifiedById: String!
-
- """Last Modified By ID"""
- lastModifiedBy: SalesforceUser!
-
- """System Modstamp"""
- systemModstamp: String!
-
- """Description"""
- description: String
-
- """Default Partition"""
- isDefaultPartition: Boolean!
-
- """Collection of Salesforce PlatformCachePartitionType"""
- platforCachePartitionTypes(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforcePlatformCachePartitionTypeConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforcePlatformCachePartitionTypeSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforcePlatformCachePartitionTypeSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """
- Number of PlatformCachePartitionTypes to fetch. Defaults to 10. Maximum is 60.
- """
- first: Int
- ): SalesforcePlatformCachePartitionTypesConnection
- customFields(
- """
- List of custom fields to return. By default, returns all custom fields.
- """
- fields: [String!]
- ): JSON!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-"""Platform Cache Partition Type"""
-type SalesforcePlatformCachePartitionType implements OneGraphNode {
- """Platform Cache Partition Type ID"""
- id: String!
-
- """Deleted"""
- isDeleted: Boolean!
-
- """Created Date"""
- createdDate: String!
-
- """Created By ID"""
- createdById: String!
-
- """Created By ID"""
- createdBy: SalesforceUser!
-
- """Last Modified Date"""
- lastModifiedDate: String!
-
- """Last Modified By ID"""
- lastModifiedById: String!
-
- """Last Modified By ID"""
- lastModifiedBy: SalesforceUser!
-
- """System Modstamp"""
- systemModstamp: String!
-
- """Platform Cache Partition ID"""
- platformCachePartitionId: String!
-
- """Platform Cache Partition ID"""
- platformCachePartition: SalesforcePlatformCachePartition!
-
- """Cache Type"""
- cacheType: String!
-
- """Allocated Capacity"""
- allocatedCapacity: Int
-
- """Allocated Namespaced Purchased Capacity"""
- allocatedPurchasedCapacity: Int
-
- """Allocated Trial Capacity"""
- allocatedTrialCapacity: Int
- customFields(
- """
- List of custom fields to return. By default, returns all custom fields.
- """
- fields: [String!]
- ): JSON!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-"""Contract Status Value"""
-type SalesforceContractStatus implements OneGraphNode {
- """Contract Status Value ID"""
- id: String!
-
- """Master Label"""
- masterLabel: String
-
- """Api Name"""
- apiName: String!
-
- """Sort Order"""
- sortOrder: Int
-
- """Is Default"""
- isDefault: Boolean!
-
- """Status Code"""
- statusCode: String
-
- """Created By ID"""
- createdById: String!
-
- """Created By ID"""
- createdBy: SalesforceUser!
-
- """Created Date"""
- createdDate: String!
-
- """Last Modified By ID"""
- lastModifiedById: String!
-
- """Last Modified By ID"""
- lastModifiedBy: SalesforceUser!
-
- """Last Modified Date"""
- lastModifiedDate: String!
-
- """System Modstamp"""
- systemModstamp: String!
- customFields(
- """
- List of custom fields to return. By default, returns all custom fields.
- """
- fields: [String!]
- ): JSON!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-"""Case Status Value"""
-type SalesforceCaseStatus implements OneGraphNode {
- """Case Status Value ID"""
- id: String!
-
- """Master Label"""
- masterLabel: String
-
- """Api Name"""
- apiName: String!
-
- """Sort Order"""
- sortOrder: Int
-
- """Is Default"""
- isDefault: Boolean!
-
- """Is Closed"""
- isClosed: Boolean!
-
- """Created By ID"""
- createdById: String!
-
- """Created By ID"""
- createdBy: SalesforceUser!
-
- """Created Date"""
- createdDate: String!
-
- """Last Modified By ID"""
- lastModifiedById: String!
-
- """Last Modified By ID"""
- lastModifiedBy: SalesforceUser!
-
- """Last Modified Date"""
- lastModifiedDate: String!
-
- """System Modstamp"""
- systemModstamp: String!
- customFields(
- """
- List of custom fields to return. By default, returns all custom fields.
- """
- fields: [String!]
- ): JSON!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-"""Holiday"""
-type SalesforceHoliday implements OneGraphNode {
- """Holiday ID"""
- id: String!
-
- """Holiday Name"""
- name: String!
-
- """Description"""
- description: String
-
- """All Day"""
- isAllDay: Boolean!
-
- """Holiday Date"""
- activityDate: String
-
- """Start Time In Minutes From Midnight"""
- startTimeInMinutes: Int
-
- """End Time In Minutes From Midnight"""
- endTimeInMinutes: Int
-
- """Created Date"""
- createdDate: String!
-
- """Created By ID"""
- createdById: String!
-
- """Created By ID"""
- createdBy: SalesforceUser!
-
- """Last Modified Date"""
- lastModifiedDate: String!
-
- """Last Modified By ID"""
- lastModifiedById: String!
-
- """Last Modified By ID"""
- lastModifiedBy: SalesforceUser!
-
- """System Modstamp"""
- systemModstamp: String!
-
- """Recurring Holiday"""
- isRecurrence: Boolean!
-
- """Recurrence Start"""
- recurrenceStartDate: String
-
- """Recurrence End"""
- recurrenceEndDateOnly: String
-
- """Recurrence Type"""
- recurrenceType: String
-
- """Recurrence Interval"""
- recurrenceInterval: Int
-
- """Recurrence Day of Week Mask"""
- recurrenceDayOfWeekMask: Int
-
- """Recurrence Day of Month"""
- recurrenceDayOfMonth: Int
-
- """Recurrence Instance"""
- recurrenceInstance: String
-
- """Recurrence Month of Year"""
- recurrenceMonthOfYear: String
- customFields(
- """
- List of custom fields to return. By default, returns all custom fields.
- """
- fields: [String!]
- ): JSON!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-"""
-A filter to be used against MatchingRule object types. All fields are combined with a logical ‘and.’
-"""
-input SalesforceMatchingRuleConnectionFilter {
- """Filter against custom fields."""
- customField: SalesforceCustomFieldFilter
-
- """Filter by the MatchingRule's lastModifiedBy relation."""
- lastModifiedBy: SalesforceUserConnectionFilter
-
- """Filter by the MatchingRule's createdBy relation."""
- createdBy: SalesforceUserConnectionFilter
-
- """Filter by the MatchingRule's id field"""
- id: SalesforceIdFilter
-
- """Filter by the MatchingRule's isDeleted field"""
- isDeleted: SalesforceBooleanFilter
-
- """Filter by the MatchingRule's sobjectType field"""
- sobjectType: SalesforceStringFilter
-
- """Filter by the MatchingRule's developerName field"""
- developerName: SalesforceStringFilter
-
- """Filter by the MatchingRule's language field"""
- language: SalesforceStringFilter
-
- """Filter by the MatchingRule's masterLabel field"""
- masterLabel: SalesforceStringFilter
-
- """Filter by the MatchingRule's namespacePrefix field"""
- namespacePrefix: SalesforceStringFilter
-
- """Filter by the MatchingRule's createdDate field"""
- createdDate: SalesforceDateTimeFilter
-
- """Filter by the MatchingRule's createdById field"""
- createdById: SalesforceIdFilter
-
- """Filter by the MatchingRule's lastModifiedDate field"""
- lastModifiedDate: SalesforceDateTimeFilter
-
- """Filter by the MatchingRule's lastModifiedById field"""
- lastModifiedById: SalesforceIdFilter
-
- """Filter by the MatchingRule's systemModstamp field"""
- systemModstamp: SalesforceDateTimeFilter
-
- """Filter by the MatchingRule's matchEngine field"""
- matchEngine: SalesforceStringFilter
-
- """Filter by the MatchingRule's booleanFilter field"""
- booleanFilter: SalesforceStringFilter
-
- """Filter by the MatchingRule's description field"""
- description: SalesforceStringFilter
-
- """Filter by the MatchingRule's ruleStatus field"""
- ruleStatus: SalesforceStringFilter
-
- """Filter by the MatchingRule's sobjectSubtype field"""
- sobjectSubtype: SalesforceStringFilter
-
- """Checks for any expressions in this list."""
- or: [SalesforceMatchingRuleConnectionFilter!]
-
- """Checks for all expressions in this list."""
- and: [SalesforceMatchingRuleConnectionFilter!]
-}
-
-"""
-A filter to be used against MatchingRuleItem object types. All fields are combined with a logical ‘and.’
-"""
-input SalesforceMatchingRuleItemConnectionFilter {
- """Filter against custom fields."""
- customField: SalesforceCustomFieldFilter
-
- """Filter by the MatchingRuleItem's matchingRule relation."""
- matchingRule: SalesforceMatchingRuleConnectionFilter
-
- """Filter by the MatchingRuleItem's lastModifiedBy relation."""
- lastModifiedBy: SalesforceUserConnectionFilter
-
- """Filter by the MatchingRuleItem's createdBy relation."""
- createdBy: SalesforceUserConnectionFilter
-
- """Filter by the MatchingRuleItem's id field"""
- id: SalesforceIdFilter
-
- """Filter by the MatchingRuleItem's isDeleted field"""
- isDeleted: SalesforceBooleanFilter
-
- """Filter by the MatchingRuleItem's createdDate field"""
- createdDate: SalesforceDateTimeFilter
-
- """Filter by the MatchingRuleItem's createdById field"""
- createdById: SalesforceIdFilter
-
- """Filter by the MatchingRuleItem's lastModifiedDate field"""
- lastModifiedDate: SalesforceDateTimeFilter
-
- """Filter by the MatchingRuleItem's lastModifiedById field"""
- lastModifiedById: SalesforceIdFilter
-
- """Filter by the MatchingRuleItem's systemModstamp field"""
- systemModstamp: SalesforceDateTimeFilter
-
- """Filter by the MatchingRuleItem's matchingRuleId field"""
- matchingRuleId: SalesforceIdFilter
-
- """Filter by the MatchingRuleItem's sortOrder field"""
- sortOrder: SalesforceIntFilter
-
- """Filter by the MatchingRuleItem's field field"""
- field: SalesforceStringFilter
-
- """Filter by the MatchingRuleItem's matchingMethod field"""
- matchingMethod: SalesforceStringFilter
-
- """Filter by the MatchingRuleItem's blankValueBehavior field"""
- blankValueBehavior: SalesforceStringFilter
-
- """Checks for any expressions in this list."""
- or: [SalesforceMatchingRuleItemConnectionFilter!]
-
- """Checks for all expressions in this list."""
- and: [SalesforceMatchingRuleItemConnectionFilter!]
-}
-
-"""Field that Matching Rule Items can be sorted by"""
-enum SalesforceMatchingRuleItemSortByFieldEnum {
- ID
- IS_DELETED
- CREATED_DATE
- CREATED_BY_ID
- LAST_MODIFIED_DATE
- LAST_MODIFIED_BY_ID
- SYSTEM_MODSTAMP
- MATCHING_RULE_ID
- SORT_ORDER
- FIELD
- MATCHING_METHOD
- BLANK_VALUE_BEHAVIOR
-}
-
-"""An edge in a connection."""
-type SalesforceMatchingRuleItemEdge {
- """The item at the end of the edge."""
- node: SalesforceMatchingRuleItem!
-
- """A cursor for use in pagination"""
- cursor: String!
-}
-
-"""Salesforce Matching Rule Items connection, for use in pagination."""
-type SalesforceMatchingRuleItemsConnection {
- """The count of all Matching Rule Item you could get from the connection."""
- totalCount: Int!
-
- """Pagination Information"""
- pageInfo: PageInfo!
-
- """List of Salesforce Matching Rule Items"""
- nodes: [SalesforceMatchingRuleItem!]!
-
- """List of Matching Rule Item edges"""
- edges: [SalesforceMatchingRuleItemEdge!]!
-}
-
-"""Matching Rule"""
-type SalesforceMatchingRule implements OneGraphNode {
- """Matching Rule ID"""
- id: String!
-
- """Deleted"""
- isDeleted: Boolean!
-
- """Custom Object Definition ID"""
- sobjectType: String!
-
- """Unique Name"""
- developerName: String!
-
- """Master Language"""
- language: String!
-
- """Rule Name"""
- masterLabel: String!
-
- """Namespace Prefix"""
- namespacePrefix: String
-
- """Created Date"""
- createdDate: String!
-
- """Created By ID"""
- createdById: String!
-
- """Created By ID"""
- createdBy: SalesforceUser!
-
- """Last Modified Date"""
- lastModifiedDate: String!
-
- """Last Modified By ID"""
- lastModifiedById: String!
-
- """Last Modified By ID"""
- lastModifiedBy: SalesforceUser!
-
- """System Modstamp"""
- systemModstamp: String!
-
- """Custom Object Definition ID"""
- matchEngine: String
-
- """Advanced Logic"""
- booleanFilter: String
-
- """Description"""
- description: String
-
- """Status"""
- ruleStatus: String!
-
- """Object Subtype"""
- sobjectSubtype: String
-
- """Collection of Salesforce MatchingRuleItem"""
- matchingRuleItems(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceMatchingRuleItemConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceMatchingRuleItemSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceMatchingRuleItemSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of MatchingRuleItems to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceMatchingRuleItemsConnection
- customFields(
- """
- List of custom fields to return. By default, returns all custom fields.
- """
- fields: [String!]
- ): JSON!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-"""Matching Rule Item"""
-type SalesforceMatchingRuleItem implements OneGraphNode {
- """Matching Rule Item ID"""
- id: String!
-
- """Deleted"""
- isDeleted: Boolean!
-
- """Created Date"""
- createdDate: String!
-
- """Created By ID"""
- createdById: String!
-
- """Created By ID"""
- createdBy: SalesforceUser!
-
- """Last Modified Date"""
- lastModifiedDate: String!
-
- """Last Modified By ID"""
- lastModifiedById: String!
-
- """Last Modified By ID"""
- lastModifiedBy: SalesforceUser!
-
- """System Modstamp"""
- systemModstamp: String!
-
- """Matching Rule ID"""
- matchingRuleId: String!
-
- """Matching Rule ID"""
- matchingRule: SalesforceMatchingRule!
-
- """Sort Order"""
- sortOrder: Int!
-
- """Field"""
- field: String
-
- """Custom Object Definition ID"""
- matchingMethod: String
-
- """Blank Value Behavior"""
- blankValueBehavior: String!
- customFields(
- """
- List of custom fields to return. By default, returns all custom fields.
- """
- fields: [String!]
- ): JSON!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-"""Task Status Value"""
-type SalesforceTaskStatus implements OneGraphNode {
- """Task Status Value ID"""
- id: String!
-
- """Master Label"""
- masterLabel: String
-
- """Api Name"""
- apiName: String!
-
- """Sort Order"""
- sortOrder: Int
-
- """Is Default"""
- isDefault: Boolean!
-
- """Is Closed"""
- isClosed: Boolean!
-
- """Created By ID"""
- createdById: String!
-
- """Created By ID"""
- createdBy: SalesforceUser!
-
- """Created Date"""
- createdDate: String!
-
- """Last Modified By ID"""
- lastModifiedById: String!
-
- """Last Modified By ID"""
- lastModifiedBy: SalesforceUser!
-
- """Last Modified Date"""
- lastModifiedDate: String!
-
- """System Modstamp"""
- systemModstamp: String!
- customFields(
- """
- List of custom fields to return. By default, returns all custom fields.
- """
- fields: [String!]
- ): JSON!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-"""
-A filter to be used against SecureAgentPluginProperty object types. All fields are combined with a logical ‘and.’
-"""
-input SalesforceSecureAgentPluginPropertyConnectionFilter {
- """Filter against custom fields."""
- customField: SalesforceCustomFieldFilter
-
- """Filter by the SecureAgentPluginProperty's secureAgentPlugin relation."""
- secureAgentPlugin: SalesforceSecureAgentPluginConnectionFilter
-
- """Filter by the SecureAgentPluginProperty's lastModifiedBy relation."""
- lastModifiedBy: SalesforceUserConnectionFilter
-
- """Filter by the SecureAgentPluginProperty's createdBy relation."""
- createdBy: SalesforceUserConnectionFilter
-
- """Filter by the SecureAgentPluginProperty's id field"""
- id: SalesforceIdFilter
-
- """Filter by the SecureAgentPluginProperty's isDeleted field"""
- isDeleted: SalesforceBooleanFilter
-
- """Filter by the SecureAgentPluginProperty's createdDate field"""
- createdDate: SalesforceDateTimeFilter
-
- """Filter by the SecureAgentPluginProperty's createdById field"""
- createdById: SalesforceIdFilter
-
- """Filter by the SecureAgentPluginProperty's lastModifiedDate field"""
- lastModifiedDate: SalesforceDateTimeFilter
-
- """Filter by the SecureAgentPluginProperty's lastModifiedById field"""
- lastModifiedById: SalesforceIdFilter
-
- """Filter by the SecureAgentPluginProperty's systemModstamp field"""
- systemModstamp: SalesforceDateTimeFilter
-
- """Filter by the SecureAgentPluginProperty's secureAgentPluginId field"""
- secureAgentPluginId: SalesforceIdFilter
-
- """Filter by the SecureAgentPluginProperty's propertyName field"""
- propertyName: SalesforceStringFilter
-
- """Checks for any expressions in this list."""
- or: [SalesforceSecureAgentPluginPropertyConnectionFilter!]
-
- """Checks for all expressions in this list."""
- and: [SalesforceSecureAgentPluginPropertyConnectionFilter!]
-}
-
-"""Field that Secure Agent Plug-in Properties can be sorted by"""
-enum SalesforceSecureAgentPluginPropertySortByFieldEnum {
- ID
- IS_DELETED
- CREATED_DATE
- CREATED_BY_ID
- LAST_MODIFIED_DATE
- LAST_MODIFIED_BY_ID
- SYSTEM_MODSTAMP
- SECURE_AGENT_PLUGIN_ID
- PROPERTY_NAME
-}
-
-"""An edge in a connection."""
-type SalesforceSecureAgentPluginPropertyEdge {
- """The item at the end of the edge."""
- node: SalesforceSecureAgentPluginProperty!
-
- """A cursor for use in pagination"""
- cursor: String!
-}
-
-"""Secure Agent Plug-in Property"""
-type SalesforceSecureAgentPluginProperty implements OneGraphNode {
- """Secure Agent Plug-in Property ID"""
- id: String!
-
- """Deleted"""
- isDeleted: Boolean!
-
- """Created Date"""
- createdDate: String!
-
- """Created By ID"""
- createdById: String!
-
- """Created By ID"""
- createdBy: SalesforceUser!
-
- """Last Modified Date"""
- lastModifiedDate: String!
-
- """Last Modified By ID"""
- lastModifiedById: String!
-
- """Last Modified By ID"""
- lastModifiedBy: SalesforceUser!
-
- """System Modstamp"""
- systemModstamp: String!
-
- """Secure Agent Plug-in ID"""
- secureAgentPluginId: String!
-
- """Secure Agent Plug-in ID"""
- secureAgentPlugin: SalesforceSecureAgentPlugin!
-
- """Property Name"""
- propertyName: String
-
- """Property Value"""
- propertyValue: String
- customFields(
- """
- List of custom fields to return. By default, returns all custom fields.
- """
- fields: [String!]
- ): JSON!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-"""
-Salesforce Secure Agent Plug-in Properties connection, for use in pagination.
-"""
-type SalesforceSecureAgentPluginPropertysConnection {
- """
- The count of all Secure Agent Plug-in Property you could get from the connection.
- """
- totalCount: Int!
-
- """Pagination Information"""
- pageInfo: PageInfo!
-
- """List of Salesforce Secure Agent Plug-in Properties"""
- nodes: [SalesforceSecureAgentPluginProperty!]!
-
- """List of Secure Agent Plug-in Property edges"""
- edges: [SalesforceSecureAgentPluginPropertyEdge!]!
-}
-
-"""
-A filter to be used against SecureAgentPlugin object types. All fields are combined with a logical ‘and.’
-"""
-input SalesforceSecureAgentPluginConnectionFilter {
- """Filter against custom fields."""
- customField: SalesforceCustomFieldFilter
-
- """Filter by the SecureAgentPlugin's secureAgent relation."""
- secureAgent: SalesforceSecureAgentConnectionFilter
-
- """Filter by the SecureAgentPlugin's lastModifiedBy relation."""
- lastModifiedBy: SalesforceUserConnectionFilter
-
- """Filter by the SecureAgentPlugin's createdBy relation."""
- createdBy: SalesforceUserConnectionFilter
-
- """Filter by the SecureAgentPlugin's id field"""
- id: SalesforceIdFilter
-
- """Filter by the SecureAgentPlugin's isDeleted field"""
- isDeleted: SalesforceBooleanFilter
-
- """Filter by the SecureAgentPlugin's createdDate field"""
- createdDate: SalesforceDateTimeFilter
-
- """Filter by the SecureAgentPlugin's createdById field"""
- createdById: SalesforceIdFilter
-
- """Filter by the SecureAgentPlugin's lastModifiedDate field"""
- lastModifiedDate: SalesforceDateTimeFilter
-
- """Filter by the SecureAgentPlugin's lastModifiedById field"""
- lastModifiedById: SalesforceIdFilter
-
- """Filter by the SecureAgentPlugin's systemModstamp field"""
- systemModstamp: SalesforceDateTimeFilter
-
- """Filter by the SecureAgentPlugin's secureAgentId field"""
- secureAgentId: SalesforceIdFilter
-
- """Filter by the SecureAgentPlugin's pluginName field"""
- pluginName: SalesforceStringFilter
-
- """Filter by the SecureAgentPlugin's pluginType field"""
- pluginType: SalesforceStringFilter
-
- """Filter by the SecureAgentPlugin's requestedVersion field"""
- requestedVersion: SalesforceStringFilter
-
- """Filter by the SecureAgentPlugin's updateWindowStart field"""
- updateWindowStart: SalesforceDateTimeFilter
-
- """Filter by the SecureAgentPlugin's updateWindowEnd field"""
- updateWindowEnd: SalesforceDateTimeFilter
-
- """Checks for any expressions in this list."""
- or: [SalesforceSecureAgentPluginConnectionFilter!]
-
- """Checks for all expressions in this list."""
- and: [SalesforceSecureAgentPluginConnectionFilter!]
-}
-
-"""Field that Secure Agent Plug-ins can be sorted by"""
-enum SalesforceSecureAgentPluginSortByFieldEnum {
- ID
- IS_DELETED
- CREATED_DATE
- CREATED_BY_ID
- LAST_MODIFIED_DATE
- LAST_MODIFIED_BY_ID
- SYSTEM_MODSTAMP
- SECURE_AGENT_ID
- PLUGIN_NAME
- PLUGIN_TYPE
- REQUESTED_VERSION
- UPDATE_WINDOW_START
- UPDATE_WINDOW_END
-}
-
-"""An edge in a connection."""
-type SalesforceSecureAgentPluginEdge {
- """The item at the end of the edge."""
- node: SalesforceSecureAgentPlugin!
-
- """A cursor for use in pagination"""
- cursor: String!
-}
-
-"""Salesforce Secure Agent Plug-ins connection, for use in pagination."""
-type SalesforceSecureAgentPluginsConnection {
- """
- The count of all Secure Agent Plug-in you could get from the connection.
- """
- totalCount: Int!
-
- """Pagination Information"""
- pageInfo: PageInfo!
-
- """List of Salesforce Secure Agent Plug-ins"""
- nodes: [SalesforceSecureAgentPlugin!]!
-
- """List of Secure Agent Plug-in edges"""
- edges: [SalesforceSecureAgentPluginEdge!]!
-}
-
-"""
-A filter to be used against SecureAgentsCluster object types. All fields are combined with a logical ‘and.’
-"""
-input SalesforceSecureAgentsClusterConnectionFilter {
- """Filter against custom fields."""
- customField: SalesforceCustomFieldFilter
-
- """Filter by the SecureAgentsCluster's lastModifiedBy relation."""
- lastModifiedBy: SalesforceUserConnectionFilter
-
- """Filter by the SecureAgentsCluster's createdBy relation."""
- createdBy: SalesforceUserConnectionFilter
-
- """Filter by the SecureAgentsCluster's id field"""
- id: SalesforceIdFilter
-
- """Filter by the SecureAgentsCluster's isDeleted field"""
- isDeleted: SalesforceBooleanFilter
-
- """Filter by the SecureAgentsCluster's developerName field"""
- developerName: SalesforceStringFilter
-
- """Filter by the SecureAgentsCluster's language field"""
- language: SalesforceStringFilter
-
- """Filter by the SecureAgentsCluster's masterLabel field"""
- masterLabel: SalesforceStringFilter
-
- """Filter by the SecureAgentsCluster's createdDate field"""
- createdDate: SalesforceDateTimeFilter
-
- """Filter by the SecureAgentsCluster's createdById field"""
- createdById: SalesforceIdFilter
-
- """Filter by the SecureAgentsCluster's lastModifiedDate field"""
- lastModifiedDate: SalesforceDateTimeFilter
-
- """Filter by the SecureAgentsCluster's lastModifiedById field"""
- lastModifiedById: SalesforceIdFilter
-
- """Filter by the SecureAgentsCluster's systemModstamp field"""
- systemModstamp: SalesforceDateTimeFilter
-
- """Filter by the SecureAgentsCluster's description field"""
- description: SalesforceStringFilter
-
- """Checks for any expressions in this list."""
- or: [SalesforceSecureAgentsClusterConnectionFilter!]
-
- """Checks for all expressions in this list."""
- and: [SalesforceSecureAgentsClusterConnectionFilter!]
-}
-
-"""
-A filter to be used against SecureAgent object types. All fields are combined with a logical ‘and.’
-"""
-input SalesforceSecureAgentConnectionFilter {
- """Filter against custom fields."""
- customField: SalesforceCustomFieldFilter
-
- """Filter by the SecureAgent's secureAgentsCluster relation."""
- secureAgentsCluster: SalesforceSecureAgentsClusterConnectionFilter
-
- """Filter by the SecureAgent's proxyUser relation."""
- proxyUser: SalesforceUserConnectionFilter
-
- """Filter by the SecureAgent's lastModifiedBy relation."""
- lastModifiedBy: SalesforceUserConnectionFilter
-
- """Filter by the SecureAgent's createdBy relation."""
- createdBy: SalesforceUserConnectionFilter
-
- """Filter by the SecureAgent's id field"""
- id: SalesforceIdFilter
-
- """Filter by the SecureAgent's isDeleted field"""
- isDeleted: SalesforceBooleanFilter
-
- """Filter by the SecureAgent's developerName field"""
- developerName: SalesforceStringFilter
-
- """Filter by the SecureAgent's language field"""
- language: SalesforceStringFilter
-
- """Filter by the SecureAgent's masterLabel field"""
- masterLabel: SalesforceStringFilter
-
- """Filter by the SecureAgent's createdDate field"""
- createdDate: SalesforceDateTimeFilter
-
- """Filter by the SecureAgent's createdById field"""
- createdById: SalesforceIdFilter
-
- """Filter by the SecureAgent's lastModifiedDate field"""
- lastModifiedDate: SalesforceDateTimeFilter
-
- """Filter by the SecureAgent's lastModifiedById field"""
- lastModifiedById: SalesforceIdFilter
-
- """Filter by the SecureAgent's systemModstamp field"""
- systemModstamp: SalesforceDateTimeFilter
-
- """Filter by the SecureAgent's agentKey field"""
- agentKey: SalesforceStringFilter
-
- """Filter by the SecureAgent's proxyUserId field"""
- proxyUserId: SalesforceIdFilter
-
- """Filter by the SecureAgent's secureAgentsClusterId field"""
- secureAgentsClusterId: SalesforceIdFilter
-
- """Filter by the SecureAgent's priority field"""
- priority: SalesforceIntFilter
-
- """Checks for any expressions in this list."""
- or: [SalesforceSecureAgentConnectionFilter!]
-
- """Checks for all expressions in this list."""
- and: [SalesforceSecureAgentConnectionFilter!]
-}
-
-"""Field that Secure Agents can be sorted by"""
-enum SalesforceSecureAgentSortByFieldEnum {
- ID
- IS_DELETED
- DEVELOPER_NAME
- LANGUAGE
- MASTER_LABEL
- CREATED_DATE
- CREATED_BY_ID
- LAST_MODIFIED_DATE
- LAST_MODIFIED_BY_ID
- SYSTEM_MODSTAMP
- AGENT_KEY
- PROXY_USER_ID
- SECURE_AGENTS_CLUSTER_ID
- PRIORITY
-}
-
-"""An edge in a connection."""
-type SalesforceSecureAgentEdge {
- """The item at the end of the edge."""
- node: SalesforceSecureAgent!
-
- """A cursor for use in pagination"""
- cursor: String!
-}
-
-"""Salesforce Secure Agents connection, for use in pagination."""
-type SalesforceSecureAgentsConnection {
- """The count of all Secure Agent you could get from the connection."""
- totalCount: Int!
-
- """Pagination Information"""
- pageInfo: PageInfo!
-
- """List of Salesforce Secure Agents"""
- nodes: [SalesforceSecureAgent!]!
-
- """List of Secure Agent edges"""
- edges: [SalesforceSecureAgentEdge!]!
-}
-
-"""Secure Agent Cluster"""
-type SalesforceSecureAgentsCluster implements OneGraphNode {
- """Secure Agent Cluster ID"""
- id: String!
-
- """Deleted"""
- isDeleted: Boolean!
-
- """Name"""
- developerName: String!
-
- """Master Language"""
- language: String!
-
- """Label"""
- masterLabel: String!
-
- """Created Date"""
- createdDate: String!
-
- """Created By ID"""
- createdById: String!
-
- """Created By ID"""
- createdBy: SalesforceUser!
-
- """Last Modified Date"""
- lastModifiedDate: String!
-
- """Last Modified By ID"""
- lastModifiedById: String!
-
- """Last Modified By ID"""
- lastModifiedBy: SalesforceUser!
-
- """System Modstamp"""
- systemModstamp: String!
-
- """Description"""
- description: String
-
- """Collection of Salesforce SecureAgent"""
- secureAgents(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceSecureAgentConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceSecureAgentSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceSecureAgentSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of SecureAgents to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceSecureAgentsConnection
- customFields(
- """
- List of custom fields to return. By default, returns all custom fields.
- """
- fields: [String!]
- ): JSON!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-"""Secure Agent"""
-type SalesforceSecureAgent implements OneGraphNode {
- """Secure Agent ID"""
- id: String!
-
- """Deleted"""
- isDeleted: Boolean!
-
- """Name"""
- developerName: String!
-
- """Master Language"""
- language: String!
-
- """Label"""
- masterLabel: String!
-
- """Created Date"""
- createdDate: String!
-
- """Created By ID"""
- createdById: String!
-
- """Created By ID"""
- createdBy: SalesforceUser!
-
- """Last Modified Date"""
- lastModifiedDate: String!
-
- """Last Modified By ID"""
- lastModifiedById: String!
-
- """Last Modified By ID"""
- lastModifiedBy: SalesforceUser!
-
- """System Modstamp"""
- systemModstamp: String!
-
- """Agent Key"""
- agentKey: String
-
- """User ID"""
- proxyUserId: String
-
- """User ID"""
- proxyUser: SalesforceUser
-
- """Secure Agent Cluster ID"""
- secureAgentsClusterId: String
-
- """Secure Agent Cluster ID"""
- secureAgentsCluster: SalesforceSecureAgentsCluster
-
- """Priority"""
- priority: Int
-
- """Collection of Salesforce SecureAgentPlugin"""
- secureAgentPlugins(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceSecureAgentPluginConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceSecureAgentPluginSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceSecureAgentPluginSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of SecureAgentPlugins to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceSecureAgentPluginsConnection
- customFields(
- """
- List of custom fields to return. By default, returns all custom fields.
- """
- fields: [String!]
- ): JSON!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-"""Secure Agent Plug-in"""
-type SalesforceSecureAgentPlugin implements OneGraphNode {
- """Secure Agent Plug-in ID"""
- id: String!
-
- """Deleted"""
- isDeleted: Boolean!
-
- """Created Date"""
- createdDate: String!
-
- """Created By ID"""
- createdById: String!
-
- """Created By ID"""
- createdBy: SalesforceUser!
-
- """Last Modified Date"""
- lastModifiedDate: String!
-
- """Last Modified By ID"""
- lastModifiedById: String!
-
- """Last Modified By ID"""
- lastModifiedBy: SalesforceUser!
-
- """System Modstamp"""
- systemModstamp: String!
-
- """Secure Agent ID"""
- secureAgentId: String!
-
- """Secure Agent ID"""
- secureAgent: SalesforceSecureAgent!
-
- """Name"""
- pluginName: String
-
- """Type"""
- pluginType: String
-
- """Requested Version"""
- requestedVersion: String
-
- """Update Window Start"""
- updateWindowStart: String
-
- """Update Window End"""
- updateWindowEnd: String
-
- """Collection of Salesforce SecureAgentPluginProperty"""
- secureAgentPluginProperties(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceSecureAgentPluginPropertyConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceSecureAgentPluginPropertySortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceSecureAgentPluginPropertySortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """
- Number of SecureAgentPluginProperties to fetch. Defaults to 10. Maximum is 60.
- """
- first: Int
- ): SalesforceSecureAgentPluginPropertysConnection
- customFields(
- """
- List of custom fields to return. By default, returns all custom fields.
- """
- fields: [String!]
- ): JSON!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-"""
-A filter to be used against LightningComponentBundle object types. All fields are combined with a logical ‘and.’
-"""
-input SalesforceLightningComponentBundleConnectionFilter {
- """Filter against custom fields."""
- customField: SalesforceCustomFieldFilter
-
- """Filter by the LightningComponentBundle's lastModifiedBy relation."""
- lastModifiedBy: SalesforceUserConnectionFilter
-
- """Filter by the LightningComponentBundle's createdBy relation."""
- createdBy: SalesforceUserConnectionFilter
-
- """Filter by the LightningComponentBundle's id field"""
- id: SalesforceIdFilter
-
- """Filter by the LightningComponentBundle's isDeleted field"""
- isDeleted: SalesforceBooleanFilter
-
- """Filter by the LightningComponentBundle's developerName field"""
- developerName: SalesforceStringFilter
-
- """Filter by the LightningComponentBundle's language field"""
- language: SalesforceStringFilter
-
- """Filter by the LightningComponentBundle's masterLabel field"""
- masterLabel: SalesforceStringFilter
-
- """Filter by the LightningComponentBundle's namespacePrefix field"""
- namespacePrefix: SalesforceStringFilter
-
- """Filter by the LightningComponentBundle's createdDate field"""
- createdDate: SalesforceDateTimeFilter
-
- """Filter by the LightningComponentBundle's createdById field"""
- createdById: SalesforceIdFilter
-
- """Filter by the LightningComponentBundle's lastModifiedDate field"""
- lastModifiedDate: SalesforceDateTimeFilter
-
- """Filter by the LightningComponentBundle's lastModifiedById field"""
- lastModifiedById: SalesforceIdFilter
-
- """Filter by the LightningComponentBundle's systemModstamp field"""
- systemModstamp: SalesforceDateTimeFilter
-
- """Filter by the LightningComponentBundle's apiVersion field"""
- apiVersion: SalesforceFloatFilter
-
- """Filter by the LightningComponentBundle's minVersion field"""
- minVersion: SalesforceFloatFilter
-
- """Filter by the LightningComponentBundle's isExposed field"""
- isExposed: SalesforceBooleanFilter
-
- """Filter by the LightningComponentBundle's availableFor field"""
- availableFor: SalesforceStringFilter
-
- """Checks for any expressions in this list."""
- or: [SalesforceLightningComponentBundleConnectionFilter!]
-
- """Checks for all expressions in this list."""
- and: [SalesforceLightningComponentBundleConnectionFilter!]
-}
-
-"""
-A filter to be used against LightningComponentResource object types. All fields are combined with a logical ‘and.’
-"""
-input SalesforceLightningComponentResourceConnectionFilter {
- """Filter against custom fields."""
- customField: SalesforceCustomFieldFilter
-
- """
- Filter by the LightningComponentResource's lightningComponentBundle relation.
- """
- lightningComponentBundle: SalesforceLightningComponentBundleConnectionFilter
-
- """Filter by the LightningComponentResource's lastModifiedBy relation."""
- lastModifiedBy: SalesforceUserConnectionFilter
-
- """Filter by the LightningComponentResource's createdBy relation."""
- createdBy: SalesforceUserConnectionFilter
-
- """Filter by the LightningComponentResource's id field"""
- id: SalesforceIdFilter
-
- """Filter by the LightningComponentResource's isDeleted field"""
- isDeleted: SalesforceBooleanFilter
-
- """Filter by the LightningComponentResource's createdDate field"""
- createdDate: SalesforceDateTimeFilter
-
- """Filter by the LightningComponentResource's createdById field"""
- createdById: SalesforceIdFilter
-
- """Filter by the LightningComponentResource's lastModifiedDate field"""
- lastModifiedDate: SalesforceDateTimeFilter
-
- """Filter by the LightningComponentResource's lastModifiedById field"""
- lastModifiedById: SalesforceIdFilter
-
- """Filter by the LightningComponentResource's systemModstamp field"""
- systemModstamp: SalesforceDateTimeFilter
-
- """
- Filter by the LightningComponentResource's lightningComponentBundleId field
- """
- lightningComponentBundleId: SalesforceIdFilter
-
- """Filter by the LightningComponentResource's filePath field"""
- filePath: SalesforceStringFilter
-
- """Filter by the LightningComponentResource's format field"""
- format: SalesforceStringFilter
-
- """Checks for any expressions in this list."""
- or: [SalesforceLightningComponentResourceConnectionFilter!]
-
- """Checks for all expressions in this list."""
- and: [SalesforceLightningComponentResourceConnectionFilter!]
-}
-
-"""Field that LightningComponentResources can be sorted by"""
-enum SalesforceLightningComponentResourceSortByFieldEnum {
- ID
- IS_DELETED
- CREATED_DATE
- CREATED_BY_ID
- LAST_MODIFIED_DATE
- LAST_MODIFIED_BY_ID
- SYSTEM_MODSTAMP
- LIGHTNING_COMPONENT_BUNDLE_ID
- FILE_PATH
- FORMAT
-}
-
-"""An edge in a connection."""
-type SalesforceLightningComponentResourceEdge {
- """The item at the end of the edge."""
- node: SalesforceLightningComponentResource!
-
- """A cursor for use in pagination"""
- cursor: String!
-}
-
-"""LightningComponentResource"""
-type SalesforceLightningComponentResource implements OneGraphNode {
- """Lightning Component Resource ID"""
- id: String!
-
- """Deleted"""
- isDeleted: Boolean!
-
- """Created Date"""
- createdDate: String!
-
- """Created By ID"""
- createdById: String!
-
- """Created By ID"""
- createdBy: SalesforceUser!
-
- """Last Modified Date"""
- lastModifiedDate: String!
-
- """Last Modified By ID"""
- lastModifiedById: String!
-
- """Last Modified By ID"""
- lastModifiedBy: SalesforceUser!
-
- """System Modstamp"""
- systemModstamp: String!
-
- """Lightning Component Bundle ID"""
- lightningComponentBundleId: String!
-
- """Lightning Component Bundle ID"""
- lightningComponentBundle: SalesforceLightningComponentBundle!
-
- """File Path"""
- filePath: String!
-
- """Format"""
- format: String!
-
- """Source"""
- source: String!
- customFields(
- """
- List of custom fields to return. By default, returns all custom fields.
- """
- fields: [String!]
- ): JSON!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-"""
-Salesforce LightningComponentResources connection, for use in pagination.
-"""
-type SalesforceLightningComponentResourcesConnection {
- """
- The count of all LightningComponentResource you could get from the connection.
- """
- totalCount: Int!
-
- """Pagination Information"""
- pageInfo: PageInfo!
-
- """List of Salesforce LightningComponentResources"""
- nodes: [SalesforceLightningComponentResource!]!
-
- """List of LightningComponentResource edges"""
- edges: [SalesforceLightningComponentResourceEdge!]!
-}
-
-"""LightningComponentBundle"""
-type SalesforceLightningComponentBundle implements OneGraphNode {
- """Lightning Component Bundle ID"""
- id: String!
-
- """Deleted"""
- isDeleted: Boolean!
-
- """Name"""
- developerName: String!
-
- """Master Language"""
- language: String
-
- """Label"""
- masterLabel: String!
-
- """Namespace Prefix"""
- namespacePrefix: String
-
- """Created Date"""
- createdDate: String!
-
- """Created By ID"""
- createdById: String!
-
- """Created By ID"""
- createdBy: SalesforceUser!
-
- """Last Modified Date"""
- lastModifiedDate: String!
-
- """Last Modified By ID"""
- lastModifiedById: String!
-
- """Last Modified By ID"""
- lastModifiedBy: SalesforceUser!
-
- """System Modstamp"""
- systemModstamp: String!
-
- """Api Version"""
- apiVersion: Float
-
- """Minimum Version"""
- minVersion: Float
-
- """IsExposed"""
- isExposed: Boolean!
-
- """Available For"""
- availableFor: String
-
- """Collection of Salesforce LightningComponentResource"""
- lightningComponentResources(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceLightningComponentResourceConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceLightningComponentResourceSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceLightningComponentResourceSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """
- Number of LightningComponentResources to fetch. Defaults to 10. Maximum is 60.
- """
- first: Int
- ): SalesforceLightningComponentResourcesConnection
- customFields(
- """
- List of custom fields to return. By default, returns all custom fields.
- """
- fields: [String!]
- ): JSON!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-"""An edge in a connection."""
-type SalesforceChatterExtensionEdge {
- """The item at the end of the edge."""
- node: SalesforceChatterExtension!
-
- """A cursor for use in pagination"""
- cursor: String!
-}
-
-"""
-A filter to be used against ChatterExtensionConfig object types. All fields are combined with a logical ‘and.’
-"""
-input SalesforceChatterExtensionConfigConnectionFilter {
- """Filter against custom fields."""
- customField: SalesforceCustomFieldFilter
-
- """Filter by the ChatterExtensionConfig's chatterExtension relation."""
- chatterExtension: SalesforceChatterExtensionConnectionFilter
-
- """Filter by the ChatterExtensionConfig's lastModifiedBy relation."""
- lastModifiedBy: SalesforceUserConnectionFilter
-
- """Filter by the ChatterExtensionConfig's createdBy relation."""
- createdBy: SalesforceUserConnectionFilter
-
- """Filter by the ChatterExtensionConfig's id field"""
- id: SalesforceIdFilter
-
- """Filter by the ChatterExtensionConfig's isDeleted field"""
- isDeleted: SalesforceBooleanFilter
-
- """Filter by the ChatterExtensionConfig's createdDate field"""
- createdDate: SalesforceDateTimeFilter
-
- """Filter by the ChatterExtensionConfig's createdById field"""
- createdById: SalesforceIdFilter
-
- """Filter by the ChatterExtensionConfig's lastModifiedDate field"""
- lastModifiedDate: SalesforceDateTimeFilter
-
- """Filter by the ChatterExtensionConfig's lastModifiedById field"""
- lastModifiedById: SalesforceIdFilter
-
- """Filter by the ChatterExtensionConfig's systemModstamp field"""
- systemModstamp: SalesforceDateTimeFilter
-
- """Filter by the ChatterExtensionConfig's chatterExtensionId field"""
- chatterExtensionId: SalesforceIdFilter
-
- """Filter by the ChatterExtensionConfig's canCreate field"""
- canCreate: SalesforceBooleanFilter
-
- """Filter by the ChatterExtensionConfig's canRead field"""
- canRead: SalesforceBooleanFilter
-
- """Filter by the ChatterExtensionConfig's position field"""
- position: SalesforceIntFilter
-
- """Checks for any expressions in this list."""
- or: [SalesforceChatterExtensionConfigConnectionFilter!]
-
- """Checks for all expressions in this list."""
- and: [SalesforceChatterExtensionConfigConnectionFilter!]
-}
-
-"""Field that Chatter Extension Configurations can be sorted by"""
-enum SalesforceChatterExtensionConfigSortByFieldEnum {
- ID
- IS_DELETED
- CREATED_DATE
- CREATED_BY_ID
- LAST_MODIFIED_DATE
- LAST_MODIFIED_BY_ID
- SYSTEM_MODSTAMP
- CHATTER_EXTENSION_ID
- CAN_CREATE
- CAN_READ
- POSITION
-}
-
-"""An edge in a connection."""
-type SalesforceChatterExtensionConfigEdge {
- """The item at the end of the edge."""
- node: SalesforceChatterExtensionConfig!
-
- """A cursor for use in pagination"""
- cursor: String!
-}
-
-"""Chatter Extension Configuration"""
-type SalesforceChatterExtensionConfig implements OneGraphNode {
- """Chatter Extension Configuration ID"""
- id: String!
-
- """Deleted"""
- isDeleted: Boolean!
-
- """Created Date"""
- createdDate: String!
-
- """Created By ID"""
- createdById: String!
-
- """Created By ID"""
- createdBy: SalesforceUser!
-
- """Last Modified Date"""
- lastModifiedDate: String!
-
- """Last Modified By ID"""
- lastModifiedById: String!
-
- """Last Modified By ID"""
- lastModifiedBy: SalesforceUser!
-
- """System Modstamp"""
- systemModstamp: String!
-
- """Chatter Extension ID"""
- chatterExtensionId: String
-
- """Chatter Extension ID"""
- chatterExtension: SalesforceChatterExtension
-
- """Can Create"""
- canCreate: Boolean!
-
- """Can Read"""
- canRead: Boolean!
-
- """Position"""
- position: Int
- customFields(
- """
- List of custom fields to return. By default, returns all custom fields.
- """
- fields: [String!]
- ): JSON!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-"""
-Salesforce Chatter Extension Configurations connection, for use in pagination.
-"""
-type SalesforceChatterExtensionConfigsConnection {
- """
- The count of all Chatter Extension Configuration you could get from the connection.
- """
- totalCount: Int!
-
- """Pagination Information"""
- pageInfo: PageInfo!
-
- """List of Salesforce Chatter Extension Configurations"""
- nodes: [SalesforceChatterExtensionConfig!]!
-
- """List of Chatter Extension Configuration edges"""
- edges: [SalesforceChatterExtensionConfigEdge!]!
-}
-
-"""An edge in a connection."""
-type SalesforceCustomBrandAssetEdge {
- """The item at the end of the edge."""
- node: SalesforceCustomBrandAsset!
-
- """A cursor for use in pagination"""
- cursor: String!
-}
-
-"""Field that Reports can be sorted by"""
-enum SalesforceReportSortByFieldEnum {
- ID
- OWNER_ID
- FOLDER_NAME
- CREATED_DATE
- CREATED_BY_ID
- LAST_MODIFIED_DATE
- LAST_MODIFIED_BY_ID
- IS_DELETED
- NAME
- DESCRIPTION
- DEVELOPER_NAME
- NAMESPACE_PREFIX
- LAST_RUN_DATE
- SYSTEM_MODSTAMP
- FORMAT
- LAST_VIEWED_DATE
- LAST_REFERENCED_DATE
-}
-
-"""An edge in a connection."""
-type SalesforceReportEdge {
- """The item at the end of the edge."""
- node: SalesforceReport!
-
- """A cursor for use in pagination"""
- cursor: String!
-}
-
-"""Salesforce Reports connection, for use in pagination."""
-type SalesforceReportsConnection {
- """The count of all Report you could get from the connection."""
- totalCount: Int!
-
- """Pagination Information"""
- pageInfo: PageInfo!
-
- """List of Salesforce Reports"""
- nodes: [SalesforceReport!]!
-
- """List of Report edges"""
- edges: [SalesforceReportEdge!]!
-}
-
-"""Field that Documents can be sorted by"""
-enum SalesforceDocumentSortByFieldEnum {
- ID
- FOLDER_ID
- IS_DELETED
- NAME
- DEVELOPER_NAME
- NAMESPACE_PREFIX
- CONTENT_TYPE
- TYPE
- IS_PUBLIC
- BODY_LENGTH
- URL
- DESCRIPTION
- KEYWORDS
- IS_INTERNAL_USE_ONLY
- AUTHOR_ID
- CREATED_DATE
- CREATED_BY_ID
- LAST_MODIFIED_DATE
- LAST_MODIFIED_BY_ID
- SYSTEM_MODSTAMP
- IS_BODY_SEARCHABLE
- LAST_VIEWED_DATE
- LAST_REFERENCED_DATE
-}
-
-"""An edge in a connection."""
-type SalesforceDocumentEdge {
- """The item at the end of the edge."""
- node: SalesforceDocument!
-
- """A cursor for use in pagination"""
- cursor: String!
-}
-
-"""Salesforce Documents connection, for use in pagination."""
-type SalesforceDocumentsConnection {
- """The count of all Document you could get from the connection."""
- totalCount: Int!
-
- """Pagination Information"""
- pageInfo: PageInfo!
-
- """List of Salesforce Documents"""
- nodes: [SalesforceDocument!]!
-
- """List of Document edges"""
- edges: [SalesforceDocumentEdge!]!
-}
-
-"""Field that Dashboards can be sorted by"""
-enum SalesforceDashboardSortByFieldEnum {
- ID
- IS_DELETED
- FOLDER_ID
- FOLDER_NAME
- TITLE
- DEVELOPER_NAME
- NAMESPACE_PREFIX
- DESCRIPTION
- LEFT_SIZE
- MIDDLE_SIZE
- RIGHT_SIZE
- CREATED_DATE
- CREATED_BY_ID
- LAST_MODIFIED_DATE
- LAST_MODIFIED_BY_ID
- SYSTEM_MODSTAMP
- RUNNING_USER_ID
- TITLE_COLOR
- TITLE_SIZE
- TEXT_COLOR
- BACKGROUND_START
- BACKGROUND_END
- BACKGROUND_DIRECTION
- TYPE
- LAST_VIEWED_DATE
- LAST_REFERENCED_DATE
- COLOR_PALETTE
- CHART_THEME
-}
-
-"""An edge in a connection."""
-type SalesforceDashboardEdge {
- """The item at the end of the edge."""
- node: SalesforceDashboard!
-
- """A cursor for use in pagination"""
- cursor: String!
-}
-
-"""
-A filter to be used against DashboardFeed object types. All fields are combined with a logical ‘and.’
-"""
-input SalesforceDashboardFeedConnectionFilter {
- """Filter against custom fields."""
- customField: SalesforceCustomFieldFilter
-
- """Filter by the DashboardFeed's insertedBy relation."""
- insertedBy: SalesforceUserConnectionFilter
-
- """Filter by the DashboardFeed's relatedRecord relation."""
- relatedRecord: SalesforceContentVersionConnectionFilter
-
- """Filter by the DashboardFeed's createdBy relation."""
- createdBy: SalesforceUserConnectionFilter
-
- """Filter by the DashboardFeed's parent relation."""
- parent: SalesforceDashboardConnectionFilter
-
- """Filter by the DashboardFeed's id field"""
- id: SalesforceIdFilter
-
- """Filter by the DashboardFeed's parentId field"""
- parentId: SalesforceIdFilter
-
- """Filter by the DashboardFeed's type field"""
- type: SalesforceStringFilter
-
- """Filter by the DashboardFeed's createdById field"""
- createdById: SalesforceIdFilter
-
- """Filter by the DashboardFeed's createdDate field"""
- createdDate: SalesforceDateTimeFilter
-
- """Filter by the DashboardFeed's isDeleted field"""
- isDeleted: SalesforceBooleanFilter
-
- """Filter by the DashboardFeed's lastModifiedDate field"""
- lastModifiedDate: SalesforceDateTimeFilter
-
- """Filter by the DashboardFeed's systemModstamp field"""
- systemModstamp: SalesforceDateTimeFilter
-
- """Filter by the DashboardFeed's commentCount field"""
- commentCount: SalesforceIntFilter
-
- """Filter by the DashboardFeed's likeCount field"""
- likeCount: SalesforceIntFilter
-
- """Filter by the DashboardFeed's isRichText field"""
- isRichText: SalesforceBooleanFilter
-
- """Checks for any expressions in this list."""
- or: [SalesforceDashboardFeedConnectionFilter!]
-
- """Checks for all expressions in this list."""
- and: [SalesforceDashboardFeedConnectionFilter!]
-}
-
-"""Field that Dashboard Feeds can be sorted by"""
-enum SalesforceDashboardFeedSortByFieldEnum {
- ID
- PARENT_ID
- TYPE
- CREATED_BY_ID
- CREATED_DATE
- IS_DELETED
- LAST_MODIFIED_DATE
- SYSTEM_MODSTAMP
- COMMENT_COUNT
- LIKE_COUNT
- TITLE
- BODY
- LINK_URL
- IS_RICH_TEXT
- RELATED_RECORD_ID
- INSERTED_BY_ID
-}
-
-"""An edge in a connection."""
-type SalesforceDashboardFeedEdge {
- """The item at the end of the edge."""
- node: SalesforceDashboardFeed!
-
- """A cursor for use in pagination"""
- cursor: String!
-}
-
-"""Salesforce Dashboard Feeds connection, for use in pagination."""
-type SalesforceDashboardFeedsConnection {
- """The count of all Dashboard Feed you could get from the connection."""
- totalCount: Int!
-
- """Pagination Information"""
- pageInfo: PageInfo!
-
- """List of Salesforce Dashboard Feeds"""
- nodes: [SalesforceDashboardFeed!]!
-
- """List of Dashboard Feed edges"""
- edges: [SalesforceDashboardFeedEdge!]!
-}
-
-"""An edge in a connection."""
-type SalesforceDashboardComponentEdge {
- """The item at the end of the edge."""
- node: SalesforceDashboardComponent!
-
- """A cursor for use in pagination"""
- cursor: String!
-}
-
-"""
-A filter to be used against DashboardComponentFeed object types. All fields are combined with a logical ‘and.’
-"""
-input SalesforceDashboardComponentFeedConnectionFilter {
- """Filter against custom fields."""
- customField: SalesforceCustomFieldFilter
-
- """Filter by the DashboardComponentFeed's insertedBy relation."""
- insertedBy: SalesforceUserConnectionFilter
-
- """Filter by the DashboardComponentFeed's relatedRecord relation."""
- relatedRecord: SalesforceContentVersionConnectionFilter
-
- """Filter by the DashboardComponentFeed's createdBy relation."""
- createdBy: SalesforceUserConnectionFilter
-
- """Filter by the DashboardComponentFeed's parent relation."""
- parent: SalesforceDashboardComponentConnectionFilter
-
- """Filter by the DashboardComponentFeed's id field"""
- id: SalesforceIdFilter
-
- """Filter by the DashboardComponentFeed's parentId field"""
- parentId: SalesforceIdFilter
-
- """Filter by the DashboardComponentFeed's type field"""
- type: SalesforceStringFilter
-
- """Filter by the DashboardComponentFeed's createdById field"""
- createdById: SalesforceIdFilter
-
- """Filter by the DashboardComponentFeed's createdDate field"""
- createdDate: SalesforceDateTimeFilter
-
- """Filter by the DashboardComponentFeed's isDeleted field"""
- isDeleted: SalesforceBooleanFilter
-
- """Filter by the DashboardComponentFeed's lastModifiedDate field"""
- lastModifiedDate: SalesforceDateTimeFilter
-
- """Filter by the DashboardComponentFeed's systemModstamp field"""
- systemModstamp: SalesforceDateTimeFilter
-
- """Filter by the DashboardComponentFeed's commentCount field"""
- commentCount: SalesforceIntFilter
-
- """Filter by the DashboardComponentFeed's likeCount field"""
- likeCount: SalesforceIntFilter
-
- """Filter by the DashboardComponentFeed's isRichText field"""
- isRichText: SalesforceBooleanFilter
-
- """Checks for any expressions in this list."""
- or: [SalesforceDashboardComponentFeedConnectionFilter!]
-
- """Checks for all expressions in this list."""
- and: [SalesforceDashboardComponentFeedConnectionFilter!]
-}
-
-"""Field that Dashboard Component Feeds can be sorted by"""
-enum SalesforceDashboardComponentFeedSortByFieldEnum {
- ID
- PARENT_ID
- TYPE
- CREATED_BY_ID
- CREATED_DATE
- IS_DELETED
- LAST_MODIFIED_DATE
- SYSTEM_MODSTAMP
- COMMENT_COUNT
- LIKE_COUNT
- TITLE
- BODY
- LINK_URL
- IS_RICH_TEXT
- RELATED_RECORD_ID
- INSERTED_BY_ID
-}
-
-"""An edge in a connection."""
-type SalesforceDashboardComponentFeedEdge {
- """The item at the end of the edge."""
- node: SalesforceDashboardComponentFeed!
-
- """A cursor for use in pagination"""
- cursor: String!
-}
-
-"""
-Salesforce Dashboard Component Feeds connection, for use in pagination.
-"""
-type SalesforceDashboardComponentFeedsConnection {
- """
- The count of all Dashboard Component Feed you could get from the connection.
- """
- totalCount: Int!
-
- """Pagination Information"""
- pageInfo: PageInfo!
-
- """List of Salesforce Dashboard Component Feeds"""
- nodes: [SalesforceDashboardComponentFeed!]!
-
- """List of Dashboard Component Feed edges"""
- edges: [SalesforceDashboardComponentFeedEdge!]!
-}
-
-"""
-A filter to be used against ReportFeed object types. All fields are combined with a logical ‘and.’
-"""
-input SalesforceReportFeedConnectionFilter {
- """Filter against custom fields."""
- customField: SalesforceCustomFieldFilter
-
- """Filter by the ReportFeed's insertedBy relation."""
- insertedBy: SalesforceUserConnectionFilter
-
- """Filter by the ReportFeed's relatedRecord relation."""
- relatedRecord: SalesforceContentVersionConnectionFilter
-
- """Filter by the ReportFeed's createdBy relation."""
- createdBy: SalesforceUserConnectionFilter
-
- """Filter by the ReportFeed's parent relation."""
- parent: SalesforceReportConnectionFilter
-
- """Filter by the ReportFeed's id field"""
- id: SalesforceIdFilter
-
- """Filter by the ReportFeed's parentId field"""
- parentId: SalesforceIdFilter
-
- """Filter by the ReportFeed's type field"""
- type: SalesforceStringFilter
-
- """Filter by the ReportFeed's createdById field"""
- createdById: SalesforceIdFilter
-
- """Filter by the ReportFeed's createdDate field"""
- createdDate: SalesforceDateTimeFilter
-
- """Filter by the ReportFeed's isDeleted field"""
- isDeleted: SalesforceBooleanFilter
-
- """Filter by the ReportFeed's lastModifiedDate field"""
- lastModifiedDate: SalesforceDateTimeFilter
-
- """Filter by the ReportFeed's systemModstamp field"""
- systemModstamp: SalesforceDateTimeFilter
-
- """Filter by the ReportFeed's commentCount field"""
- commentCount: SalesforceIntFilter
-
- """Filter by the ReportFeed's likeCount field"""
- likeCount: SalesforceIntFilter
-
- """Filter by the ReportFeed's isRichText field"""
- isRichText: SalesforceBooleanFilter
-
- """Checks for any expressions in this list."""
- or: [SalesforceReportFeedConnectionFilter!]
-
- """Checks for all expressions in this list."""
- and: [SalesforceReportFeedConnectionFilter!]
-}
-
-"""Field that Report Feeds can be sorted by"""
-enum SalesforceReportFeedSortByFieldEnum {
- ID
- PARENT_ID
- TYPE
- CREATED_BY_ID
- CREATED_DATE
- IS_DELETED
- LAST_MODIFIED_DATE
- SYSTEM_MODSTAMP
- COMMENT_COUNT
- LIKE_COUNT
- TITLE
- BODY
- LINK_URL
- IS_RICH_TEXT
- RELATED_RECORD_ID
- INSERTED_BY_ID
-}
-
-"""An edge in a connection."""
-type SalesforceReportFeedEdge {
- """The item at the end of the edge."""
- node: SalesforceReportFeed!
-
- """A cursor for use in pagination"""
- cursor: String!
-}
-
-"""Salesforce Report Feeds connection, for use in pagination."""
-type SalesforceReportFeedsConnection {
- """The count of all Report Feed you could get from the connection."""
- totalCount: Int!
-
- """Pagination Information"""
- pageInfo: PageInfo!
-
- """List of Salesforce Report Feeds"""
- nodes: [SalesforceReportFeed!]!
-
- """List of Report Feed edges"""
- edges: [SalesforceReportFeedEdge!]!
-}
-
-"""An edge in a connection."""
-type SalesforceEntitySubscriptionEdge {
- """The item at the end of the edge."""
- node: SalesforceEntitySubscription!
-
- """A cursor for use in pagination"""
- cursor: String!
-}
-
-"""
-A filter to be used against TaskFeed object types. All fields are combined with a logical ‘and.’
-"""
-input SalesforceTaskFeedConnectionFilter {
- """Filter against custom fields."""
- customField: SalesforceCustomFieldFilter
-
- """Filter by the TaskFeed's insertedBy relation."""
- insertedBy: SalesforceUserConnectionFilter
-
- """Filter by the TaskFeed's relatedRecord relation."""
- relatedRecord: SalesforceContentVersionConnectionFilter
-
- """Filter by the TaskFeed's createdBy relation."""
- createdBy: SalesforceUserConnectionFilter
-
- """Filter by the TaskFeed's parent relation."""
- parent: SalesforceTaskConnectionFilter
-
- """Filter by the TaskFeed's id field"""
- id: SalesforceIdFilter
-
- """Filter by the TaskFeed's parentId field"""
- parentId: SalesforceIdFilter
-
- """Filter by the TaskFeed's type field"""
- type: SalesforceStringFilter
-
- """Filter by the TaskFeed's createdById field"""
- createdById: SalesforceIdFilter
-
- """Filter by the TaskFeed's createdDate field"""
- createdDate: SalesforceDateTimeFilter
-
- """Filter by the TaskFeed's isDeleted field"""
- isDeleted: SalesforceBooleanFilter
-
- """Filter by the TaskFeed's lastModifiedDate field"""
- lastModifiedDate: SalesforceDateTimeFilter
-
- """Filter by the TaskFeed's systemModstamp field"""
- systemModstamp: SalesforceDateTimeFilter
-
- """Filter by the TaskFeed's commentCount field"""
- commentCount: SalesforceIntFilter
-
- """Filter by the TaskFeed's likeCount field"""
- likeCount: SalesforceIntFilter
-
- """Filter by the TaskFeed's isRichText field"""
- isRichText: SalesforceBooleanFilter
-
- """Checks for any expressions in this list."""
- or: [SalesforceTaskFeedConnectionFilter!]
-
- """Checks for all expressions in this list."""
- and: [SalesforceTaskFeedConnectionFilter!]
-}
-
-"""Field that Task Feeds can be sorted by"""
-enum SalesforceTaskFeedSortByFieldEnum {
- ID
- PARENT_ID
- TYPE
- CREATED_BY_ID
- CREATED_DATE
- IS_DELETED
- LAST_MODIFIED_DATE
- SYSTEM_MODSTAMP
- COMMENT_COUNT
- LIKE_COUNT
- TITLE
- BODY
- LINK_URL
- IS_RICH_TEXT
- RELATED_RECORD_ID
- INSERTED_BY_ID
-}
-
-"""An edge in a connection."""
-type SalesforceTaskFeedEdge {
- """The item at the end of the edge."""
- node: SalesforceTaskFeed!
-
- """A cursor for use in pagination"""
- cursor: String!
-}
-
-"""Salesforce Task Feeds connection, for use in pagination."""
-type SalesforceTaskFeedsConnection {
- """The count of all Task Feed you could get from the connection."""
- totalCount: Int!
-
- """Pagination Information"""
- pageInfo: PageInfo!
-
- """List of Salesforce Task Feeds"""
- nodes: [SalesforceTaskFeed!]!
-
- """List of Task Feed edges"""
- edges: [SalesforceTaskFeedEdge!]!
-}
-
-"""
-A filter to be used against SolutionHistory object types. All fields are combined with a logical ‘and.’
-"""
-input SalesforceSolutionHistoryConnectionFilter {
- """Filter against custom fields."""
- customField: SalesforceCustomFieldFilter
-
- """Filter by the SolutionHistory's createdBy relation."""
- createdBy: SalesforceUserConnectionFilter
-
- """Filter by the SolutionHistory's solution relation."""
- solution: SalesforceSolutionConnectionFilter
-
- """Filter by the SolutionHistory's id field"""
- id: SalesforceIdFilter
-
- """Filter by the SolutionHistory's isDeleted field"""
- isDeleted: SalesforceBooleanFilter
-
- """Filter by the SolutionHistory's solutionId field"""
- solutionId: SalesforceIdFilter
-
- """Filter by the SolutionHistory's createdById field"""
- createdById: SalesforceIdFilter
-
- """Filter by the SolutionHistory's createdDate field"""
- createdDate: SalesforceDateTimeFilter
-
- """Filter by the SolutionHistory's field field"""
- field: SalesforceStringFilter
-
- """Checks for any expressions in this list."""
- or: [SalesforceSolutionHistoryConnectionFilter!]
-
- """Checks for all expressions in this list."""
- and: [SalesforceSolutionHistoryConnectionFilter!]
-}
-
-"""Field that Solution Histories can be sorted by"""
-enum SalesforceSolutionHistorySortByFieldEnum {
- ID
- IS_DELETED
- SOLUTION_ID
- CREATED_BY_ID
- CREATED_DATE
- FIELD
- OLD_VALUE
- NEW_VALUE
-}
-
-"""An edge in a connection."""
-type SalesforceSolutionHistoryEdge {
- """The item at the end of the edge."""
- node: SalesforceSolutionHistory!
-
- """A cursor for use in pagination"""
- cursor: String!
-}
-
-"""Solution History"""
-type SalesforceSolutionHistory implements OneGraphNode {
- """Solution History ID"""
- id: String!
-
- """Deleted"""
- isDeleted: Boolean!
-
- """Solution ID"""
- solutionId: String!
-
- """Solution ID"""
- solution: SalesforceSolution!
-
- """Created By ID"""
- createdById: String!
-
- """Created By ID"""
- createdBy: SalesforceUser!
-
- """Created Date"""
- createdDate: String!
-
- """Changed Field"""
- field: String!
-
- """Old Value"""
- oldValue: String
-
- """New Value"""
- newValue: String
- customFields(
- """
- List of custom fields to return. By default, returns all custom fields.
- """
- fields: [String!]
- ): JSON!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-"""Salesforce Solution Histories connection, for use in pagination."""
-type SalesforceSolutionHistorysConnection {
- """The count of all Solution History you could get from the connection."""
- totalCount: Int!
-
- """Pagination Information"""
- pageInfo: PageInfo!
-
- """List of Salesforce Solution Histories"""
- nodes: [SalesforceSolutionHistory!]!
-
- """List of Solution History edges"""
- edges: [SalesforceSolutionHistoryEdge!]!
-}
-
-"""
-A filter to be used against SolutionFeed object types. All fields are combined with a logical ‘and.’
-"""
-input SalesforceSolutionFeedConnectionFilter {
- """Filter against custom fields."""
- customField: SalesforceCustomFieldFilter
-
- """Filter by the SolutionFeed's insertedBy relation."""
- insertedBy: SalesforceUserConnectionFilter
-
- """Filter by the SolutionFeed's relatedRecord relation."""
- relatedRecord: SalesforceContentVersionConnectionFilter
-
- """Filter by the SolutionFeed's createdBy relation."""
- createdBy: SalesforceUserConnectionFilter
-
- """Filter by the SolutionFeed's parent relation."""
- parent: SalesforceSolutionConnectionFilter
-
- """Filter by the SolutionFeed's id field"""
- id: SalesforceIdFilter
-
- """Filter by the SolutionFeed's parentId field"""
- parentId: SalesforceIdFilter
-
- """Filter by the SolutionFeed's type field"""
- type: SalesforceStringFilter
-
- """Filter by the SolutionFeed's createdById field"""
- createdById: SalesforceIdFilter
-
- """Filter by the SolutionFeed's createdDate field"""
- createdDate: SalesforceDateTimeFilter
-
- """Filter by the SolutionFeed's isDeleted field"""
- isDeleted: SalesforceBooleanFilter
-
- """Filter by the SolutionFeed's lastModifiedDate field"""
- lastModifiedDate: SalesforceDateTimeFilter
-
- """Filter by the SolutionFeed's systemModstamp field"""
- systemModstamp: SalesforceDateTimeFilter
-
- """Filter by the SolutionFeed's commentCount field"""
- commentCount: SalesforceIntFilter
-
- """Filter by the SolutionFeed's likeCount field"""
- likeCount: SalesforceIntFilter
-
- """Filter by the SolutionFeed's isRichText field"""
- isRichText: SalesforceBooleanFilter
-
- """Checks for any expressions in this list."""
- or: [SalesforceSolutionFeedConnectionFilter!]
-
- """Checks for all expressions in this list."""
- and: [SalesforceSolutionFeedConnectionFilter!]
-}
-
-"""Field that Solution Feeds can be sorted by"""
-enum SalesforceSolutionFeedSortByFieldEnum {
- ID
- PARENT_ID
- TYPE
- CREATED_BY_ID
- CREATED_DATE
- IS_DELETED
- LAST_MODIFIED_DATE
- SYSTEM_MODSTAMP
- COMMENT_COUNT
- LIKE_COUNT
- TITLE
- BODY
- LINK_URL
- IS_RICH_TEXT
- RELATED_RECORD_ID
- INSERTED_BY_ID
-}
-
-"""An edge in a connection."""
-type SalesforceSolutionFeedEdge {
- """The item at the end of the edge."""
- node: SalesforceSolutionFeed!
-
- """A cursor for use in pagination"""
- cursor: String!
-}
-
-"""Salesforce Solution Feeds connection, for use in pagination."""
-type SalesforceSolutionFeedsConnection {
- """The count of all Solution Feed you could get from the connection."""
- totalCount: Int!
-
- """Pagination Information"""
- pageInfo: PageInfo!
-
- """List of Salesforce Solution Feeds"""
- nodes: [SalesforceSolutionFeed!]!
-
- """List of Solution Feed edges"""
- edges: [SalesforceSolutionFeedEdge!]!
-}
-
-"""An edge in a connection."""
-type SalesforceCategoryDataEdge {
- """The item at the end of the edge."""
- node: SalesforceCategoryData!
-
- """A cursor for use in pagination"""
- cursor: String!
-}
-
-"""Field that Category Nodes can be sorted by"""
-enum SalesforceCategoryNodeSortByFieldEnum {
- ID
- PARENT_ID
- MASTER_LABEL
- SORT_ORDER
- SORT_STYLE
- CREATED_DATE
- CREATED_BY_ID
- LAST_MODIFIED_DATE
- LAST_MODIFIED_BY_ID
- SYSTEM_MODSTAMP
-}
-
-"""An edge in a connection."""
-type SalesforceCategoryNodeEdge {
- """The item at the end of the edge."""
- node: SalesforceCategoryNode!
-
- """A cursor for use in pagination"""
- cursor: String!
-}
-
-"""Salesforce Category Nodes connection, for use in pagination."""
-type SalesforceCategoryNodesConnection {
- """The count of all Category Node you could get from the connection."""
- totalCount: Int!
-
- """Pagination Information"""
- pageInfo: PageInfo!
-
- """List of Salesforce Category Nodes"""
- nodes: [SalesforceCategoryNode!]!
-
- """List of Category Node edges"""
- edges: [SalesforceCategoryNodeEdge!]!
-}
-
-"""
-A filter to be used against CategoryNode object types. All fields are combined with a logical ‘and.’
-"""
-input SalesforceCategoryNodeConnectionFilter {
- """Filter against custom fields."""
- customField: SalesforceCustomFieldFilter
-
- """Filter by the CategoryNode's lastModifiedBy relation."""
- lastModifiedBy: SalesforceUserConnectionFilter
-
- """Filter by the CategoryNode's createdBy relation."""
- createdBy: SalesforceUserConnectionFilter
-
- """Filter by the CategoryNode's parent relation."""
- parent: SalesforceCategoryNodeConnectionFilter
-
- """Filter by the CategoryNode's id field"""
- id: SalesforceIdFilter
-
- """Filter by the CategoryNode's parentId field"""
- parentId: SalesforceIdFilter
-
- """Filter by the CategoryNode's masterLabel field"""
- masterLabel: SalesforceStringFilter
-
- """Filter by the CategoryNode's sortOrder field"""
- sortOrder: SalesforceIntFilter
-
- """Filter by the CategoryNode's sortStyle field"""
- sortStyle: SalesforceStringFilter
-
- """Filter by the CategoryNode's createdDate field"""
- createdDate: SalesforceDateTimeFilter
-
- """Filter by the CategoryNode's createdById field"""
- createdById: SalesforceIdFilter
-
- """Filter by the CategoryNode's lastModifiedDate field"""
- lastModifiedDate: SalesforceDateTimeFilter
-
- """Filter by the CategoryNode's lastModifiedById field"""
- lastModifiedById: SalesforceIdFilter
-
- """Filter by the CategoryNode's systemModstamp field"""
- systemModstamp: SalesforceDateTimeFilter
-
- """Checks for any expressions in this list."""
- or: [SalesforceCategoryNodeConnectionFilter!]
-
- """Checks for all expressions in this list."""
- and: [SalesforceCategoryNodeConnectionFilter!]
-}
-
-"""
-A filter to be used against CategoryData object types. All fields are combined with a logical ‘and.’
-"""
-input SalesforceCategoryDataConnectionFilter {
- """Filter against custom fields."""
- customField: SalesforceCustomFieldFilter
-
- """Filter by the CategoryData's lastModifiedBy relation."""
- lastModifiedBy: SalesforceUserConnectionFilter
-
- """Filter by the CategoryData's createdBy relation."""
- createdBy: SalesforceUserConnectionFilter
-
- """Filter by the CategoryData's relatedSobject relation."""
- relatedSobject: SalesforceSolutionConnectionFilter
-
- """Filter by the CategoryData's categoryNode relation."""
- categoryNode: SalesforceCategoryNodeConnectionFilter
-
- """Filter by the CategoryData's id field"""
- id: SalesforceIdFilter
-
- """Filter by the CategoryData's categoryNodeId field"""
- categoryNodeId: SalesforceIdFilter
-
- """Filter by the CategoryData's relatedSobjectId field"""
- relatedSobjectId: SalesforceIdFilter
-
- """Filter by the CategoryData's isDeleted field"""
- isDeleted: SalesforceBooleanFilter
-
- """Filter by the CategoryData's createdDate field"""
- createdDate: SalesforceDateTimeFilter
-
- """Filter by the CategoryData's createdById field"""
- createdById: SalesforceIdFilter
-
- """Filter by the CategoryData's lastModifiedDate field"""
- lastModifiedDate: SalesforceDateTimeFilter
-
- """Filter by the CategoryData's lastModifiedById field"""
- lastModifiedById: SalesforceIdFilter
-
- """Filter by the CategoryData's systemModstamp field"""
- systemModstamp: SalesforceDateTimeFilter
-
- """Checks for any expressions in this list."""
- or: [SalesforceCategoryDataConnectionFilter!]
-
- """Checks for all expressions in this list."""
- and: [SalesforceCategoryDataConnectionFilter!]
-}
-
-"""Field that Category Datas can be sorted by"""
-enum SalesforceCategoryDataSortByFieldEnum {
- ID
- CATEGORY_NODE_ID
- RELATED_SOBJECT_ID
- IS_DELETED
- CREATED_DATE
- CREATED_BY_ID
- LAST_MODIFIED_DATE
- LAST_MODIFIED_BY_ID
- SYSTEM_MODSTAMP
-}
-
-"""Category Node"""
-type SalesforceCategoryNode implements OneGraphNode {
- """Category Node ID"""
- id: String!
-
- """Parent Category Node ID"""
- parentId: String
-
- """Parent Category Node ID"""
- parent: SalesforceCategoryNode
-
- """Name"""
- masterLabel: String!
-
- """Sort Order"""
- sortOrder: Int
-
- """Subcategory Sort Style"""
- sortStyle: String!
-
- """Created Date"""
- createdDate: String!
-
- """Created By ID"""
- createdById: String!
-
- """Created By ID"""
- createdBy: SalesforceUser!
-
- """Last Modified Date"""
- lastModifiedDate: String!
-
- """Last Modified By ID"""
- lastModifiedById: String!
-
- """Last Modified By ID"""
- lastModifiedBy: SalesforceUser!
-
- """System Modstamp"""
- systemModstamp: String!
-
- """Collection of Salesforce CategoryData"""
- categoryDatas(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceCategoryDataConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceCategoryDataSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceCategoryDataSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of CategoryDatas to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceCategoryDatasConnection
-
- """Collection of Salesforce CategoryNode"""
- categoryNodes(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceCategoryNodeConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceCategoryNodeSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceCategoryNodeSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of CategoryNodes to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceCategoryNodesConnection
- customFields(
- """
- List of custom fields to return. By default, returns all custom fields.
- """
- fields: [String!]
- ): JSON!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-"""Category Data"""
-type SalesforceCategoryData implements OneGraphNode {
- """Category Data ID"""
- id: String!
-
- """Category Node ID"""
- categoryNodeId: String!
-
- """Category Node ID"""
- categoryNode: SalesforceCategoryNode!
-
- """SObject ID"""
- relatedSobjectId: String!
-
- """SObject ID"""
- relatedSobject: SalesforceSolution!
-
- """Deleted"""
- isDeleted: Boolean!
-
- """Created Date"""
- createdDate: String!
-
- """Created By ID"""
- createdById: String!
-
- """Created By ID"""
- createdBy: SalesforceUser!
-
- """Last Modified Date"""
- lastModifiedDate: String!
-
- """Last Modified By ID"""
- lastModifiedById: String!
-
- """Last Modified By ID"""
- lastModifiedBy: SalesforceUser!
-
- """System Modstamp"""
- systemModstamp: String!
- customFields(
- """
- List of custom fields to return. By default, returns all custom fields.
- """
- fields: [String!]
- ): JSON!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-"""Salesforce Category Datas connection, for use in pagination."""
-type SalesforceCategoryDatasConnection {
- """The count of all Category Data you could get from the connection."""
- totalCount: Int!
-
- """Pagination Information"""
- pageInfo: PageInfo!
-
- """List of Salesforce Category Datas"""
- nodes: [SalesforceCategoryData!]!
-
- """List of Category Data edges"""
- edges: [SalesforceCategoryDataEdge!]!
-}
-
-"""
-A filter to be used against Solution object types. All fields are combined with a logical ‘and.’
-"""
-input SalesforceSolutionConnectionFilter {
- """Filter against custom fields."""
- customField: SalesforceCustomFieldFilter
-
- """Filter by the Solution's lastModifiedBy relation."""
- lastModifiedBy: SalesforceUserConnectionFilter
-
- """Filter by the Solution's createdBy relation."""
- createdBy: SalesforceUserConnectionFilter
-
- """Filter by the Solution's owner relation."""
- owner: SalesforceUserConnectionFilter
-
- """Filter by the Solution's id field"""
- id: SalesforceIdFilter
-
- """Filter by the Solution's isDeleted field"""
- isDeleted: SalesforceBooleanFilter
-
- """Filter by the Solution's solutionNumber field"""
- solutionNumber: SalesforceStringFilter
-
- """Filter by the Solution's solutionName field"""
- solutionName: SalesforceStringFilter
-
- """Filter by the Solution's isPublished field"""
- isPublished: SalesforceBooleanFilter
-
- """Filter by the Solution's isPublishedInPublicKb field"""
- isPublishedInPublicKb: SalesforceBooleanFilter
-
- """Filter by the Solution's status field"""
- status: SalesforceStringFilter
-
- """Filter by the Solution's isReviewed field"""
- isReviewed: SalesforceBooleanFilter
-
- """Filter by the Solution's ownerId field"""
- ownerId: SalesforceIdFilter
-
- """Filter by the Solution's createdDate field"""
- createdDate: SalesforceDateTimeFilter
-
- """Filter by the Solution's createdById field"""
- createdById: SalesforceIdFilter
-
- """Filter by the Solution's lastModifiedDate field"""
- lastModifiedDate: SalesforceDateTimeFilter
-
- """Filter by the Solution's lastModifiedById field"""
- lastModifiedById: SalesforceIdFilter
-
- """Filter by the Solution's systemModstamp field"""
- systemModstamp: SalesforceDateTimeFilter
-
- """Filter by the Solution's timesUsed field"""
- timesUsed: SalesforceIntFilter
-
- """Filter by the Solution's lastViewedDate field"""
- lastViewedDate: SalesforceDateTimeFilter
-
- """Filter by the Solution's lastReferencedDate field"""
- lastReferencedDate: SalesforceDateTimeFilter
-
- """Filter by the Solution's isHtml field"""
- isHtml: SalesforceBooleanFilter
-
- """Checks for any expressions in this list."""
- or: [SalesforceSolutionConnectionFilter!]
-
- """Checks for all expressions in this list."""
- and: [SalesforceSolutionConnectionFilter!]
-}
-
-"""
-A filter to be used against CaseSolution object types. All fields are combined with a logical ‘and.’
-"""
-input SalesforceCaseSolutionConnectionFilter {
- """Filter against custom fields."""
- customField: SalesforceCustomFieldFilter
-
- """Filter by the CaseSolution's createdBy relation."""
- createdBy: SalesforceUserConnectionFilter
-
- """Filter by the CaseSolution's solution relation."""
- solution: SalesforceSolutionConnectionFilter
-
- """Filter by the CaseSolution's case relation."""
- case: SalesforceCaseConnectionFilter
-
- """Filter by the CaseSolution's id field"""
- id: SalesforceIdFilter
-
- """Filter by the CaseSolution's caseId field"""
- caseId: SalesforceIdFilter
-
- """Filter by the CaseSolution's solutionId field"""
- solutionId: SalesforceIdFilter
-
- """Filter by the CaseSolution's createdById field"""
- createdById: SalesforceIdFilter
-
- """Filter by the CaseSolution's createdDate field"""
- createdDate: SalesforceDateTimeFilter
-
- """Filter by the CaseSolution's systemModstamp field"""
- systemModstamp: SalesforceDateTimeFilter
-
- """Filter by the CaseSolution's isDeleted field"""
- isDeleted: SalesforceBooleanFilter
-
- """Checks for any expressions in this list."""
- or: [SalesforceCaseSolutionConnectionFilter!]
-
- """Checks for all expressions in this list."""
- and: [SalesforceCaseSolutionConnectionFilter!]
-}
-
-"""Field that Case Solutions can be sorted by"""
-enum SalesforceCaseSolutionSortByFieldEnum {
- ID
- CASE_ID
- SOLUTION_ID
- CREATED_BY_ID
- CREATED_DATE
- SYSTEM_MODSTAMP
- IS_DELETED
-}
-
-"""An edge in a connection."""
-type SalesforceCaseSolutionEdge {
- """The item at the end of the edge."""
- node: SalesforceCaseSolution!
-
- """A cursor for use in pagination"""
- cursor: String!
-}
-
-"""Salesforce Case Solutions connection, for use in pagination."""
-type SalesforceCaseSolutionsConnection {
- """The count of all Case Solution you could get from the connection."""
- totalCount: Int!
-
- """Pagination Information"""
- pageInfo: PageInfo!
-
- """List of Salesforce Case Solutions"""
- nodes: [SalesforceCaseSolution!]!
-
- """List of Case Solution edges"""
- edges: [SalesforceCaseSolutionEdge!]!
-}
-
-"""An edge in a connection."""
-type SalesforceAttachmentEdge {
- """The item at the end of the edge."""
- node: SalesforceAttachment!
-
- """A cursor for use in pagination"""
- cursor: String!
-}
-
-"""
-A filter to be used against Product2History object types. All fields are combined with a logical ‘and.’
-"""
-input SalesforceProduct2HistoryConnectionFilter {
- """Filter against custom fields."""
- customField: SalesforceCustomFieldFilter
-
- """Filter by the Product2History's createdBy relation."""
- createdBy: SalesforceUserConnectionFilter
-
- """Filter by the Product2History's product2 relation."""
- product2: SalesforceProduct2ConnectionFilter
-
- """Filter by the Product2History's id field"""
- id: SalesforceIdFilter
-
- """Filter by the Product2History's isDeleted field"""
- isDeleted: SalesforceBooleanFilter
-
- """Filter by the Product2History's product2Id field"""
- product2Id: SalesforceIdFilter
-
- """Filter by the Product2History's createdById field"""
- createdById: SalesforceIdFilter
-
- """Filter by the Product2History's createdDate field"""
- createdDate: SalesforceDateTimeFilter
-
- """Filter by the Product2History's field field"""
- field: SalesforceStringFilter
-
- """Checks for any expressions in this list."""
- or: [SalesforceProduct2HistoryConnectionFilter!]
-
- """Checks for all expressions in this list."""
- and: [SalesforceProduct2HistoryConnectionFilter!]
-}
-
-"""Field that Product Histories can be sorted by"""
-enum SalesforceProduct2HistorySortByFieldEnum {
- ID
- IS_DELETED
- PRODUCT_2_ID
- CREATED_BY_ID
- CREATED_DATE
- FIELD
- OLD_VALUE
- NEW_VALUE
-}
-
-"""An edge in a connection."""
-type SalesforceProduct2HistoryEdge {
- """The item at the end of the edge."""
- node: SalesforceProduct2History!
-
- """A cursor for use in pagination"""
- cursor: String!
-}
-
-"""Product History"""
-type SalesforceProduct2History implements OneGraphNode {
- """Product Stage ID"""
- id: String!
-
- """Deleted"""
- isDeleted: Boolean!
-
- """Product ID"""
- product2Id: String!
-
- """Product ID"""
- product2: SalesforceProduct2!
-
- """Created By ID"""
- createdById: String!
-
- """Created By ID"""
- createdBy: SalesforceUser!
-
- """Created Date"""
- createdDate: String!
-
- """Changed Field"""
- field: String!
-
- """Old Value"""
- oldValue: String
-
- """New Value"""
- newValue: String
- customFields(
- """
- List of custom fields to return. By default, returns all custom fields.
- """
- fields: [String!]
- ): JSON!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-"""Salesforce Product Histories connection, for use in pagination."""
-type SalesforceProduct2HistorysConnection {
- """The count of all Product History you could get from the connection."""
- totalCount: Int!
-
- """Pagination Information"""
- pageInfo: PageInfo!
-
- """List of Salesforce Product Histories"""
- nodes: [SalesforceProduct2History!]!
-
- """List of Product History edges"""
- edges: [SalesforceProduct2HistoryEdge!]!
-}
-
-"""
-A filter to be used against Product2Feed object types. All fields are combined with a logical ‘and.’
-"""
-input SalesforceProduct2FeedConnectionFilter {
- """Filter against custom fields."""
- customField: SalesforceCustomFieldFilter
-
- """Filter by the Product2Feed's insertedBy relation."""
- insertedBy: SalesforceUserConnectionFilter
-
- """Filter by the Product2Feed's relatedRecord relation."""
- relatedRecord: SalesforceContentVersionConnectionFilter
-
- """Filter by the Product2Feed's createdBy relation."""
- createdBy: SalesforceUserConnectionFilter
-
- """Filter by the Product2Feed's parent relation."""
- parent: SalesforceProduct2ConnectionFilter
-
- """Filter by the Product2Feed's id field"""
- id: SalesforceIdFilter
-
- """Filter by the Product2Feed's parentId field"""
- parentId: SalesforceIdFilter
-
- """Filter by the Product2Feed's type field"""
- type: SalesforceStringFilter
-
- """Filter by the Product2Feed's createdById field"""
- createdById: SalesforceIdFilter
-
- """Filter by the Product2Feed's createdDate field"""
- createdDate: SalesforceDateTimeFilter
-
- """Filter by the Product2Feed's isDeleted field"""
- isDeleted: SalesforceBooleanFilter
-
- """Filter by the Product2Feed's lastModifiedDate field"""
- lastModifiedDate: SalesforceDateTimeFilter
-
- """Filter by the Product2Feed's systemModstamp field"""
- systemModstamp: SalesforceDateTimeFilter
-
- """Filter by the Product2Feed's commentCount field"""
- commentCount: SalesforceIntFilter
-
- """Filter by the Product2Feed's likeCount field"""
- likeCount: SalesforceIntFilter
-
- """Filter by the Product2Feed's isRichText field"""
- isRichText: SalesforceBooleanFilter
-
- """Checks for any expressions in this list."""
- or: [SalesforceProduct2FeedConnectionFilter!]
-
- """Checks for all expressions in this list."""
- and: [SalesforceProduct2FeedConnectionFilter!]
-}
-
-"""Field that Product Feeds can be sorted by"""
-enum SalesforceProduct2FeedSortByFieldEnum {
- ID
- PARENT_ID
- TYPE
- CREATED_BY_ID
- CREATED_DATE
- IS_DELETED
- LAST_MODIFIED_DATE
- SYSTEM_MODSTAMP
- COMMENT_COUNT
- LIKE_COUNT
- TITLE
- BODY
- LINK_URL
- IS_RICH_TEXT
- RELATED_RECORD_ID
- INSERTED_BY_ID
-}
-
-"""An edge in a connection."""
-type SalesforceProduct2FeedEdge {
- """The item at the end of the edge."""
- node: SalesforceProduct2Feed!
-
- """A cursor for use in pagination"""
- cursor: String!
-}
-
-"""Salesforce Product Feeds connection, for use in pagination."""
-type SalesforceProduct2FeedsConnection {
- """The count of all Product Feed you could get from the connection."""
- totalCount: Int!
-
- """Pagination Information"""
- pageInfo: PageInfo!
-
- """List of Salesforce Product Feeds"""
- nodes: [SalesforceProduct2Feed!]!
-
- """List of Product Feed edges"""
- edges: [SalesforceProduct2FeedEdge!]!
-}
-
-"""Field that Products can be sorted by"""
-enum SalesforceProduct2SortByFieldEnum {
- ID
- NAME
- PRODUCT_CODE
- DESCRIPTION
- IS_ACTIVE
- CREATED_DATE
- CREATED_BY_ID
- LAST_MODIFIED_DATE
- LAST_MODIFIED_BY_ID
- SYSTEM_MODSTAMP
- FAMILY
- EXTERNAL_DATA_SOURCE_ID
- EXTERNAL_ID
- DISPLAY_URL
- QUANTITY_UNIT_OF_MEASURE
- IS_DELETED
- LAST_VIEWED_DATE
- LAST_REFERENCED_DATE
- STOCK_KEEPING_UNIT
-}
-
-"""An edge in a connection."""
-type SalesforceProduct2Edge {
- """The item at the end of the edge."""
- node: SalesforceProduct2!
-
- """A cursor for use in pagination"""
- cursor: String!
-}
-
-"""Salesforce Products connection, for use in pagination."""
-type SalesforceProduct2sConnection {
- """The count of all Product you could get from the connection."""
- totalCount: Int!
-
- """Pagination Information"""
- pageInfo: PageInfo!
-
- """List of Salesforce Products"""
- nodes: [SalesforceProduct2!]!
-
- """List of Product edges"""
- edges: [SalesforceProduct2Edge!]!
-}
-
-"""Static Resource"""
-type SalesforceStaticResource implements OneGraphNode {
- """Static Resource ID"""
- id: String!
-
- """Namespace Prefix"""
- namespacePrefix: String
-
- """Name"""
- name: String!
-
- """MIME Type"""
- contentType: String!
-
- """Size"""
- bodyLength: Int!
-
- """Body"""
- body: String
-
- """Description"""
- description: String
-
- """Created Date"""
- createdDate: String!
-
- """Created By ID"""
- createdById: String!
-
- """Created By ID"""
- createdBy: SalesforceUser!
-
- """Last Modified Date"""
- lastModifiedDate: String!
-
- """Last Modified By ID"""
- lastModifiedById: String!
-
- """Last Modified By ID"""
- lastModifiedBy: SalesforceUser!
-
- """System Modstamp"""
- systemModstamp: String!
-
- """Cache Control"""
- cacheControl: String!
-
- """Collection of Salesforce ExternalDataSource"""
- externalDataSources(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceExternalDataSourceConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceExternalDataSourceSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceExternalDataSourceSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of ExternalDataSources to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceExternalDataSourcesConnection
- customFields(
- """
- List of custom fields to return. By default, returns all custom fields.
- """
- fields: [String!]
- ): JSON!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-"""Field that Named Credentials can be sorted by"""
-enum SalesforceNamedCredentialSortByFieldEnum {
- ID
- IS_DELETED
- DEVELOPER_NAME
- LANGUAGE
- MASTER_LABEL
- NAMESPACE_PREFIX
- CREATED_DATE
- CREATED_BY_ID
- LAST_MODIFIED_DATE
- LAST_MODIFIED_BY_ID
- SYSTEM_MODSTAMP
- PRINCIPAL_TYPE
- AUTH_PROVIDER_ID
-}
-
-"""An edge in a connection."""
-type SalesforceNamedCredentialEdge {
- """The item at the end of the edge."""
- node: SalesforceNamedCredential!
-
- """A cursor for use in pagination"""
- cursor: String!
-}
-
-"""Salesforce Named Credentials connection, for use in pagination."""
-type SalesforceNamedCredentialsConnection {
- """The count of all Named Credential you could get from the connection."""
- totalCount: Int!
-
- """Pagination Information"""
- pageInfo: PageInfo!
-
- """List of Salesforce Named Credentials"""
- nodes: [SalesforceNamedCredential!]!
-
- """List of Named Credential edges"""
- edges: [SalesforceNamedCredentialEdge!]!
-}
-
-"""
-A filter to be used against TransactionSecurityPolicy object types. All fields are combined with a logical ‘and.’
-"""
-input SalesforceTransactionSecurityPolicyConnectionFilter {
- """Filter against custom fields."""
- customField: SalesforceCustomFieldFilter
-
- """Filter by the TransactionSecurityPolicy's executionUser relation."""
- executionUser: SalesforceUserConnectionFilter
-
- """Filter by the TransactionSecurityPolicy's apexPolicy relation."""
- apexPolicy: SalesforceApexClassConnectionFilter
-
- """Filter by the TransactionSecurityPolicy's lastModifiedBy relation."""
- lastModifiedBy: SalesforceUserConnectionFilter
-
- """Filter by the TransactionSecurityPolicy's createdBy relation."""
- createdBy: SalesforceUserConnectionFilter
-
- """Filter by the TransactionSecurityPolicy's id field"""
- id: SalesforceIdFilter
-
- """Filter by the TransactionSecurityPolicy's isDeleted field"""
- isDeleted: SalesforceBooleanFilter
-
- """Filter by the TransactionSecurityPolicy's developerName field"""
- developerName: SalesforceStringFilter
-
- """Filter by the TransactionSecurityPolicy's language field"""
- language: SalesforceStringFilter
-
- """Filter by the TransactionSecurityPolicy's masterLabel field"""
- masterLabel: SalesforceStringFilter
-
- """Filter by the TransactionSecurityPolicy's namespacePrefix field"""
- namespacePrefix: SalesforceStringFilter
-
- """Filter by the TransactionSecurityPolicy's createdDate field"""
- createdDate: SalesforceDateTimeFilter
-
- """Filter by the TransactionSecurityPolicy's createdById field"""
- createdById: SalesforceIdFilter
-
- """Filter by the TransactionSecurityPolicy's lastModifiedDate field"""
- lastModifiedDate: SalesforceDateTimeFilter
-
- """Filter by the TransactionSecurityPolicy's lastModifiedById field"""
- lastModifiedById: SalesforceIdFilter
-
- """Filter by the TransactionSecurityPolicy's systemModstamp field"""
- systemModstamp: SalesforceDateTimeFilter
-
- """Filter by the TransactionSecurityPolicy's type field"""
- type: SalesforceStringFilter
-
- """Filter by the TransactionSecurityPolicy's state field"""
- state: SalesforceStringFilter
-
- """Filter by the TransactionSecurityPolicy's apexPolicyId field"""
- apexPolicyId: SalesforceIdFilter
-
- """Filter by the TransactionSecurityPolicy's eventType field"""
- eventType: SalesforceStringFilter
-
- """Filter by the TransactionSecurityPolicy's resourceName field"""
- resourceName: SalesforceStringFilter
-
- """Filter by the TransactionSecurityPolicy's executionUserId field"""
- executionUserId: SalesforceIdFilter
-
- """Filter by the TransactionSecurityPolicy's description field"""
- description: SalesforceStringFilter
-
- """Checks for any expressions in this list."""
- or: [SalesforceTransactionSecurityPolicyConnectionFilter!]
-
- """Checks for all expressions in this list."""
- and: [SalesforceTransactionSecurityPolicyConnectionFilter!]
-}
-
-"""Field that Transaction Security Policies can be sorted by"""
-enum SalesforceTransactionSecurityPolicySortByFieldEnum {
- ID
- IS_DELETED
- DEVELOPER_NAME
- LANGUAGE
- MASTER_LABEL
- NAMESPACE_PREFIX
- CREATED_DATE
- CREATED_BY_ID
- LAST_MODIFIED_DATE
- LAST_MODIFIED_BY_ID
- SYSTEM_MODSTAMP
- TYPE
- STATE
- APEX_POLICY_ID
- EVENT_TYPE
- RESOURCE_NAME
- EXECUTION_USER_ID
- DESCRIPTION
-}
-
-"""An edge in a connection."""
-type SalesforceTransactionSecurityPolicyEdge {
- """The item at the end of the edge."""
- node: SalesforceTransactionSecurityPolicy!
-
- """A cursor for use in pagination"""
- cursor: String!
-}
-
-"""Transaction Security Policy"""
-type SalesforceTransactionSecurityPolicy implements OneGraphNode {
- """Transaction Security Policy ID"""
- id: String!
-
- """Deleted"""
- isDeleted: Boolean!
-
- """Name"""
- developerName: String!
-
- """Master Language"""
- language: String
-
- """Label"""
- masterLabel: String!
-
- """Namespace Prefix"""
- namespacePrefix: String
-
- """Created Date"""
- createdDate: String!
-
- """Created By ID"""
- createdById: String!
-
- """Created By ID"""
- createdBy: SalesforceUser!
-
- """Last Modified Date"""
- lastModifiedDate: String!
-
- """Last Modified By ID"""
- lastModifiedById: String!
-
- """Last Modified By ID"""
- lastModifiedBy: SalesforceUser!
-
- """System Modstamp"""
- systemModstamp: String!
-
- """Policy type"""
- type: String!
-
- """State"""
- state: String!
-
- """Action Configuration"""
- actionConfig: String!
-
- """Class ID"""
- apexPolicyId: String
-
- """Class ID"""
- apexPolicy: SalesforceApexClass
-
- """Event Type"""
- eventType: String
-
- """Resource Name"""
- resourceName: String
-
- """User ID"""
- executionUserId: String
-
- """User ID"""
- executionUser: SalesforceUser
-
- """Description"""
- description: String
- customFields(
- """
- List of custom fields to return. By default, returns all custom fields.
- """
- fields: [String!]
- ): JSON!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-"""
-Salesforce Transaction Security Policies connection, for use in pagination.
-"""
-type SalesforceTransactionSecurityPolicysConnection {
- """
- The count of all Transaction Security Policy you could get from the connection.
- """
- totalCount: Int!
-
- """Pagination Information"""
- pageInfo: PageInfo!
-
- """List of Salesforce Transaction Security Policies"""
- nodes: [SalesforceTransactionSecurityPolicy!]!
-
- """List of Transaction Security Policy edges"""
- edges: [SalesforceTransactionSecurityPolicyEdge!]!
-}
-
-"""An edge in a connection."""
-type SalesforceTestSuiteMembershipEdge {
- """The item at the end of the edge."""
- node: SalesforceTestSuiteMembership!
-
- """A cursor for use in pagination"""
- cursor: String!
-}
-
-"""
-A filter to be used against ApexTestSuite object types. All fields are combined with a logical ‘and.’
-"""
-input SalesforceApexTestSuiteConnectionFilter {
- """Filter against custom fields."""
- customField: SalesforceCustomFieldFilter
-
- """Filter by the ApexTestSuite's lastModifiedBy relation."""
- lastModifiedBy: SalesforceUserConnectionFilter
-
- """Filter by the ApexTestSuite's createdBy relation."""
- createdBy: SalesforceUserConnectionFilter
-
- """Filter by the ApexTestSuite's id field"""
- id: SalesforceIdFilter
-
- """Filter by the ApexTestSuite's isDeleted field"""
- isDeleted: SalesforceBooleanFilter
-
- """Filter by the ApexTestSuite's createdDate field"""
- createdDate: SalesforceDateTimeFilter
-
- """Filter by the ApexTestSuite's createdById field"""
- createdById: SalesforceIdFilter
-
- """Filter by the ApexTestSuite's lastModifiedDate field"""
- lastModifiedDate: SalesforceDateTimeFilter
-
- """Filter by the ApexTestSuite's lastModifiedById field"""
- lastModifiedById: SalesforceIdFilter
-
- """Filter by the ApexTestSuite's systemModstamp field"""
- systemModstamp: SalesforceDateTimeFilter
-
- """Filter by the ApexTestSuite's testSuiteName field"""
- testSuiteName: SalesforceStringFilter
-
- """Checks for any expressions in this list."""
- or: [SalesforceApexTestSuiteConnectionFilter!]
-
- """Checks for all expressions in this list."""
- and: [SalesforceApexTestSuiteConnectionFilter!]
-}
-
-"""
-A filter to be used against TestSuiteMembership object types. All fields are combined with a logical ‘and.’
-"""
-input SalesforceTestSuiteMembershipConnectionFilter {
- """Filter against custom fields."""
- customField: SalesforceCustomFieldFilter
-
- """Filter by the TestSuiteMembership's apexClass relation."""
- apexClass: SalesforceApexClassConnectionFilter
-
- """Filter by the TestSuiteMembership's apexTestSuite relation."""
- apexTestSuite: SalesforceApexTestSuiteConnectionFilter
-
- """Filter by the TestSuiteMembership's lastModifiedBy relation."""
- lastModifiedBy: SalesforceUserConnectionFilter
-
- """Filter by the TestSuiteMembership's createdBy relation."""
- createdBy: SalesforceUserConnectionFilter
-
- """Filter by the TestSuiteMembership's id field"""
- id: SalesforceIdFilter
-
- """Filter by the TestSuiteMembership's isDeleted field"""
- isDeleted: SalesforceBooleanFilter
-
- """Filter by the TestSuiteMembership's createdDate field"""
- createdDate: SalesforceDateTimeFilter
-
- """Filter by the TestSuiteMembership's createdById field"""
- createdById: SalesforceIdFilter
-
- """Filter by the TestSuiteMembership's lastModifiedDate field"""
- lastModifiedDate: SalesforceDateTimeFilter
-
- """Filter by the TestSuiteMembership's lastModifiedById field"""
- lastModifiedById: SalesforceIdFilter
-
- """Filter by the TestSuiteMembership's systemModstamp field"""
- systemModstamp: SalesforceDateTimeFilter
-
- """Filter by the TestSuiteMembership's apexTestSuiteId field"""
- apexTestSuiteId: SalesforceIdFilter
-
- """Filter by the TestSuiteMembership's apexClassId field"""
- apexClassId: SalesforceIdFilter
-
- """Checks for any expressions in this list."""
- or: [SalesforceTestSuiteMembershipConnectionFilter!]
-
- """Checks for all expressions in this list."""
- and: [SalesforceTestSuiteMembershipConnectionFilter!]
-}
-
-"""Field that Test Suite Memberships can be sorted by"""
-enum SalesforceTestSuiteMembershipSortByFieldEnum {
- ID
- IS_DELETED
- CREATED_DATE
- CREATED_BY_ID
- LAST_MODIFIED_DATE
- LAST_MODIFIED_BY_ID
- SYSTEM_MODSTAMP
- APEX_TEST_SUITE_ID
- APEX_CLASS_ID
-}
-
-"""Apex Test Suite"""
-type SalesforceApexTestSuite implements OneGraphNode {
- """Test Suite ID"""
- id: String!
-
- """Deleted"""
- isDeleted: Boolean!
-
- """Created Date"""
- createdDate: String!
-
- """Created By ID"""
- createdById: String!
-
- """Created By ID"""
- createdBy: SalesforceUser!
-
- """Last Modified Date"""
- lastModifiedDate: String!
-
- """Last Modified By ID"""
- lastModifiedById: String!
-
- """Last Modified By ID"""
- lastModifiedBy: SalesforceUser!
-
- """System Modstamp"""
- systemModstamp: String!
-
- """Test Suite Name"""
- testSuiteName: String!
-
- """Collection of Salesforce TestSuiteMembership"""
- apexClassJunctions(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceTestSuiteMembershipConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceTestSuiteMembershipSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceTestSuiteMembershipSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """
- Number of TestSuiteMemberships to fetch. Defaults to 10. Maximum is 60.
- """
- first: Int
- ): SalesforceTestSuiteMembershipsConnection
- customFields(
- """
- List of custom fields to return. By default, returns all custom fields.
- """
- fields: [String!]
- ): JSON!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-"""Test Suite Membership"""
-type SalesforceTestSuiteMembership implements OneGraphNode {
- """Test Suite Membership ID"""
- id: String!
-
- """Deleted"""
- isDeleted: Boolean!
-
- """Created Date"""
- createdDate: String!
-
- """Created By ID"""
- createdById: String!
-
- """Created By ID"""
- createdBy: SalesforceUser!
-
- """Last Modified Date"""
- lastModifiedDate: String!
-
- """Last Modified By ID"""
- lastModifiedById: String!
-
- """Last Modified By ID"""
- lastModifiedBy: SalesforceUser!
-
- """System Modstamp"""
- systemModstamp: String!
-
- """Test Suite ID"""
- apexTestSuiteId: String!
-
- """Test Suite ID"""
- apexTestSuite: SalesforceApexTestSuite!
-
- """Class ID"""
- apexClassId: String!
-
- """Class ID"""
- apexClass: SalesforceApexClass!
- customFields(
- """
- List of custom fields to return. By default, returns all custom fields.
- """
- fields: [String!]
- ): JSON!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-"""Salesforce Test Suite Memberships connection, for use in pagination."""
-type SalesforceTestSuiteMembershipsConnection {
- """
- The count of all Test Suite Membership you could get from the connection.
- """
- totalCount: Int!
-
- """Pagination Information"""
- pageInfo: PageInfo!
-
- """List of Salesforce Test Suite Memberships"""
- nodes: [SalesforceTestSuiteMembership!]!
-
- """List of Test Suite Membership edges"""
- edges: [SalesforceTestSuiteMembershipEdge!]!
-}
-
-"""
-A filter to be used against SamlSsoConfig object types. All fields are combined with a logical ‘and.’
-"""
-input SalesforceSamlSsoConfigConnectionFilter {
- """Filter against custom fields."""
- customField: SalesforceCustomFieldFilter
-
- """Filter by the SamlSsoConfig's executionUser relation."""
- executionUser: SalesforceUserConnectionFilter
-
- """Filter by the SamlSsoConfig's samlJitHandler relation."""
- samlJitHandler: SalesforceApexClassConnectionFilter
-
- """Filter by the SamlSsoConfig's lastModifiedBy relation."""
- lastModifiedBy: SalesforceUserConnectionFilter
-
- """Filter by the SamlSsoConfig's createdBy relation."""
- createdBy: SalesforceUserConnectionFilter
-
- """Filter by the SamlSsoConfig's id field"""
- id: SalesforceIdFilter
-
- """Filter by the SamlSsoConfig's isDeleted field"""
- isDeleted: SalesforceBooleanFilter
-
- """Filter by the SamlSsoConfig's developerName field"""
- developerName: SalesforceStringFilter
-
- """Filter by the SamlSsoConfig's language field"""
- language: SalesforceStringFilter
-
- """Filter by the SamlSsoConfig's masterLabel field"""
- masterLabel: SalesforceStringFilter
-
- """Filter by the SamlSsoConfig's namespacePrefix field"""
- namespacePrefix: SalesforceStringFilter
-
- """Filter by the SamlSsoConfig's createdDate field"""
- createdDate: SalesforceDateTimeFilter
-
- """Filter by the SamlSsoConfig's createdById field"""
- createdById: SalesforceIdFilter
-
- """Filter by the SamlSsoConfig's lastModifiedDate field"""
- lastModifiedDate: SalesforceDateTimeFilter
-
- """Filter by the SamlSsoConfig's lastModifiedById field"""
- lastModifiedById: SalesforceIdFilter
-
- """Filter by the SamlSsoConfig's systemModstamp field"""
- systemModstamp: SalesforceDateTimeFilter
-
- """Filter by the SamlSsoConfig's version field"""
- version: SalesforceStringFilter
-
- """Filter by the SamlSsoConfig's issuer field"""
- issuer: SalesforceStringFilter
-
- """Filter by the SamlSsoConfig's optionsSpInitBinding field"""
- optionsSpInitBinding: SalesforceBooleanFilter
-
- """Filter by the SamlSsoConfig's optionsUserProvisioning field"""
- optionsUserProvisioning: SalesforceBooleanFilter
-
- """Filter by the SamlSsoConfig's attributeFormat field"""
- attributeFormat: SalesforceStringFilter
-
- """Filter by the SamlSsoConfig's attributeName field"""
- attributeName: SalesforceStringFilter
-
- """Filter by the SamlSsoConfig's audience field"""
- audience: SalesforceStringFilter
-
- """Filter by the SamlSsoConfig's identityMapping field"""
- identityMapping: SalesforceStringFilter
-
- """Filter by the SamlSsoConfig's identityLocation field"""
- identityLocation: SalesforceStringFilter
-
- """Filter by the SamlSsoConfig's samlJitHandlerId field"""
- samlJitHandlerId: SalesforceIdFilter
-
- """Filter by the SamlSsoConfig's executionUserId field"""
- executionUserId: SalesforceIdFilter
-
- """Filter by the SamlSsoConfig's loginUrl field"""
- loginUrl: SalesforceStringFilter
-
- """Filter by the SamlSsoConfig's logoutUrl field"""
- logoutUrl: SalesforceStringFilter
-
- """Filter by the SamlSsoConfig's errorUrl field"""
- errorUrl: SalesforceStringFilter
-
- """Filter by the SamlSsoConfig's validationCert field"""
- validationCert: SalesforceStringFilter
-
- """Filter by the SamlSsoConfig's requestSignatureMethod field"""
- requestSignatureMethod: SalesforceStringFilter
-
- """Filter by the SamlSsoConfig's singleLogoutUrl field"""
- singleLogoutUrl: SalesforceStringFilter
-
- """Filter by the SamlSsoConfig's singleLogoutBinding field"""
- singleLogoutBinding: SalesforceStringFilter
-
- """Checks for any expressions in this list."""
- or: [SalesforceSamlSsoConfigConnectionFilter!]
-
- """Checks for all expressions in this list."""
- and: [SalesforceSamlSsoConfigConnectionFilter!]
-}
-
-"""Field that SAML Single Sign-On Settings can be sorted by"""
-enum SalesforceSamlSsoConfigSortByFieldEnum {
- ID
- IS_DELETED
- DEVELOPER_NAME
- LANGUAGE
- MASTER_LABEL
- NAMESPACE_PREFIX
- CREATED_DATE
- CREATED_BY_ID
- LAST_MODIFIED_DATE
- LAST_MODIFIED_BY_ID
- SYSTEM_MODSTAMP
- VERSION
- ISSUER
- ATTRIBUTE_FORMAT
- ATTRIBUTE_NAME
- AUDIENCE
- IDENTITY_MAPPING
- IDENTITY_LOCATION
- SAML_JIT_HANDLER_ID
- EXECUTION_USER_ID
- LOGIN_URL
- LOGOUT_URL
- ERROR_URL
- VALIDATION_CERT
- REQUEST_SIGNATURE_METHOD
- SINGLE_LOGOUT_URL
- SINGLE_LOGOUT_BINDING
-}
-
-"""An edge in a connection."""
-type SalesforceSamlSsoConfigEdge {
- """The item at the end of the edge."""
- node: SalesforceSamlSsoConfig!
-
- """A cursor for use in pagination"""
- cursor: String!
-}
-
-"""
-Salesforce SAML Single Sign-On Settings connection, for use in pagination.
-"""
-type SalesforceSamlSsoConfigsConnection {
- """
- The count of all SAML Single Sign-On Setting you could get from the connection.
- """
- totalCount: Int!
-
- """Pagination Information"""
- pageInfo: PageInfo!
-
- """List of Salesforce SAML Single Sign-On Settings"""
- nodes: [SalesforceSamlSsoConfig!]!
-
- """List of SAML Single Sign-On Setting edges"""
- edges: [SalesforceSamlSsoConfigEdge!]!
-}
-
-"""Field that External Data Sources can be sorted by"""
-enum SalesforceExternalDataSourceSortByFieldEnum {
- ID
- IS_DELETED
- DEVELOPER_NAME
- LANGUAGE
- MASTER_LABEL
- NAMESPACE_PREFIX
- CREATED_DATE
- CREATED_BY_ID
- LAST_MODIFIED_DATE
- LAST_MODIFIED_BY_ID
- SYSTEM_MODSTAMP
- TYPE
- REPOSITORY
- IS_WRITABLE
- PRINCIPAL_TYPE
- PROTOCOL
- AUTH_PROVIDER_ID
- LARGE_ICON_ID
- SMALL_ICON_ID
-}
-
-"""An edge in a connection."""
-type SalesforceExternalDataSourceEdge {
- """The item at the end of the edge."""
- node: SalesforceExternalDataSource!
-
- """A cursor for use in pagination"""
- cursor: String!
-}
-
-"""Salesforce External Data Sources connection, for use in pagination."""
-type SalesforceExternalDataSourcesConnection {
- """
- The count of all External Data Source you could get from the connection.
- """
- totalCount: Int!
-
- """Pagination Information"""
- pageInfo: PageInfo!
-
- """List of Salesforce External Data Sources"""
- nodes: [SalesforceExternalDataSource!]!
-
- """List of External Data Source edges"""
- edges: [SalesforceExternalDataSourceEdge!]!
-}
-
-"""Field that Email Services can be sorted by"""
-enum SalesforceEmailServicesFunctionSortByFieldEnum {
- ID
- IS_ACTIVE
- FUNCTION_NAME
- AUTHORIZED_SENDERS
- IS_AUTHENTICATION_REQUIRED
- IS_TLS_REQUIRED
- ATTACHMENT_OPTION
- APEX_CLASS_ID
- OVER_LIMIT_ACTION
- FUNCTION_INACTIVE_ACTION
- ADDRESS_INACTIVE_ACTION
- AUTHENTICATION_FAILURE_ACTION
- AUTHORIZATION_FAILURE_ACTION
- IS_ERROR_ROUTING_ENABLED
- ERROR_ROUTING_ADDRESS
- IS_TEXT_ATTACHMENTS_AS_BINARY
- CREATED_BY_ID
- CREATED_DATE
- LAST_MODIFIED_BY_ID
- LAST_MODIFIED_DATE
- SYSTEM_MODSTAMP
-}
-
-"""An edge in a connection."""
-type SalesforceEmailServicesFunctionEdge {
- """The item at the end of the edge."""
- node: SalesforceEmailServicesFunction!
-
- """A cursor for use in pagination"""
- cursor: String!
-}
-
-"""
-A filter to be used against EmailServicesFunction object types. All fields are combined with a logical ‘and.’
-"""
-input SalesforceEmailServicesFunctionConnectionFilter {
- """Filter against custom fields."""
- customField: SalesforceCustomFieldFilter
-
- """Filter by the EmailServicesFunction's lastModifiedBy relation."""
- lastModifiedBy: SalesforceUserConnectionFilter
-
- """Filter by the EmailServicesFunction's createdBy relation."""
- createdBy: SalesforceUserConnectionFilter
-
- """Filter by the EmailServicesFunction's apexClass relation."""
- apexClass: SalesforceApexClassConnectionFilter
-
- """Filter by the EmailServicesFunction's id field"""
- id: SalesforceIdFilter
-
- """Filter by the EmailServicesFunction's isActive field"""
- isActive: SalesforceBooleanFilter
-
- """Filter by the EmailServicesFunction's functionName field"""
- functionName: SalesforceStringFilter
-
- """Filter by the EmailServicesFunction's authorizedSenders field"""
- authorizedSenders: SalesforceStringFilter
-
- """Filter by the EmailServicesFunction's isAuthenticationRequired field"""
- isAuthenticationRequired: SalesforceBooleanFilter
-
- """Filter by the EmailServicesFunction's isTlsRequired field"""
- isTlsRequired: SalesforceBooleanFilter
-
- """Filter by the EmailServicesFunction's attachmentOption field"""
- attachmentOption: SalesforceStringFilter
-
- """Filter by the EmailServicesFunction's apexClassId field"""
- apexClassId: SalesforceIdFilter
-
- """Filter by the EmailServicesFunction's overLimitAction field"""
- overLimitAction: SalesforceStringFilter
-
- """Filter by the EmailServicesFunction's functionInactiveAction field"""
- functionInactiveAction: SalesforceStringFilter
-
- """Filter by the EmailServicesFunction's addressInactiveAction field"""
- addressInactiveAction: SalesforceStringFilter
-
- """
- Filter by the EmailServicesFunction's authenticationFailureAction field
- """
- authenticationFailureAction: SalesforceStringFilter
-
- """Filter by the EmailServicesFunction's authorizationFailureAction field"""
- authorizationFailureAction: SalesforceStringFilter
-
- """Filter by the EmailServicesFunction's isErrorRoutingEnabled field"""
- isErrorRoutingEnabled: SalesforceBooleanFilter
-
- """Filter by the EmailServicesFunction's errorRoutingAddress field"""
- errorRoutingAddress: SalesforceStringFilter
-
- """Filter by the EmailServicesFunction's isTextAttachmentsAsBinary field"""
- isTextAttachmentsAsBinary: SalesforceBooleanFilter
-
- """Filter by the EmailServicesFunction's createdById field"""
- createdById: SalesforceIdFilter
-
- """Filter by the EmailServicesFunction's createdDate field"""
- createdDate: SalesforceDateTimeFilter
-
- """Filter by the EmailServicesFunction's lastModifiedById field"""
- lastModifiedById: SalesforceIdFilter
-
- """Filter by the EmailServicesFunction's lastModifiedDate field"""
- lastModifiedDate: SalesforceDateTimeFilter
-
- """Filter by the EmailServicesFunction's systemModstamp field"""
- systemModstamp: SalesforceDateTimeFilter
-
- """Checks for any expressions in this list."""
- or: [SalesforceEmailServicesFunctionConnectionFilter!]
-
- """Checks for all expressions in this list."""
- and: [SalesforceEmailServicesFunctionConnectionFilter!]
-}
-
-"""
-A filter to be used against EmailServicesAddress object types. All fields are combined with a logical ‘and.’
-"""
-input SalesforceEmailServicesAddressConnectionFilter {
- """Filter against custom fields."""
- customField: SalesforceCustomFieldFilter
-
- """Filter by the EmailServicesAddress's lastModifiedBy relation."""
- lastModifiedBy: SalesforceUserConnectionFilter
-
- """Filter by the EmailServicesAddress's createdBy relation."""
- createdBy: SalesforceUserConnectionFilter
-
- """Filter by the EmailServicesAddress's function relation."""
- function: SalesforceEmailServicesFunctionConnectionFilter
-
- """Filter by the EmailServicesAddress's runAsUser relation."""
- runAsUser: SalesforceUserConnectionFilter
-
- """Filter by the EmailServicesAddress's id field"""
- id: SalesforceIdFilter
-
- """Filter by the EmailServicesAddress's isActive field"""
- isActive: SalesforceBooleanFilter
-
- """Filter by the EmailServicesAddress's localPart field"""
- localPart: SalesforceStringFilter
-
- """Filter by the EmailServicesAddress's emailDomainName field"""
- emailDomainName: SalesforceStringFilter
-
- """Filter by the EmailServicesAddress's authorizedSenders field"""
- authorizedSenders: SalesforceStringFilter
-
- """Filter by the EmailServicesAddress's runAsUserId field"""
- runAsUserId: SalesforceIdFilter
-
- """Filter by the EmailServicesAddress's functionId field"""
- functionId: SalesforceIdFilter
-
- """Filter by the EmailServicesAddress's developerName field"""
- developerName: SalesforceStringFilter
-
- """Filter by the EmailServicesAddress's createdById field"""
- createdById: SalesforceIdFilter
-
- """Filter by the EmailServicesAddress's createdDate field"""
- createdDate: SalesforceDateTimeFilter
-
- """Filter by the EmailServicesAddress's lastModifiedById field"""
- lastModifiedById: SalesforceIdFilter
-
- """Filter by the EmailServicesAddress's lastModifiedDate field"""
- lastModifiedDate: SalesforceDateTimeFilter
-
- """Filter by the EmailServicesAddress's systemModstamp field"""
- systemModstamp: SalesforceDateTimeFilter
-
- """Checks for any expressions in this list."""
- or: [SalesforceEmailServicesAddressConnectionFilter!]
-
- """Checks for all expressions in this list."""
- and: [SalesforceEmailServicesAddressConnectionFilter!]
-}
-
-"""Field that Email Services Addresses can be sorted by"""
-enum SalesforceEmailServicesAddressSortByFieldEnum {
- ID
- IS_ACTIVE
- LOCAL_PART
- EMAIL_DOMAIN_NAME
- AUTHORIZED_SENDERS
- RUN_AS_USER_ID
- FUNCTION_ID
- DEVELOPER_NAME
- CREATED_BY_ID
- CREATED_DATE
- LAST_MODIFIED_BY_ID
- LAST_MODIFIED_DATE
- SYSTEM_MODSTAMP
-}
-
-"""An edge in a connection."""
-type SalesforceEmailServicesAddressEdge {
- """The item at the end of the edge."""
- node: SalesforceEmailServicesAddress!
-
- """A cursor for use in pagination"""
- cursor: String!
-}
-
-"""Email Services Address"""
-type SalesforceEmailServicesAddress implements OneGraphNode {
- """Address ID"""
- id: String!
-
- """Active"""
- isActive: Boolean!
-
- """Email address"""
- localPart: String!
-
- """Email address domain"""
- emailDomainName: String
-
- """Accept Email From"""
- authorizedSenders: String
-
- """User ID"""
- runAsUserId: String!
-
- """User ID"""
- runAsUser: SalesforceUser!
-
- """Service ID"""
- functionId: String!
-
- """Service ID"""
- function: SalesforceEmailServicesFunction!
-
- """Email Address Name"""
- developerName: String!
-
- """Created By ID"""
- createdById: String!
-
- """Created By ID"""
- createdBy: SalesforceUser!
-
- """Created Date"""
- createdDate: String!
-
- """Last Modified By ID"""
- lastModifiedById: String!
-
- """Last Modified By ID"""
- lastModifiedBy: SalesforceUser!
-
- """Last Modified Date"""
- lastModifiedDate: String!
-
- """System Modstamp"""
- systemModstamp: String!
- customFields(
- """
- List of custom fields to return. By default, returns all custom fields.
- """
- fields: [String!]
- ): JSON!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-"""Salesforce Email Services Addresses connection, for use in pagination."""
-type SalesforceEmailServicesAddresssConnection {
- """
- The count of all Email Services Address you could get from the connection.
- """
- totalCount: Int!
-
- """Pagination Information"""
- pageInfo: PageInfo!
-
- """List of Salesforce Email Services Addresses"""
- nodes: [SalesforceEmailServicesAddress!]!
-
- """List of Email Services Address edges"""
- edges: [SalesforceEmailServicesAddressEdge!]!
-}
-
-"""Email Service"""
-type SalesforceEmailServicesFunction implements OneGraphNode {
- """Service ID"""
- id: String!
-
- """Active"""
- isActive: Boolean!
-
- """Email Service Name"""
- functionName: String!
-
- """Accept Email From"""
- authorizedSenders: String
-
- """Advanced Email Security Settings"""
- isAuthenticationRequired: Boolean!
-
- """TLS Required"""
- isTlsRequired: Boolean!
-
- """Accept Attachments"""
- attachmentOption: String!
-
- """Class ID"""
- apexClassId: String
-
- """Class ID"""
- apexClass: SalesforceApexClass
-
- """Over Email Rate Limit Action"""
- overLimitAction: String
-
- """Deactivated Email Service Action"""
- functionInactiveAction: String
-
- """Deactivated Email Address Action"""
- addressInactiveAction: String
-
- """Unauthenticated Sender Action"""
- authenticationFailureAction: String
-
- """Unauthorized Sender Action"""
- authorizationFailureAction: String
-
- """Enable Error Routing"""
- isErrorRoutingEnabled: Boolean!
-
- """Route Error Emails to This Email Address"""
- errorRoutingAddress: String
-
- """Convert Text Attachments to Binary Attachments"""
- isTextAttachmentsAsBinary: Boolean!
-
- """Created By ID"""
- createdById: String!
-
- """Created By ID"""
- createdBy: SalesforceUser!
-
- """Created Date"""
- createdDate: String!
-
- """Last Modified By ID"""
- lastModifiedById: String!
-
- """Last Modified By ID"""
- lastModifiedBy: SalesforceUser!
-
- """Last Modified Date"""
- lastModifiedDate: String!
-
- """System Modstamp"""
- systemModstamp: String!
-
- """Collection of Salesforce EmailServicesAddress"""
- addresses(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceEmailServicesAddressConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceEmailServicesAddressSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceEmailServicesAddressSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """
- Number of EmailServicesAddresses to fetch. Defaults to 10. Maximum is 60.
- """
- first: Int
- ): SalesforceEmailServicesAddresssConnection
- customFields(
- """
- List of custom fields to return. By default, returns all custom fields.
- """
- fields: [String!]
- ): JSON!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-"""Salesforce Email Services connection, for use in pagination."""
-type SalesforceEmailServicesFunctionsConnection {
- """The count of all Email Service you could get from the connection."""
- totalCount: Int!
-
- """Pagination Information"""
- pageInfo: PageInfo!
-
- """List of Salesforce Email Services"""
- nodes: [SalesforceEmailServicesFunction!]!
-
- """List of Email Service edges"""
- edges: [SalesforceEmailServicesFunctionEdge!]!
-}
-
-"""Field that Auth. Providers can be sorted by"""
-enum SalesforceAuthProviderSortByFieldEnum {
- ID
- CREATED_DATE
- PROVIDER_TYPE
- FRIENDLY_NAME
- DEVELOPER_NAME
- REGISTRATION_HANDLER_ID
- EXECUTION_USER_ID
- CONSUMER_KEY
- ERROR_URL
- AUTHORIZE_URL
- TOKEN_URL
- USER_INFO_URL
- DEFAULT_SCOPES
- ID_TOKEN_ISSUER
- ICON_URL
- LOGOUT_URL
- PLUGIN_ID
- CUSTOM_METADATA_TYPE_RECORD
-}
-
-"""An edge in a connection."""
-type SalesforceAuthProviderEdge {
- """The item at the end of the edge."""
- node: SalesforceAuthProvider!
-
- """A cursor for use in pagination"""
- cursor: String!
-}
-
-"""Salesforce Auth. Providers connection, for use in pagination."""
-type SalesforceAuthProvidersConnection {
- """The count of all Auth. Provider you could get from the connection."""
- totalCount: Int!
-
- """Pagination Information"""
- pageInfo: PageInfo!
-
- """List of Salesforce Auth. Providers"""
- nodes: [SalesforceAuthProvider!]!
-
- """List of Auth. Provider edges"""
- edges: [SalesforceAuthProviderEdge!]!
-}
-
-"""An edge in a connection."""
-type SalesforceApexTestQueueItemEdge {
- """The item at the end of the edge."""
- node: SalesforceApexTestQueueItem!
-
- """A cursor for use in pagination"""
- cursor: String!
-}
-
-"""An edge in a connection."""
-type SalesforceFlowRecordRelationEdge {
- """The item at the end of the edge."""
- node: SalesforceFlowRecordRelation!
-
- """A cursor for use in pagination"""
- cursor: String!
-}
-
-"""Account Clean Info"""
-type SalesforceAccountCleanInfo implements OneGraphNode {
- """Account Clean Info ID"""
- id: String!
-
- """Deleted"""
- isDeleted: Boolean!
-
- """Account Clean Info Name"""
- name: String!
-
- """Created Date"""
- createdDate: String!
-
- """Created By ID"""
- createdById: String!
-
- """Created By ID"""
- createdBy: SalesforceUser!
-
- """Last Modified Date"""
- lastModifiedDate: String!
-
- """Last Modified By ID"""
- lastModifiedById: String!
-
- """Last Modified By ID"""
- lastModifiedBy: SalesforceUser!
-
- """System Modstamp"""
- systemModstamp: String!
-
- """Account ID"""
- accountId: String!
-
- """Account ID"""
- account: SalesforceAccount!
-
- """Last Matched Date"""
- lastMatchedDate: String!
-
- """Last Status Changed Date"""
- lastStatusChangedDate: String
-
- """User ID"""
- lastStatusChangedById: String
-
- """User ID"""
- lastStatusChangedBy: SalesforceUser
-
- """Company Status in Salesforce"""
- isInactive: Boolean!
-
- """Company Name"""
- companyName: String
-
- """Phone"""
- phone: String
-
- """Street"""
- street: String
-
- """City"""
- city: String
-
- """State"""
- state: String
-
- """Zip"""
- postalCode: String
-
- """Country"""
- country: String
-
- """Latitude"""
- latitude: Float
-
- """Longitude"""
- longitude: Float
-
- """Geocode Accuracy"""
- geocodeAccuracy: String
-
- """Address"""
- address: SalesforceAddress
-
- """Website"""
- website: String
-
- """Ticker Symbol"""
- tickerSymbol: String
-
- """Annual Revenue"""
- annualRevenue: Float
-
- """Number of Employees"""
- numberOfEmployees: Int
-
- """Industry"""
- industry: String
-
- """Ownership"""
- ownership: String
-
- """D-U-N-S Number"""
- dunsNumber: String
-
- """SIC Code"""
- sic: String
-
- """SIC Description"""
- sicDescription: String
-
- """NAICS Code"""
- naicsCode: String
-
- """NAICS Description"""
- naicsDescription: String
-
- """Year Started"""
- yearStarted: String
-
- """Fax"""
- fax: String
-
- """Account Site"""
- accountSite: String
-
- """Description"""
- description: String
-
- """Tradestyle"""
- tradestyle: String
-
- """D&B Company D-U-N-S Number"""
- dandBCompanyDunsNumber: String
-
- """DUNSRight™ Match Grade"""
- dunsRightMatchGrade: String
-
- """DUNSRight™ Match Confidence"""
- dunsRightMatchConfidence: Int
-
- """Company Status per Data.com"""
- companyStatusDataDotCom: String
-
- """Company Name is Reviewed"""
- isReviewedCompanyName: Boolean!
-
- """Phone is Reviewed"""
- isReviewedPhone: Boolean!
-
- """Address is Reviewed"""
- isReviewedAddress: Boolean!
-
- """Website is Reviewed"""
- isReviewedWebsite: Boolean!
-
- """Ticker Symbol is Reviewed"""
- isReviewedTickerSymbol: Boolean!
-
- """Annual Revenue is Reviewed"""
- isReviewedAnnualRevenue: Boolean!
-
- """Number of Employees is Reviewed"""
- isReviewedNumberOfEmployees: Boolean!
-
- """Industry is Reviewed"""
- isReviewedIndustry: Boolean!
-
- """Ownership is Reviewed"""
- isReviewedOwnership: Boolean!
-
- """D-U-N-S Number is Reviewed"""
- isReviewedDunsNumber: Boolean!
-
- """SIC Code is Reviewed"""
- isReviewedSic: Boolean!
-
- """SIC Description is Reviewed"""
- isReviewedSicDescription: Boolean!
-
- """NAICS Code is Reviewed"""
- isReviewedNaicsCode: Boolean!
-
- """NAICS Description is Reviewed"""
- isReviewedNaicsDescription: Boolean!
-
- """Year Started is Reviewed"""
- isReviewedYearStarted: Boolean!
-
- """Fax is Reviewed"""
- isReviewedFax: Boolean!
-
- """Account Site is Reviewed"""
- isReviewedAccountSite: Boolean!
-
- """Description is Reviewed"""
- isReviewedDescription: Boolean!
-
- """Tradestyle is Reviewed"""
- isReviewedTradestyle: Boolean!
-
- """D&B Company D-U-N-S Number is Reviewed"""
- isReviewedDandBCompanyDunsNumber: Boolean!
-
- """Company Name is Different"""
- isDifferentCompanyName: Boolean!
-
- """Phone is Different"""
- isDifferentPhone: Boolean!
-
- """Street is Different"""
- isDifferentStreet: Boolean!
-
- """City is Different"""
- isDifferentCity: Boolean!
-
- """State is Different"""
- isDifferentState: Boolean!
-
- """ZIP is Different"""
- isDifferentPostalCode: Boolean!
-
- """Country is Different"""
- isDifferentCountry: Boolean!
-
- """Website is Different"""
- isDifferentWebsite: Boolean!
-
- """Ticker Symbol is Different"""
- isDifferentTickerSymbol: Boolean!
-
- """Annual Revenue is Different"""
- isDifferentAnnualRevenue: Boolean!
-
- """Number of Employees is Different"""
- isDifferentNumberOfEmployees: Boolean!
-
- """Industry is Different"""
- isDifferentIndustry: Boolean!
-
- """Ownership is Different"""
- isDifferentOwnership: Boolean!
-
- """D-U-N-S Number is Different"""
- isDifferentDunsNumber: Boolean!
-
- """SIC Code is Different"""
- isDifferentSic: Boolean!
-
- """SIC Description is Different"""
- isDifferentSicDescription: Boolean!
-
- """NAICS Code is Different"""
- isDifferentNaicsCode: Boolean!
-
- """NAICS Description is Different"""
- isDifferentNaicsDescription: Boolean!
-
- """Year Started is Different"""
- isDifferentYearStarted: Boolean!
-
- """Fax is Different"""
- isDifferentFax: Boolean!
-
- """Account Site is Different"""
- isDifferentAccountSite: Boolean!
-
- """Description is Different"""
- isDifferentDescription: Boolean!
-
- """Tradestyle is Different"""
- isDifferentTradestyle: Boolean!
-
- """D&B Company D-U-N-S Number is Different"""
- isDifferentDandBCompanyDunsNumber: Boolean!
-
- """State Code is Different"""
- isDifferentStateCode: Boolean!
-
- """Country Code is Different"""
- isDifferentCountryCode: Boolean!
-
- """Cleaned by Job"""
- cleanedByJob: Boolean!
-
- """Cleaned by User"""
- cleanedByUser: Boolean!
-
- """Company Name is Flagged Wrong"""
- isFlaggedWrongCompanyName: Boolean!
-
- """Phone is Flagged Wrong"""
- isFlaggedWrongPhone: Boolean!
-
- """Address is Flagged Wrong"""
- isFlaggedWrongAddress: Boolean!
-
- """Website is Flagged Wrong"""
- isFlaggedWrongWebsite: Boolean!
-
- """Ticker Symbol is Flagged Wrong"""
- isFlaggedWrongTickerSymbol: Boolean!
-
- """Annual Revenue is Flagged Wrong"""
- isFlaggedWrongAnnualRevenue: Boolean!
-
- """Number of Employees is Flagged Wrong"""
- isFlaggedWrongNumberOfEmployees: Boolean!
-
- """Industry is Flagged Wrong"""
- isFlaggedWrongIndustry: Boolean!
-
- """Ownership is Flagged Wrong"""
- isFlaggedWrongOwnership: Boolean!
-
- """D-U-N-S Number is Flagged Wrong"""
- isFlaggedWrongDunsNumber: Boolean!
-
- """SIC Code is Flagged Wrong"""
- isFlaggedWrongSic: Boolean!
-
- """SIC Description is Flagged Wrong"""
- isFlaggedWrongSicDescription: Boolean!
-
- """NAICS Code is Flagged Wrong"""
- isFlaggedWrongNaicsCode: Boolean!
-
- """NAICS Description is Flagged Wrong"""
- isFlaggedWrongNaicsDescription: Boolean!
-
- """Year Started is Flagged Wrong"""
- isFlaggedWrongYearStarted: Boolean!
-
- """Fax is Flagged Wrong"""
- isFlaggedWrongFax: Boolean!
-
- """Account Site is Flagged Wrong"""
- isFlaggedWrongAccountSite: Boolean!
-
- """Description is Flagged Wrong"""
- isFlaggedWrongDescription: Boolean!
-
- """Tradestyle is Flagged Wrong"""
- isFlaggedWrongTradestyle: Boolean!
-
- """Data.com ID"""
- dataDotComId: String
-
- """Collection of Salesforce FlowRecordRelation"""
- flowRecordRelations(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceFlowRecordRelationConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceFlowRecordRelationSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceFlowRecordRelationsConnection
- customFields(
- """
- List of custom fields to return. By default, returns all custom fields.
- """
- fields: [String!]
- ): JSON!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-"""Account Contact Role"""
-type SalesforceAccountContactRole implements OneGraphNode {
- """Contact Role ID"""
- id: String!
-
- """Deleted"""
- isDeleted: Boolean!
-
- """Created Date"""
- createdDate: String!
-
- """Created By ID"""
- createdById: String!
-
- """Created By ID"""
- createdBy: SalesforceUser!
-
- """Last Modified Date"""
- lastModifiedDate: String!
-
- """Last Modified By ID"""
- lastModifiedById: String!
-
- """Last Modified By ID"""
- lastModifiedBy: SalesforceUser!
-
- """System Modstamp"""
- systemModstamp: String!
-
- """Account ID"""
- accountId: String!
-
- """Account ID"""
- account: SalesforceAccount!
-
- """Contact ID"""
- contactId: String!
-
- """Contact ID"""
- contact: SalesforceContact!
-
- """Role"""
- role: String
-
- """Primary"""
- isPrimary: Boolean!
-
- """Collection of Salesforce FlowRecordRelation"""
- flowRecordRelations(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceFlowRecordRelationConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceFlowRecordRelationSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceFlowRecordRelationsConnection
- customFields(
- """
- List of custom fields to return. By default, returns all custom fields.
- """
- fields: [String!]
- ): JSON!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-"""
-A filter to be used against BackgroundOperation object types. All fields are combined with a logical ‘and.’
-"""
-input SalesforceBackgroundOperationConnectionFilter {
- """Filter against custom fields."""
- customField: SalesforceCustomFieldFilter
-
- """Filter by the BackgroundOperation's groupLeader relation."""
- groupLeader: SalesforceBackgroundOperationConnectionFilter
-
- """Filter by the BackgroundOperation's lastModifiedBy relation."""
- lastModifiedBy: SalesforceUserConnectionFilter
-
- """Filter by the BackgroundOperation's createdBy relation."""
- createdBy: SalesforceUserConnectionFilter
-
- """Filter by the BackgroundOperation's id field"""
- id: SalesforceIdFilter
-
- """Filter by the BackgroundOperation's isDeleted field"""
- isDeleted: SalesforceBooleanFilter
-
- """Filter by the BackgroundOperation's name field"""
- name: SalesforceStringFilter
-
- """Filter by the BackgroundOperation's createdDate field"""
- createdDate: SalesforceDateTimeFilter
-
- """Filter by the BackgroundOperation's createdById field"""
- createdById: SalesforceIdFilter
-
- """Filter by the BackgroundOperation's lastModifiedDate field"""
- lastModifiedDate: SalesforceDateTimeFilter
-
- """Filter by the BackgroundOperation's lastModifiedById field"""
- lastModifiedById: SalesforceIdFilter
-
- """Filter by the BackgroundOperation's systemModstamp field"""
- systemModstamp: SalesforceDateTimeFilter
-
- """Filter by the BackgroundOperation's submittedAt field"""
- submittedAt: SalesforceDateTimeFilter
-
- """Filter by the BackgroundOperation's status field"""
- status: SalesforceStringFilter
-
- """Filter by the BackgroundOperation's executionGroup field"""
- executionGroup: SalesforceStringFilter
-
- """Filter by the BackgroundOperation's sequenceGroup field"""
- sequenceGroup: SalesforceStringFilter
-
- """Filter by the BackgroundOperation's sequenceNumber field"""
- sequenceNumber: SalesforceIntFilter
-
- """Filter by the BackgroundOperation's groupLeaderId field"""
- groupLeaderId: SalesforceIdFilter
-
- """Filter by the BackgroundOperation's startedAt field"""
- startedAt: SalesforceDateTimeFilter
-
- """Filter by the BackgroundOperation's finishedAt field"""
- finishedAt: SalesforceDateTimeFilter
-
- """Filter by the BackgroundOperation's workerUri field"""
- workerUri: SalesforceStringFilter
-
- """Filter by the BackgroundOperation's timeout field"""
- timeout: SalesforceIntFilter
-
- """Filter by the BackgroundOperation's expiresAt field"""
- expiresAt: SalesforceDateTimeFilter
-
- """Filter by the BackgroundOperation's numFollowers field"""
- numFollowers: SalesforceIntFilter
-
- """Filter by the BackgroundOperation's processAfter field"""
- processAfter: SalesforceDateTimeFilter
-
- """Filter by the BackgroundOperation's parentKey field"""
- parentKey: SalesforceStringFilter
-
- """Filter by the BackgroundOperation's retryLimit field"""
- retryLimit: SalesforceIntFilter
-
- """Filter by the BackgroundOperation's retryCount field"""
- retryCount: SalesforceIntFilter
-
- """Filter by the BackgroundOperation's retryBackoff field"""
- retryBackoff: SalesforceIntFilter
-
- """Filter by the BackgroundOperation's error field"""
- error: SalesforceStringFilter
-
- """Checks for any expressions in this list."""
- or: [SalesforceBackgroundOperationConnectionFilter!]
-
- """Checks for all expressions in this list."""
- and: [SalesforceBackgroundOperationConnectionFilter!]
-}
-
-"""Field that Background Operations can be sorted by"""
-enum SalesforceBackgroundOperationSortByFieldEnum {
- ID
- IS_DELETED
- NAME
- CREATED_DATE
- CREATED_BY_ID
- LAST_MODIFIED_DATE
- LAST_MODIFIED_BY_ID
- SYSTEM_MODSTAMP
- SUBMITTED_AT
- STATUS
- EXECUTION_GROUP
- SEQUENCE_GROUP
- SEQUENCE_NUMBER
- GROUP_LEADER_ID
- STARTED_AT
- FINISHED_AT
- WORKER_URI
- TIMEOUT
- EXPIRES_AT
- NUM_FOLLOWERS
- PROCESS_AFTER
- PARENT_KEY
- RETRY_LIMIT
- RETRY_COUNT
- RETRY_BACKOFF
- ERROR
-}
-
-"""An edge in a connection."""
-type SalesforceBackgroundOperationEdge {
- """The item at the end of the edge."""
- node: SalesforceBackgroundOperation!
-
- """A cursor for use in pagination"""
- cursor: String!
-}
-
-"""Salesforce Background Operations connection, for use in pagination."""
-type SalesforceBackgroundOperationsConnection {
- """
- The count of all Background Operation you could get from the connection.
- """
- totalCount: Int!
-
- """Pagination Information"""
- pageInfo: PageInfo!
-
- """List of Salesforce Background Operations"""
- nodes: [SalesforceBackgroundOperation!]!
-
- """List of Background Operation edges"""
- edges: [SalesforceBackgroundOperationEdge!]!
-}
-
-"""Background Operation"""
-type SalesforceBackgroundOperation implements OneGraphNode {
- """Background Operation ID"""
- id: String!
-
- """Deleted"""
- isDeleted: Boolean!
-
- """Background Operation Name"""
- name: String!
-
- """Created Date"""
- createdDate: String!
-
- """Created By ID"""
- createdById: String!
-
- """Created By ID"""
- createdBy: SalesforceUser!
-
- """Last Modified Date"""
- lastModifiedDate: String!
-
- """Last Modified By ID"""
- lastModifiedById: String!
-
- """Last Modified By ID"""
- lastModifiedBy: SalesforceUser!
-
- """System Modstamp"""
- systemModstamp: String!
-
- """Submitted"""
- submittedAt: String
-
- """Status"""
- status: String
-
- """Execution Group"""
- executionGroup: String
-
- """Sequence Group"""
- sequenceGroup: String
-
- """Sequence Number"""
- sequenceNumber: Int
-
- """Background Operation ID"""
- groupLeaderId: String
-
- """Background Operation ID"""
- groupLeader: SalesforceBackgroundOperation
-
- """Started"""
- startedAt: String
-
- """Finished"""
- finishedAt: String
-
- """Worker URI"""
- workerUri: String
-
- """Timeout"""
- timeout: Int
-
- """ExpiresAt"""
- expiresAt: String
-
- """NumFollowers"""
- numFollowers: Int
-
- """ProcessAfter"""
- processAfter: String
-
- """ParentKey"""
- parentKey: String
-
- """RetryLimit"""
- retryLimit: Int
-
- """RetryCount"""
- retryCount: Int
-
- """RetryBackoff"""
- retryBackoff: Int
-
- """Error"""
- error: String
-
- """Collection of Salesforce BackgroundOperation"""
- mergedOperations(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceBackgroundOperationConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceBackgroundOperationSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceBackgroundOperationSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """
- Number of BackgroundOperations to fetch. Defaults to 10. Maximum is 60.
- """
- first: Int
- ): SalesforceBackgroundOperationsConnection
-
- """Collection of Salesforce FlowRecordRelation"""
- flowRecordRelations(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceFlowRecordRelationConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceFlowRecordRelationSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceFlowRecordRelationsConnection
- customFields(
- """
- List of custom fields to return. By default, returns all custom fields.
- """
- fields: [String!]
- ): JSON!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-"""Case Contact Role"""
-type SalesforceCaseContactRole implements OneGraphNode {
- """Contact Role ID"""
- id: String!
-
- """Case ID"""
- casesId: String!
-
- """Case ID"""
- cases: SalesforceCase!
-
- """Contact ID"""
- contactId: String!
-
- """Contact ID"""
- contact: SalesforceContact!
-
- """Role"""
- role: String
-
- """Created Date"""
- createdDate: String!
-
- """Created By ID"""
- createdById: String!
-
- """Created By ID"""
- createdBy: SalesforceUser!
-
- """Last Modified Date"""
- lastModifiedDate: String!
-
- """Last Modified By ID"""
- lastModifiedById: String!
-
- """Last Modified By ID"""
- lastModifiedBy: SalesforceUser!
-
- """System Modstamp"""
- systemModstamp: String!
-
- """Deleted"""
- isDeleted: Boolean!
-
- """Collection of Salesforce FlowRecordRelation"""
- flowRecordRelations(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceFlowRecordRelationConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceFlowRecordRelationSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceFlowRecordRelationsConnection
- customFields(
- """
- List of custom fields to return. By default, returns all custom fields.
- """
- fields: [String!]
- ): JSON!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-"""Case Solution"""
-type SalesforceCaseSolution implements OneGraphNode {
- """Case Solution ID"""
- id: String!
-
- """Case ID"""
- caseId: String!
-
- """Case ID"""
- case: SalesforceCase!
-
- """Solution ID"""
- solutionId: String!
-
- """Solution ID"""
- solution: SalesforceSolution!
-
- """Created By ID"""
- createdById: String!
-
- """Created By ID"""
- createdBy: SalesforceUser!
-
- """Created Date"""
- createdDate: String!
-
- """System Modstamp"""
- systemModstamp: String!
-
- """Deleted"""
- isDeleted: Boolean!
-
- """Collection of Salesforce FlowRecordRelation"""
- flowRecordRelations(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceFlowRecordRelationConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceFlowRecordRelationSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceFlowRecordRelationsConnection
- customFields(
- """
- List of custom fields to return. By default, returns all custom fields.
- """
- fields: [String!]
- ): JSON!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-"""Contact Clean Info"""
-type SalesforceContactCleanInfo implements OneGraphNode {
- """Contact Clean Info ID"""
- id: String!
-
- """Deleted"""
- isDeleted: Boolean!
-
- """Contact Clean Info Name"""
- name: String!
-
- """Created Date"""
- createdDate: String!
-
- """Created By ID"""
- createdById: String!
-
- """Created By ID"""
- createdBy: SalesforceUser!
-
- """Last Modified Date"""
- lastModifiedDate: String!
-
- """Last Modified By ID"""
- lastModifiedById: String!
-
- """Last Modified By ID"""
- lastModifiedBy: SalesforceUser!
-
- """System Modstamp"""
- systemModstamp: String!
-
- """Contact ID"""
- contactId: String!
-
- """Contact ID"""
- contact: SalesforceContact!
-
- """Last Matched Date"""
- lastMatchedDate: String!
-
- """Last Status Changed Date"""
- lastStatusChangedDate: String
-
- """User ID"""
- lastStatusChangedById: String
-
- """User ID"""
- lastStatusChangedBy: SalesforceUser
-
- """Contact Status in Salesforce"""
- isInactive: Boolean!
-
- """First Name"""
- firstName: String
-
- """Last Name"""
- lastName: String
-
- """Email"""
- email: String
-
- """Phone"""
- phone: String
-
- """Street"""
- street: String
-
- """City"""
- city: String
-
- """State"""
- state: String
-
- """Zip"""
- postalCode: String
-
- """Country"""
- country: String
-
- """Latitude"""
- latitude: Float
-
- """Longitude"""
- longitude: Float
-
- """Geocode Accuracy"""
- geocodeAccuracy: String
-
- """Address"""
- address: SalesforceAddress
-
- """Title"""
- title: String
-
- """Contact Status per Data.com"""
- contactStatusDataDotCom: String
-
- """Name is Reviewed"""
- isReviewedName: Boolean!
-
- """Email is Reviewed"""
- isReviewedEmail: Boolean!
-
- """Phone is Reviewed"""
- isReviewedPhone: Boolean!
-
- """Address is Reviewed"""
- isReviewedAddress: Boolean!
-
- """Title is Reviewed"""
- isReviewedTitle: Boolean!
-
- """First Name is Different"""
- isDifferentFirstName: Boolean!
-
- """Last Name is Different"""
- isDifferentLastName: Boolean!
-
- """Email is Different"""
- isDifferentEmail: Boolean!
-
- """Phone is Different"""
- isDifferentPhone: Boolean!
-
- """Street is Different"""
- isDifferentStreet: Boolean!
-
- """City is Different"""
- isDifferentCity: Boolean!
-
- """State is Different"""
- isDifferentState: Boolean!
-
- """ZIP is Different"""
- isDifferentPostalCode: Boolean!
-
- """Country is Different"""
- isDifferentCountry: Boolean!
-
- """Title is Different"""
- isDifferentTitle: Boolean!
-
- """State Code is Different"""
- isDifferentStateCode: Boolean!
-
- """Country Code is Different"""
- isDifferentCountryCode: Boolean!
-
- """Cleaned by Job"""
- cleanedByJob: Boolean!
-
- """Cleaned by User"""
- cleanedByUser: Boolean!
-
- """Name is Flagged Wrong"""
- isFlaggedWrongName: Boolean!
-
- """Email is Flagged Wrong"""
- isFlaggedWrongEmail: Boolean!
-
- """Phone is Flagged Wrong"""
- isFlaggedWrongPhone: Boolean!
-
- """Address is Flagged Wrong"""
- isFlaggedWrongAddress: Boolean!
-
- """Title is Flagged Wrong"""
- isFlaggedWrongTitle: Boolean!
-
- """Data.com ID"""
- dataDotComId: String
-
- """Collection of Salesforce FlowRecordRelation"""
- flowRecordRelations(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceFlowRecordRelationConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceFlowRecordRelationSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceFlowRecordRelationsConnection
- customFields(
- """
- List of custom fields to return. By default, returns all custom fields.
- """
- fields: [String!]
- ): JSON!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-"""Content Document Subscription"""
-type SalesforceContentDocumentSubscription implements OneGraphNode {
- """ContentDocumentSubscription ID"""
- id: String!
-
- """User ID"""
- userId: String!
-
- """User ID"""
- user: SalesforceUser!
-
- """Document ID"""
- contentDocumentId: String!
-
- """Document ID"""
- contentDocument: SalesforceContentDocument!
-
- """Is Comment Subscription"""
- isCommentSub: Boolean!
-
- """Is Document Subscription"""
- isDocumentSub: Boolean!
-
- """Collection of Salesforce FlowRecordRelation"""
- flowRecordRelations(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceFlowRecordRelationConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceFlowRecordRelationSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceFlowRecordRelationsConnection
- customFields(
- """
- List of custom fields to return. By default, returns all custom fields.
- """
- fields: [String!]
- ): JSON!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-"""Field that Libraries can be sorted by"""
-enum SalesforceContentWorkspaceSortByFieldEnum {
- ID
- NAME
- DESCRIPTION
- TAG_MODEL
- CREATED_BY_ID
- CREATED_DATE
- LAST_MODIFIED_BY_ID
- SYSTEM_MODSTAMP
- LAST_MODIFIED_DATE
- DEFAULT_RECORD_TYPE_ID
- IS_RESTRICT_CONTENT_TYPES
- IS_RESTRICT_LINKED_CONTENT_TYPES
- WORKSPACE_TYPE
- LAST_WORKSPACE_ACTIVITY_DATE
- ROOT_CONTENT_FOLDER_ID
- NAMESPACE_PREFIX
- DEVELOPER_NAME
-}
-
-"""An edge in a connection."""
-type SalesforceContentWorkspaceEdge {
- """The item at the end of the edge."""
- node: SalesforceContentWorkspace!
-
- """A cursor for use in pagination"""
- cursor: String!
-}
-
-"""Salesforce Libraries connection, for use in pagination."""
-type SalesforceContentWorkspacesConnection {
- """The count of all Library you could get from the connection."""
- totalCount: Int!
-
- """Pagination Information"""
- pageInfo: PageInfo!
-
- """List of Salesforce Libraries"""
- nodes: [SalesforceContentWorkspace!]!
-
- """List of Library edges"""
- edges: [SalesforceContentWorkspaceEdge!]!
-}
-
-"""
-A filter to be used against ContentFolderMember object types. All fields are combined with a logical ‘and.’
-"""
-input SalesforceContentFolderMemberConnectionFilter {
- """Filter against custom fields."""
- customField: SalesforceCustomFieldFilter
-
- """Filter by the ContentFolderMember's lastModifiedBy relation."""
- lastModifiedBy: SalesforceUserConnectionFilter
-
- """Filter by the ContentFolderMember's createdBy relation."""
- createdBy: SalesforceUserConnectionFilter
-
- """Filter by the ContentFolderMember's childRecord relation."""
- childRecord: SalesforceContentDocumentConnectionFilter
-
- """Filter by the ContentFolderMember's parentContentFolder relation."""
- parentContentFolder: SalesforceContentFolderConnectionFilter
-
- """Filter by the ContentFolderMember's id field"""
- id: SalesforceIdFilter
-
- """Filter by the ContentFolderMember's parentContentFolderId field"""
- parentContentFolderId: SalesforceIdFilter
-
- """Filter by the ContentFolderMember's childRecordId field"""
- childRecordId: SalesforceIdFilter
-
- """Filter by the ContentFolderMember's isDeleted field"""
- isDeleted: SalesforceBooleanFilter
-
- """Filter by the ContentFolderMember's systemModstamp field"""
- systemModstamp: SalesforceDateTimeFilter
-
- """Filter by the ContentFolderMember's createdById field"""
- createdById: SalesforceIdFilter
-
- """Filter by the ContentFolderMember's createdDate field"""
- createdDate: SalesforceDateTimeFilter
-
- """Filter by the ContentFolderMember's lastModifiedById field"""
- lastModifiedById: SalesforceIdFilter
-
- """Filter by the ContentFolderMember's lastModifiedDate field"""
- lastModifiedDate: SalesforceDateTimeFilter
-
- """Checks for any expressions in this list."""
- or: [SalesforceContentFolderMemberConnectionFilter!]
-
- """Checks for all expressions in this list."""
- and: [SalesforceContentFolderMemberConnectionFilter!]
-}
-
-"""Field that Content Folder Members can be sorted by"""
-enum SalesforceContentFolderMemberSortByFieldEnum {
- ID
- PARENT_CONTENT_FOLDER_ID
- CHILD_RECORD_ID
- IS_DELETED
- SYSTEM_MODSTAMP
- CREATED_BY_ID
- CREATED_DATE
- LAST_MODIFIED_BY_ID
- LAST_MODIFIED_DATE
-}
-
-"""An edge in a connection."""
-type SalesforceContentFolderMemberEdge {
- """The item at the end of the edge."""
- node: SalesforceContentFolderMember!
-
- """A cursor for use in pagination"""
- cursor: String!
-}
-
-"""Salesforce Content Folder Members connection, for use in pagination."""
-type SalesforceContentFolderMembersConnection {
- """
- The count of all Content Folder Member you could get from the connection.
- """
- totalCount: Int!
-
- """Pagination Information"""
- pageInfo: PageInfo!
-
- """List of Salesforce Content Folder Members"""
- nodes: [SalesforceContentFolderMember!]!
-
- """List of Content Folder Member edges"""
- edges: [SalesforceContentFolderMemberEdge!]!
-}
-
-"""
-A filter to be used against ContentFolderLink object types. All fields are combined with a logical ‘and.’
-"""
-input SalesforceContentFolderLinkConnectionFilter {
- """Filter against custom fields."""
- customField: SalesforceCustomFieldFilter
-
- """Filter by the ContentFolderLink's contentFolder relation."""
- contentFolder: SalesforceContentFolderConnectionFilter
-
- """Filter by the ContentFolderLink's parentEntity relation."""
- parentEntity: SalesforceContentWorkspaceConnectionFilter
-
- """Filter by the ContentFolderLink's id field"""
- id: SalesforceIdFilter
-
- """Filter by the ContentFolderLink's parentEntityId field"""
- parentEntityId: SalesforceIdFilter
-
- """Filter by the ContentFolderLink's contentFolderId field"""
- contentFolderId: SalesforceIdFilter
-
- """Filter by the ContentFolderLink's isDeleted field"""
- isDeleted: SalesforceBooleanFilter
-
- """Filter by the ContentFolderLink's enableFolderStatus field"""
- enableFolderStatus: SalesforceStringFilter
-
- """Checks for any expressions in this list."""
- or: [SalesforceContentFolderLinkConnectionFilter!]
-
- """Checks for all expressions in this list."""
- and: [SalesforceContentFolderLinkConnectionFilter!]
-}
-
-"""Field that Content Folder Links can be sorted by"""
-enum SalesforceContentFolderLinkSortByFieldEnum {
- ID
- PARENT_ENTITY_ID
- CONTENT_FOLDER_ID
- IS_DELETED
- ENABLE_FOLDER_STATUS
-}
-
-"""An edge in a connection."""
-type SalesforceContentFolderLinkEdge {
- """The item at the end of the edge."""
- node: SalesforceContentFolderLink!
-
- """A cursor for use in pagination"""
- cursor: String!
-}
-
-"""Content Folder Link"""
-type SalesforceContentFolderLink implements OneGraphNode {
- """Content Folder Link ID"""
- id: String!
-
- """Parent Entity ID"""
- parentEntityId: String!
-
- """Parent Entity ID"""
- parentEntity: SalesforceContentWorkspace!
-
- """Content Folder ID"""
- contentFolderId: String!
-
- """Content Folder ID"""
- contentFolder: SalesforceContentFolder!
-
- """Is Deleted"""
- isDeleted: Boolean!
-
- """Enable Folder Status"""
- enableFolderStatus: String
-
- """Collection of Salesforce FlowRecordRelation"""
- flowRecordRelations(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceFlowRecordRelationConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceFlowRecordRelationSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceFlowRecordRelationsConnection
- customFields(
- """
- List of custom fields to return. By default, returns all custom fields.
- """
- fields: [String!]
- ): JSON!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-"""Salesforce Content Folder Links connection, for use in pagination."""
-type SalesforceContentFolderLinksConnection {
- """
- The count of all Content Folder Link you could get from the connection.
- """
- totalCount: Int!
-
- """Pagination Information"""
- pageInfo: PageInfo!
-
- """List of Salesforce Content Folder Links"""
- nodes: [SalesforceContentFolderLink!]!
-
- """List of Content Folder Link edges"""
- edges: [SalesforceContentFolderLinkEdge!]!
-}
-
-"""
-A filter to be used against ContentFolderItem object types. All fields are combined with a logical ‘and.’
-"""
-input SalesforceContentFolderItemConnectionFilter {
- """Filter against custom fields."""
- customField: SalesforceCustomFieldFilter
-
- """Filter by the ContentFolderItem's lastModifiedBy relation."""
- lastModifiedBy: SalesforceUserConnectionFilter
-
- """Filter by the ContentFolderItem's createdBy relation."""
- createdBy: SalesforceUserConnectionFilter
-
- """Filter by the ContentFolderItem's parentContentFolder relation."""
- parentContentFolder: SalesforceContentFolderConnectionFilter
-
- """Filter by the ContentFolderItem's id field"""
- id: SalesforceIdFilter
-
- """Filter by the ContentFolderItem's isDeleted field"""
- isDeleted: SalesforceBooleanFilter
-
- """Filter by the ContentFolderItem's isFolder field"""
- isFolder: SalesforceBooleanFilter
-
- """Filter by the ContentFolderItem's parentContentFolderId field"""
- parentContentFolderId: SalesforceIdFilter
-
- """Filter by the ContentFolderItem's title field"""
- title: SalesforceStringFilter
-
- """Filter by the ContentFolderItem's fileType field"""
- fileType: SalesforceStringFilter
-
- """Filter by the ContentFolderItem's contentSize field"""
- contentSize: SalesforceIntFilter
-
- """Filter by the ContentFolderItem's fileExtension field"""
- fileExtension: SalesforceStringFilter
-
- """Filter by the ContentFolderItem's createdDate field"""
- createdDate: SalesforceDateTimeFilter
-
- """Filter by the ContentFolderItem's createdById field"""
- createdById: SalesforceIdFilter
-
- """Filter by the ContentFolderItem's lastModifiedDate field"""
- lastModifiedDate: SalesforceDateTimeFilter
-
- """Filter by the ContentFolderItem's lastModifiedById field"""
- lastModifiedById: SalesforceIdFilter
-
- """Filter by the ContentFolderItem's systemModstamp field"""
- systemModstamp: SalesforceDateTimeFilter
-
- """Checks for any expressions in this list."""
- or: [SalesforceContentFolderItemConnectionFilter!]
-
- """Checks for all expressions in this list."""
- and: [SalesforceContentFolderItemConnectionFilter!]
-}
-
-"""Field that Content Folder Items can be sorted by"""
-enum SalesforceContentFolderItemSortByFieldEnum {
- ID
- IS_DELETED
- IS_FOLDER
- PARENT_CONTENT_FOLDER_ID
- TITLE
- FILE_TYPE
- CONTENT_SIZE
- FILE_EXTENSION
- CREATED_DATE
- CREATED_BY_ID
- LAST_MODIFIED_DATE
- LAST_MODIFIED_BY_ID
- SYSTEM_MODSTAMP
-}
-
-"""An edge in a connection."""
-type SalesforceContentFolderItemEdge {
- """The item at the end of the edge."""
- node: SalesforceContentFolderItem!
-
- """A cursor for use in pagination"""
- cursor: String!
-}
-
-"""Content Folder Item"""
-type SalesforceContentFolderItem implements OneGraphNode {
- """Content Folder Item ID"""
- id: String!
-
- """Deleted"""
- isDeleted: Boolean!
-
- """Is Folder"""
- isFolder: Boolean!
-
- """Parent Content Folder ID"""
- parentContentFolderId: String
-
- """Parent Content Folder ID"""
- parentContentFolder: SalesforceContentFolder
-
- """Title"""
- title: String!
-
- """File Type"""
- fileType: String
-
- """Size"""
- contentSize: Int
-
- """File Extension"""
- fileExtension: String
-
- """Created Date"""
- createdDate: String!
-
- """Created By ID"""
- createdById: String!
-
- """Created By ID"""
- createdBy: SalesforceUser!
-
- """Last Modified Date"""
- lastModifiedDate: String!
-
- """Last Modified By ID"""
- lastModifiedById: String!
-
- """Last Modified By ID"""
- lastModifiedBy: SalesforceUser!
-
- """System Modstamp"""
- systemModstamp: String!
- customFields(
- """
- List of custom fields to return. By default, returns all custom fields.
- """
- fields: [String!]
- ): JSON!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-"""Salesforce Content Folder Items connection, for use in pagination."""
-type SalesforceContentFolderItemsConnection {
- """
- The count of all Content Folder Item you could get from the connection.
- """
- totalCount: Int!
-
- """Pagination Information"""
- pageInfo: PageInfo!
-
- """List of Salesforce Content Folder Items"""
- nodes: [SalesforceContentFolderItem!]!
-
- """List of Content Folder Item edges"""
- edges: [SalesforceContentFolderItemEdge!]!
-}
-
-"""Field that Content Folders can be sorted by"""
-enum SalesforceContentFolderSortByFieldEnum {
- ID
- IS_DELETED
- NAME
- CREATED_DATE
- CREATED_BY_ID
- LAST_MODIFIED_DATE
- LAST_MODIFIED_BY_ID
- SYSTEM_MODSTAMP
- PARENT_CONTENT_FOLDER_ID
-}
-
-"""An edge in a connection."""
-type SalesforceContentFolderEdge {
- """The item at the end of the edge."""
- node: SalesforceContentFolder!
-
- """A cursor for use in pagination"""
- cursor: String!
-}
-
-"""Salesforce Content Folders connection, for use in pagination."""
-type SalesforceContentFoldersConnection {
- """The count of all Content Folder you could get from the connection."""
- totalCount: Int!
-
- """Pagination Information"""
- pageInfo: PageInfo!
-
- """List of Salesforce Content Folders"""
- nodes: [SalesforceContentFolder!]!
-
- """List of Content Folder edges"""
- edges: [SalesforceContentFolderEdge!]!
-}
-
-"""Content Folder"""
-type SalesforceContentFolder implements OneGraphNode {
- """Content Folder ID"""
- id: String!
-
- """Deleted"""
- isDeleted: Boolean!
-
- """Name"""
- name: String!
-
- """Created Date"""
- createdDate: String!
-
- """Created By ID"""
- createdById: String!
-
- """Created By ID"""
- createdBy: SalesforceUser!
-
- """Last Modified Date"""
- lastModifiedDate: String!
-
- """Last Modified By ID"""
- lastModifiedById: String!
-
- """Last Modified By ID"""
- lastModifiedBy: SalesforceUser!
-
- """System Modstamp"""
- systemModstamp: String!
-
- """Parent Content Folder ID"""
- parentContentFolderId: String
-
- """Parent Content Folder ID"""
- parentContentFolder: SalesforceContentFolder
-
- """Collection of Salesforce ContentFolder"""
- contentFolders(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceContentFolderConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceContentFolderSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceContentFolderSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of ContentFolders to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceContentFoldersConnection
-
- """Collection of Salesforce ContentFolderItem"""
- contentFolderItems(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceContentFolderItemConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceContentFolderItemSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceContentFolderItemSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of ContentFolderItems to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceContentFolderItemsConnection
-
- """Collection of Salesforce ContentFolderLink"""
- contentFolderLinks(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceContentFolderLinkConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceContentFolderLinkSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceContentFolderLinkSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of ContentFolderLinks to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceContentFolderLinksConnection
-
- """Collection of Salesforce ContentFolderMember"""
- contentFolderMembers(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceContentFolderMemberConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceContentFolderMemberSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceContentFolderMemberSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """
- Number of ContentFolderMembers to fetch. Defaults to 10. Maximum is 60.
- """
- first: Int
- ): SalesforceContentFolderMembersConnection
-
- """Collection of Salesforce ContentWorkspace"""
- contentWorkspaces(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceContentWorkspaceConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceContentWorkspaceSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceContentWorkspaceSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of ContentWorkspaces to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceContentWorkspacesConnection
-
- """Collection of Salesforce FlowRecordRelation"""
- flowRecordRelations(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceFlowRecordRelationConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceFlowRecordRelationSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceFlowRecordRelationsConnection
- customFields(
- """
- List of custom fields to return. By default, returns all custom fields.
- """
- fields: [String!]
- ): JSON!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-"""Content Folder Member"""
-type SalesforceContentFolderMember implements OneGraphNode {
- """Content Folder Member ID"""
- id: String!
-
- """Parent Content Folder ID"""
- parentContentFolderId: String!
-
- """Parent Content Folder ID"""
- parentContentFolder: SalesforceContentFolder!
-
- """Child Record ID"""
- childRecordId: String!
-
- """Child Record ID"""
- childRecord: SalesforceContentDocument!
-
- """Deleted"""
- isDeleted: Boolean!
-
- """System Modstamp"""
- systemModstamp: String!
-
- """Created By ID"""
- createdById: String!
-
- """Created By ID"""
- createdBy: SalesforceUser!
-
- """Created Date"""
- createdDate: String!
-
- """Last Modified By ID"""
- lastModifiedById: String!
-
- """Last Modified By ID"""
- lastModifiedBy: SalesforceUser!
-
- """Last Modified Date"""
- lastModifiedDate: String!
-
- """Collection of Salesforce FlowRecordRelation"""
- flowRecordRelations(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceFlowRecordRelationConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceFlowRecordRelationSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceFlowRecordRelationsConnection
- customFields(
- """
- List of custom fields to return. By default, returns all custom fields.
- """
- fields: [String!]
- ): JSON!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-"""
-A filter to be used against ContentWorkspacePermission object types. All fields are combined with a logical ‘and.’
-"""
-input SalesforceContentWorkspacePermissionConnectionFilter {
- """Filter against custom fields."""
- customField: SalesforceCustomFieldFilter
-
- """Filter by the ContentWorkspacePermission's lastModifiedBy relation."""
- lastModifiedBy: SalesforceUserConnectionFilter
-
- """Filter by the ContentWorkspacePermission's createdBy relation."""
- createdBy: SalesforceUserConnectionFilter
-
- """Filter by the ContentWorkspacePermission's id field"""
- id: SalesforceIdFilter
-
- """Filter by the ContentWorkspacePermission's name field"""
- name: SalesforceStringFilter
-
- """Filter by the ContentWorkspacePermission's type field"""
- type: SalesforceStringFilter
-
- """
- Filter by the ContentWorkspacePermission's permissionsManageWorkspace field
- """
- permissionsManageWorkspace: SalesforceBooleanFilter
-
- """Filter by the ContentWorkspacePermission's permissionsAddContent field"""
- permissionsAddContent: SalesforceBooleanFilter
-
- """
- Filter by the ContentWorkspacePermission's permissionsAddContentObo field
- """
- permissionsAddContentObo: SalesforceBooleanFilter
-
- """
- Filter by the ContentWorkspacePermission's permissionsArchiveContent field
- """
- permissionsArchiveContent: SalesforceBooleanFilter
-
- """
- Filter by the ContentWorkspacePermission's permissionsDeleteContent field
- """
- permissionsDeleteContent: SalesforceBooleanFilter
-
- """
- Filter by the ContentWorkspacePermission's permissionsFeatureContent field
- """
- permissionsFeatureContent: SalesforceBooleanFilter
-
- """
- Filter by the ContentWorkspacePermission's permissionsViewComments field
- """
- permissionsViewComments: SalesforceBooleanFilter
-
- """Filter by the ContentWorkspacePermission's permissionsAddComment field"""
- permissionsAddComment: SalesforceBooleanFilter
-
- """
- Filter by the ContentWorkspacePermission's permissionsModifyComments field
- """
- permissionsModifyComments: SalesforceBooleanFilter
-
- """Filter by the ContentWorkspacePermission's permissionsTagContent field"""
- permissionsTagContent: SalesforceBooleanFilter
-
- """
- Filter by the ContentWorkspacePermission's permissionsDeliverContent field
- """
- permissionsDeliverContent: SalesforceBooleanFilter
-
- """
- Filter by the ContentWorkspacePermission's permissionsChatterSharing field
- """
- permissionsChatterSharing: SalesforceBooleanFilter
-
- """
- Filter by the ContentWorkspacePermission's permissionsOrganizeFileAndFolder field
- """
- permissionsOrganizeFileAndFolder: SalesforceBooleanFilter
-
- """Filter by the ContentWorkspacePermission's createdById field"""
- createdById: SalesforceIdFilter
-
- """Filter by the ContentWorkspacePermission's createdDate field"""
- createdDate: SalesforceDateTimeFilter
-
- """Filter by the ContentWorkspacePermission's lastModifiedDate field"""
- lastModifiedDate: SalesforceDateTimeFilter
-
- """Filter by the ContentWorkspacePermission's systemModstamp field"""
- systemModstamp: SalesforceDateTimeFilter
-
- """Filter by the ContentWorkspacePermission's lastModifiedById field"""
- lastModifiedById: SalesforceIdFilter
-
- """Filter by the ContentWorkspacePermission's description field"""
- description: SalesforceStringFilter
-
- """Checks for any expressions in this list."""
- or: [SalesforceContentWorkspacePermissionConnectionFilter!]
-
- """Checks for all expressions in this list."""
- and: [SalesforceContentWorkspacePermissionConnectionFilter!]
-}
-
-"""
-A filter to be used against ContentWorkspaceMember object types. All fields are combined with a logical ‘and.’
-"""
-input SalesforceContentWorkspaceMemberConnectionFilter {
- """Filter against custom fields."""
- customField: SalesforceCustomFieldFilter
-
- """Filter by the ContentWorkspaceMember's createdBy relation."""
- createdBy: SalesforceUserConnectionFilter
-
- """
- Filter by the ContentWorkspaceMember's contentWorkspacePermission relation.
- """
- contentWorkspacePermission: SalesforceContentWorkspacePermissionConnectionFilter
-
- """Filter by the ContentWorkspaceMember's contentWorkspace relation."""
- contentWorkspace: SalesforceContentWorkspaceConnectionFilter
-
- """Filter by the ContentWorkspaceMember's id field"""
- id: SalesforceIdFilter
-
- """Filter by the ContentWorkspaceMember's contentWorkspaceId field"""
- contentWorkspaceId: SalesforceIdFilter
-
- """
- Filter by the ContentWorkspaceMember's contentWorkspacePermissionId field
- """
- contentWorkspacePermissionId: SalesforceIdFilter
-
- """Filter by the ContentWorkspaceMember's memberId field"""
- memberId: SalesforceIdFilter
-
- """Filter by the ContentWorkspaceMember's memberType field"""
- memberType: SalesforceStringFilter
-
- """Filter by the ContentWorkspaceMember's createdById field"""
- createdById: SalesforceIdFilter
-
- """Filter by the ContentWorkspaceMember's createdDate field"""
- createdDate: SalesforceDateTimeFilter
-
- """Checks for any expressions in this list."""
- or: [SalesforceContentWorkspaceMemberConnectionFilter!]
-
- """Checks for all expressions in this list."""
- and: [SalesforceContentWorkspaceMemberConnectionFilter!]
-}
-
-"""Field that Library Members can be sorted by"""
-enum SalesforceContentWorkspaceMemberSortByFieldEnum {
- ID
- CONTENT_WORKSPACE_ID
- CONTENT_WORKSPACE_PERMISSION_ID
- MEMBER_ID
- MEMBER_TYPE
- CREATED_BY_ID
- CREATED_DATE
-}
-
-"""An edge in a connection."""
-type SalesforceContentWorkspaceMemberEdge {
- """The item at the end of the edge."""
- node: SalesforceContentWorkspaceMember!
-
- """A cursor for use in pagination"""
- cursor: String!
-}
-
-union SalesforceContentWorkspaceMemberMemberUnion = SalesforceUser | SalesforceGroup
-
-"""Library Member"""
-type SalesforceContentWorkspaceMember implements OneGraphNode {
- """Library Member ID"""
- id: String!
-
- """Library ID"""
- contentWorkspaceId: String!
-
- """Library ID"""
- contentWorkspace: SalesforceContentWorkspace!
-
- """Library Permission ID"""
- contentWorkspacePermissionId: String
-
- """Library Permission ID"""
- contentWorkspacePermission: SalesforceContentWorkspacePermission
-
- """Member ID"""
- memberId: String!
-
- """Member ID"""
- member: SalesforceContentWorkspaceMemberMemberUnion!
-
- """Member Type"""
- memberType: String
-
- """Created By ID"""
- createdById: String!
-
- """Created By ID"""
- createdBy: SalesforceUser!
-
- """Created Date"""
- createdDate: String!
- customFields(
- """
- List of custom fields to return. By default, returns all custom fields.
- """
- fields: [String!]
- ): JSON!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-"""Salesforce Library Members connection, for use in pagination."""
-type SalesforceContentWorkspaceMembersConnection {
- """The count of all Library Member you could get from the connection."""
- totalCount: Int!
-
- """Pagination Information"""
- pageInfo: PageInfo!
-
- """List of Salesforce Library Members"""
- nodes: [SalesforceContentWorkspaceMember!]!
-
- """List of Library Member edges"""
- edges: [SalesforceContentWorkspaceMemberEdge!]!
-}
-
-"""
-A filter to be used against ContentNotification object types. All fields are combined with a logical ‘and.’
-"""
-input SalesforceContentNotificationConnectionFilter {
- """Filter against custom fields."""
- customField: SalesforceCustomFieldFilter
-
- """Filter by the ContentNotification's users relation."""
- users: SalesforceUserConnectionFilter
-
- """Filter by the ContentNotification's id field"""
- id: SalesforceIdFilter
-
- """Filter by the ContentNotification's nature field"""
- nature: SalesforceStringFilter
-
- """Filter by the ContentNotification's usersId field"""
- usersId: SalesforceIdFilter
-
- """Filter by the ContentNotification's createdDate field"""
- createdDate: SalesforceDateTimeFilter
-
- """Filter by the ContentNotification's entityType field"""
- entityType: SalesforceStringFilter
-
- """Filter by the ContentNotification's entityIdentifierId field"""
- entityIdentifierId: SalesforceIdFilter
-
- """Filter by the ContentNotification's subject field"""
- subject: SalesforceStringFilter
-
- """Filter by the ContentNotification's text field"""
- text: SalesforceStringFilter
-
- """Checks for any expressions in this list."""
- or: [SalesforceContentNotificationConnectionFilter!]
-
- """Checks for all expressions in this list."""
- and: [SalesforceContentNotificationConnectionFilter!]
-}
-
-"""Field that Content Notifications can be sorted by"""
-enum SalesforceContentNotificationSortByFieldEnum {
- ID
- NATURE
- USERS_ID
- CREATED_DATE
- ENTITY_TYPE
- ENTITY_IDENTIFIER_ID
- SUBJECT
- TEXT
-}
-
-"""An edge in a connection."""
-type SalesforceContentNotificationEdge {
- """The item at the end of the edge."""
- node: SalesforceContentNotification!
-
- """A cursor for use in pagination"""
- cursor: String!
-}
-
-"""Salesforce Content Notifications connection, for use in pagination."""
-type SalesforceContentNotificationsConnection {
- """
- The count of all Content Notification you could get from the connection.
- """
- totalCount: Int!
-
- """Pagination Information"""
- pageInfo: PageInfo!
-
- """List of Salesforce Content Notifications"""
- nodes: [SalesforceContentNotification!]!
-
- """List of Content Notification edges"""
- edges: [SalesforceContentNotificationEdge!]!
-}
-
-"""Library Permission"""
-type SalesforceContentWorkspacePermission implements OneGraphNode {
- """Library Permission ID"""
- id: String!
-
- """Name"""
- name: String!
-
- """Type"""
- type: String
-
- """Manage Library"""
- permissionsManageWorkspace: Boolean!
-
- """Add Content"""
- permissionsAddContent: Boolean!
-
- """Add Content on Behalf of Others"""
- permissionsAddContentObo: Boolean!
-
- """Archive Content"""
- permissionsArchiveContent: Boolean!
-
- """Delete Content"""
- permissionsDeleteContent: Boolean!
-
- """Feature Content"""
- permissionsFeatureContent: Boolean!
-
- """View Comment"""
- permissionsViewComments: Boolean!
-
- """Add Comment"""
- permissionsAddComment: Boolean!
-
- """Modify Comments"""
- permissionsModifyComments: Boolean!
-
- """Tag Content"""
- permissionsTagContent: Boolean!
-
- """Deliver Content"""
- permissionsDeliverContent: Boolean!
-
- """Attach or Share Content"""
- permissionsChatterSharing: Boolean!
-
- """Organize File and Content Folder"""
- permissionsOrganizeFileAndFolder: Boolean!
-
- """Created By ID"""
- createdById: String!
-
- """Created By ID"""
- createdBy: SalesforceUser!
-
- """Created Date"""
- createdDate: String!
-
- """Last Modified Date"""
- lastModifiedDate: String!
-
- """System Modstamp"""
- systemModstamp: String!
-
- """Last Modified By ID"""
- lastModifiedById: String!
-
- """Last Modified By ID"""
- lastModifiedBy: SalesforceUser!
-
- """Description"""
- description: String
-
- """Collection of Salesforce ContentNotification"""
- contentNotifications(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceContentNotificationConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceContentNotificationSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceContentNotificationSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """
- Number of ContentNotifications to fetch. Defaults to 10. Maximum is 60.
- """
- first: Int
- ): SalesforceContentNotificationsConnection
-
- """Collection of Salesforce ContentWorkspaceMember"""
- contentWorkspaceMembers(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceContentWorkspaceMemberConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceContentWorkspaceMemberSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceContentWorkspaceMemberSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """
- Number of ContentWorkspaceMembers to fetch. Defaults to 10. Maximum is 60.
- """
- first: Int
- ): SalesforceContentWorkspaceMembersConnection
- customFields(
- """
- List of custom fields to return. By default, returns all custom fields.
- """
- fields: [String!]
- ): JSON!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-union SalesforceContentNotificationEntityIdentifierUnion = SalesforceUser | SalesforceContentWorkspacePermission | SalesforceContentWorkspace | SalesforceContentVersion | SalesforceContentDocument
-
-"""Content Notification"""
-type SalesforceContentNotification implements OneGraphNode {
- """ContentNotification ID"""
- id: String!
-
- """Nature"""
- nature: String
-
- """User ID"""
- usersId: String!
-
- """User ID"""
- users: SalesforceUser!
-
- """Created Date"""
- createdDate: String!
-
- """Entity Type"""
- entityType: String
-
- """Entity ID"""
- entityIdentifierId: String
-
- """Entity ID"""
- entityIdentifier: SalesforceContentNotificationEntityIdentifierUnion
-
- """Subject"""
- subject: String
-
- """Text"""
- text: String
-
- """Collection of Salesforce FlowRecordRelation"""
- flowRecordRelations(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceFlowRecordRelationConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceFlowRecordRelationSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceFlowRecordRelationsConnection
- customFields(
- """
- List of custom fields to return. By default, returns all custom fields.
- """
- fields: [String!]
- ): JSON!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-"""Content Version Comment"""
-type SalesforceContentVersionComment implements OneGraphNode {
- """ContentVersionComment ID"""
- id: String!
-
- """ContentDocument ID"""
- contentDocumentId: String!
-
- """ContentDocument ID"""
- contentDocument: SalesforceContentDocument!
-
- """ContentVersion ID"""
- contentVersionId: String!
-
- """ContentVersion ID"""
- contentVersion: SalesforceContentVersion!
-
- """Version Comment"""
- userComment: String
-
- """Created Date"""
- createdDate: String!
-
- """Collection of Salesforce FlowRecordRelation"""
- flowRecordRelations(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceFlowRecordRelationConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceFlowRecordRelationSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceFlowRecordRelationsConnection
- customFields(
- """
- List of custom fields to return. By default, returns all custom fields.
- """
- fields: [String!]
- ): JSON!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-"""Content Version Rating"""
-type SalesforceContentVersionRating implements OneGraphNode {
- """ContentVersionRating ID"""
- id: String!
-
- """User ID"""
- userId: String!
-
- """User ID"""
- user: SalesforceUser!
-
- """Version ID"""
- contentVersionId: String!
-
- """Version ID"""
- contentVersion: SalesforceContentVersion!
-
- """Rating"""
- rating: Int
-
- """User Comment"""
- userComment: String
-
- """Last Modified Date"""
- lastModifiedDate: String!
-
- """Collection of Salesforce FlowRecordRelation"""
- flowRecordRelations(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceFlowRecordRelationConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceFlowRecordRelationSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceFlowRecordRelationsConnection
- customFields(
- """
- List of custom fields to return. By default, returns all custom fields.
- """
- fields: [String!]
- ): JSON!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-"""Library Document"""
-type SalesforceContentWorkspaceDoc implements OneGraphNode {
- """Library Document ID"""
- id: String!
-
- """Library ID"""
- contentWorkspaceId: String!
-
- """Library ID"""
- contentWorkspace: SalesforceContentWorkspace!
-
- """ContentDocument ID"""
- contentDocumentId: String!
-
- """ContentDocument ID"""
- contentDocument: SalesforceContentDocument!
-
- """Created Date"""
- createdDate: String!
-
- """System Modstamp"""
- systemModstamp: String!
-
- """Is Owning Library"""
- isOwner: Boolean!
-
- """Is Deleted"""
- isDeleted: Boolean!
-
- """Collection of Salesforce FlowRecordRelation"""
- flowRecordRelations(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceFlowRecordRelationConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceFlowRecordRelationSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceFlowRecordRelationsConnection
- customFields(
- """
- List of custom fields to return. By default, returns all custom fields.
- """
- fields: [String!]
- ): JSON!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-"""Field that Accounts can be sorted by"""
-enum SalesforceAccountSortByFieldEnum {
- ID
- IS_DELETED
- MASTER_RECORD_ID
- NAME
- TYPE
- PARENT_ID
- BILLING_STREET
- BILLING_CITY
- BILLING_STATE
- BILLING_POSTAL_CODE
- BILLING_COUNTRY
- BILLING_LATITUDE
- BILLING_LONGITUDE
- BILLING_GEOCODE_ACCURACY
- SHIPPING_STREET
- SHIPPING_CITY
- SHIPPING_STATE
- SHIPPING_POSTAL_CODE
- SHIPPING_COUNTRY
- SHIPPING_LATITUDE
- SHIPPING_LONGITUDE
- SHIPPING_GEOCODE_ACCURACY
- PHONE
- FAX
- ACCOUNT_NUMBER
- WEBSITE
- PHOTO_URL
- SIC
- INDUSTRY
- ANNUAL_REVENUE
- NUMBER_OF_EMPLOYEES
- OWNERSHIP
- TICKER_SYMBOL
- RATING
- SITE
- OWNER_ID
- CREATED_DATE
- CREATED_BY_ID
- LAST_MODIFIED_DATE
- LAST_MODIFIED_BY_ID
- SYSTEM_MODSTAMP
- LAST_ACTIVITY_DATE
- LAST_VIEWED_DATE
- LAST_REFERENCED_DATE
- JIGSAW
- JIGSAW_COMPANY_ID
- CLEAN_STATUS
- ACCOUNT_SOURCE
- DUNS_NUMBER
- TRADESTYLE
- NAICS_CODE
- NAICS_DESC
- YEAR_STARTED
- SIC_DESC
- DANDB_COMPANY_ID
-}
-
-"""An edge in a connection."""
-type SalesforceAccountEdge {
- """The item at the end of the edge."""
- node: SalesforceAccount!
-
- """A cursor for use in pagination"""
- cursor: String!
-}
-
-"""Salesforce Accounts connection, for use in pagination."""
-type SalesforceAccountsConnection {
- """The count of all Account you could get from the connection."""
- totalCount: Int!
-
- """Pagination Information"""
- pageInfo: PageInfo!
-
- """List of Salesforce Accounts"""
- nodes: [SalesforceAccount!]!
-
- """List of Account edges"""
- edges: [SalesforceAccountEdge!]!
-}
-
-"""D&B Company"""
-type SalesforceDandBCompany implements OneGraphNode {
- """D&B Company ID"""
- id: String!
-
- """Deleted"""
- isDeleted: Boolean!
-
- """Primary Business Name"""
- name: String!
-
- """Created Date"""
- createdDate: String!
-
- """Created By ID"""
- createdById: String!
-
- """Created By ID"""
- createdBy: SalesforceUser!
-
- """Last Modified Date"""
- lastModifiedDate: String!
-
- """Last Modified By ID"""
- lastModifiedById: String!
-
- """Last Modified By ID"""
- lastModifiedBy: SalesforceUser!
-
- """System Modstamp"""
- systemModstamp: String!
-
- """Last Viewed Date"""
- lastViewedDate: String
-
- """Last Referenced Date"""
- lastReferencedDate: String
-
- """D-U-N-S Number"""
- dunsNumber: String!
-
- """Street Address"""
- street: String
-
- """City"""
- city: String
-
- """State"""
- state: String
-
- """Postal Code"""
- postalCode: String
-
- """Country"""
- country: String
-
- """Geocode Accuracy"""
- geocodeAccuracyStandard: String
-
- """Primary Address"""
- address: SalesforceAddress
-
- """Telephone Number"""
- phone: String
-
- """Facsimile Number"""
- fax: String
-
- """International Dialing Code"""
- countryAccessCode: String
-
- """Ownership Type Indicator"""
- publicIndicator: String
-
- """Ticker Symbol"""
- stockSymbol: String
-
- """Stock Exchange"""
- stockExchange: String
-
- """Annual Sales Volume"""
- salesVolume: Float
-
- """URL"""
- url: String
-
- """Out Of Business Indicator"""
- outOfBusiness: String
-
- """Number of Employees - Total"""
- employeesTotal: Float
-
- """FIPS MSA Code"""
- fipsMsaCode: String
-
- """FIPS MSA Code Description"""
- fipsMsaDesc: String
-
- """Primary Tradestyle"""
- tradeStyle1: String
-
- """Year Started"""
- yearStarted: String
-
- """Mailing Street Address"""
- mailingStreet: String
-
- """Mailing City"""
- mailingCity: String
-
- """Mailing State"""
- mailingState: String
-
- """Mailing Postal Code"""
- mailingPostalCode: String
-
- """Mailing Country"""
- mailingCountry: String
-
- """Mailing Geocode Accuracy"""
- mailingGeocodeAccuracy: String
-
- """Mailing Address"""
- mailingAddress: SalesforceAddress
-
- """Latitude"""
- latitude: String
-
- """Longitude"""
- longitude: String
-
- """Primary SIC Code"""
- primarySic: String
-
- """Primary SIC Description"""
- primarySicDesc: String
-
- """Second SIC Code"""
- secondSic: String
-
- """Second SIC Description"""
- secondSicDesc: String
-
- """Third SIC Code"""
- thirdSic: String
-
- """Third SIC Description"""
- thirdSicDesc: String
-
- """Fourth SIC Code"""
- fourthSic: String
-
- """Fourth SIC Description"""
- fourthSicDesc: String
-
- """Fifth SIC Code"""
- fifthSic: String
-
- """Fifth SIC Description"""
- fifthSicDesc: String
-
- """Sixth SIC Code"""
- sixthSic: String
-
- """Sixth SIC Description"""
- sixthSicDesc: String
-
- """Primary NAICS Code"""
- primaryNaics: String
-
- """Primary NAICS Description"""
- primaryNaicsDesc: String
-
- """Second NAICS Code"""
- secondNaics: String
-
- """Second NAICS Description"""
- secondNaicsDesc: String
-
- """Third NAICS Code"""
- thirdNaics: String
-
- """Third NAICS Description"""
- thirdNaicsDesc: String
-
- """Fourth NAICS Code"""
- fourthNaics: String
-
- """Fourth NAICS Description"""
- fourthNaicsDesc: String
-
- """Fifth NAICS Code"""
- fifthNaics: String
-
- """Fifth NAICS Description"""
- fifthNaicsDesc: String
-
- """Sixth NAICS Code"""
- sixthNaics: String
-
- """Sixth NAICS Description"""
- sixthNaicsDesc: String
-
- """Location Ownership Indicator"""
- ownOrRent: String
-
- """Number of Employees - Location"""
- employeesHere: Float
-
- """Number of Employees - Location Indicator"""
- employeesHereReliability: String
-
- """Annual Sales Volume Indicator"""
- salesVolumeReliability: String
-
- """Local Currency Code"""
- currencyCode: String
-
- """Legal Structure"""
- legalStatus: String
-
- """Number of Employees - Global"""
- globalUltimateTotalEmployees: Float
-
- """Number of Employees - Total Indicator"""
- employeesTotalReliability: String
-
- """Minority-Owned Indicator"""
- minorityOwned: String
-
- """Woman-Owned Indicator"""
- womenOwned: String
-
- """Small Business Indicator"""
- smallBusiness: String
-
- """Marketing Segmentation Cluster"""
- marketingSegmentationCluster: String
-
- """Import/Export"""
- importExportAgent: String
-
- """Subsidiary Indicator"""
- subsidiary: String
-
- """Second Tradestyle"""
- tradeStyle2: String
-
- """Third Tradestyle"""
- tradeStyle3: String
-
- """Fourth Tradestyle"""
- tradeStyle4: String
-
- """Fifth Tradestyle"""
- tradeStyle5: String
-
- """National Identification Number"""
- nationalId: String
-
- """National Identification System"""
- nationalIdType: String
-
- """US Tax ID Number"""
- usTaxId: String
-
- """Geocode Accuracy"""
- geoCodeAccuracy: String
-
- """Number of Business Family Members"""
- familyMembers: Int
-
- """Delinquency Risk"""
- marketingPreScreen: String
-
- """Global Ultimate D-U-N-S Number"""
- globalUltimateDunsNumber: String
-
- """Global Ultimate Business Name"""
- globalUltimateBusinessName: String
-
- """Parent Company D-U-N-S Number"""
- parentOrHqDunsNumber: String
-
- """Parent Company Business Name"""
- parentOrHqBusinessName: String
-
- """Domestic Ultimate D-U-N-S Number"""
- domesticUltimateDunsNumber: String
-
- """Domestic Ultimate Business Name"""
- domesticUltimateBusinessName: String
-
- """Location Type"""
- locationStatus: String
-
- """Local Currency ISO Code"""
- companyCurrencyIsoCode: String
-
- """Company Description"""
- description: String
-
- """Fortune 1000 Rank"""
- fortuneRank: Int
-
- """S&P 500"""
- includedInSnP500: String
-
- """Location Size"""
- premisesMeasure: Int
-
- """Location Size Accuracy"""
- premisesMeasureReliability: String
-
- """Location Size Unit of Measure"""
- premisesMeasureUnit: String
-
- """Employee Growth"""
- employeeQuantityGrowthRate: Float
-
- """Annual Revenue Growth"""
- salesTurnoverGrowthRate: Float
-
- """Primary SIC8 Code"""
- primarySic8: String
-
- """Primary SIC8 Description"""
- primarySic8Desc: String
-
- """Second SIC8 Code"""
- secondSic8: String
-
- """Second SIC8 Description """
- secondSic8Desc: String
-
- """Third SIC8 Code"""
- thirdSic8: String
-
- """Third SIC8 Description"""
- thirdSic8Desc: String
-
- """Fourth SIC8 Code"""
- fourthSic8: String
-
- """Fourth SIC8 Description"""
- fourthSic8Desc: String
-
- """Fifth SIC8 Code"""
- fifthSic8: String
-
- """Fifth SIC8 Description"""
- fifthSic8Desc: String
-
- """Sixth SIC8 Code"""
- sixthSic8: String
-
- """Sixth SIC8 Description"""
- sixthSic8Desc: String
-
- """Prior Year Number of Employees - Total"""
- priorYearEmployees: Int
-
- """Prior Year Revenue"""
- priorYearRevenue: Float
-
- """Collection of Salesforce Account"""
- accounts(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceAccountConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceAccountSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceAccountSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of Accounts to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceAccountsConnection
-
- """Collection of Salesforce FlowRecordRelation"""
- flowRecordRelations(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceFlowRecordRelationConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceFlowRecordRelationSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceFlowRecordRelationsConnection
-
- """Collection of Salesforce Lead"""
- leads(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceLeadConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceLeadSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceLeadSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of Leads to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceLeadsConnection
- customFields(
- """
- List of custom fields to return. By default, returns all custom fields.
- """
- fields: [String!]
- ): JSON!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-"""
-A filter to be used against DataAssessmentValueMetric object types. All fields are combined with a logical ‘and.’
-"""
-input SalesforceDataAssessmentValueMetricConnectionFilter {
- """Filter against custom fields."""
- customField: SalesforceCustomFieldFilter
-
- """
- Filter by the DataAssessmentValueMetric's dataAssessmentFieldMetric relation.
- """
- dataAssessmentFieldMetric: SalesforceDataAssessmentFieldMetricConnectionFilter
-
- """Filter by the DataAssessmentValueMetric's lastModifiedBy relation."""
- lastModifiedBy: SalesforceUserConnectionFilter
-
- """Filter by the DataAssessmentValueMetric's createdBy relation."""
- createdBy: SalesforceUserConnectionFilter
-
- """Filter by the DataAssessmentValueMetric's id field"""
- id: SalesforceIdFilter
-
- """Filter by the DataAssessmentValueMetric's isDeleted field"""
- isDeleted: SalesforceBooleanFilter
-
- """Filter by the DataAssessmentValueMetric's name field"""
- name: SalesforceStringFilter
-
- """Filter by the DataAssessmentValueMetric's createdDate field"""
- createdDate: SalesforceDateTimeFilter
-
- """Filter by the DataAssessmentValueMetric's createdById field"""
- createdById: SalesforceIdFilter
-
- """Filter by the DataAssessmentValueMetric's lastModifiedDate field"""
- lastModifiedDate: SalesforceDateTimeFilter
-
- """Filter by the DataAssessmentValueMetric's lastModifiedById field"""
- lastModifiedById: SalesforceIdFilter
-
- """Filter by the DataAssessmentValueMetric's systemModstamp field"""
- systemModstamp: SalesforceDateTimeFilter
-
- """
- Filter by the DataAssessmentValueMetric's dataAssessmentFieldMetricId field
- """
- dataAssessmentFieldMetricId: SalesforceIdFilter
-
- """Filter by the DataAssessmentValueMetric's fieldValue field"""
- fieldValue: SalesforceStringFilter
-
- """Filter by the DataAssessmentValueMetric's valueCount field"""
- valueCount: SalesforceIntFilter
-
- """Checks for any expressions in this list."""
- or: [SalesforceDataAssessmentValueMetricConnectionFilter!]
-
- """Checks for all expressions in this list."""
- and: [SalesforceDataAssessmentValueMetricConnectionFilter!]
-}
-
-"""Field that Data Assessment Field Value Metrics can be sorted by"""
-enum SalesforceDataAssessmentValueMetricSortByFieldEnum {
- ID
- IS_DELETED
- NAME
- CREATED_DATE
- CREATED_BY_ID
- LAST_MODIFIED_DATE
- LAST_MODIFIED_BY_ID
- SYSTEM_MODSTAMP
- DATA_ASSESSMENT_FIELD_METRIC_ID
- FIELD_VALUE
- VALUE_COUNT
-}
-
-"""An edge in a connection."""
-type SalesforceDataAssessmentValueMetricEdge {
- """The item at the end of the edge."""
- node: SalesforceDataAssessmentValueMetric!
-
- """A cursor for use in pagination"""
- cursor: String!
-}
-
-"""
-Salesforce Data Assessment Field Value Metrics connection, for use in pagination.
-"""
-type SalesforceDataAssessmentValueMetricsConnection {
- """
- The count of all Data Assessment Field Value Metric you could get from the connection.
- """
- totalCount: Int!
-
- """Pagination Information"""
- pageInfo: PageInfo!
-
- """List of Salesforce Data Assessment Field Value Metrics"""
- nodes: [SalesforceDataAssessmentValueMetric!]!
-
- """List of Data Assessment Field Value Metric edges"""
- edges: [SalesforceDataAssessmentValueMetricEdge!]!
-}
-
-"""
-A filter to be used against DataAssessmentMetric object types. All fields are combined with a logical ‘and.’
-"""
-input SalesforceDataAssessmentMetricConnectionFilter {
- """Filter against custom fields."""
- customField: SalesforceCustomFieldFilter
-
- """Filter by the DataAssessmentMetric's lastModifiedBy relation."""
- lastModifiedBy: SalesforceUserConnectionFilter
-
- """Filter by the DataAssessmentMetric's createdBy relation."""
- createdBy: SalesforceUserConnectionFilter
-
- """Filter by the DataAssessmentMetric's id field"""
- id: SalesforceIdFilter
-
- """Filter by the DataAssessmentMetric's isDeleted field"""
- isDeleted: SalesforceBooleanFilter
-
- """Filter by the DataAssessmentMetric's name field"""
- name: SalesforceStringFilter
-
- """Filter by the DataAssessmentMetric's createdDate field"""
- createdDate: SalesforceDateTimeFilter
-
- """Filter by the DataAssessmentMetric's createdById field"""
- createdById: SalesforceIdFilter
-
- """Filter by the DataAssessmentMetric's lastModifiedDate field"""
- lastModifiedDate: SalesforceDateTimeFilter
-
- """Filter by the DataAssessmentMetric's lastModifiedById field"""
- lastModifiedById: SalesforceIdFilter
-
- """Filter by the DataAssessmentMetric's systemModstamp field"""
- systemModstamp: SalesforceDateTimeFilter
-
- """Filter by the DataAssessmentMetric's numTotal field"""
- numTotal: SalesforceIntFilter
-
- """Filter by the DataAssessmentMetric's numProcessed field"""
- numProcessed: SalesforceIntFilter
-
- """Filter by the DataAssessmentMetric's numMatched field"""
- numMatched: SalesforceIntFilter
-
- """Filter by the DataAssessmentMetric's numMatchedDifferent field"""
- numMatchedDifferent: SalesforceIntFilter
-
- """Filter by the DataAssessmentMetric's numUnmatched field"""
- numUnmatched: SalesforceIntFilter
-
- """Filter by the DataAssessmentMetric's numDuplicates field"""
- numDuplicates: SalesforceIntFilter
-
- """Checks for any expressions in this list."""
- or: [SalesforceDataAssessmentMetricConnectionFilter!]
-
- """Checks for all expressions in this list."""
- and: [SalesforceDataAssessmentMetricConnectionFilter!]
-}
-
-"""
-A filter to be used against DataAssessmentFieldMetric object types. All fields are combined with a logical ‘and.’
-"""
-input SalesforceDataAssessmentFieldMetricConnectionFilter {
- """Filter against custom fields."""
- customField: SalesforceCustomFieldFilter
-
- """
- Filter by the DataAssessmentFieldMetric's dataAssessmentMetric relation.
- """
- dataAssessmentMetric: SalesforceDataAssessmentMetricConnectionFilter
-
- """Filter by the DataAssessmentFieldMetric's lastModifiedBy relation."""
- lastModifiedBy: SalesforceUserConnectionFilter
-
- """Filter by the DataAssessmentFieldMetric's createdBy relation."""
- createdBy: SalesforceUserConnectionFilter
-
- """Filter by the DataAssessmentFieldMetric's id field"""
- id: SalesforceIdFilter
-
- """Filter by the DataAssessmentFieldMetric's isDeleted field"""
- isDeleted: SalesforceBooleanFilter
-
- """Filter by the DataAssessmentFieldMetric's name field"""
- name: SalesforceStringFilter
-
- """Filter by the DataAssessmentFieldMetric's createdDate field"""
- createdDate: SalesforceDateTimeFilter
-
- """Filter by the DataAssessmentFieldMetric's createdById field"""
- createdById: SalesforceIdFilter
-
- """Filter by the DataAssessmentFieldMetric's lastModifiedDate field"""
- lastModifiedDate: SalesforceDateTimeFilter
-
- """Filter by the DataAssessmentFieldMetric's lastModifiedById field"""
- lastModifiedById: SalesforceIdFilter
-
- """Filter by the DataAssessmentFieldMetric's systemModstamp field"""
- systemModstamp: SalesforceDateTimeFilter
-
- """Filter by the DataAssessmentFieldMetric's dataAssessmentMetricId field"""
- dataAssessmentMetricId: SalesforceIdFilter
-
- """Filter by the DataAssessmentFieldMetric's fieldName field"""
- fieldName: SalesforceStringFilter
-
- """Filter by the DataAssessmentFieldMetric's numMatchedInSync field"""
- numMatchedInSync: SalesforceIntFilter
-
- """Filter by the DataAssessmentFieldMetric's numMatchedDifferent field"""
- numMatchedDifferent: SalesforceIntFilter
-
- """Filter by the DataAssessmentFieldMetric's numMatchedBlanks field"""
- numMatchedBlanks: SalesforceIntFilter
-
- """Filter by the DataAssessmentFieldMetric's numUnmatchedBlanks field"""
- numUnmatchedBlanks: SalesforceIntFilter
-
- """Checks for any expressions in this list."""
- or: [SalesforceDataAssessmentFieldMetricConnectionFilter!]
-
- """Checks for all expressions in this list."""
- and: [SalesforceDataAssessmentFieldMetricConnectionFilter!]
-}
-
-"""Field that Data Assessment Field Metrics can be sorted by"""
-enum SalesforceDataAssessmentFieldMetricSortByFieldEnum {
- ID
- IS_DELETED
- NAME
- CREATED_DATE
- CREATED_BY_ID
- LAST_MODIFIED_DATE
- LAST_MODIFIED_BY_ID
- SYSTEM_MODSTAMP
- DATA_ASSESSMENT_METRIC_ID
- FIELD_NAME
- NUM_MATCHED_IN_SYNC
- NUM_MATCHED_DIFFERENT
- NUM_MATCHED_BLANKS
- NUM_UNMATCHED_BLANKS
-}
-
-"""An edge in a connection."""
-type SalesforceDataAssessmentFieldMetricEdge {
- """The item at the end of the edge."""
- node: SalesforceDataAssessmentFieldMetric!
-
- """A cursor for use in pagination"""
- cursor: String!
-}
-
-"""
-Salesforce Data Assessment Field Metrics connection, for use in pagination.
-"""
-type SalesforceDataAssessmentFieldMetricsConnection {
- """
- The count of all Data Assessment Field Metric you could get from the connection.
- """
- totalCount: Int!
-
- """Pagination Information"""
- pageInfo: PageInfo!
-
- """List of Salesforce Data Assessment Field Metrics"""
- nodes: [SalesforceDataAssessmentFieldMetric!]!
-
- """List of Data Assessment Field Metric edges"""
- edges: [SalesforceDataAssessmentFieldMetricEdge!]!
-}
-
-"""Data Assessment Metric"""
-type SalesforceDataAssessmentMetric implements OneGraphNode {
- """Data Assessment Metric ID"""
- id: String!
-
- """Deleted"""
- isDeleted: Boolean!
-
- """Data Assessment Metric"""
- name: String!
-
- """Created Date"""
- createdDate: String!
-
- """Created By ID"""
- createdById: String!
-
- """Created By ID"""
- createdBy: SalesforceUser!
-
- """Last Modified Date"""
- lastModifiedDate: String!
-
- """Last Modified By ID"""
- lastModifiedById: String!
-
- """Last Modified By ID"""
- lastModifiedBy: SalesforceUser!
-
- """System Modstamp"""
- systemModstamp: String!
-
- """Total Number of Records to access"""
- numTotal: Int
-
- """Number of Processed Records"""
- numProcessed: Int
-
- """Number of Matched Records"""
- numMatched: Int
-
- """Number of Matched Records with different field values"""
- numMatchedDifferent: Int
-
- """Number of Unmatched Records"""
- numUnmatched: Int
-
- """Number of Duplicates"""
- numDuplicates: Int
-
- """Collection of Salesforce DataAssessmentFieldMetric"""
- dataAssessmentMetrics(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceDataAssessmentFieldMetricConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceDataAssessmentFieldMetricSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceDataAssessmentFieldMetricSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """
- Number of DataAssessmentFieldMetrics to fetch. Defaults to 10. Maximum is 60.
- """
- first: Int
- ): SalesforceDataAssessmentFieldMetricsConnection
-
- """Collection of Salesforce FlowRecordRelation"""
- flowRecordRelations(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceFlowRecordRelationConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceFlowRecordRelationSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceFlowRecordRelationsConnection
- customFields(
- """
- List of custom fields to return. By default, returns all custom fields.
- """
- fields: [String!]
- ): JSON!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-"""Data Assessment Field Metric"""
-type SalesforceDataAssessmentFieldMetric implements OneGraphNode {
- """Data Assessment Field Metric ID"""
- id: String!
-
- """Deleted"""
- isDeleted: Boolean!
-
- """Data Assessment Field Metric"""
- name: String!
-
- """Created Date"""
- createdDate: String!
-
- """Created By ID"""
- createdById: String!
-
- """Created By ID"""
- createdBy: SalesforceUser!
-
- """Last Modified Date"""
- lastModifiedDate: String!
-
- """Last Modified By ID"""
- lastModifiedById: String!
-
- """Last Modified By ID"""
- lastModifiedBy: SalesforceUser!
-
- """System Modstamp"""
- systemModstamp: String!
-
- """Data Assessment Metric ID"""
- dataAssessmentMetricId: String!
-
- """Data Assessment Metric ID"""
- dataAssessmentMetric: SalesforceDataAssessmentMetric!
-
- """Field Name"""
- fieldName: String
-
- """
- Number of Matched Records that have the same value for this field as Data.com
- """
- numMatchedInSync: Int
-
- """
- Number of Matched Records that have different value for this field than Data.com
- """
- numMatchedDifferent: Int
-
- """Number of Matched Records that have blanks for this field"""
- numMatchedBlanks: Int
-
- """Number of Unmatched Records that have blanks for this field"""
- numUnmatchedBlanks: Int
-
- """Collection of Salesforce DataAssessmentValueMetric"""
- dataAssessmentValueMetrics(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceDataAssessmentValueMetricConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceDataAssessmentValueMetricSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceDataAssessmentValueMetricSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """
- Number of DataAssessmentValueMetrics to fetch. Defaults to 10. Maximum is 60.
- """
- first: Int
- ): SalesforceDataAssessmentValueMetricsConnection
-
- """Collection of Salesforce FlowRecordRelation"""
- flowRecordRelations(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceFlowRecordRelationConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceFlowRecordRelationSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceFlowRecordRelationsConnection
- customFields(
- """
- List of custom fields to return. By default, returns all custom fields.
- """
- fields: [String!]
- ): JSON!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-"""Data Assessment Field Value Metric"""
-type SalesforceDataAssessmentValueMetric implements OneGraphNode {
- """Data Assessment Field Value Metric ID"""
- id: String!
-
- """Deleted"""
- isDeleted: Boolean!
-
- """Data Assessment Field Value Metric"""
- name: String!
-
- """Created Date"""
- createdDate: String!
-
- """Created By ID"""
- createdById: String!
-
- """Created By ID"""
- createdBy: SalesforceUser!
-
- """Last Modified Date"""
- lastModifiedDate: String!
-
- """Last Modified By ID"""
- lastModifiedById: String!
-
- """Last Modified By ID"""
- lastModifiedBy: SalesforceUser!
-
- """System Modstamp"""
- systemModstamp: String!
-
- """Data Assessment Field Metric ID"""
- dataAssessmentFieldMetricId: String!
-
- """Data Assessment Field Metric ID"""
- dataAssessmentFieldMetric: SalesforceDataAssessmentFieldMetric!
-
- """Field Value"""
- fieldValue: String
-
- """Number of times this value appears in this field"""
- valueCount: Int
-
- """Collection of Salesforce FlowRecordRelation"""
- flowRecordRelations(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceFlowRecordRelationConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceFlowRecordRelationSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceFlowRecordRelationsConnection
- customFields(
- """
- List of custom fields to return. By default, returns all custom fields.
- """
- fields: [String!]
- ): JSON!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-"""
-A filter to be used against DatacloudPurchaseUsage object types. All fields are combined with a logical ‘and.’
-"""
-input SalesforceDatacloudPurchaseUsageConnectionFilter {
- """Filter against custom fields."""
- customField: SalesforceCustomFieldFilter
-
- """Filter by the DatacloudPurchaseUsage's user relation."""
- user: SalesforceUserConnectionFilter
-
- """Filter by the DatacloudPurchaseUsage's lastModifiedBy relation."""
- lastModifiedBy: SalesforceUserConnectionFilter
-
- """Filter by the DatacloudPurchaseUsage's createdBy relation."""
- createdBy: SalesforceUserConnectionFilter
-
- """Filter by the DatacloudPurchaseUsage's id field"""
- id: SalesforceIdFilter
-
- """Filter by the DatacloudPurchaseUsage's isDeleted field"""
- isDeleted: SalesforceBooleanFilter
-
- """Filter by the DatacloudPurchaseUsage's name field"""
- name: SalesforceStringFilter
-
- """Filter by the DatacloudPurchaseUsage's createdDate field"""
- createdDate: SalesforceDateTimeFilter
-
- """Filter by the DatacloudPurchaseUsage's createdById field"""
- createdById: SalesforceIdFilter
-
- """Filter by the DatacloudPurchaseUsage's lastModifiedDate field"""
- lastModifiedDate: SalesforceDateTimeFilter
-
- """Filter by the DatacloudPurchaseUsage's lastModifiedById field"""
- lastModifiedById: SalesforceIdFilter
-
- """Filter by the DatacloudPurchaseUsage's systemModstamp field"""
- systemModstamp: SalesforceDateTimeFilter
-
- """Filter by the DatacloudPurchaseUsage's userId field"""
- userId: SalesforceIdFilter
-
- """Filter by the DatacloudPurchaseUsage's userType field"""
- userType: SalesforceStringFilter
-
- """Filter by the DatacloudPurchaseUsage's purchaseType field"""
- purchaseType: SalesforceStringFilter
-
- """Filter by the DatacloudPurchaseUsage's datacloudEntityType field"""
- datacloudEntityType: SalesforceStringFilter
-
- """Filter by the DatacloudPurchaseUsage's usage field"""
- usage: SalesforceFloatFilter
-
- """Filter by the DatacloudPurchaseUsage's description field"""
- description: SalesforceStringFilter
-
- """Checks for any expressions in this list."""
- or: [SalesforceDatacloudPurchaseUsageConnectionFilter!]
-
- """Checks for all expressions in this list."""
- and: [SalesforceDatacloudPurchaseUsageConnectionFilter!]
-}
-
-"""
-A filter to be used against DatacloudOwnedEntity object types. All fields are combined with a logical ‘and.’
-"""
-input SalesforceDatacloudOwnedEntityConnectionFilter {
- """Filter against custom fields."""
- customField: SalesforceCustomFieldFilter
-
- """Filter by the DatacloudOwnedEntity's purchaseUsage relation."""
- purchaseUsage: SalesforceDatacloudPurchaseUsageConnectionFilter
-
- """Filter by the DatacloudOwnedEntity's user relation."""
- user: SalesforceUserConnectionFilter
-
- """Filter by the DatacloudOwnedEntity's lastModifiedBy relation."""
- lastModifiedBy: SalesforceUserConnectionFilter
-
- """Filter by the DatacloudOwnedEntity's createdBy relation."""
- createdBy: SalesforceUserConnectionFilter
-
- """Filter by the DatacloudOwnedEntity's id field"""
- id: SalesforceIdFilter
-
- """Filter by the DatacloudOwnedEntity's isDeleted field"""
- isDeleted: SalesforceBooleanFilter
-
- """Filter by the DatacloudOwnedEntity's name field"""
- name: SalesforceStringFilter
-
- """Filter by the DatacloudOwnedEntity's createdDate field"""
- createdDate: SalesforceDateTimeFilter
-
- """Filter by the DatacloudOwnedEntity's createdById field"""
- createdById: SalesforceIdFilter
-
- """Filter by the DatacloudOwnedEntity's lastModifiedDate field"""
- lastModifiedDate: SalesforceDateTimeFilter
-
- """Filter by the DatacloudOwnedEntity's lastModifiedById field"""
- lastModifiedById: SalesforceIdFilter
-
- """Filter by the DatacloudOwnedEntity's systemModstamp field"""
- systemModstamp: SalesforceDateTimeFilter
-
- """Filter by the DatacloudOwnedEntity's dataDotComKey field"""
- dataDotComKey: SalesforceStringFilter
-
- """Filter by the DatacloudOwnedEntity's datacloudEntityType field"""
- datacloudEntityType: SalesforceStringFilter
-
- """Filter by the DatacloudOwnedEntity's userId field"""
- userId: SalesforceIdFilter
-
- """Filter by the DatacloudOwnedEntity's purchaseUsageId field"""
- purchaseUsageId: SalesforceIdFilter
-
- """Filter by the DatacloudOwnedEntity's purchaseType field"""
- purchaseType: SalesforceStringFilter
-
- """Checks for any expressions in this list."""
- or: [SalesforceDatacloudOwnedEntityConnectionFilter!]
-
- """Checks for all expressions in this list."""
- and: [SalesforceDatacloudOwnedEntityConnectionFilter!]
-}
-
-"""Field that Data.com Owned Entities can be sorted by"""
-enum SalesforceDatacloudOwnedEntitySortByFieldEnum {
- ID
- IS_DELETED
- NAME
- CREATED_DATE
- CREATED_BY_ID
- LAST_MODIFIED_DATE
- LAST_MODIFIED_BY_ID
- SYSTEM_MODSTAMP
- DATA_DOT_COM_KEY
- DATACLOUD_ENTITY_TYPE
- USER_ID
- PURCHASE_USAGE_ID
- PURCHASE_TYPE
-}
-
-"""An edge in a connection."""
-type SalesforceDatacloudOwnedEntityEdge {
- """The item at the end of the edge."""
- node: SalesforceDatacloudOwnedEntity!
-
- """A cursor for use in pagination"""
- cursor: String!
-}
-
-"""Data.com Owned Entity"""
-type SalesforceDatacloudOwnedEntity implements OneGraphNode {
- """Data.com Owned Entity ID"""
- id: String!
-
- """Deleted"""
- isDeleted: Boolean!
-
- """Description"""
- name: String!
-
- """Created Date"""
- createdDate: String!
-
- """Created By ID"""
- createdById: String!
-
- """Created By ID"""
- createdBy: SalesforceUser!
-
- """Last Modified Date"""
- lastModifiedDate: String!
-
- """Last Modified By ID"""
- lastModifiedById: String!
-
- """Last Modified By ID"""
- lastModifiedBy: SalesforceUser!
-
- """System Modstamp"""
- systemModstamp: String!
-
- """Data.com key"""
- dataDotComKey: String!
-
- """Data.com Object Type"""
- datacloudEntityType: String!
-
- """User ID"""
- userId: String!
-
- """User ID"""
- user: SalesforceUser!
-
- """Data.com Usage ID"""
- purchaseUsageId: String
-
- """Data.com Usage ID"""
- purchaseUsage: SalesforceDatacloudPurchaseUsage
-
- """Data.com Purchase Type"""
- purchaseType: String
-
- """Collection of Salesforce FlowRecordRelation"""
- flowRecordRelations(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceFlowRecordRelationConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceFlowRecordRelationSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceFlowRecordRelationsConnection
- customFields(
- """
- List of custom fields to return. By default, returns all custom fields.
- """
- fields: [String!]
- ): JSON!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-"""Salesforce Data.com Owned Entities connection, for use in pagination."""
-type SalesforceDatacloudOwnedEntitysConnection {
- """
- The count of all Data.com Owned Entity you could get from the connection.
- """
- totalCount: Int!
-
- """Pagination Information"""
- pageInfo: PageInfo!
-
- """List of Salesforce Data.com Owned Entities"""
- nodes: [SalesforceDatacloudOwnedEntity!]!
-
- """List of Data.com Owned Entity edges"""
- edges: [SalesforceDatacloudOwnedEntityEdge!]!
-}
-
-"""Data.com Usage"""
-type SalesforceDatacloudPurchaseUsage implements OneGraphNode {
- """Data.com Usage ID"""
- id: String!
-
- """Deleted"""
- isDeleted: Boolean!
-
- """Sequence ID"""
- name: String!
-
- """Created Date"""
- createdDate: String!
-
- """Created By ID"""
- createdById: String!
-
- """Created By ID"""
- createdBy: SalesforceUser!
-
- """Last Modified Date"""
- lastModifiedDate: String!
-
- """Last Modified By ID"""
- lastModifiedById: String!
-
- """Last Modified By ID"""
- lastModifiedBy: SalesforceUser!
-
- """System Modstamp"""
- systemModstamp: String!
-
- """User ID"""
- userId: String!
-
- """User ID"""
- user: SalesforceUser!
-
- """Data.com Usage Type"""
- userType: String!
-
- """Data.com Purchase Type"""
- purchaseType: String!
-
- """Data.com Object Type"""
- datacloudEntityType: String!
-
- """Purchase Count"""
- usage: Float!
-
- """Description"""
- description: String
-
- """Collection of Salesforce DatacloudOwnedEntity"""
- datacloudOwnedEntities(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceDatacloudOwnedEntityConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceDatacloudOwnedEntitySortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceDatacloudOwnedEntitySortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """
- Number of DatacloudOwnedEntities to fetch. Defaults to 10. Maximum is 60.
- """
- first: Int
- ): SalesforceDatacloudOwnedEntitysConnection
-
- """Collection of Salesforce FlowRecordRelation"""
- flowRecordRelations(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceFlowRecordRelationConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceFlowRecordRelationSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceFlowRecordRelationsConnection
- customFields(
- """
- List of custom fields to return. By default, returns all custom fields.
- """
- fields: [String!]
- ): JSON!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-"""FileSearchActivity"""
-type SalesforceFileSearchActivity implements OneGraphNode {
- """Search Activity Id"""
- id: String!
-
- """Deleted"""
- isDeleted: Boolean!
-
- """Search Activity Name"""
- name: String!
-
- """Created Date"""
- createdDate: String!
-
- """Created By ID"""
- createdById: String!
-
- """Created By ID"""
- createdBy: SalesforceUser!
-
- """Last Modified Date"""
- lastModifiedDate: String!
-
- """Last Modified By ID"""
- lastModifiedById: String!
-
- """Last Modified By ID"""
- lastModifiedBy: SalesforceUser!
-
- """System Modstamp"""
- systemModstamp: String!
-
- """Search Term"""
- searchTerm: String!
-
- """Search Date"""
- queryDate: String!
-
- """Number of Searches"""
- countQueries: Int!
-
- """Number of Users"""
- countUsers: Int!
-
- """Average Number of Results"""
- avgNumResults: Float!
-
- """Duration"""
- period: String!
-
- """Language"""
- queryLanguage: String!
-
- """Average Click Rank"""
- clickRank: Float
-
- """Collection of Salesforce FlowRecordRelation"""
- flowRecordRelations(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceFlowRecordRelationConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceFlowRecordRelationSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceFlowRecordRelationsConnection
- customFields(
- """
- List of custom fields to return. By default, returns all custom fields.
- """
- fields: [String!]
- ): JSON!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-"""Field that Idea Comments can be sorted by"""
-enum SalesforceIdeaCommentSortByFieldEnum {
- ID
- IDEA_ID
- COMMUNITY_ID
- COMMENT_BODY
- CREATED_BY_ID
- CREATED_DATE
- SYSTEM_MODSTAMP
- IS_DELETED
- IS_HTML
- CREATOR_FULL_PHOTO_URL
- CREATOR_SMALL_PHOTO_URL
- CREATOR_NAME
- UP_VOTES
-}
-
-"""An edge in a connection."""
-type SalesforceIdeaCommentEdge {
- """The item at the end of the edge."""
- node: SalesforceIdeaComment!
-
- """A cursor for use in pagination"""
- cursor: String!
-}
-
-"""
-A filter to be used against Vote object types. All fields are combined with a logical ‘and.’
-"""
-input SalesforceVoteConnectionFilter {
- """Filter against custom fields."""
- customField: SalesforceCustomFieldFilter
-
- """Filter by the Vote's lastModifiedBy relation."""
- lastModifiedBy: SalesforceUserConnectionFilter
-
- """Filter by the Vote's createdBy relation."""
- createdBy: SalesforceUserConnectionFilter
-
- """Filter by the Vote's id field"""
- id: SalesforceIdFilter
-
- """Filter by the Vote's isDeleted field"""
- isDeleted: SalesforceBooleanFilter
-
- """Filter by the Vote's parentId field"""
- parentId: SalesforceIdFilter
-
- """Filter by the Vote's type field"""
- type: SalesforceStringFilter
-
- """Filter by the Vote's createdDate field"""
- createdDate: SalesforceDateTimeFilter
-
- """Filter by the Vote's createdById field"""
- createdById: SalesforceIdFilter
-
- """Filter by the Vote's lastModifiedDate field"""
- lastModifiedDate: SalesforceDateTimeFilter
-
- """Filter by the Vote's lastModifiedById field"""
- lastModifiedById: SalesforceIdFilter
-
- """Filter by the Vote's systemModstamp field"""
- systemModstamp: SalesforceDateTimeFilter
-
- """Checks for any expressions in this list."""
- or: [SalesforceVoteConnectionFilter!]
-
- """Checks for all expressions in this list."""
- and: [SalesforceVoteConnectionFilter!]
-}
-
-"""Field that Votes can be sorted by"""
-enum SalesforceVoteSortByFieldEnum {
- ID
- IS_DELETED
- PARENT_ID
- TYPE
- CREATED_DATE
- CREATED_BY_ID
- LAST_MODIFIED_DATE
- LAST_MODIFIED_BY_ID
- SYSTEM_MODSTAMP
-}
-
-"""An edge in a connection."""
-type SalesforceVoteEdge {
- """The item at the end of the edge."""
- node: SalesforceVote!
-
- """A cursor for use in pagination"""
- cursor: String!
-}
-
-union SalesforceVoteParentUnion = SalesforceSolution | SalesforceIdeaComment | SalesforceIdea
-
-"""Vote"""
-type SalesforceVote implements OneGraphNode {
- """Vote ID"""
- id: String!
-
- """Deleted"""
- isDeleted: Boolean!
-
- """Parent ID"""
- parentId: String!
-
- """Parent ID"""
- parent: SalesforceVoteParentUnion!
-
- """Vote Type"""
- type: String!
-
- """Created Date"""
- createdDate: String!
-
- """Created By ID"""
- createdById: String!
-
- """Created By ID"""
- createdBy: SalesforceUser!
-
- """Last Modified Date"""
- lastModifiedDate: String!
-
- """Last Modified By ID"""
- lastModifiedById: String!
-
- """Last Modified By ID"""
- lastModifiedBy: SalesforceUser!
-
- """System Modstamp"""
- systemModstamp: String!
- customFields(
- """
- List of custom fields to return. By default, returns all custom fields.
- """
- fields: [String!]
- ): JSON!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-"""Salesforce Votes connection, for use in pagination."""
-type SalesforceVotesConnection {
- """The count of all Vote you could get from the connection."""
- totalCount: Int!
-
- """Pagination Information"""
- pageInfo: PageInfo!
-
- """List of Salesforce Votes"""
- nodes: [SalesforceVote!]!
-
- """List of Vote edges"""
- edges: [SalesforceVoteEdge!]!
-}
-
-"""Idea Comment"""
-type SalesforceIdeaComment implements OneGraphNode {
- """Idea Comment ID"""
- id: String!
-
- """Idea ID"""
- ideaId: String!
-
- """Idea ID"""
- idea: SalesforceIdea!
-
- """Zone ID"""
- communityId: String
-
- """Zone ID"""
- community: SalesforceCommunity
-
- """Comment Body"""
- commentBody: String
-
- """Created By ID"""
- createdById: String!
-
- """Created By ID"""
- createdBy: SalesforceUser!
-
- """Created Date"""
- createdDate: String!
-
- """System Modstamp"""
- systemModstamp: String!
-
- """Deleted"""
- isDeleted: Boolean!
-
- """IsHtml"""
- isHtml: Boolean!
-
- """Url of Creator's Profile Photo"""
- creatorFullPhotoUrl: String
-
- """Url of Creator's Thumbnail Photo"""
- creatorSmallPhotoUrl: String
-
- """Name of Creator"""
- creatorName: String
-
- """Up Votes"""
- upVotes: Int
-
- """Collection of Salesforce Idea"""
- ideas(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceIdeaConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceIdeaSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceIdeaSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of Ideas to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceIdeasConnection
-
- """Collection of Salesforce Vote"""
- votes(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceVoteConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceVoteSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceVoteSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of Votes to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceVotesConnection
- customFields(
- """
- List of custom fields to return. By default, returns all custom fields.
- """
- fields: [String!]
- ): JSON!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-"""Salesforce Idea Comments connection, for use in pagination."""
-type SalesforceIdeaCommentsConnection {
- """The count of all Idea Comment you could get from the connection."""
- totalCount: Int!
-
- """Pagination Information"""
- pageInfo: PageInfo!
-
- """List of Salesforce Idea Comments"""
- nodes: [SalesforceIdeaComment!]!
-
- """List of Idea Comment edges"""
- edges: [SalesforceIdeaCommentEdge!]!
-}
-
-"""
-A filter to be used against IdeaComment object types. All fields are combined with a logical ‘and.’
-"""
-input SalesforceIdeaCommentConnectionFilter {
- """Filter against custom fields."""
- customField: SalesforceCustomFieldFilter
-
- """Filter by the IdeaComment's createdBy relation."""
- createdBy: SalesforceUserConnectionFilter
-
- """Filter by the IdeaComment's community relation."""
- community: SalesforceCommunityConnectionFilter
-
- """Filter by the IdeaComment's idea relation."""
- idea: SalesforceIdeaConnectionFilter
-
- """Filter by the IdeaComment's id field"""
- id: SalesforceIdFilter
-
- """Filter by the IdeaComment's ideaId field"""
- ideaId: SalesforceIdFilter
-
- """Filter by the IdeaComment's communityId field"""
- communityId: SalesforceIdFilter
-
- """Filter by the IdeaComment's commentBody field"""
- commentBody: SalesforceStringFilter
-
- """Filter by the IdeaComment's createdById field"""
- createdById: SalesforceIdFilter
-
- """Filter by the IdeaComment's createdDate field"""
- createdDate: SalesforceDateTimeFilter
-
- """Filter by the IdeaComment's systemModstamp field"""
- systemModstamp: SalesforceDateTimeFilter
-
- """Filter by the IdeaComment's isDeleted field"""
- isDeleted: SalesforceBooleanFilter
-
- """Filter by the IdeaComment's isHtml field"""
- isHtml: SalesforceBooleanFilter
-
- """Filter by the IdeaComment's creatorFullPhotoUrl field"""
- creatorFullPhotoUrl: SalesforceStringFilter
-
- """Filter by the IdeaComment's creatorSmallPhotoUrl field"""
- creatorSmallPhotoUrl: SalesforceStringFilter
-
- """Filter by the IdeaComment's creatorName field"""
- creatorName: SalesforceStringFilter
-
- """Filter by the IdeaComment's upVotes field"""
- upVotes: SalesforceIntFilter
-
- """Checks for any expressions in this list."""
- or: [SalesforceIdeaCommentConnectionFilter!]
-
- """Checks for all expressions in this list."""
- and: [SalesforceIdeaCommentConnectionFilter!]
-}
-
-"""
-A filter to be used against Community object types. All fields are combined with a logical ‘and.’
-"""
-input SalesforceCommunityConnectionFilter {
- """Filter against custom fields."""
- customField: SalesforceCustomFieldFilter
-
- """Filter by the Community's lastModifiedBy relation."""
- lastModifiedBy: SalesforceUserConnectionFilter
-
- """Filter by the Community's createdBy relation."""
- createdBy: SalesforceUserConnectionFilter
-
- """Filter by the Community's id field"""
- id: SalesforceIdFilter
-
- """Filter by the Community's systemModstamp field"""
- systemModstamp: SalesforceDateTimeFilter
-
- """Filter by the Community's createdDate field"""
- createdDate: SalesforceDateTimeFilter
-
- """Filter by the Community's createdById field"""
- createdById: SalesforceIdFilter
-
- """Filter by the Community's lastModifiedDate field"""
- lastModifiedDate: SalesforceDateTimeFilter
-
- """Filter by the Community's lastModifiedById field"""
- lastModifiedById: SalesforceIdFilter
-
- """Filter by the Community's name field"""
- name: SalesforceStringFilter
-
- """Filter by the Community's description field"""
- description: SalesforceStringFilter
-
- """Filter by the Community's isActive field"""
- isActive: SalesforceBooleanFilter
-
- """Filter by the Community's isPublished field"""
- isPublished: SalesforceBooleanFilter
-
- """Checks for any expressions in this list."""
- or: [SalesforceCommunityConnectionFilter!]
-
- """Checks for all expressions in this list."""
- and: [SalesforceCommunityConnectionFilter!]
-}
-
-"""
-A filter to be used against Idea object types. All fields are combined with a logical ‘and.’
-"""
-input SalesforceIdeaConnectionFilter {
- """Filter against custom fields."""
- customField: SalesforceCustomFieldFilter
-
- """Filter by the Idea's parentIdea relation."""
- parentIdea: SalesforceIdeaConnectionFilter
-
- """Filter by the Idea's lastComment relation."""
- lastComment: SalesforceIdeaCommentConnectionFilter
-
- """Filter by the Idea's community relation."""
- community: SalesforceCommunityConnectionFilter
-
- """Filter by the Idea's lastModifiedBy relation."""
- lastModifiedBy: SalesforceUserConnectionFilter
-
- """Filter by the Idea's createdBy relation."""
- createdBy: SalesforceUserConnectionFilter
-
- """Filter by the Idea's recordType relation."""
- recordType: SalesforceRecordTypeConnectionFilter
-
- """Filter by the Idea's id field"""
- id: SalesforceIdFilter
-
- """Filter by the Idea's isDeleted field"""
- isDeleted: SalesforceBooleanFilter
-
- """Filter by the Idea's title field"""
- title: SalesforceStringFilter
-
- """Filter by the Idea's recordTypeId field"""
- recordTypeId: SalesforceIdFilter
-
- """Filter by the Idea's createdDate field"""
- createdDate: SalesforceDateTimeFilter
-
- """Filter by the Idea's createdById field"""
- createdById: SalesforceIdFilter
-
- """Filter by the Idea's lastModifiedDate field"""
- lastModifiedDate: SalesforceDateTimeFilter
-
- """Filter by the Idea's lastModifiedById field"""
- lastModifiedById: SalesforceIdFilter
-
- """Filter by the Idea's systemModstamp field"""
- systemModstamp: SalesforceDateTimeFilter
-
- """Filter by the Idea's lastViewedDate field"""
- lastViewedDate: SalesforceDateTimeFilter
-
- """Filter by the Idea's lastReferencedDate field"""
- lastReferencedDate: SalesforceDateTimeFilter
-
- """Filter by the Idea's communityId field"""
- communityId: SalesforceIdFilter
-
- """Filter by the Idea's numComments field"""
- numComments: SalesforceIntFilter
-
- """Filter by the Idea's voteScore field"""
- voteScore: SalesforceFloatFilter
-
- """Filter by the Idea's voteTotal field"""
- voteTotal: SalesforceFloatFilter
-
- """Filter by the Idea's status field"""
- status: SalesforceStringFilter
-
- """Filter by the Idea's lastCommentDate field"""
- lastCommentDate: SalesforceDateTimeFilter
-
- """Filter by the Idea's lastCommentId field"""
- lastCommentId: SalesforceIdFilter
-
- """Filter by the Idea's parentIdeaId field"""
- parentIdeaId: SalesforceIdFilter
-
- """Filter by the Idea's isHtml field"""
- isHtml: SalesforceBooleanFilter
-
- """Filter by the Idea's isMerged field"""
- isMerged: SalesforceBooleanFilter
-
- """Filter by the Idea's creatorFullPhotoUrl field"""
- creatorFullPhotoUrl: SalesforceStringFilter
-
- """Filter by the Idea's creatorSmallPhotoUrl field"""
- creatorSmallPhotoUrl: SalesforceStringFilter
-
- """Filter by the Idea's creatorName field"""
- creatorName: SalesforceStringFilter
-
- """Checks for any expressions in this list."""
- or: [SalesforceIdeaConnectionFilter!]
-
- """Checks for all expressions in this list."""
- and: [SalesforceIdeaConnectionFilter!]
-}
-
-"""Field that Ideas can be sorted by"""
-enum SalesforceIdeaSortByFieldEnum {
- ID
- IS_DELETED
- TITLE
- RECORD_TYPE_ID
- CREATED_DATE
- CREATED_BY_ID
- LAST_MODIFIED_DATE
- LAST_MODIFIED_BY_ID
- SYSTEM_MODSTAMP
- LAST_VIEWED_DATE
- LAST_REFERENCED_DATE
- COMMUNITY_ID
- NUM_COMMENTS
- VOTE_SCORE
- VOTE_TOTAL
- STATUS
- LAST_COMMENT_DATE
- LAST_COMMENT_ID
- PARENT_IDEA_ID
- IS_HTML
- IS_MERGED
- CREATOR_FULL_PHOTO_URL
- CREATOR_SMALL_PHOTO_URL
- CREATOR_NAME
-}
-
-"""An edge in a connection."""
-type SalesforceIdeaEdge {
- """The item at the end of the edge."""
- node: SalesforceIdea!
-
- """A cursor for use in pagination"""
- cursor: String!
-}
-
-"""Salesforce Ideas connection, for use in pagination."""
-type SalesforceIdeasConnection {
- """The count of all Idea you could get from the connection."""
- totalCount: Int!
-
- """Pagination Information"""
- pageInfo: PageInfo!
-
- """List of Salesforce Ideas"""
- nodes: [SalesforceIdea!]!
-
- """List of Idea edges"""
- edges: [SalesforceIdeaEdge!]!
-}
-
-"""Zone"""
-type SalesforceCommunity implements OneGraphNode {
- """Zone ID"""
- id: String!
-
- """System Modstamp"""
- systemModstamp: String!
-
- """Created Date"""
- createdDate: String!
-
- """Created By ID"""
- createdById: String!
-
- """Created By ID"""
- createdBy: SalesforceUser!
-
- """Last Modified Date"""
- lastModifiedDate: String!
-
- """Last Modified By ID"""
- lastModifiedById: String!
-
- """Last Modified By ID"""
- lastModifiedBy: SalesforceUser!
-
- """Name"""
- name: String!
-
- """Description"""
- description: String
-
- """Active"""
- isActive: Boolean!
-
- """Show In Portal"""
- isPublished: Boolean!
-
- """Collection of Salesforce Idea"""
- ideas(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceIdeaConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceIdeaSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceIdeaSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of Ideas to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceIdeasConnection
-
- """Collection of Salesforce IdeaComment"""
- ideaComments(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceIdeaCommentConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceIdeaCommentSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceIdeaCommentSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of IdeaComments to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceIdeaCommentsConnection
- customFields(
- """
- List of custom fields to return. By default, returns all custom fields.
- """
- fields: [String!]
- ): JSON!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-"""Idea"""
-type SalesforceIdea implements OneGraphNode {
- """Idea ID"""
- id: String!
-
- """Deleted"""
- isDeleted: Boolean!
-
- """Title"""
- title: String!
-
- """Record Type ID"""
- recordTypeId: String
-
- """Record Type ID"""
- recordType: SalesforceRecordType
-
- """Created Date"""
- createdDate: String!
-
- """Created By ID"""
- createdById: String!
-
- """Created By ID"""
- createdBy: SalesforceUser!
-
- """Last Modified Date"""
- lastModifiedDate: String!
-
- """Last Modified By ID"""
- lastModifiedById: String!
-
- """Last Modified By ID"""
- lastModifiedBy: SalesforceUser!
-
- """System Modstamp"""
- systemModstamp: String!
-
- """Last Viewed Date"""
- lastViewedDate: String
-
- """Last Referenced Date"""
- lastReferencedDate: String
-
- """Zone ID"""
- communityId: String!
-
- """Zone ID"""
- community: SalesforceCommunity!
-
- """Idea Body"""
- body: String
-
- """Number of Comments"""
- numComments: Int
-
- """Vote Score"""
- voteScore: Float
-
- """Vote Total"""
- voteTotal: Float
-
- """Categories"""
- categories: String
-
- """Status"""
- status: String
-
- """Last Idea Comment Date"""
- lastCommentDate: String
-
- """Idea Comment ID"""
- lastCommentId: String
-
- """Idea Comment ID"""
- lastComment: SalesforceIdeaComment
-
- """Idea ID"""
- parentIdeaId: String
-
- """Idea ID"""
- parentIdea: SalesforceIdea
-
- """IsHtml"""
- isHtml: Boolean!
-
- """Is Merged"""
- isMerged: Boolean!
-
- """Url of Creator's Profile Photo"""
- creatorFullPhotoUrl: String
-
- """Url of Creator's Thumbnail Photo"""
- creatorSmallPhotoUrl: String
-
- """Name of Creator"""
- creatorName: String
-
- """Collection of Salesforce FlowRecordRelation"""
- flowRecordRelations(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceFlowRecordRelationConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceFlowRecordRelationSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceFlowRecordRelationsConnection
-
- """Collection of Salesforce Idea"""
- ideas(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceIdeaConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceIdeaSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceIdeaSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of Ideas to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceIdeasConnection
-
- """Collection of Salesforce IdeaComment"""
- comments(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceIdeaCommentConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceIdeaCommentSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceIdeaCommentSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of IdeaComments to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceIdeaCommentsConnection
-
- """Collection of Salesforce Vote"""
- votes(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceVoteConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceVoteSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceVoteSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of Votes to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceVotesConnection
- customFields(
- """
- List of custom fields to return. By default, returns all custom fields.
- """
- fields: [String!]
- ): JSON!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-"""Lead Clean Info"""
-type SalesforceLeadCleanInfo implements OneGraphNode {
- """Lead Clean Info ID"""
- id: String!
-
- """Deleted"""
- isDeleted: Boolean!
-
- """Lead Clean Info Name"""
- name: String!
-
- """Created Date"""
- createdDate: String!
-
- """Created By ID"""
- createdById: String!
-
- """Created By ID"""
- createdBy: SalesforceUser!
-
- """Last Modified Date"""
- lastModifiedDate: String!
-
- """Last Modified By ID"""
- lastModifiedById: String!
-
- """Last Modified By ID"""
- lastModifiedBy: SalesforceUser!
-
- """System Modstamp"""
- systemModstamp: String!
-
- """Lead ID"""
- leadId: String!
-
- """Lead ID"""
- lead: SalesforceLead!
-
- """Last Matched Date"""
- lastMatchedDate: String!
-
- """Last Status Changed Date"""
- lastStatusChangedDate: String
-
- """User ID"""
- lastStatusChangedById: String
-
- """User ID"""
- lastStatusChangedBy: SalesforceUser
-
- """Contact Status in Salesforce"""
- isInactive: Boolean!
-
- """First Name"""
- firstName: String
-
- """Last Name"""
- lastName: String
-
- """Email"""
- email: String
-
- """Phone"""
- phone: String
-
- """Street"""
- street: String
-
- """City"""
- city: String
-
- """State"""
- state: String
-
- """Zip"""
- postalCode: String
-
- """Country"""
- country: String
-
- """Latitude"""
- latitude: Float
-
- """Longitude"""
- longitude: Float
-
- """Geocode Accuracy"""
- geocodeAccuracy: String
-
- """Address"""
- address: SalesforceAddress
-
- """Title"""
- title: String
-
- """Annual Revenue"""
- annualRevenue: Float
-
- """Number of Employees"""
- numberOfEmployees: Int
-
- """Industry"""
- industry: String
-
- """Company Name"""
- companyName: String
-
- """Company D-U-N-S Number"""
- companyDunsNumber: String
-
- """Contact Status per Data.com"""
- contactStatusDataDotCom: String
-
- """Name is Reviewed"""
- isReviewedName: Boolean!
-
- """Email is Reviewed"""
- isReviewedEmail: Boolean!
-
- """Phone is Reviewed"""
- isReviewedPhone: Boolean!
-
- """Address is Reviewed"""
- isReviewedAddress: Boolean!
-
- """Title is Reviewed"""
- isReviewedTitle: Boolean!
-
- """Annual Revenue is Reviewed"""
- isReviewedAnnualRevenue: Boolean!
-
- """Number of Employees is Reviewed"""
- isReviewedNumberOfEmployees: Boolean!
-
- """Industry is Reviewed"""
- isReviewedIndustry: Boolean!
-
- """Company Name is Reviewed"""
- isReviewedCompanyName: Boolean!
-
- """Company D-U-N-S Number is Reviewed"""
- isReviewedCompanyDunsNumber: Boolean!
-
- """D&B Company D-U-N-S Number is Reviewed"""
- isReviewedDandBCompanyDunsNumber: Boolean!
-
- """First Name is Different"""
- isDifferentFirstName: Boolean!
-
- """Last Name is Different"""
- isDifferentLastName: Boolean!
-
- """Email is Different"""
- isDifferentEmail: Boolean!
-
- """Phone is Different"""
- isDifferentPhone: Boolean!
-
- """Street is Different"""
- isDifferentStreet: Boolean!
-
- """City is Different"""
- isDifferentCity: Boolean!
-
- """State is Different"""
- isDifferentState: Boolean!
-
- """ZIP is Different"""
- isDifferentPostalCode: Boolean!
-
- """Country is Different"""
- isDifferentCountry: Boolean!
-
- """Title is Different"""
- isDifferentTitle: Boolean!
-
- """Annual Revenue is Different"""
- isDifferentAnnualRevenue: Boolean!
-
- """Number of Employees is Different"""
- isDifferentNumberOfEmployees: Boolean!
-
- """Industry is Different"""
- isDifferentIndustry: Boolean!
-
- """Company Name is Different"""
- isDifferentCompanyName: Boolean!
-
- """Company D-U-N-S Number is Different"""
- isDifferentCompanyDunsNumber: Boolean!
-
- """D&B Company D-U-N-S Number is Different"""
- isDifferentDandBCompanyDunsNumber: Boolean!
-
- """State Code is Different"""
- isDifferentStateCode: Boolean!
-
- """Country Code is Different"""
- isDifferentCountryCode: Boolean!
-
- """Cleaned by Job"""
- cleanedByJob: Boolean!
-
- """Cleaned by User"""
- cleanedByUser: Boolean!
-
- """D&B Company D-U-N-S Number"""
- dandBCompanyDunsNumber: String
-
- """Data.com Company ID"""
- dataDotComCompanyId: String
-
- """Name is Flagged Wrong"""
- isFlaggedWrongName: Boolean!
-
- """Email is Flagged Wrong"""
- isFlaggedWrongEmail: Boolean!
-
- """Phone is Flagged Wrong"""
- isFlaggedWrongPhone: Boolean!
-
- """Address is Flagged Wrong"""
- isFlaggedWrongAddress: Boolean!
-
- """Title is Flagged Wrong"""
- isFlaggedWrongTitle: Boolean!
-
- """Annual Revenue is Flagged Wrong"""
- isFlaggedWrongAnnualRevenue: Boolean!
-
- """Number of Employees is Flagged Wrong"""
- isFlaggedWrongNumberOfEmployees: Boolean!
-
- """Industry is Flagged Wrong"""
- isFlaggedWrongIndustry: Boolean!
-
- """Company Name is Flagged Wrong"""
- isFlaggedWrongCompanyName: Boolean!
-
- """Company D-U-N-S Number is Flagged Wrong"""
- isFlaggedWrongCompanyDunsNumber: Boolean!
-
- """Data.com ID"""
- dataDotComId: String
-
- """Collection of Salesforce FlowRecordRelation"""
- flowRecordRelations(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceFlowRecordRelationConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceFlowRecordRelationSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceFlowRecordRelationsConnection
- customFields(
- """
- List of custom fields to return. By default, returns all custom fields.
- """
- fields: [String!]
- ): JSON!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-"""
-A filter to be used against MacroInstruction object types. All fields are combined with a logical ‘and.’
-"""
-input SalesforceMacroInstructionConnectionFilter {
- """Filter against custom fields."""
- customField: SalesforceCustomFieldFilter
-
- """Filter by the MacroInstruction's macro relation."""
- macro: SalesforceMacroConnectionFilter
-
- """Filter by the MacroInstruction's lastModifiedBy relation."""
- lastModifiedBy: SalesforceUserConnectionFilter
-
- """Filter by the MacroInstruction's createdBy relation."""
- createdBy: SalesforceUserConnectionFilter
-
- """Filter by the MacroInstruction's id field"""
- id: SalesforceIdFilter
-
- """Filter by the MacroInstruction's isDeleted field"""
- isDeleted: SalesforceBooleanFilter
-
- """Filter by the MacroInstruction's name field"""
- name: SalesforceStringFilter
-
- """Filter by the MacroInstruction's createdDate field"""
- createdDate: SalesforceDateTimeFilter
-
- """Filter by the MacroInstruction's createdById field"""
- createdById: SalesforceIdFilter
-
- """Filter by the MacroInstruction's lastModifiedDate field"""
- lastModifiedDate: SalesforceDateTimeFilter
-
- """Filter by the MacroInstruction's lastModifiedById field"""
- lastModifiedById: SalesforceIdFilter
-
- """Filter by the MacroInstruction's systemModstamp field"""
- systemModstamp: SalesforceDateTimeFilter
-
- """Filter by the MacroInstruction's macroId field"""
- macroId: SalesforceIdFilter
-
- """Filter by the MacroInstruction's operation field"""
- operation: SalesforceStringFilter
-
- """Filter by the MacroInstruction's target field"""
- target: SalesforceStringFilter
-
- """Filter by the MacroInstruction's value field"""
- value: SalesforceStringFilter
-
- """Filter by the MacroInstruction's valueRecord field"""
- valueRecord: SalesforceStringFilter
-
- """Filter by the MacroInstruction's sortOrder field"""
- sortOrder: SalesforceIntFilter
-
- """Checks for any expressions in this list."""
- or: [SalesforceMacroInstructionConnectionFilter!]
-
- """Checks for all expressions in this list."""
- and: [SalesforceMacroInstructionConnectionFilter!]
-}
-
-"""Field that Macro Instructions can be sorted by"""
-enum SalesforceMacroInstructionSortByFieldEnum {
- ID
- IS_DELETED
- NAME
- CREATED_DATE
- CREATED_BY_ID
- LAST_MODIFIED_DATE
- LAST_MODIFIED_BY_ID
- SYSTEM_MODSTAMP
- MACRO_ID
- OPERATION
- TARGET
- VALUE
- VALUE_RECORD
- SORT_ORDER
-}
-
-"""An edge in a connection."""
-type SalesforceMacroInstructionEdge {
- """The item at the end of the edge."""
- node: SalesforceMacroInstruction!
-
- """A cursor for use in pagination"""
- cursor: String!
-}
-
-"""Salesforce Macro Instructions connection, for use in pagination."""
-type SalesforceMacroInstructionsConnection {
- """The count of all Macro Instruction you could get from the connection."""
- totalCount: Int!
-
- """Pagination Information"""
- pageInfo: PageInfo!
-
- """List of Salesforce Macro Instructions"""
- nodes: [SalesforceMacroInstruction!]!
-
- """List of Macro Instruction edges"""
- edges: [SalesforceMacroInstructionEdge!]!
-}
-
-"""
-A filter to be used against Macro object types. All fields are combined with a logical ‘and.’
-"""
-input SalesforceMacroConnectionFilter {
- """Filter against custom fields."""
- customField: SalesforceCustomFieldFilter
-
- """Filter by the Macro's lastModifiedBy relation."""
- lastModifiedBy: SalesforceUserConnectionFilter
-
- """Filter by the Macro's createdBy relation."""
- createdBy: SalesforceUserConnectionFilter
-
- """Filter by the Macro's id field"""
- id: SalesforceIdFilter
-
- """Filter by the Macro's ownerId field"""
- ownerId: SalesforceIdFilter
-
- """Filter by the Macro's isDeleted field"""
- isDeleted: SalesforceBooleanFilter
-
- """Filter by the Macro's name field"""
- name: SalesforceStringFilter
-
- """Filter by the Macro's createdDate field"""
- createdDate: SalesforceDateTimeFilter
-
- """Filter by the Macro's createdById field"""
- createdById: SalesforceIdFilter
-
- """Filter by the Macro's lastModifiedDate field"""
- lastModifiedDate: SalesforceDateTimeFilter
-
- """Filter by the Macro's lastModifiedById field"""
- lastModifiedById: SalesforceIdFilter
-
- """Filter by the Macro's systemModstamp field"""
- systemModstamp: SalesforceDateTimeFilter
-
- """Filter by the Macro's lastViewedDate field"""
- lastViewedDate: SalesforceDateTimeFilter
-
- """Filter by the Macro's lastReferencedDate field"""
- lastReferencedDate: SalesforceDateTimeFilter
-
- """Filter by the Macro's isAlohaSupported field"""
- isAlohaSupported: SalesforceBooleanFilter
-
- """Filter by the Macro's isLightningSupported field"""
- isLightningSupported: SalesforceBooleanFilter
-
- """Filter by the Macro's startingContext field"""
- startingContext: SalesforceStringFilter
-
- """Checks for any expressions in this list."""
- or: [SalesforceMacroConnectionFilter!]
-
- """Checks for all expressions in this list."""
- and: [SalesforceMacroConnectionFilter!]
-}
-
-"""
-A filter to be used against MacroHistory object types. All fields are combined with a logical ‘and.’
-"""
-input SalesforceMacroHistoryConnectionFilter {
- """Filter against custom fields."""
- customField: SalesforceCustomFieldFilter
-
- """Filter by the MacroHistory's createdBy relation."""
- createdBy: SalesforceUserConnectionFilter
-
- """Filter by the MacroHistory's macro relation."""
- macro: SalesforceMacroConnectionFilter
-
- """Filter by the MacroHistory's id field"""
- id: SalesforceIdFilter
-
- """Filter by the MacroHistory's isDeleted field"""
- isDeleted: SalesforceBooleanFilter
-
- """Filter by the MacroHistory's macroId field"""
- macroId: SalesforceIdFilter
-
- """Filter by the MacroHistory's createdById field"""
- createdById: SalesforceIdFilter
-
- """Filter by the MacroHistory's createdDate field"""
- createdDate: SalesforceDateTimeFilter
-
- """Filter by the MacroHistory's field field"""
- field: SalesforceStringFilter
-
- """Checks for any expressions in this list."""
- or: [SalesforceMacroHistoryConnectionFilter!]
-
- """Checks for all expressions in this list."""
- and: [SalesforceMacroHistoryConnectionFilter!]
-}
-
-"""Field that Macro Histories can be sorted by"""
-enum SalesforceMacroHistorySortByFieldEnum {
- ID
- IS_DELETED
- MACRO_ID
- CREATED_BY_ID
- CREATED_DATE
- FIELD
- OLD_VALUE
- NEW_VALUE
-}
-
-"""An edge in a connection."""
-type SalesforceMacroHistoryEdge {
- """The item at the end of the edge."""
- node: SalesforceMacroHistory!
-
- """A cursor for use in pagination"""
- cursor: String!
-}
-
-"""Macro History"""
-type SalesforceMacroHistory implements OneGraphNode {
- """Macro History ID"""
- id: String!
-
- """Deleted"""
- isDeleted: Boolean!
-
- """Macro ID"""
- macroId: String!
-
- """Macro ID"""
- macro: SalesforceMacro!
-
- """Created By ID"""
- createdById: String!
-
- """Created By ID"""
- createdBy: SalesforceUser!
-
- """Created Date"""
- createdDate: String!
-
- """Changed Field"""
- field: String!
-
- """Old Value"""
- oldValue: String
-
- """New Value"""
- newValue: String
- customFields(
- """
- List of custom fields to return. By default, returns all custom fields.
- """
- fields: [String!]
- ): JSON!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-"""Salesforce Macro Histories connection, for use in pagination."""
-type SalesforceMacroHistorysConnection {
- """The count of all Macro History you could get from the connection."""
- totalCount: Int!
-
- """Pagination Information"""
- pageInfo: PageInfo!
-
- """List of Salesforce Macro Histories"""
- nodes: [SalesforceMacroHistory!]!
-
- """List of Macro History edges"""
- edges: [SalesforceMacroHistoryEdge!]!
-}
-
-union SalesforceMacroOwnerUnion = SalesforceUser | SalesforceGroup
-
-"""Macro"""
-type SalesforceMacro implements OneGraphNode {
- """Macro ID"""
- id: String!
-
- """Owner ID"""
- ownerId: String!
-
- """Owner ID"""
- owner: SalesforceMacroOwnerUnion!
-
- """Deleted"""
- isDeleted: Boolean!
-
- """Macro Name"""
- name: String!
-
- """Created Date"""
- createdDate: String!
-
- """Created By ID"""
- createdById: String!
-
- """Created By ID"""
- createdBy: SalesforceUser!
-
- """Last Modified Date"""
- lastModifiedDate: String!
-
- """Last Modified By ID"""
- lastModifiedById: String!
-
- """Last Modified By ID"""
- lastModifiedBy: SalesforceUser!
-
- """System Modstamp"""
- systemModstamp: String!
-
- """Last Viewed Date"""
- lastViewedDate: String
-
- """Last Referenced Date"""
- lastReferencedDate: String
-
- """Description"""
- description: String
-
- """Supports Classic"""
- isAlohaSupported: Boolean!
-
- """Supports Lightning"""
- isLightningSupported: Boolean!
-
- """Apply To"""
- startingContext: String
-
- """Collection of Salesforce FlowRecordRelation"""
- flowRecordRelations(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceFlowRecordRelationConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceFlowRecordRelationSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceFlowRecordRelationsConnection
-
- """Collection of Salesforce MacroHistory"""
- histories(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceMacroHistoryConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceMacroHistorySortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceMacroHistorySortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of MacroHistories to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceMacroHistorysConnection
-
- """Collection of Salesforce MacroInstruction"""
- macroInstructions(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceMacroInstructionConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceMacroInstructionSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceMacroInstructionSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of MacroInstructions to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceMacroInstructionsConnection
- customFields(
- """
- List of custom fields to return. By default, returns all custom fields.
- """
- fields: [String!]
- ): JSON!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-"""Macro Instruction"""
-type SalesforceMacroInstruction implements OneGraphNode {
- """Macro Instruction ID"""
- id: String!
-
- """Deleted"""
- isDeleted: Boolean!
-
- """Macro Instruction Name"""
- name: String!
-
- """Created Date"""
- createdDate: String!
-
- """Created By ID"""
- createdById: String!
-
- """Created By ID"""
- createdBy: SalesforceUser!
-
- """Last Modified Date"""
- lastModifiedDate: String!
-
- """Last Modified By ID"""
- lastModifiedById: String!
-
- """Last Modified By ID"""
- lastModifiedBy: SalesforceUser!
-
- """System Modstamp"""
- systemModstamp: String!
-
- """Macro ID"""
- macroId: String!
-
- """Macro ID"""
- macro: SalesforceMacro!
-
- """Operation"""
- operation: String!
-
- """Target"""
- target: String
-
- """Value"""
- value: String
-
- """Value Record ID"""
- valueRecord: String
-
- """Sort Order"""
- sortOrder: Int!
-
- """Collection of Salesforce FlowRecordRelation"""
- flowRecordRelations(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceFlowRecordRelationConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceFlowRecordRelationSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceFlowRecordRelationsConnection
- customFields(
- """
- List of custom fields to return. By default, returns all custom fields.
- """
- fields: [String!]
- ): JSON!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-"""Push Topic"""
-type SalesforcePushTopic implements OneGraphNode {
- """Push Topic ID"""
- id: String!
-
- """Topic Name"""
- name: String!
-
- """SOQL Query"""
- query: String!
-
- """API Version"""
- apiVersion: Float!
-
- """Is Active"""
- isActive: Boolean!
-
- """Notify For Fields"""
- notifyForFields: String!
-
- """Notify For Operations"""
- notifyForOperations: String!
-
- """Description"""
- description: String
-
- """Create"""
- notifyForOperationCreate: Boolean!
-
- """Update"""
- notifyForOperationUpdate: Boolean!
-
- """Delete"""
- notifyForOperationDelete: Boolean!
-
- """Undelete"""
- notifyForOperationUndelete: Boolean!
-
- """Deleted"""
- isDeleted: Boolean!
-
- """Created Date"""
- createdDate: String!
-
- """Created By ID"""
- createdById: String!
-
- """Created By ID"""
- createdBy: SalesforceUser!
-
- """Last Modified Date"""
- lastModifiedDate: String!
-
- """Last Modified By ID"""
- lastModifiedById: String!
-
- """Last Modified By ID"""
- lastModifiedBy: SalesforceUser!
-
- """System Modstamp"""
- systemModstamp: String!
-
- """Collection of Salesforce FlowRecordRelation"""
- flowRecordRelations(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceFlowRecordRelationConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceFlowRecordRelationSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceFlowRecordRelationsConnection
- customFields(
- """
- List of custom fields to return. By default, returns all custom fields.
- """
- fields: [String!]
- ): JSON!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-"""
-A filter to be used against QuickText object types. All fields are combined with a logical ‘and.’
-"""
-input SalesforceQuickTextConnectionFilter {
- """Filter against custom fields."""
- customField: SalesforceCustomFieldFilter
-
- """Filter by the QuickText's lastModifiedBy relation."""
- lastModifiedBy: SalesforceUserConnectionFilter
-
- """Filter by the QuickText's createdBy relation."""
- createdBy: SalesforceUserConnectionFilter
-
- """Filter by the QuickText's id field"""
- id: SalesforceIdFilter
-
- """Filter by the QuickText's ownerId field"""
- ownerId: SalesforceIdFilter
-
- """Filter by the QuickText's isDeleted field"""
- isDeleted: SalesforceBooleanFilter
-
- """Filter by the QuickText's name field"""
- name: SalesforceStringFilter
-
- """Filter by the QuickText's createdDate field"""
- createdDate: SalesforceDateTimeFilter
-
- """Filter by the QuickText's createdById field"""
- createdById: SalesforceIdFilter
-
- """Filter by the QuickText's lastModifiedDate field"""
- lastModifiedDate: SalesforceDateTimeFilter
-
- """Filter by the QuickText's lastModifiedById field"""
- lastModifiedById: SalesforceIdFilter
-
- """Filter by the QuickText's systemModstamp field"""
- systemModstamp: SalesforceDateTimeFilter
-
- """Filter by the QuickText's lastViewedDate field"""
- lastViewedDate: SalesforceDateTimeFilter
-
- """Filter by the QuickText's lastReferencedDate field"""
- lastReferencedDate: SalesforceDateTimeFilter
-
- """Filter by the QuickText's category field"""
- category: SalesforceStringFilter
-
- """Checks for any expressions in this list."""
- or: [SalesforceQuickTextConnectionFilter!]
-
- """Checks for all expressions in this list."""
- and: [SalesforceQuickTextConnectionFilter!]
-}
-
-"""
-A filter to be used against QuickTextHistory object types. All fields are combined with a logical ‘and.’
-"""
-input SalesforceQuickTextHistoryConnectionFilter {
- """Filter against custom fields."""
- customField: SalesforceCustomFieldFilter
-
- """Filter by the QuickTextHistory's createdBy relation."""
- createdBy: SalesforceUserConnectionFilter
-
- """Filter by the QuickTextHistory's quickText relation."""
- quickText: SalesforceQuickTextConnectionFilter
-
- """Filter by the QuickTextHistory's id field"""
- id: SalesforceIdFilter
-
- """Filter by the QuickTextHistory's isDeleted field"""
- isDeleted: SalesforceBooleanFilter
-
- """Filter by the QuickTextHistory's quickTextId field"""
- quickTextId: SalesforceIdFilter
-
- """Filter by the QuickTextHistory's createdById field"""
- createdById: SalesforceIdFilter
-
- """Filter by the QuickTextHistory's createdDate field"""
- createdDate: SalesforceDateTimeFilter
-
- """Filter by the QuickTextHistory's field field"""
- field: SalesforceStringFilter
-
- """Checks for any expressions in this list."""
- or: [SalesforceQuickTextHistoryConnectionFilter!]
-
- """Checks for all expressions in this list."""
- and: [SalesforceQuickTextHistoryConnectionFilter!]
-}
-
-"""Field that Quick Text Histories can be sorted by"""
-enum SalesforceQuickTextHistorySortByFieldEnum {
- ID
- IS_DELETED
- QUICK_TEXT_ID
- CREATED_BY_ID
- CREATED_DATE
- FIELD
- OLD_VALUE
- NEW_VALUE
-}
-
-"""An edge in a connection."""
-type SalesforceQuickTextHistoryEdge {
- """The item at the end of the edge."""
- node: SalesforceQuickTextHistory!
-
- """A cursor for use in pagination"""
- cursor: String!
-}
-
-"""Quick Text History"""
-type SalesforceQuickTextHistory implements OneGraphNode {
- """Quick Text History ID"""
- id: String!
-
- """Deleted"""
- isDeleted: Boolean!
-
- """Quick Text ID"""
- quickTextId: String!
-
- """Quick Text ID"""
- quickText: SalesforceQuickText!
-
- """Created By ID"""
- createdById: String!
-
- """Created By ID"""
- createdBy: SalesforceUser!
-
- """Created Date"""
- createdDate: String!
-
- """Changed Field"""
- field: String!
-
- """Old Value"""
- oldValue: String
-
- """New Value"""
- newValue: String
- customFields(
- """
- List of custom fields to return. By default, returns all custom fields.
- """
- fields: [String!]
- ): JSON!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-"""Salesforce Quick Text Histories connection, for use in pagination."""
-type SalesforceQuickTextHistorysConnection {
- """The count of all Quick Text History you could get from the connection."""
- totalCount: Int!
-
- """Pagination Information"""
- pageInfo: PageInfo!
-
- """List of Salesforce Quick Text Histories"""
- nodes: [SalesforceQuickTextHistory!]!
-
- """List of Quick Text History edges"""
- edges: [SalesforceQuickTextHistoryEdge!]!
-}
-
-union SalesforceQuickTextOwnerUnion = SalesforceUser | SalesforceGroup
-
-"""Quick Text"""
-type SalesforceQuickText implements OneGraphNode {
- """Quick Text ID"""
- id: String!
-
- """Owner ID"""
- ownerId: String!
-
- """Owner ID"""
- owner: SalesforceQuickTextOwnerUnion!
-
- """Deleted"""
- isDeleted: Boolean!
-
- """Quick Text Name"""
- name: String!
-
- """Created Date"""
- createdDate: String!
-
- """Created By ID"""
- createdById: String!
-
- """Created By ID"""
- createdBy: SalesforceUser!
-
- """Last Modified Date"""
- lastModifiedDate: String!
-
- """Last Modified By ID"""
- lastModifiedById: String!
-
- """Last Modified By ID"""
- lastModifiedBy: SalesforceUser!
-
- """System Modstamp"""
- systemModstamp: String!
-
- """Last Viewed Date"""
- lastViewedDate: String
-
- """Last Referenced Date"""
- lastReferencedDate: String
-
- """Message"""
- message: String!
-
- """Category"""
- category: String
-
- """Channel"""
- channel: String
-
- """Collection of Salesforce FlowRecordRelation"""
- flowRecordRelations(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceFlowRecordRelationConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceFlowRecordRelationSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceFlowRecordRelationsConnection
-
- """Collection of Salesforce QuickTextHistory"""
- histories(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceQuickTextHistoryConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceQuickTextHistorySortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceQuickTextHistorySortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of QuickTextHistories to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceQuickTextHistorysConnection
- customFields(
- """
- List of custom fields to return. By default, returns all custom fields.
- """
- fields: [String!]
- ): JSON!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-"""SearchActivity"""
-type SalesforceSearchActivity implements OneGraphNode {
- """Search Activity Id"""
- id: String!
-
- """Deleted"""
- isDeleted: Boolean!
-
- """Search Activity Name"""
- name: String!
-
- """Created Date"""
- createdDate: String!
-
- """Created By ID"""
- createdById: String!
-
- """Created By ID"""
- createdBy: SalesforceUser!
-
- """Last Modified Date"""
- lastModifiedDate: String!
-
- """Last Modified By ID"""
- lastModifiedById: String!
-
- """Last Modified By ID"""
- lastModifiedBy: SalesforceUser!
-
- """System Modstamp"""
- systemModstamp: String!
-
- """Search Term"""
- searchTerm: String!
-
- """Search Date"""
- queryDate: String!
-
- """Number of Searches"""
- countQueries: Int!
-
- """Number of Users"""
- countUsers: Int!
-
- """Number of Results"""
- avgNumResults: Float!
-
- """Channel"""
- kbChannel: String!
-
- """Duration"""
- period: String!
-
- """Average Click Rank"""
- clickRank: Float
-
- """Language"""
- queryLanguage: String!
-
- """Clicked Article Title"""
- clickedRecordName: String
-
- """Collection of Salesforce FlowRecordRelation"""
- flowRecordRelations(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceFlowRecordRelationConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceFlowRecordRelationSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceFlowRecordRelationsConnection
- customFields(
- """
- List of custom fields to return. By default, returns all custom fields.
- """
- fields: [String!]
- ): JSON!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-"""Promoted Search Term"""
-type SalesforceSearchPromotionRule implements OneGraphNode {
- """Promoted Term Id"""
- id: String!
-
- """Deleted"""
- isDeleted: Boolean!
-
- """Created Date"""
- createdDate: String!
-
- """Created By ID"""
- createdById: String!
-
- """Created By ID"""
- createdBy: SalesforceUser!
-
- """Last Modified Date"""
- lastModifiedDate: String!
-
- """Last Modified By ID"""
- lastModifiedById: String!
-
- """Last Modified By ID"""
- lastModifiedBy: SalesforceUser!
-
- """System Modstamp"""
- systemModstamp: String!
-
- """Term"""
- query: String!
-
- """Collection of Salesforce FlowRecordRelation"""
- flowRecordRelations(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceFlowRecordRelationConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceFlowRecordRelationSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceFlowRecordRelationsConnection
- customFields(
- """
- List of custom fields to return. By default, returns all custom fields.
- """
- fields: [String!]
- ): JSON!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-union SalesforceTodayGoalOwnerUnion = SalesforceUser | SalesforceGroup
-
-"""Goal"""
-type SalesforceTodayGoal implements OneGraphNode {
- """Goal ID"""
- id: String!
-
- """Owner ID"""
- ownerId: String!
-
- """Owner ID"""
- owner: SalesforceTodayGoalOwnerUnion!
-
- """Deleted"""
- isDeleted: Boolean!
-
- """Name"""
- name: String!
-
- """Created Date"""
- createdDate: String!
-
- """Created By ID"""
- createdById: String!
-
- """Created By ID"""
- createdBy: SalesforceUser!
-
- """Last Modified Date"""
- lastModifiedDate: String!
-
- """Last Modified By ID"""
- lastModifiedById: String!
-
- """Last Modified By ID"""
- lastModifiedBy: SalesforceUser!
-
- """System Modstamp"""
- systemModstamp: String!
-
- """Value"""
- value: Float
-
- """User ID"""
- userId: String!
-
- """User ID"""
- user: SalesforceUser!
-
- """Collection of Salesforce FlowRecordRelation"""
- flowRecordRelations(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceFlowRecordRelationConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceFlowRecordRelationSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceFlowRecordRelationsConnection
- customFields(
- """
- List of custom fields to return. By default, returns all custom fields.
- """
- fields: [String!]
- ): JSON!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-"""Last Used App"""
-type SalesforceUserAppInfo implements OneGraphNode {
- """Last Used App ID"""
- id: String!
-
- """Deleted"""
- isDeleted: Boolean!
-
- """Created Date"""
- createdDate: String!
-
- """Created By ID"""
- createdById: String!
-
- """Created By ID"""
- createdBy: SalesforceUser!
-
- """Last Modified Date"""
- lastModifiedDate: String!
-
- """Last Modified By ID"""
- lastModifiedById: String!
-
- """Last Modified By ID"""
- lastModifiedBy: SalesforceUser!
-
- """System Modstamp"""
- systemModstamp: String!
-
- """User ID"""
- userId: String!
-
- """User ID"""
- user: SalesforceUser!
-
- """Form Factor"""
- formFactor: String!
-
- """Collection of Salesforce FlowRecordRelation"""
- flowRecordRelations(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceFlowRecordRelationConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceFlowRecordRelationSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceFlowRecordRelationsConnection
- customFields(
- """
- List of custom fields to return. By default, returns all custom fields.
- """
- fields: [String!]
- ): JSON!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-"""User Provisioning Mock Target"""
-type SalesforceUserProvMockTarget implements OneGraphNode {
- """UserProvMockTarget ID"""
- id: String!
-
- """Deleted"""
- isDeleted: Boolean!
-
- """Name"""
- name: String!
-
- """Created Date"""
- createdDate: String!
-
- """Created By ID"""
- createdById: String!
-
- """Created By ID"""
- createdBy: SalesforceUser!
-
- """Last Modified Date"""
- lastModifiedDate: String!
-
- """Last Modified By ID"""
- lastModifiedById: String!
-
- """Last Modified By ID"""
- lastModifiedBy: SalesforceUser!
-
- """System Modstamp"""
- systemModstamp: String!
-
- """External User Id"""
- externalUserId: String
-
- """External Username"""
- externalUsername: String
-
- """External Email"""
- externalEmail: String
-
- """External First Name"""
- externalFirstName: String
-
- """External Last Name"""
- externalLastName: String
-
- """Collection of Salesforce FlowRecordRelation"""
- flowRecordRelations(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceFlowRecordRelationConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceFlowRecordRelationSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceFlowRecordRelationsConnection
- customFields(
- """
- List of custom fields to return. By default, returns all custom fields.
- """
- fields: [String!]
- ): JSON!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-"""
-A filter to be used against UserProvisioningLog object types. All fields are combined with a logical ‘and.’
-"""
-input SalesforceUserProvisioningLogConnectionFilter {
- """Filter against custom fields."""
- customField: SalesforceCustomFieldFilter
-
- """Filter by the UserProvisioningLog's user relation."""
- user: SalesforceUserConnectionFilter
-
- """Filter by the UserProvisioningLog's userProvisioningRequest relation."""
- userProvisioningRequest: SalesforceUserProvisioningRequestConnectionFilter
-
- """Filter by the UserProvisioningLog's lastModifiedBy relation."""
- lastModifiedBy: SalesforceUserConnectionFilter
-
- """Filter by the UserProvisioningLog's createdBy relation."""
- createdBy: SalesforceUserConnectionFilter
-
- """Filter by the UserProvisioningLog's id field"""
- id: SalesforceIdFilter
-
- """Filter by the UserProvisioningLog's isDeleted field"""
- isDeleted: SalesforceBooleanFilter
-
- """Filter by the UserProvisioningLog's name field"""
- name: SalesforceStringFilter
-
- """Filter by the UserProvisioningLog's createdDate field"""
- createdDate: SalesforceDateTimeFilter
-
- """Filter by the UserProvisioningLog's createdById field"""
- createdById: SalesforceIdFilter
-
- """Filter by the UserProvisioningLog's lastModifiedDate field"""
- lastModifiedDate: SalesforceDateTimeFilter
-
- """Filter by the UserProvisioningLog's lastModifiedById field"""
- lastModifiedById: SalesforceIdFilter
-
- """Filter by the UserProvisioningLog's systemModstamp field"""
- systemModstamp: SalesforceDateTimeFilter
-
- """Filter by the UserProvisioningLog's userProvisioningRequestId field"""
- userProvisioningRequestId: SalesforceIdFilter
-
- """Filter by the UserProvisioningLog's externalUserId field"""
- externalUserId: SalesforceStringFilter
-
- """Filter by the UserProvisioningLog's externalUsername field"""
- externalUsername: SalesforceStringFilter
-
- """Filter by the UserProvisioningLog's userId field"""
- userId: SalesforceIdFilter
-
- """Filter by the UserProvisioningLog's status field"""
- status: SalesforceStringFilter
-
- """Checks for any expressions in this list."""
- or: [SalesforceUserProvisioningLogConnectionFilter!]
-
- """Checks for all expressions in this list."""
- and: [SalesforceUserProvisioningLogConnectionFilter!]
-}
-
-"""Field that User Provisioning Logs can be sorted by"""
-enum SalesforceUserProvisioningLogSortByFieldEnum {
- ID
- IS_DELETED
- NAME
- CREATED_DATE
- CREATED_BY_ID
- LAST_MODIFIED_DATE
- LAST_MODIFIED_BY_ID
- SYSTEM_MODSTAMP
- USER_PROVISIONING_REQUEST_ID
- EXTERNAL_USER_ID
- EXTERNAL_USERNAME
- USER_ID
- STATUS
-}
-
-"""An edge in a connection."""
-type SalesforceUserProvisioningLogEdge {
- """The item at the end of the edge."""
- node: SalesforceUserProvisioningLog!
-
- """A cursor for use in pagination"""
- cursor: String!
-}
-
-"""User Provisioning Log"""
-type SalesforceUserProvisioningLog implements OneGraphNode {
- """UserProvisioningLog ID"""
- id: String!
-
- """Deleted"""
- isDeleted: Boolean!
-
- """Name"""
- name: String!
-
- """Created Date"""
- createdDate: String!
-
- """Created By ID"""
- createdById: String!
-
- """Created By ID"""
- createdBy: SalesforceUser!
-
- """Last Modified Date"""
- lastModifiedDate: String!
-
- """Last Modified By ID"""
- lastModifiedById: String!
-
- """Last Modified By ID"""
- lastModifiedBy: SalesforceUser!
-
- """System Modstamp"""
- systemModstamp: String!
-
- """UserProvisioningRequest ID"""
- userProvisioningRequestId: String
-
- """UserProvisioningRequest ID"""
- userProvisioningRequest: SalesforceUserProvisioningRequest
-
- """External User Id"""
- externalUserId: String
-
- """External Username"""
- externalUsername: String
-
- """User ID"""
- userId: String
-
- """User ID"""
- user: SalesforceUser
-
- """Status"""
- status: String
-
- """Details"""
- details: String
-
- """Collection of Salesforce FlowRecordRelation"""
- flowRecordRelations(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceFlowRecordRelationConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceFlowRecordRelationSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceFlowRecordRelationsConnection
- customFields(
- """
- List of custom fields to return. By default, returns all custom fields.
- """
- fields: [String!]
- ): JSON!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-"""Salesforce User Provisioning Logs connection, for use in pagination."""
-type SalesforceUserProvisioningLogsConnection {
- """
- The count of all User Provisioning Log you could get from the connection.
- """
- totalCount: Int!
-
- """Pagination Information"""
- pageInfo: PageInfo!
-
- """List of Salesforce User Provisioning Logs"""
- nodes: [SalesforceUserProvisioningLog!]!
-
- """List of User Provisioning Log edges"""
- edges: [SalesforceUserProvisioningLogEdge!]!
-}
-
-"""An edge in a connection."""
-type SalesforceProcessInstanceEdge {
- """The item at the end of the edge."""
- node: SalesforceProcessInstance!
-
- """A cursor for use in pagination"""
- cursor: String!
-}
-
-"""
-A filter to be used against ProcessInstanceWorkitem object types. All fields are combined with a logical ‘and.’
-"""
-input SalesforceProcessInstanceWorkitemConnectionFilter {
- """Filter against custom fields."""
- customField: SalesforceCustomFieldFilter
-
- """Filter by the ProcessInstanceWorkitem's createdBy relation."""
- createdBy: SalesforceUserConnectionFilter
-
- """Filter by the ProcessInstanceWorkitem's processInstance relation."""
- processInstance: SalesforceProcessInstanceConnectionFilter
-
- """Filter by the ProcessInstanceWorkitem's id field"""
- id: SalesforceIdFilter
-
- """Filter by the ProcessInstanceWorkitem's processInstanceId field"""
- processInstanceId: SalesforceIdFilter
-
- """Filter by the ProcessInstanceWorkitem's originalActorId field"""
- originalActorId: SalesforceIdFilter
-
- """Filter by the ProcessInstanceWorkitem's actorId field"""
- actorId: SalesforceIdFilter
-
- """Filter by the ProcessInstanceWorkitem's elapsedTimeInDays field"""
- elapsedTimeInDays: SalesforceFloatFilter
-
- """Filter by the ProcessInstanceWorkitem's elapsedTimeInHours field"""
- elapsedTimeInHours: SalesforceFloatFilter
-
- """Filter by the ProcessInstanceWorkitem's elapsedTimeInMinutes field"""
- elapsedTimeInMinutes: SalesforceFloatFilter
-
- """Filter by the ProcessInstanceWorkitem's isDeleted field"""
- isDeleted: SalesforceBooleanFilter
-
- """Filter by the ProcessInstanceWorkitem's createdDate field"""
- createdDate: SalesforceDateTimeFilter
-
- """Filter by the ProcessInstanceWorkitem's createdById field"""
- createdById: SalesforceIdFilter
-
- """Filter by the ProcessInstanceWorkitem's systemModstamp field"""
- systemModstamp: SalesforceDateTimeFilter
-
- """Checks for any expressions in this list."""
- or: [SalesforceProcessInstanceWorkitemConnectionFilter!]
-
- """Checks for all expressions in this list."""
- and: [SalesforceProcessInstanceWorkitemConnectionFilter!]
-}
-
-"""Field that Approval Requests can be sorted by"""
-enum SalesforceProcessInstanceWorkitemSortByFieldEnum {
- ID
- PROCESS_INSTANCE_ID
- ORIGINAL_ACTOR_ID
- ACTOR_ID
- ELAPSED_TIME_IN_DAYS
- ELAPSED_TIME_IN_HOURS
- ELAPSED_TIME_IN_MINUTES
- IS_DELETED
- CREATED_DATE
- CREATED_BY_ID
- SYSTEM_MODSTAMP
-}
-
-"""An edge in a connection."""
-type SalesforceProcessInstanceWorkitemEdge {
- """The item at the end of the edge."""
- node: SalesforceProcessInstanceWorkitem!
-
- """A cursor for use in pagination"""
- cursor: String!
-}
-
-union SalesforceProcessInstanceWorkitemActorUnion = SalesforceUser | SalesforceGroup
-
-union SalesforceProcessInstanceWorkitemOriginalActorUnion = SalesforceUser | SalesforceGroup
-
-"""Approval Request"""
-type SalesforceProcessInstanceWorkitem implements OneGraphNode {
- """Process Instance Workitem ID"""
- id: String!
-
- """Process Instance ID"""
- processInstanceId: String!
-
- """Process Instance ID"""
- processInstance: SalesforceProcessInstance!
-
- """Original Actor ID"""
- originalActorId: String!
-
- """Original Actor ID"""
- originalActor: SalesforceProcessInstanceWorkitemOriginalActorUnion!
-
- """Actor ID"""
- actorId: String!
-
- """Actor ID"""
- actor: SalesforceProcessInstanceWorkitemActorUnion!
-
- """Elapsed Time in Days"""
- elapsedTimeInDays: Float
-
- """Elapsed Time in Hours"""
- elapsedTimeInHours: Float
-
- """Elapsed Time in Minutes"""
- elapsedTimeInMinutes: Float
-
- """Deleted"""
- isDeleted: Boolean!
-
- """Created Date"""
- createdDate: String!
-
- """Created By ID"""
- createdById: String!
-
- """Created By ID"""
- createdBy: SalesforceUser!
-
- """System Modstamp"""
- systemModstamp: String!
- customFields(
- """
- List of custom fields to return. By default, returns all custom fields.
- """
- fields: [String!]
- ): JSON!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-"""Salesforce Approval Requests connection, for use in pagination."""
-type SalesforceProcessInstanceWorkitemsConnection {
- """The count of all Approval Request you could get from the connection."""
- totalCount: Int!
-
- """Pagination Information"""
- pageInfo: PageInfo!
-
- """List of Salesforce Approval Requests"""
- nodes: [SalesforceProcessInstanceWorkitem!]!
-
- """List of Approval Request edges"""
- edges: [SalesforceProcessInstanceWorkitemEdge!]!
-}
-
-"""
-A filter to be used against DuplicateRecordItem object types. All fields are combined with a logical ‘and.’
-"""
-input SalesforceDuplicateRecordItemConnectionFilter {
- """Filter against custom fields."""
- customField: SalesforceCustomFieldFilter
-
- """Filter by the DuplicateRecordItem's duplicateRecordSet relation."""
- duplicateRecordSet: SalesforceDuplicateRecordSetConnectionFilter
-
- """Filter by the DuplicateRecordItem's lastModifiedBy relation."""
- lastModifiedBy: SalesforceUserConnectionFilter
-
- """Filter by the DuplicateRecordItem's createdBy relation."""
- createdBy: SalesforceUserConnectionFilter
-
- """Filter by the DuplicateRecordItem's id field"""
- id: SalesforceIdFilter
-
- """Filter by the DuplicateRecordItem's isDeleted field"""
- isDeleted: SalesforceBooleanFilter
-
- """Filter by the DuplicateRecordItem's name field"""
- name: SalesforceStringFilter
-
- """Filter by the DuplicateRecordItem's createdDate field"""
- createdDate: SalesforceDateTimeFilter
-
- """Filter by the DuplicateRecordItem's createdById field"""
- createdById: SalesforceIdFilter
-
- """Filter by the DuplicateRecordItem's lastModifiedDate field"""
- lastModifiedDate: SalesforceDateTimeFilter
-
- """Filter by the DuplicateRecordItem's lastModifiedById field"""
- lastModifiedById: SalesforceIdFilter
-
- """Filter by the DuplicateRecordItem's systemModstamp field"""
- systemModstamp: SalesforceDateTimeFilter
-
- """Filter by the DuplicateRecordItem's duplicateRecordSetId field"""
- duplicateRecordSetId: SalesforceIdFilter
-
- """Filter by the DuplicateRecordItem's recordId field"""
- recordId: SalesforceIdFilter
-
- """Checks for any expressions in this list."""
- or: [SalesforceDuplicateRecordItemConnectionFilter!]
-
- """Checks for all expressions in this list."""
- and: [SalesforceDuplicateRecordItemConnectionFilter!]
-}
-
-"""Field that Duplicate Record Items can be sorted by"""
-enum SalesforceDuplicateRecordItemSortByFieldEnum {
- ID
- IS_DELETED
- NAME
- CREATED_DATE
- CREATED_BY_ID
- LAST_MODIFIED_DATE
- LAST_MODIFIED_BY_ID
- SYSTEM_MODSTAMP
- DUPLICATE_RECORD_SET_ID
- RECORD_ID
-}
-
-"""An edge in a connection."""
-type SalesforceDuplicateRecordItemEdge {
- """The item at the end of the edge."""
- node: SalesforceDuplicateRecordItem!
-
- """A cursor for use in pagination"""
- cursor: String!
-}
-
-union SalesforceDuplicateRecordItemRecordUnion = SalesforceLead | SalesforceContact | SalesforceAccount
-
-"""Duplicate Record Item"""
-type SalesforceDuplicateRecordItem implements OneGraphNode {
- """Duplicate Record Item ID"""
- id: String!
-
- """Deleted"""
- isDeleted: Boolean!
-
- """Duplicate Record Item Name"""
- name: String!
-
- """Created Date"""
- createdDate: String!
-
- """Created By ID"""
- createdById: String!
-
- """Created By ID"""
- createdBy: SalesforceUser!
-
- """Last Modified Date"""
- lastModifiedDate: String!
-
- """Last Modified By ID"""
- lastModifiedById: String!
-
- """Last Modified By ID"""
- lastModifiedBy: SalesforceUser!
-
- """System Modstamp"""
- systemModstamp: String!
-
- """Duplicate Record Set ID"""
- duplicateRecordSetId: String!
-
- """Duplicate Record Set ID"""
- duplicateRecordSet: SalesforceDuplicateRecordSet!
-
- """Record ID"""
- recordId: String!
-
- """Record ID"""
- record: SalesforceDuplicateRecordItemRecordUnion!
-
- """Collection of Salesforce FlowRecordRelation"""
- flowRecordRelations(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceFlowRecordRelationConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceFlowRecordRelationSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceFlowRecordRelationsConnection
-
- """Collection of Salesforce ProcessInstance"""
- processInstances(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceProcessInstanceConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceProcessInstanceSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceProcessInstanceSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of ProcessInstances to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceProcessInstancesConnection
- customFields(
- """
- List of custom fields to return. By default, returns all custom fields.
- """
- fields: [String!]
- ): JSON!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-"""Salesforce Duplicate Record Items connection, for use in pagination."""
-type SalesforceDuplicateRecordItemsConnection {
- """
- The count of all Duplicate Record Item you could get from the connection.
- """
- totalCount: Int!
-
- """Pagination Information"""
- pageInfo: PageInfo!
-
- """List of Salesforce Duplicate Record Items"""
- nodes: [SalesforceDuplicateRecordItem!]!
-
- """List of Duplicate Record Item edges"""
- edges: [SalesforceDuplicateRecordItemEdge!]!
-}
-
-"""
-A filter to be used against DuplicateRule object types. All fields are combined with a logical ‘and.’
-"""
-input SalesforceDuplicateRuleConnectionFilter {
- """Filter against custom fields."""
- customField: SalesforceCustomFieldFilter
-
- """Filter by the DuplicateRule's lastModifiedBy relation."""
- lastModifiedBy: SalesforceUserConnectionFilter
-
- """Filter by the DuplicateRule's createdBy relation."""
- createdBy: SalesforceUserConnectionFilter
-
- """Filter by the DuplicateRule's id field"""
- id: SalesforceIdFilter
-
- """Filter by the DuplicateRule's isDeleted field"""
- isDeleted: SalesforceBooleanFilter
-
- """Filter by the DuplicateRule's sobjectType field"""
- sobjectType: SalesforceStringFilter
-
- """Filter by the DuplicateRule's developerName field"""
- developerName: SalesforceStringFilter
-
- """Filter by the DuplicateRule's language field"""
- language: SalesforceStringFilter
-
- """Filter by the DuplicateRule's masterLabel field"""
- masterLabel: SalesforceStringFilter
-
- """Filter by the DuplicateRule's namespacePrefix field"""
- namespacePrefix: SalesforceStringFilter
-
- """Filter by the DuplicateRule's createdDate field"""
- createdDate: SalesforceDateTimeFilter
-
- """Filter by the DuplicateRule's createdById field"""
- createdById: SalesforceIdFilter
-
- """Filter by the DuplicateRule's lastModifiedDate field"""
- lastModifiedDate: SalesforceDateTimeFilter
-
- """Filter by the DuplicateRule's lastModifiedById field"""
- lastModifiedById: SalesforceIdFilter
-
- """Filter by the DuplicateRule's systemModstamp field"""
- systemModstamp: SalesforceDateTimeFilter
-
- """Filter by the DuplicateRule's isActive field"""
- isActive: SalesforceBooleanFilter
-
- """Filter by the DuplicateRule's sobjectSubtype field"""
- sobjectSubtype: SalesforceStringFilter
-
- """Filter by the DuplicateRule's lastViewedDate field"""
- lastViewedDate: SalesforceDateTimeFilter
-
- """Checks for any expressions in this list."""
- or: [SalesforceDuplicateRuleConnectionFilter!]
-
- """Checks for all expressions in this list."""
- and: [SalesforceDuplicateRuleConnectionFilter!]
-}
-
-"""
-A filter to be used against DuplicateRecordSet object types. All fields are combined with a logical ‘and.’
-"""
-input SalesforceDuplicateRecordSetConnectionFilter {
- """Filter against custom fields."""
- customField: SalesforceCustomFieldFilter
-
- """Filter by the DuplicateRecordSet's duplicateRule relation."""
- duplicateRule: SalesforceDuplicateRuleConnectionFilter
-
- """Filter by the DuplicateRecordSet's lastModifiedBy relation."""
- lastModifiedBy: SalesforceUserConnectionFilter
-
- """Filter by the DuplicateRecordSet's createdBy relation."""
- createdBy: SalesforceUserConnectionFilter
-
- """Filter by the DuplicateRecordSet's id field"""
- id: SalesforceIdFilter
-
- """Filter by the DuplicateRecordSet's isDeleted field"""
- isDeleted: SalesforceBooleanFilter
-
- """Filter by the DuplicateRecordSet's name field"""
- name: SalesforceStringFilter
-
- """Filter by the DuplicateRecordSet's createdDate field"""
- createdDate: SalesforceDateTimeFilter
-
- """Filter by the DuplicateRecordSet's createdById field"""
- createdById: SalesforceIdFilter
-
- """Filter by the DuplicateRecordSet's lastModifiedDate field"""
- lastModifiedDate: SalesforceDateTimeFilter
-
- """Filter by the DuplicateRecordSet's lastModifiedById field"""
- lastModifiedById: SalesforceIdFilter
-
- """Filter by the DuplicateRecordSet's systemModstamp field"""
- systemModstamp: SalesforceDateTimeFilter
-
- """Filter by the DuplicateRecordSet's lastViewedDate field"""
- lastViewedDate: SalesforceDateTimeFilter
-
- """Filter by the DuplicateRecordSet's lastReferencedDate field"""
- lastReferencedDate: SalesforceDateTimeFilter
-
- """Filter by the DuplicateRecordSet's duplicateRuleId field"""
- duplicateRuleId: SalesforceIdFilter
-
- """Filter by the DuplicateRecordSet's recordCount field"""
- recordCount: SalesforceIntFilter
-
- """Checks for any expressions in this list."""
- or: [SalesforceDuplicateRecordSetConnectionFilter!]
-
- """Checks for all expressions in this list."""
- and: [SalesforceDuplicateRecordSetConnectionFilter!]
-}
-
-"""Field that Duplicate Record Sets can be sorted by"""
-enum SalesforceDuplicateRecordSetSortByFieldEnum {
- ID
- IS_DELETED
- NAME
- CREATED_DATE
- CREATED_BY_ID
- LAST_MODIFIED_DATE
- LAST_MODIFIED_BY_ID
- SYSTEM_MODSTAMP
- LAST_VIEWED_DATE
- LAST_REFERENCED_DATE
- DUPLICATE_RULE_ID
- RECORD_COUNT
-}
-
-"""An edge in a connection."""
-type SalesforceDuplicateRecordSetEdge {
- """The item at the end of the edge."""
- node: SalesforceDuplicateRecordSet!
-
- """A cursor for use in pagination"""
- cursor: String!
-}
-
-"""Salesforce Duplicate Record Sets connection, for use in pagination."""
-type SalesforceDuplicateRecordSetsConnection {
- """
- The count of all Duplicate Record Set you could get from the connection.
- """
- totalCount: Int!
-
- """Pagination Information"""
- pageInfo: PageInfo!
-
- """List of Salesforce Duplicate Record Sets"""
- nodes: [SalesforceDuplicateRecordSet!]!
-
- """List of Duplicate Record Set edges"""
- edges: [SalesforceDuplicateRecordSetEdge!]!
-}
-
-"""Duplicate Rule"""
-type SalesforceDuplicateRule implements OneGraphNode {
- """Duplicate Rule ID"""
- id: String!
-
- """Deleted"""
- isDeleted: Boolean!
-
- """Custom Object Definition ID"""
- sobjectType: String!
-
- """Object Name"""
- developerName: String!
-
- """Master Language"""
- language: String!
-
- """Rule Name"""
- masterLabel: String!
-
- """Namespace Prefix"""
- namespacePrefix: String
-
- """Created Date"""
- createdDate: String!
-
- """Created By ID"""
- createdById: String!
-
- """Created By ID"""
- createdBy: SalesforceUser!
-
- """Last Modified Date"""
- lastModifiedDate: String!
-
- """Last Modified By ID"""
- lastModifiedById: String!
-
- """Last Modified By ID"""
- lastModifiedBy: SalesforceUser!
-
- """System Modstamp"""
- systemModstamp: String!
-
- """Active"""
- isActive: Boolean!
-
- """Object Subtype"""
- sobjectSubtype: String
-
- """Last Viewed Date"""
- lastViewedDate: String
-
- """Collection of Salesforce DuplicateRecordSet"""
- duplicateRecordSets(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceDuplicateRecordSetConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceDuplicateRecordSetSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceDuplicateRecordSetSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of DuplicateRecordSets to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceDuplicateRecordSetsConnection
- customFields(
- """
- List of custom fields to return. By default, returns all custom fields.
- """
- fields: [String!]
- ): JSON!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-"""Duplicate Record Set"""
-type SalesforceDuplicateRecordSet implements OneGraphNode {
- """Duplicate Record Set ID"""
- id: String!
-
- """Deleted"""
- isDeleted: Boolean!
-
- """Duplicate Record Set Name"""
- name: String!
-
- """Created Date"""
- createdDate: String!
-
- """Created By ID"""
- createdById: String!
-
- """Created By ID"""
- createdBy: SalesforceUser!
-
- """Last Modified Date"""
- lastModifiedDate: String!
-
- """Last Modified By ID"""
- lastModifiedById: String!
-
- """Last Modified By ID"""
- lastModifiedBy: SalesforceUser!
-
- """System Modstamp"""
- systemModstamp: String!
-
- """Last Viewed Date"""
- lastViewedDate: String
-
- """Last Referenced Date"""
- lastReferencedDate: String
-
- """Duplicate Rule ID"""
- duplicateRuleId: String
-
- """Duplicate Rule ID"""
- duplicateRule: SalesforceDuplicateRule
-
- """Record Count"""
- recordCount: Int
-
- """Collection of Salesforce DuplicateRecordItem"""
- duplicateRecordItems(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceDuplicateRecordItemConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceDuplicateRecordItemSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceDuplicateRecordItemSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """
- Number of DuplicateRecordItems to fetch. Defaults to 10. Maximum is 60.
- """
- first: Int
- ): SalesforceDuplicateRecordItemsConnection
-
- """Collection of Salesforce FlowRecordRelation"""
- flowRecordRelations(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceFlowRecordRelationConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceFlowRecordRelationSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceFlowRecordRelationsConnection
-
- """Collection of Salesforce ProcessInstance"""
- processInstances(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceProcessInstanceConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceProcessInstanceSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceProcessInstanceSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of ProcessInstances to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceProcessInstancesConnection
- customFields(
- """
- List of custom fields to return. By default, returns all custom fields.
- """
- fields: [String!]
- ): JSON!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-"""
-A filter to be used against OrderShare object types. All fields are combined with a logical ‘and.’
-"""
-input SalesforceOrderShareConnectionFilter {
- """Filter against custom fields."""
- customField: SalesforceCustomFieldFilter
-
- """Filter by the OrderShare's lastModifiedBy relation."""
- lastModifiedBy: SalesforceUserConnectionFilter
-
- """Filter by the OrderShare's order relation."""
- order: SalesforceOrderConnectionFilter
-
- """Filter by the OrderShare's id field"""
- id: SalesforceIdFilter
-
- """Filter by the OrderShare's orderId field"""
- orderId: SalesforceIdFilter
-
- """Filter by the OrderShare's userOrGroupId field"""
- userOrGroupId: SalesforceIdFilter
-
- """Filter by the OrderShare's orderAccessLevel field"""
- orderAccessLevel: SalesforceStringFilter
-
- """Filter by the OrderShare's rowCause field"""
- rowCause: SalesforceStringFilter
-
- """Filter by the OrderShare's lastModifiedDate field"""
- lastModifiedDate: SalesforceDateTimeFilter
-
- """Filter by the OrderShare's lastModifiedById field"""
- lastModifiedById: SalesforceIdFilter
-
- """Filter by the OrderShare's isDeleted field"""
- isDeleted: SalesforceBooleanFilter
-
- """Checks for any expressions in this list."""
- or: [SalesforceOrderShareConnectionFilter!]
-
- """Checks for all expressions in this list."""
- and: [SalesforceOrderShareConnectionFilter!]
-}
-
-"""Field that Order Shares can be sorted by"""
-enum SalesforceOrderShareSortByFieldEnum {
- ID
- ORDER_ID
- USER_OR_GROUP_ID
- ORDER_ACCESS_LEVEL
- ROW_CAUSE
- LAST_MODIFIED_DATE
- LAST_MODIFIED_BY_ID
- IS_DELETED
-}
-
-"""An edge in a connection."""
-type SalesforceOrderShareEdge {
- """The item at the end of the edge."""
- node: SalesforceOrderShare!
-
- """A cursor for use in pagination"""
- cursor: String!
-}
-
-union SalesforceOrderShareUserOrGroupUnion = SalesforceUser | SalesforceGroup
-
-"""Order Share"""
-type SalesforceOrderShare implements OneGraphNode {
- """Order Share ID"""
- id: String!
-
- """Order ID"""
- orderId: String!
-
- """Order ID"""
- order: SalesforceOrder!
-
- """User/Group ID"""
- userOrGroupId: String!
-
- """User/Group ID"""
- userOrGroup: SalesforceOrderShareUserOrGroupUnion!
-
- """Order Access Level"""
- orderAccessLevel: String!
-
- """Apex Sharing Reason ID"""
- rowCause: String
-
- """Last Modified Date"""
- lastModifiedDate: String!
-
- """Last Modified By ID"""
- lastModifiedById: String!
-
- """Last Modified By ID"""
- lastModifiedBy: SalesforceUser!
-
- """Deleted"""
- isDeleted: Boolean!
- customFields(
- """
- List of custom fields to return. By default, returns all custom fields.
- """
- fields: [String!]
- ): JSON!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-"""Salesforce Order Shares connection, for use in pagination."""
-type SalesforceOrderSharesConnection {
- """The count of all Order Share you could get from the connection."""
- totalCount: Int!
-
- """Pagination Information"""
- pageInfo: PageInfo!
-
- """List of Salesforce Order Shares"""
- nodes: [SalesforceOrderShare!]!
-
- """List of Order Share edges"""
- edges: [SalesforceOrderShareEdge!]!
-}
-
-"""
-A filter to be used against OrderHistory object types. All fields are combined with a logical ‘and.’
-"""
-input SalesforceOrderHistoryConnectionFilter {
- """Filter against custom fields."""
- customField: SalesforceCustomFieldFilter
-
- """Filter by the OrderHistory's createdBy relation."""
- createdBy: SalesforceUserConnectionFilter
-
- """Filter by the OrderHistory's order relation."""
- order: SalesforceOrderConnectionFilter
-
- """Filter by the OrderHistory's id field"""
- id: SalesforceIdFilter
-
- """Filter by the OrderHistory's isDeleted field"""
- isDeleted: SalesforceBooleanFilter
-
- """Filter by the OrderHistory's orderId field"""
- orderId: SalesforceIdFilter
-
- """Filter by the OrderHistory's createdById field"""
- createdById: SalesforceIdFilter
-
- """Filter by the OrderHistory's createdDate field"""
- createdDate: SalesforceDateTimeFilter
-
- """Filter by the OrderHistory's field field"""
- field: SalesforceStringFilter
-
- """Checks for any expressions in this list."""
- or: [SalesforceOrderHistoryConnectionFilter!]
-
- """Checks for all expressions in this list."""
- and: [SalesforceOrderHistoryConnectionFilter!]
-}
-
-"""Field that Order Histories can be sorted by"""
-enum SalesforceOrderHistorySortByFieldEnum {
- ID
- IS_DELETED
- ORDER_ID
- CREATED_BY_ID
- CREATED_DATE
- FIELD
- OLD_VALUE
- NEW_VALUE
-}
-
-"""An edge in a connection."""
-type SalesforceOrderHistoryEdge {
- """The item at the end of the edge."""
- node: SalesforceOrderHistory!
-
- """A cursor for use in pagination"""
- cursor: String!
-}
-
-"""Order History"""
-type SalesforceOrderHistory implements OneGraphNode {
- """Order History ID"""
- id: String!
-
- """Deleted"""
- isDeleted: Boolean!
-
- """Order ID"""
- orderId: String!
-
- """Order ID"""
- order: SalesforceOrder!
-
- """Created By ID"""
- createdById: String!
-
- """Created By ID"""
- createdBy: SalesforceUser!
-
- """Created Date"""
- createdDate: String!
-
- """Changed Field"""
- field: String!
-
- """Old Value"""
- oldValue: String
-
- """New Value"""
- newValue: String
- customFields(
- """
- List of custom fields to return. By default, returns all custom fields.
- """
- fields: [String!]
- ): JSON!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-"""Salesforce Order Histories connection, for use in pagination."""
-type SalesforceOrderHistorysConnection {
- """The count of all Order History you could get from the connection."""
- totalCount: Int!
-
- """Pagination Information"""
- pageInfo: PageInfo!
-
- """List of Salesforce Order Histories"""
- nodes: [SalesforceOrderHistory!]!
-
- """List of Order History edges"""
- edges: [SalesforceOrderHistoryEdge!]!
-}
-
-"""
-A filter to be used against OrderFeed object types. All fields are combined with a logical ‘and.’
-"""
-input SalesforceOrderFeedConnectionFilter {
- """Filter against custom fields."""
- customField: SalesforceCustomFieldFilter
-
- """Filter by the OrderFeed's insertedBy relation."""
- insertedBy: SalesforceUserConnectionFilter
-
- """Filter by the OrderFeed's relatedRecord relation."""
- relatedRecord: SalesforceContentVersionConnectionFilter
-
- """Filter by the OrderFeed's createdBy relation."""
- createdBy: SalesforceUserConnectionFilter
-
- """Filter by the OrderFeed's parent relation."""
- parent: SalesforceOrderConnectionFilter
-
- """Filter by the OrderFeed's id field"""
- id: SalesforceIdFilter
-
- """Filter by the OrderFeed's parentId field"""
- parentId: SalesforceIdFilter
-
- """Filter by the OrderFeed's type field"""
- type: SalesforceStringFilter
-
- """Filter by the OrderFeed's createdById field"""
- createdById: SalesforceIdFilter
-
- """Filter by the OrderFeed's createdDate field"""
- createdDate: SalesforceDateTimeFilter
-
- """Filter by the OrderFeed's isDeleted field"""
- isDeleted: SalesforceBooleanFilter
-
- """Filter by the OrderFeed's lastModifiedDate field"""
- lastModifiedDate: SalesforceDateTimeFilter
-
- """Filter by the OrderFeed's systemModstamp field"""
- systemModstamp: SalesforceDateTimeFilter
-
- """Filter by the OrderFeed's commentCount field"""
- commentCount: SalesforceIntFilter
-
- """Filter by the OrderFeed's likeCount field"""
- likeCount: SalesforceIntFilter
-
- """Filter by the OrderFeed's isRichText field"""
- isRichText: SalesforceBooleanFilter
-
- """Checks for any expressions in this list."""
- or: [SalesforceOrderFeedConnectionFilter!]
-
- """Checks for all expressions in this list."""
- and: [SalesforceOrderFeedConnectionFilter!]
-}
-
-"""Field that Order Feeds can be sorted by"""
-enum SalesforceOrderFeedSortByFieldEnum {
- ID
- PARENT_ID
- TYPE
- CREATED_BY_ID
- CREATED_DATE
- IS_DELETED
- LAST_MODIFIED_DATE
- SYSTEM_MODSTAMP
- COMMENT_COUNT
- LIKE_COUNT
- TITLE
- BODY
- LINK_URL
- IS_RICH_TEXT
- RELATED_RECORD_ID
- INSERTED_BY_ID
-}
-
-"""An edge in a connection."""
-type SalesforceOrderFeedEdge {
- """The item at the end of the edge."""
- node: SalesforceOrderFeed!
-
- """A cursor for use in pagination"""
- cursor: String!
-}
-
-"""Salesforce Order Feeds connection, for use in pagination."""
-type SalesforceOrderFeedsConnection {
- """The count of all Order Feed you could get from the connection."""
- totalCount: Int!
-
- """Pagination Information"""
- pageInfo: PageInfo!
-
- """List of Salesforce Order Feeds"""
- nodes: [SalesforceOrderFeed!]!
-
- """List of Order Feed edges"""
- edges: [SalesforceOrderFeedEdge!]!
-}
-
-"""
-A filter to be used against ContractHistory object types. All fields are combined with a logical ‘and.’
-"""
-input SalesforceContractHistoryConnectionFilter {
- """Filter against custom fields."""
- customField: SalesforceCustomFieldFilter
-
- """Filter by the ContractHistory's createdBy relation."""
- createdBy: SalesforceUserConnectionFilter
-
- """Filter by the ContractHistory's contract relation."""
- contract: SalesforceContractConnectionFilter
-
- """Filter by the ContractHistory's id field"""
- id: SalesforceIdFilter
-
- """Filter by the ContractHistory's isDeleted field"""
- isDeleted: SalesforceBooleanFilter
-
- """Filter by the ContractHistory's contractId field"""
- contractId: SalesforceIdFilter
-
- """Filter by the ContractHistory's createdById field"""
- createdById: SalesforceIdFilter
-
- """Filter by the ContractHistory's createdDate field"""
- createdDate: SalesforceDateTimeFilter
-
- """Filter by the ContractHistory's field field"""
- field: SalesforceStringFilter
-
- """Checks for any expressions in this list."""
- or: [SalesforceContractHistoryConnectionFilter!]
-
- """Checks for all expressions in this list."""
- and: [SalesforceContractHistoryConnectionFilter!]
-}
-
-"""Field that Contract Histories can be sorted by"""
-enum SalesforceContractHistorySortByFieldEnum {
- ID
- IS_DELETED
- CONTRACT_ID
- CREATED_BY_ID
- CREATED_DATE
- FIELD
- OLD_VALUE
- NEW_VALUE
-}
-
-"""An edge in a connection."""
-type SalesforceContractHistoryEdge {
- """The item at the end of the edge."""
- node: SalesforceContractHistory!
-
- """A cursor for use in pagination"""
- cursor: String!
-}
-
-"""Contract History"""
-type SalesforceContractHistory implements OneGraphNode {
- """Contract History ID"""
- id: String!
-
- """Deleted"""
- isDeleted: Boolean!
-
- """Contract ID"""
- contractId: String!
-
- """Contract ID"""
- contract: SalesforceContract!
-
- """Created By ID"""
- createdById: String!
-
- """Created By ID"""
- createdBy: SalesforceUser!
-
- """Created Date"""
- createdDate: String!
-
- """Changed Field"""
- field: String!
-
- """Old Value"""
- oldValue: String
-
- """New Value"""
- newValue: String
- customFields(
- """
- List of custom fields to return. By default, returns all custom fields.
- """
- fields: [String!]
- ): JSON!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-"""Salesforce Contract Histories connection, for use in pagination."""
-type SalesforceContractHistorysConnection {
- """The count of all Contract History you could get from the connection."""
- totalCount: Int!
-
- """Pagination Information"""
- pageInfo: PageInfo!
-
- """List of Salesforce Contract Histories"""
- nodes: [SalesforceContractHistory!]!
-
- """List of Contract History edges"""
- edges: [SalesforceContractHistoryEdge!]!
-}
-
-"""
-A filter to be used against ContractFeed object types. All fields are combined with a logical ‘and.’
-"""
-input SalesforceContractFeedConnectionFilter {
- """Filter against custom fields."""
- customField: SalesforceCustomFieldFilter
-
- """Filter by the ContractFeed's insertedBy relation."""
- insertedBy: SalesforceUserConnectionFilter
-
- """Filter by the ContractFeed's relatedRecord relation."""
- relatedRecord: SalesforceContentVersionConnectionFilter
-
- """Filter by the ContractFeed's createdBy relation."""
- createdBy: SalesforceUserConnectionFilter
-
- """Filter by the ContractFeed's parent relation."""
- parent: SalesforceContractConnectionFilter
-
- """Filter by the ContractFeed's id field"""
- id: SalesforceIdFilter
-
- """Filter by the ContractFeed's parentId field"""
- parentId: SalesforceIdFilter
-
- """Filter by the ContractFeed's type field"""
- type: SalesforceStringFilter
-
- """Filter by the ContractFeed's createdById field"""
- createdById: SalesforceIdFilter
-
- """Filter by the ContractFeed's createdDate field"""
- createdDate: SalesforceDateTimeFilter
-
- """Filter by the ContractFeed's isDeleted field"""
- isDeleted: SalesforceBooleanFilter
-
- """Filter by the ContractFeed's lastModifiedDate field"""
- lastModifiedDate: SalesforceDateTimeFilter
-
- """Filter by the ContractFeed's systemModstamp field"""
- systemModstamp: SalesforceDateTimeFilter
-
- """Filter by the ContractFeed's commentCount field"""
- commentCount: SalesforceIntFilter
-
- """Filter by the ContractFeed's likeCount field"""
- likeCount: SalesforceIntFilter
-
- """Filter by the ContractFeed's isRichText field"""
- isRichText: SalesforceBooleanFilter
-
- """Checks for any expressions in this list."""
- or: [SalesforceContractFeedConnectionFilter!]
-
- """Checks for all expressions in this list."""
- and: [SalesforceContractFeedConnectionFilter!]
-}
-
-"""Field that Contract Feeds can be sorted by"""
-enum SalesforceContractFeedSortByFieldEnum {
- ID
- PARENT_ID
- TYPE
- CREATED_BY_ID
- CREATED_DATE
- IS_DELETED
- LAST_MODIFIED_DATE
- SYSTEM_MODSTAMP
- COMMENT_COUNT
- LIKE_COUNT
- TITLE
- BODY
- LINK_URL
- IS_RICH_TEXT
- RELATED_RECORD_ID
- INSERTED_BY_ID
-}
-
-"""An edge in a connection."""
-type SalesforceContractFeedEdge {
- """The item at the end of the edge."""
- node: SalesforceContractFeed!
-
- """A cursor for use in pagination"""
- cursor: String!
-}
-
-"""Salesforce Contract Feeds connection, for use in pagination."""
-type SalesforceContractFeedsConnection {
- """The count of all Contract Feed you could get from the connection."""
- totalCount: Int!
-
- """Pagination Information"""
- pageInfo: PageInfo!
-
- """List of Salesforce Contract Feeds"""
- nodes: [SalesforceContractFeed!]!
-
- """List of Contract Feed edges"""
- edges: [SalesforceContractFeedEdge!]!
-}
-
-"""
-A filter to be used against ContractContactRole object types. All fields are combined with a logical ‘and.’
-"""
-input SalesforceContractContactRoleConnectionFilter {
- """Filter against custom fields."""
- customField: SalesforceCustomFieldFilter
-
- """Filter by the ContractContactRole's lastModifiedBy relation."""
- lastModifiedBy: SalesforceUserConnectionFilter
-
- """Filter by the ContractContactRole's createdBy relation."""
- createdBy: SalesforceUserConnectionFilter
-
- """Filter by the ContractContactRole's contact relation."""
- contact: SalesforceContactConnectionFilter
-
- """Filter by the ContractContactRole's contract relation."""
- contract: SalesforceContractConnectionFilter
-
- """Filter by the ContractContactRole's id field"""
- id: SalesforceIdFilter
-
- """Filter by the ContractContactRole's contractId field"""
- contractId: SalesforceIdFilter
-
- """Filter by the ContractContactRole's contactId field"""
- contactId: SalesforceIdFilter
-
- """Filter by the ContractContactRole's role field"""
- role: SalesforceStringFilter
-
- """Filter by the ContractContactRole's isPrimary field"""
- isPrimary: SalesforceBooleanFilter
-
- """Filter by the ContractContactRole's createdDate field"""
- createdDate: SalesforceDateTimeFilter
-
- """Filter by the ContractContactRole's createdById field"""
- createdById: SalesforceIdFilter
-
- """Filter by the ContractContactRole's lastModifiedDate field"""
- lastModifiedDate: SalesforceDateTimeFilter
-
- """Filter by the ContractContactRole's lastModifiedById field"""
- lastModifiedById: SalesforceIdFilter
-
- """Filter by the ContractContactRole's systemModstamp field"""
- systemModstamp: SalesforceDateTimeFilter
-
- """Filter by the ContractContactRole's isDeleted field"""
- isDeleted: SalesforceBooleanFilter
-
- """Checks for any expressions in this list."""
- or: [SalesforceContractContactRoleConnectionFilter!]
-
- """Checks for all expressions in this list."""
- and: [SalesforceContractContactRoleConnectionFilter!]
-}
-
-"""Field that Contract Contact Roles can be sorted by"""
-enum SalesforceContractContactRoleSortByFieldEnum {
- ID
- CONTRACT_ID
- CONTACT_ID
- ROLE
- IS_PRIMARY
- CREATED_DATE
- CREATED_BY_ID
- LAST_MODIFIED_DATE
- LAST_MODIFIED_BY_ID
- SYSTEM_MODSTAMP
- IS_DELETED
-}
-
-"""An edge in a connection."""
-type SalesforceContractContactRoleEdge {
- """The item at the end of the edge."""
- node: SalesforceContractContactRole!
-
- """A cursor for use in pagination"""
- cursor: String!
-}
-
-"""Contract Contact Role"""
-type SalesforceContractContactRole implements OneGraphNode {
- """Contact Role ID"""
- id: String!
-
- """Contract ID"""
- contractId: String!
-
- """Contract ID"""
- contract: SalesforceContract!
-
- """Contact ID"""
- contactId: String!
-
- """Contact ID"""
- contact: SalesforceContact!
-
- """Role"""
- role: String
-
- """Primary"""
- isPrimary: Boolean!
-
- """Created Date"""
- createdDate: String!
-
- """Created By ID"""
- createdById: String!
-
- """Created By ID"""
- createdBy: SalesforceUser!
-
- """Last Modified Date"""
- lastModifiedDate: String!
-
- """Last Modified By ID"""
- lastModifiedById: String!
-
- """Last Modified By ID"""
- lastModifiedBy: SalesforceUser!
-
- """System Modstamp"""
- systemModstamp: String!
-
- """Deleted"""
- isDeleted: Boolean!
-
- """Collection of Salesforce FlowRecordRelation"""
- flowRecordRelations(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceFlowRecordRelationConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceFlowRecordRelationSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceFlowRecordRelationsConnection
- customFields(
- """
- List of custom fields to return. By default, returns all custom fields.
- """
- fields: [String!]
- ): JSON!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-"""Salesforce Contract Contact Roles connection, for use in pagination."""
-type SalesforceContractContactRolesConnection {
- """
- The count of all Contract Contact Role you could get from the connection.
- """
- totalCount: Int!
-
- """Pagination Information"""
- pageInfo: PageInfo!
-
- """List of Salesforce Contract Contact Roles"""
- nodes: [SalesforceContractContactRole!]!
-
- """List of Contract Contact Role edges"""
- edges: [SalesforceContractContactRoleEdge!]!
-}
-
-"""Field that Price Book Entries can be sorted by"""
-enum SalesforcePricebookEntrySortByFieldEnum {
- ID
- NAME
- PRICEBOOK_2_ID
- PRODUCT_2_ID
- UNIT_PRICE
- IS_ACTIVE
- USE_STANDARD_PRICE
- CREATED_DATE
- CREATED_BY_ID
- LAST_MODIFIED_DATE
- LAST_MODIFIED_BY_ID
- SYSTEM_MODSTAMP
- PRODUCT_CODE
- IS_DELETED
-}
-
-"""An edge in a connection."""
-type SalesforcePricebookEntryEdge {
- """The item at the end of the edge."""
- node: SalesforcePricebookEntry!
-
- """A cursor for use in pagination"""
- cursor: String!
-}
-
-"""Salesforce Price Book Entries connection, for use in pagination."""
-type SalesforcePricebookEntrysConnection {
- """The count of all Price Book Entry you could get from the connection."""
- totalCount: Int!
-
- """Pagination Information"""
- pageInfo: PageInfo!
-
- """List of Salesforce Price Book Entries"""
- nodes: [SalesforcePricebookEntry!]!
-
- """List of Price Book Entry edges"""
- edges: [SalesforcePricebookEntryEdge!]!
-}
-
-"""
-A filter to be used against Pricebook2History object types. All fields are combined with a logical ‘and.’
-"""
-input SalesforcePricebook2HistoryConnectionFilter {
- """Filter against custom fields."""
- customField: SalesforceCustomFieldFilter
-
- """Filter by the Pricebook2History's createdBy relation."""
- createdBy: SalesforceUserConnectionFilter
-
- """Filter by the Pricebook2History's pricebook2 relation."""
- pricebook2: SalesforcePricebook2ConnectionFilter
-
- """Filter by the Pricebook2History's id field"""
- id: SalesforceIdFilter
-
- """Filter by the Pricebook2History's isDeleted field"""
- isDeleted: SalesforceBooleanFilter
-
- """Filter by the Pricebook2History's pricebook2Id field"""
- pricebook2Id: SalesforceIdFilter
-
- """Filter by the Pricebook2History's createdById field"""
- createdById: SalesforceIdFilter
-
- """Filter by the Pricebook2History's createdDate field"""
- createdDate: SalesforceDateTimeFilter
-
- """Filter by the Pricebook2History's field field"""
- field: SalesforceStringFilter
-
- """Checks for any expressions in this list."""
- or: [SalesforcePricebook2HistoryConnectionFilter!]
-
- """Checks for all expressions in this list."""
- and: [SalesforcePricebook2HistoryConnectionFilter!]
-}
-
-"""Field that Price Book Histories can be sorted by"""
-enum SalesforcePricebook2HistorySortByFieldEnum {
- ID
- IS_DELETED
- PRICEBOOK_2_ID
- CREATED_BY_ID
- CREATED_DATE
- FIELD
- OLD_VALUE
- NEW_VALUE
-}
-
-"""An edge in a connection."""
-type SalesforcePricebook2HistoryEdge {
- """The item at the end of the edge."""
- node: SalesforcePricebook2History!
-
- """A cursor for use in pagination"""
- cursor: String!
-}
-
-"""Price Book History"""
-type SalesforcePricebook2History implements OneGraphNode {
- """Price Book History ID"""
- id: String!
-
- """Deleted"""
- isDeleted: Boolean!
-
- """Price Book ID"""
- pricebook2Id: String!
-
- """Price Book ID"""
- pricebook2: SalesforcePricebook2!
-
- """Created By ID"""
- createdById: String!
-
- """Created By ID"""
- createdBy: SalesforceUser!
-
- """Created Date"""
- createdDate: String!
-
- """Changed Field"""
- field: String!
-
- """Old Value"""
- oldValue: String
-
- """New Value"""
- newValue: String
- customFields(
- """
- List of custom fields to return. By default, returns all custom fields.
- """
- fields: [String!]
- ): JSON!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-"""Salesforce Price Book Histories connection, for use in pagination."""
-type SalesforcePricebook2HistorysConnection {
- """The count of all Price Book History you could get from the connection."""
- totalCount: Int!
-
- """Pagination Information"""
- pageInfo: PageInfo!
-
- """List of Salesforce Price Book Histories"""
- nodes: [SalesforcePricebook2History!]!
-
- """List of Price Book History edges"""
- edges: [SalesforcePricebook2HistoryEdge!]!
-}
-
-"""Field that Orders can be sorted by"""
-enum SalesforceOrderSortByFieldEnum {
- ID
- OWNER_ID
- CONTRACT_ID
- ACCOUNT_ID
- PRICEBOOK_2_ID
- ORIGINAL_ORDER_ID
- EFFECTIVE_DATE
- END_DATE
- IS_REDUCTION_ORDER
- STATUS
- CUSTOMER_AUTHORIZED_BY_ID
- CUSTOMER_AUTHORIZED_DATE
- COMPANY_AUTHORIZED_BY_ID
- COMPANY_AUTHORIZED_DATE
- TYPE
- BILLING_STREET
- BILLING_CITY
- BILLING_STATE
- BILLING_POSTAL_CODE
- BILLING_COUNTRY
- BILLING_LATITUDE
- BILLING_LONGITUDE
- BILLING_GEOCODE_ACCURACY
- SHIPPING_STREET
- SHIPPING_CITY
- SHIPPING_STATE
- SHIPPING_POSTAL_CODE
- SHIPPING_COUNTRY
- SHIPPING_LATITUDE
- SHIPPING_LONGITUDE
- SHIPPING_GEOCODE_ACCURACY
- NAME
- PO_DATE
- PO_NUMBER
- ORDER_REFERENCE_NUMBER
- BILL_TO_CONTACT_ID
- SHIP_TO_CONTACT_ID
- ACTIVATED_DATE
- ACTIVATED_BY_ID
- STATUS_CODE
- ORDER_NUMBER
- TOTAL_AMOUNT
- CREATED_DATE
- CREATED_BY_ID
- LAST_MODIFIED_DATE
- LAST_MODIFIED_BY_ID
- IS_DELETED
- SYSTEM_MODSTAMP
- LAST_VIEWED_DATE
- LAST_REFERENCED_DATE
-}
-
-"""An edge in a connection."""
-type SalesforceOrderEdge {
- """The item at the end of the edge."""
- node: SalesforceOrder!
-
- """A cursor for use in pagination"""
- cursor: String!
-}
-
-"""Salesforce Orders connection, for use in pagination."""
-type SalesforceOrdersConnection {
- """The count of all Order you could get from the connection."""
- totalCount: Int!
-
- """Pagination Information"""
- pageInfo: PageInfo!
-
- """List of Salesforce Orders"""
- nodes: [SalesforceOrder!]!
-
- """List of Order edges"""
- edges: [SalesforceOrderEdge!]!
-}
-
-"""An edge in a connection."""
-type SalesforceOpportunityEdge {
- """The item at the end of the edge."""
- node: SalesforceOpportunity!
-
- """A cursor for use in pagination"""
- cursor: String!
-}
-
-"""An edge in a connection."""
-type SalesforcePartnerEdge {
- """The item at the end of the edge."""
- node: SalesforcePartner!
-
- """A cursor for use in pagination"""
- cursor: String!
-}
-
-"""
-A filter to be used against Partner object types. All fields are combined with a logical ‘and.’
-"""
-input SalesforcePartnerConnectionFilter {
- """Filter against custom fields."""
- customField: SalesforceCustomFieldFilter
-
- """Filter by the Partner's reversePartner relation."""
- reversePartner: SalesforcePartnerConnectionFilter
-
- """Filter by the Partner's lastModifiedBy relation."""
- lastModifiedBy: SalesforceUserConnectionFilter
-
- """Filter by the Partner's createdBy relation."""
- createdBy: SalesforceUserConnectionFilter
-
- """Filter by the Partner's accountTo relation."""
- accountTo: SalesforceAccountConnectionFilter
-
- """Filter by the Partner's accountFrom relation."""
- accountFrom: SalesforceAccountConnectionFilter
-
- """Filter by the Partner's opportunity relation."""
- opportunity: SalesforceOpportunityConnectionFilter
-
- """Filter by the Partner's id field"""
- id: SalesforceIdFilter
-
- """Filter by the Partner's opportunityId field"""
- opportunityId: SalesforceIdFilter
-
- """Filter by the Partner's accountFromId field"""
- accountFromId: SalesforceIdFilter
-
- """Filter by the Partner's accountToId field"""
- accountToId: SalesforceIdFilter
-
- """Filter by the Partner's role field"""
- role: SalesforceStringFilter
-
- """Filter by the Partner's isPrimary field"""
- isPrimary: SalesforceBooleanFilter
-
- """Filter by the Partner's createdDate field"""
- createdDate: SalesforceDateTimeFilter
-
- """Filter by the Partner's createdById field"""
- createdById: SalesforceIdFilter
-
- """Filter by the Partner's lastModifiedDate field"""
- lastModifiedDate: SalesforceDateTimeFilter
-
- """Filter by the Partner's lastModifiedById field"""
- lastModifiedById: SalesforceIdFilter
-
- """Filter by the Partner's systemModstamp field"""
- systemModstamp: SalesforceDateTimeFilter
-
- """Filter by the Partner's isDeleted field"""
- isDeleted: SalesforceBooleanFilter
-
- """Filter by the Partner's reversePartnerId field"""
- reversePartnerId: SalesforceIdFilter
-
- """Checks for any expressions in this list."""
- or: [SalesforcePartnerConnectionFilter!]
-
- """Checks for all expressions in this list."""
- and: [SalesforcePartnerConnectionFilter!]
-}
-
-"""Field that Partners can be sorted by"""
-enum SalesforcePartnerSortByFieldEnum {
- ID
- OPPORTUNITY_ID
- ACCOUNT_FROM_ID
- ACCOUNT_TO_ID
- ROLE
- IS_PRIMARY
- CREATED_DATE
- CREATED_BY_ID
- LAST_MODIFIED_DATE
- LAST_MODIFIED_BY_ID
- SYSTEM_MODSTAMP
- IS_DELETED
- REVERSE_PARTNER_ID
-}
-
-"""Partner"""
-type SalesforcePartner implements OneGraphNode {
- """Partner ID"""
- id: String!
-
- """Opportunity ID"""
- opportunityId: String
-
- """Opportunity ID"""
- opportunity: SalesforceOpportunity
-
- """Account From ID"""
- accountFromId: String
-
- """Account From ID"""
- accountFrom: SalesforceAccount
-
- """Account To ID"""
- accountToId: String!
-
- """Account To ID"""
- accountTo: SalesforceAccount!
-
- """Role"""
- role: String
-
- """Primary"""
- isPrimary: Boolean!
-
- """Created Date"""
- createdDate: String!
-
- """Created By ID"""
- createdById: String!
-
- """Created By ID"""
- createdBy: SalesforceUser!
-
- """Last Modified Date"""
- lastModifiedDate: String!
-
- """Last Modified By ID"""
- lastModifiedById: String!
-
- """Last Modified By ID"""
- lastModifiedBy: SalesforceUser!
-
- """System Modstamp"""
- systemModstamp: String!
-
- """Deleted"""
- isDeleted: Boolean!
-
- """Reverse Partner ID"""
- reversePartnerId: String
-
- """Reverse Partner ID"""
- reversePartner: SalesforcePartner
-
- """Collection of Salesforce FlowRecordRelation"""
- flowRecordRelations(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceFlowRecordRelationConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceFlowRecordRelationSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceFlowRecordRelationsConnection
-
- """Collection of Salesforce Partner"""
- partners(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforcePartnerConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforcePartnerSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforcePartnerSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of Partners to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforcePartnersConnection
- customFields(
- """
- List of custom fields to return. By default, returns all custom fields.
- """
- fields: [String!]
- ): JSON!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-"""Salesforce Partners connection, for use in pagination."""
-type SalesforcePartnersConnection {
- """The count of all Partner you could get from the connection."""
- totalCount: Int!
-
- """Pagination Information"""
- pageInfo: PageInfo!
-
- """List of Salesforce Partners"""
- nodes: [SalesforcePartner!]!
-
- """List of Partner edges"""
- edges: [SalesforcePartnerEdge!]!
-}
-
-"""
-A filter to be used against OpportunityShare object types. All fields are combined with a logical ‘and.’
-"""
-input SalesforceOpportunityShareConnectionFilter {
- """Filter against custom fields."""
- customField: SalesforceCustomFieldFilter
-
- """Filter by the OpportunityShare's lastModifiedBy relation."""
- lastModifiedBy: SalesforceUserConnectionFilter
-
- """Filter by the OpportunityShare's opportunity relation."""
- opportunity: SalesforceOpportunityConnectionFilter
-
- """Filter by the OpportunityShare's id field"""
- id: SalesforceIdFilter
-
- """Filter by the OpportunityShare's opportunityId field"""
- opportunityId: SalesforceIdFilter
-
- """Filter by the OpportunityShare's userOrGroupId field"""
- userOrGroupId: SalesforceIdFilter
-
- """Filter by the OpportunityShare's opportunityAccessLevel field"""
- opportunityAccessLevel: SalesforceStringFilter
-
- """Filter by the OpportunityShare's rowCause field"""
- rowCause: SalesforceStringFilter
-
- """Filter by the OpportunityShare's lastModifiedDate field"""
- lastModifiedDate: SalesforceDateTimeFilter
-
- """Filter by the OpportunityShare's lastModifiedById field"""
- lastModifiedById: SalesforceIdFilter
-
- """Filter by the OpportunityShare's isDeleted field"""
- isDeleted: SalesforceBooleanFilter
-
- """Checks for any expressions in this list."""
- or: [SalesforceOpportunityShareConnectionFilter!]
-
- """Checks for all expressions in this list."""
- and: [SalesforceOpportunityShareConnectionFilter!]
-}
-
-"""Field that Opportunity Shares can be sorted by"""
-enum SalesforceOpportunityShareSortByFieldEnum {
- ID
- OPPORTUNITY_ID
- USER_OR_GROUP_ID
- OPPORTUNITY_ACCESS_LEVEL
- ROW_CAUSE
- LAST_MODIFIED_DATE
- LAST_MODIFIED_BY_ID
- IS_DELETED
-}
-
-"""An edge in a connection."""
-type SalesforceOpportunityShareEdge {
- """The item at the end of the edge."""
- node: SalesforceOpportunityShare!
-
- """A cursor for use in pagination"""
- cursor: String!
-}
-
-union SalesforceOpportunityShareUserOrGroupUnion = SalesforceUser | SalesforceGroup
-
-"""Opportunity Share"""
-type SalesforceOpportunityShare implements OneGraphNode {
- """Opportunity Share ID"""
- id: String!
-
- """Opportunity ID"""
- opportunityId: String!
-
- """Opportunity ID"""
- opportunity: SalesforceOpportunity!
-
- """User/Group ID"""
- userOrGroupId: String!
-
- """User/Group ID"""
- userOrGroup: SalesforceOpportunityShareUserOrGroupUnion!
-
- """Opportunity Access"""
- opportunityAccessLevel: String!
-
- """Row Cause"""
- rowCause: String
-
- """Last Modified Date"""
- lastModifiedDate: String!
-
- """Last Modified By ID"""
- lastModifiedById: String!
-
- """Last Modified By ID"""
- lastModifiedBy: SalesforceUser!
-
- """Deleted"""
- isDeleted: Boolean!
- customFields(
- """
- List of custom fields to return. By default, returns all custom fields.
- """
- fields: [String!]
- ): JSON!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-"""Salesforce Opportunity Shares connection, for use in pagination."""
-type SalesforceOpportunitySharesConnection {
- """The count of all Opportunity Share you could get from the connection."""
- totalCount: Int!
-
- """Pagination Information"""
- pageInfo: PageInfo!
-
- """List of Salesforce Opportunity Shares"""
- nodes: [SalesforceOpportunityShare!]!
-
- """List of Opportunity Share edges"""
- edges: [SalesforceOpportunityShareEdge!]!
-}
-
-"""An edge in a connection."""
-type SalesforceOpportunityPartnerEdge {
- """The item at the end of the edge."""
- node: SalesforceOpportunityPartner!
-
- """A cursor for use in pagination"""
- cursor: String!
-}
-
-"""
-A filter to be used against OpportunityPartner object types. All fields are combined with a logical ‘and.’
-"""
-input SalesforceOpportunityPartnerConnectionFilter {
- """Filter against custom fields."""
- customField: SalesforceCustomFieldFilter
-
- """Filter by the OpportunityPartner's reversePartner relation."""
- reversePartner: SalesforceOpportunityPartnerConnectionFilter
-
- """Filter by the OpportunityPartner's lastModifiedBy relation."""
- lastModifiedBy: SalesforceUserConnectionFilter
-
- """Filter by the OpportunityPartner's createdBy relation."""
- createdBy: SalesforceUserConnectionFilter
-
- """Filter by the OpportunityPartner's accountTo relation."""
- accountTo: SalesforceAccountConnectionFilter
-
- """Filter by the OpportunityPartner's opportunity relation."""
- opportunity: SalesforceOpportunityConnectionFilter
-
- """Filter by the OpportunityPartner's id field"""
- id: SalesforceIdFilter
-
- """Filter by the OpportunityPartner's opportunityId field"""
- opportunityId: SalesforceIdFilter
-
- """Filter by the OpportunityPartner's accountToId field"""
- accountToId: SalesforceIdFilter
-
- """Filter by the OpportunityPartner's role field"""
- role: SalesforceStringFilter
-
- """Filter by the OpportunityPartner's isPrimary field"""
- isPrimary: SalesforceBooleanFilter
-
- """Filter by the OpportunityPartner's createdDate field"""
- createdDate: SalesforceDateTimeFilter
-
- """Filter by the OpportunityPartner's createdById field"""
- createdById: SalesforceIdFilter
-
- """Filter by the OpportunityPartner's lastModifiedDate field"""
- lastModifiedDate: SalesforceDateTimeFilter
-
- """Filter by the OpportunityPartner's lastModifiedById field"""
- lastModifiedById: SalesforceIdFilter
-
- """Filter by the OpportunityPartner's systemModstamp field"""
- systemModstamp: SalesforceDateTimeFilter
-
- """Filter by the OpportunityPartner's isDeleted field"""
- isDeleted: SalesforceBooleanFilter
-
- """Filter by the OpportunityPartner's reversePartnerId field"""
- reversePartnerId: SalesforceIdFilter
-
- """Checks for any expressions in this list."""
- or: [SalesforceOpportunityPartnerConnectionFilter!]
-
- """Checks for all expressions in this list."""
- and: [SalesforceOpportunityPartnerConnectionFilter!]
-}
-
-"""Field that Opportunity Partners can be sorted by"""
-enum SalesforceOpportunityPartnerSortByFieldEnum {
- ID
- OPPORTUNITY_ID
- ACCOUNT_TO_ID
- ROLE
- IS_PRIMARY
- CREATED_DATE
- CREATED_BY_ID
- LAST_MODIFIED_DATE
- LAST_MODIFIED_BY_ID
- SYSTEM_MODSTAMP
- IS_DELETED
- REVERSE_PARTNER_ID
-}
-
-"""Opportunity Partner"""
-type SalesforceOpportunityPartner implements OneGraphNode {
- """Opportunity Partner ID"""
- id: String!
-
- """Opportunity ID"""
- opportunityId: String!
-
- """Opportunity ID"""
- opportunity: SalesforceOpportunity!
-
- """Account ID"""
- accountToId: String!
-
- """Account ID"""
- accountTo: SalesforceAccount!
-
- """Role"""
- role: String
-
- """Primary"""
- isPrimary: Boolean!
-
- """Created Date"""
- createdDate: String!
-
- """Created By ID"""
- createdById: String!
-
- """Created By ID"""
- createdBy: SalesforceUser!
-
- """Last Modified Date"""
- lastModifiedDate: String!
-
- """Last Modified By ID"""
- lastModifiedById: String!
-
- """Last Modified By ID"""
- lastModifiedBy: SalesforceUser!
-
- """System Modstamp"""
- systemModstamp: String!
-
- """Deleted"""
- isDeleted: Boolean!
-
- """Reverse Partner ID"""
- reversePartnerId: String
-
- """Reverse Partner ID"""
- reversePartner: SalesforceOpportunityPartner
-
- """Collection of Salesforce OpportunityPartner"""
- opportunityPartners(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceOpportunityPartnerConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceOpportunityPartnerSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceOpportunityPartnerSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of OpportunityPartners to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceOpportunityPartnersConnection
- customFields(
- """
- List of custom fields to return. By default, returns all custom fields.
- """
- fields: [String!]
- ): JSON!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-"""Salesforce Opportunity Partners connection, for use in pagination."""
-type SalesforceOpportunityPartnersConnection {
- """
- The count of all Opportunity Partner you could get from the connection.
- """
- totalCount: Int!
-
- """Pagination Information"""
- pageInfo: PageInfo!
-
- """List of Salesforce Opportunity Partners"""
- nodes: [SalesforceOpportunityPartner!]!
-
- """List of Opportunity Partner edges"""
- edges: [SalesforceOpportunityPartnerEdge!]!
-}
-
-"""
-A filter to be used against OpportunityHistory object types. All fields are combined with a logical ‘and.’
-"""
-input SalesforceOpportunityHistoryConnectionFilter {
- """Filter against custom fields."""
- customField: SalesforceCustomFieldFilter
-
- """Filter by the OpportunityHistory's createdBy relation."""
- createdBy: SalesforceUserConnectionFilter
-
- """Filter by the OpportunityHistory's opportunity relation."""
- opportunity: SalesforceOpportunityConnectionFilter
-
- """Filter by the OpportunityHistory's id field"""
- id: SalesforceIdFilter
-
- """Filter by the OpportunityHistory's opportunityId field"""
- opportunityId: SalesforceIdFilter
-
- """Filter by the OpportunityHistory's createdById field"""
- createdById: SalesforceIdFilter
-
- """Filter by the OpportunityHistory's createdDate field"""
- createdDate: SalesforceDateTimeFilter
-
- """Filter by the OpportunityHistory's stageName field"""
- stageName: SalesforceStringFilter
-
- """Filter by the OpportunityHistory's amount field"""
- amount: SalesforceFloatFilter
-
- """Filter by the OpportunityHistory's expectedRevenue field"""
- expectedRevenue: SalesforceFloatFilter
-
- """Filter by the OpportunityHistory's closeDate field"""
- closeDate: SalesforceDateFilter
-
- """Filter by the OpportunityHistory's probability field"""
- probability: SalesforceFloatFilter
-
- """Filter by the OpportunityHistory's forecastCategory field"""
- forecastCategory: SalesforceStringFilter
-
- """Filter by the OpportunityHistory's systemModstamp field"""
- systemModstamp: SalesforceDateTimeFilter
-
- """Filter by the OpportunityHistory's isDeleted field"""
- isDeleted: SalesforceBooleanFilter
-
- """Checks for any expressions in this list."""
- or: [SalesforceOpportunityHistoryConnectionFilter!]
-
- """Checks for all expressions in this list."""
- and: [SalesforceOpportunityHistoryConnectionFilter!]
-}
-
-"""Field that Opportunity Histories can be sorted by"""
-enum SalesforceOpportunityHistorySortByFieldEnum {
- ID
- OPPORTUNITY_ID
- CREATED_BY_ID
- CREATED_DATE
- STAGE_NAME
- AMOUNT
- EXPECTED_REVENUE
- CLOSE_DATE
- PROBABILITY
- FORECAST_CATEGORY
- SYSTEM_MODSTAMP
- IS_DELETED
-}
-
-"""An edge in a connection."""
-type SalesforceOpportunityHistoryEdge {
- """The item at the end of the edge."""
- node: SalesforceOpportunityHistory!
-
- """A cursor for use in pagination"""
- cursor: String!
-}
-
-"""Opportunity History"""
-type SalesforceOpportunityHistory implements OneGraphNode {
- """Opportunity History ID"""
- id: String!
-
- """Opportunity ID"""
- opportunityId: String!
-
- """Opportunity ID"""
- opportunity: SalesforceOpportunity!
-
- """Created By ID"""
- createdById: String!
-
- """Created By ID"""
- createdBy: SalesforceUser!
-
- """Created Date"""
- createdDate: String!
-
- """Stage Name"""
- stageName: String!
-
- """Amount"""
- amount: Float
-
- """Expected Revenue"""
- expectedRevenue: Float
-
- """Close Date"""
- closeDate: String
-
- """Probability"""
- probability: Float
-
- """To ForecastCategory"""
- forecastCategory: String
-
- """System Modstamp"""
- systemModstamp: String!
-
- """Deleted"""
- isDeleted: Boolean!
- customFields(
- """
- List of custom fields to return. By default, returns all custom fields.
- """
- fields: [String!]
- ): JSON!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-"""Salesforce Opportunity Histories connection, for use in pagination."""
-type SalesforceOpportunityHistorysConnection {
- """
- The count of all Opportunity History you could get from the connection.
- """
- totalCount: Int!
-
- """Pagination Information"""
- pageInfo: PageInfo!
-
- """List of Salesforce Opportunity Histories"""
- nodes: [SalesforceOpportunityHistory!]!
-
- """List of Opportunity History edges"""
- edges: [SalesforceOpportunityHistoryEdge!]!
-}
-
-"""
-A filter to be used against OpportunityFieldHistory object types. All fields are combined with a logical ‘and.’
-"""
-input SalesforceOpportunityFieldHistoryConnectionFilter {
- """Filter against custom fields."""
- customField: SalesforceCustomFieldFilter
-
- """Filter by the OpportunityFieldHistory's createdBy relation."""
- createdBy: SalesforceUserConnectionFilter
-
- """Filter by the OpportunityFieldHistory's opportunity relation."""
- opportunity: SalesforceOpportunityConnectionFilter
-
- """Filter by the OpportunityFieldHistory's id field"""
- id: SalesforceIdFilter
-
- """Filter by the OpportunityFieldHistory's isDeleted field"""
- isDeleted: SalesforceBooleanFilter
-
- """Filter by the OpportunityFieldHistory's opportunityId field"""
- opportunityId: SalesforceIdFilter
-
- """Filter by the OpportunityFieldHistory's createdById field"""
- createdById: SalesforceIdFilter
-
- """Filter by the OpportunityFieldHistory's createdDate field"""
- createdDate: SalesforceDateTimeFilter
-
- """Filter by the OpportunityFieldHistory's field field"""
- field: SalesforceStringFilter
-
- """Checks for any expressions in this list."""
- or: [SalesforceOpportunityFieldHistoryConnectionFilter!]
-
- """Checks for all expressions in this list."""
- and: [SalesforceOpportunityFieldHistoryConnectionFilter!]
-}
-
-"""Field that Opportunity Field Histories can be sorted by"""
-enum SalesforceOpportunityFieldHistorySortByFieldEnum {
- ID
- IS_DELETED
- OPPORTUNITY_ID
- CREATED_BY_ID
- CREATED_DATE
- FIELD
- OLD_VALUE
- NEW_VALUE
-}
-
-"""An edge in a connection."""
-type SalesforceOpportunityFieldHistoryEdge {
- """The item at the end of the edge."""
- node: SalesforceOpportunityFieldHistory!
-
- """A cursor for use in pagination"""
- cursor: String!
-}
-
-"""Opportunity Field History"""
-type SalesforceOpportunityFieldHistory implements OneGraphNode {
- """Opportunity History ID"""
- id: String!
-
- """Deleted"""
- isDeleted: Boolean!
-
- """Opportunity ID"""
- opportunityId: String!
-
- """Opportunity ID"""
- opportunity: SalesforceOpportunity!
-
- """Created By ID"""
- createdById: String!
-
- """Created By ID"""
- createdBy: SalesforceUser!
-
- """Created Date"""
- createdDate: String!
-
- """Changed Field"""
- field: String!
-
- """Old Value"""
- oldValue: String
-
- """New Value"""
- newValue: String
- customFields(
- """
- List of custom fields to return. By default, returns all custom fields.
- """
- fields: [String!]
- ): JSON!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-"""
-Salesforce Opportunity Field Histories connection, for use in pagination.
-"""
-type SalesforceOpportunityFieldHistorysConnection {
- """
- The count of all Opportunity Field History you could get from the connection.
- """
- totalCount: Int!
-
- """Pagination Information"""
- pageInfo: PageInfo!
-
- """List of Salesforce Opportunity Field Histories"""
- nodes: [SalesforceOpportunityFieldHistory!]!
-
- """List of Opportunity Field History edges"""
- edges: [SalesforceOpportunityFieldHistoryEdge!]!
-}
-
-"""
-A filter to be used against OpportunityFeed object types. All fields are combined with a logical ‘and.’
-"""
-input SalesforceOpportunityFeedConnectionFilter {
- """Filter against custom fields."""
- customField: SalesforceCustomFieldFilter
-
- """Filter by the OpportunityFeed's insertedBy relation."""
- insertedBy: SalesforceUserConnectionFilter
-
- """Filter by the OpportunityFeed's relatedRecord relation."""
- relatedRecord: SalesforceContentVersionConnectionFilter
-
- """Filter by the OpportunityFeed's createdBy relation."""
- createdBy: SalesforceUserConnectionFilter
-
- """Filter by the OpportunityFeed's parent relation."""
- parent: SalesforceOpportunityConnectionFilter
-
- """Filter by the OpportunityFeed's id field"""
- id: SalesforceIdFilter
-
- """Filter by the OpportunityFeed's parentId field"""
- parentId: SalesforceIdFilter
-
- """Filter by the OpportunityFeed's type field"""
- type: SalesforceStringFilter
-
- """Filter by the OpportunityFeed's createdById field"""
- createdById: SalesforceIdFilter
-
- """Filter by the OpportunityFeed's createdDate field"""
- createdDate: SalesforceDateTimeFilter
-
- """Filter by the OpportunityFeed's isDeleted field"""
- isDeleted: SalesforceBooleanFilter
-
- """Filter by the OpportunityFeed's lastModifiedDate field"""
- lastModifiedDate: SalesforceDateTimeFilter
-
- """Filter by the OpportunityFeed's systemModstamp field"""
- systemModstamp: SalesforceDateTimeFilter
-
- """Filter by the OpportunityFeed's commentCount field"""
- commentCount: SalesforceIntFilter
-
- """Filter by the OpportunityFeed's likeCount field"""
- likeCount: SalesforceIntFilter
-
- """Filter by the OpportunityFeed's isRichText field"""
- isRichText: SalesforceBooleanFilter
-
- """Checks for any expressions in this list."""
- or: [SalesforceOpportunityFeedConnectionFilter!]
-
- """Checks for all expressions in this list."""
- and: [SalesforceOpportunityFeedConnectionFilter!]
-}
-
-"""Field that Opportunity Feeds can be sorted by"""
-enum SalesforceOpportunityFeedSortByFieldEnum {
- ID
- PARENT_ID
- TYPE
- CREATED_BY_ID
- CREATED_DATE
- IS_DELETED
- LAST_MODIFIED_DATE
- SYSTEM_MODSTAMP
- COMMENT_COUNT
- LIKE_COUNT
- TITLE
- BODY
- LINK_URL
- IS_RICH_TEXT
- RELATED_RECORD_ID
- INSERTED_BY_ID
-}
-
-"""An edge in a connection."""
-type SalesforceOpportunityFeedEdge {
- """The item at the end of the edge."""
- node: SalesforceOpportunityFeed!
-
- """A cursor for use in pagination"""
- cursor: String!
-}
-
-"""Salesforce Opportunity Feeds connection, for use in pagination."""
-type SalesforceOpportunityFeedsConnection {
- """The count of all Opportunity Feed you could get from the connection."""
- totalCount: Int!
-
- """Pagination Information"""
- pageInfo: PageInfo!
-
- """List of Salesforce Opportunity Feeds"""
- nodes: [SalesforceOpportunityFeed!]!
-
- """List of Opportunity Feed edges"""
- edges: [SalesforceOpportunityFeedEdge!]!
-}
-
-"""
-A filter to be used against OpportunityContactRole object types. All fields are combined with a logical ‘and.’
-"""
-input SalesforceOpportunityContactRoleConnectionFilter {
- """Filter against custom fields."""
- customField: SalesforceCustomFieldFilter
-
- """Filter by the OpportunityContactRole's lastModifiedBy relation."""
- lastModifiedBy: SalesforceUserConnectionFilter
-
- """Filter by the OpportunityContactRole's createdBy relation."""
- createdBy: SalesforceUserConnectionFilter
-
- """Filter by the OpportunityContactRole's contact relation."""
- contact: SalesforceContactConnectionFilter
-
- """Filter by the OpportunityContactRole's opportunity relation."""
- opportunity: SalesforceOpportunityConnectionFilter
-
- """Filter by the OpportunityContactRole's id field"""
- id: SalesforceIdFilter
-
- """Filter by the OpportunityContactRole's opportunityId field"""
- opportunityId: SalesforceIdFilter
-
- """Filter by the OpportunityContactRole's contactId field"""
- contactId: SalesforceIdFilter
-
- """Filter by the OpportunityContactRole's role field"""
- role: SalesforceStringFilter
-
- """Filter by the OpportunityContactRole's isPrimary field"""
- isPrimary: SalesforceBooleanFilter
-
- """Filter by the OpportunityContactRole's createdDate field"""
- createdDate: SalesforceDateTimeFilter
-
- """Filter by the OpportunityContactRole's createdById field"""
- createdById: SalesforceIdFilter
-
- """Filter by the OpportunityContactRole's lastModifiedDate field"""
- lastModifiedDate: SalesforceDateTimeFilter
-
- """Filter by the OpportunityContactRole's lastModifiedById field"""
- lastModifiedById: SalesforceIdFilter
-
- """Filter by the OpportunityContactRole's systemModstamp field"""
- systemModstamp: SalesforceDateTimeFilter
-
- """Filter by the OpportunityContactRole's isDeleted field"""
- isDeleted: SalesforceBooleanFilter
-
- """Checks for any expressions in this list."""
- or: [SalesforceOpportunityContactRoleConnectionFilter!]
-
- """Checks for all expressions in this list."""
- and: [SalesforceOpportunityContactRoleConnectionFilter!]
-}
-
-"""Field that Opportunity Contact Roles can be sorted by"""
-enum SalesforceOpportunityContactRoleSortByFieldEnum {
- ID
- OPPORTUNITY_ID
- CONTACT_ID
- ROLE
- IS_PRIMARY
- CREATED_DATE
- CREATED_BY_ID
- LAST_MODIFIED_DATE
- LAST_MODIFIED_BY_ID
- SYSTEM_MODSTAMP
- IS_DELETED
-}
-
-"""An edge in a connection."""
-type SalesforceOpportunityContactRoleEdge {
- """The item at the end of the edge."""
- node: SalesforceOpportunityContactRole!
-
- """A cursor for use in pagination"""
- cursor: String!
-}
-
-"""Opportunity Contact Role"""
-type SalesforceOpportunityContactRole implements OneGraphNode {
- """Contact Role ID"""
- id: String!
-
- """Opportunity ID"""
- opportunityId: String!
-
- """Opportunity ID"""
- opportunity: SalesforceOpportunity!
-
- """Contact ID"""
- contactId: String!
-
- """Contact ID"""
- contact: SalesforceContact!
-
- """Role"""
- role: String
-
- """Primary"""
- isPrimary: Boolean!
-
- """Created Date"""
- createdDate: String!
-
- """Created By ID"""
- createdById: String!
-
- """Created By ID"""
- createdBy: SalesforceUser!
-
- """Last Modified Date"""
- lastModifiedDate: String!
-
- """Last Modified By ID"""
- lastModifiedById: String!
-
- """Last Modified By ID"""
- lastModifiedBy: SalesforceUser!
-
- """System Modstamp"""
- systemModstamp: String!
-
- """Deleted"""
- isDeleted: Boolean!
-
- """Collection of Salesforce FlowRecordRelation"""
- flowRecordRelations(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceFlowRecordRelationConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceFlowRecordRelationSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceFlowRecordRelationsConnection
- customFields(
- """
- List of custom fields to return. By default, returns all custom fields.
- """
- fields: [String!]
- ): JSON!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-"""
-Salesforce Opportunity Contact Roles connection, for use in pagination.
-"""
-type SalesforceOpportunityContactRolesConnection {
- """
- The count of all Opportunity Contact Role you could get from the connection.
- """
- totalCount: Int!
-
- """Pagination Information"""
- pageInfo: PageInfo!
-
- """List of Salesforce Opportunity Contact Roles"""
- nodes: [SalesforceOpportunityContactRole!]!
-
- """List of Opportunity Contact Role edges"""
- edges: [SalesforceOpportunityContactRoleEdge!]!
-}
-
-"""
-A filter to be used against OpportunityCompetitor object types. All fields are combined with a logical ‘and.’
-"""
-input SalesforceOpportunityCompetitorConnectionFilter {
- """Filter against custom fields."""
- customField: SalesforceCustomFieldFilter
-
- """Filter by the OpportunityCompetitor's lastModifiedBy relation."""
- lastModifiedBy: SalesforceUserConnectionFilter
-
- """Filter by the OpportunityCompetitor's createdBy relation."""
- createdBy: SalesforceUserConnectionFilter
-
- """Filter by the OpportunityCompetitor's opportunity relation."""
- opportunity: SalesforceOpportunityConnectionFilter
-
- """Filter by the OpportunityCompetitor's id field"""
- id: SalesforceIdFilter
-
- """Filter by the OpportunityCompetitor's opportunityId field"""
- opportunityId: SalesforceIdFilter
-
- """Filter by the OpportunityCompetitor's strengths field"""
- strengths: SalesforceStringFilter
-
- """Filter by the OpportunityCompetitor's weaknesses field"""
- weaknesses: SalesforceStringFilter
-
- """Filter by the OpportunityCompetitor's createdById field"""
- createdById: SalesforceIdFilter
-
- """Filter by the OpportunityCompetitor's createdDate field"""
- createdDate: SalesforceDateTimeFilter
-
- """Filter by the OpportunityCompetitor's lastModifiedById field"""
- lastModifiedById: SalesforceIdFilter
-
- """Filter by the OpportunityCompetitor's lastModifiedDate field"""
- lastModifiedDate: SalesforceDateTimeFilter
-
- """Filter by the OpportunityCompetitor's systemModstamp field"""
- systemModstamp: SalesforceDateTimeFilter
-
- """Filter by the OpportunityCompetitor's isDeleted field"""
- isDeleted: SalesforceBooleanFilter
-
- """Checks for any expressions in this list."""
- or: [SalesforceOpportunityCompetitorConnectionFilter!]
-
- """Checks for all expressions in this list."""
- and: [SalesforceOpportunityCompetitorConnectionFilter!]
-}
-
-"""Field that Opportunity: Competitors can be sorted by"""
-enum SalesforceOpportunityCompetitorSortByFieldEnum {
- ID
- OPPORTUNITY_ID
- COMPETITOR_NAME
- STRENGTHS
- WEAKNESSES
- CREATED_BY_ID
- CREATED_DATE
- LAST_MODIFIED_BY_ID
- LAST_MODIFIED_DATE
- SYSTEM_MODSTAMP
- IS_DELETED
-}
-
-"""An edge in a connection."""
-type SalesforceOpportunityCompetitorEdge {
- """The item at the end of the edge."""
- node: SalesforceOpportunityCompetitor!
-
- """A cursor for use in pagination"""
- cursor: String!
-}
-
-"""Opportunity: Competitor"""
-type SalesforceOpportunityCompetitor implements OneGraphNode {
- """Opportunity: Competitor ID"""
- id: String!
-
- """Opportunity ID"""
- opportunityId: String!
-
- """Opportunity ID"""
- opportunity: SalesforceOpportunity!
-
- """Competitor Name"""
- competitorName: String
-
- """Strengths"""
- strengths: String
-
- """Weaknesses"""
- weaknesses: String
-
- """Created By ID"""
- createdById: String!
-
- """Created By ID"""
- createdBy: SalesforceUser!
-
- """Created Date"""
- createdDate: String!
-
- """Last Modified By ID"""
- lastModifiedById: String!
-
- """Last Modified By ID"""
- lastModifiedBy: SalesforceUser!
-
- """Last Modified Date"""
- lastModifiedDate: String!
-
- """System Modstamp"""
- systemModstamp: String!
-
- """Deleted"""
- isDeleted: Boolean!
- customFields(
- """
- List of custom fields to return. By default, returns all custom fields.
- """
- fields: [String!]
- ): JSON!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-"""Salesforce Opportunity: Competitors connection, for use in pagination."""
-type SalesforceOpportunityCompetitorsConnection {
- """
- The count of all Opportunity: Competitor you could get from the connection.
- """
- totalCount: Int!
-
- """Pagination Information"""
- pageInfo: PageInfo!
-
- """List of Salesforce Opportunity: Competitors"""
- nodes: [SalesforceOpportunityCompetitor!]!
-
- """List of Opportunity: Competitor edges"""
- edges: [SalesforceOpportunityCompetitorEdge!]!
-}
-
-"""Field that Leads can be sorted by"""
-enum SalesforceLeadSortByFieldEnum {
- ID
- IS_DELETED
- MASTER_RECORD_ID
- LAST_NAME
- FIRST_NAME
- SALUTATION
- NAME
- TITLE
- COMPANY
- STREET
- CITY
- STATE
- POSTAL_CODE
- COUNTRY
- LATITUDE
- LONGITUDE
- GEOCODE_ACCURACY
- PHONE
- MOBILE_PHONE
- FAX
- EMAIL
- WEBSITE
- PHOTO_URL
- LEAD_SOURCE
- STATUS
- INDUSTRY
- RATING
- ANNUAL_REVENUE
- NUMBER_OF_EMPLOYEES
- OWNER_ID
- IS_CONVERTED
- CONVERTED_DATE
- CONVERTED_ACCOUNT_ID
- CONVERTED_CONTACT_ID
- CONVERTED_OPPORTUNITY_ID
- IS_UNREAD_BY_OWNER
- CREATED_DATE
- CREATED_BY_ID
- LAST_MODIFIED_DATE
- LAST_MODIFIED_BY_ID
- SYSTEM_MODSTAMP
- LAST_ACTIVITY_DATE
- LAST_VIEWED_DATE
- LAST_REFERENCED_DATE
- JIGSAW
- JIGSAW_CONTACT_ID
- CLEAN_STATUS
- COMPANY_DUNS_NUMBER
- DANDB_COMPANY_ID
- EMAIL_BOUNCED_REASON
- EMAIL_BOUNCED_DATE
-}
-
-"""An edge in a connection."""
-type SalesforceLeadEdge {
- """The item at the end of the edge."""
- node: SalesforceLead!
-
- """A cursor for use in pagination"""
- cursor: String!
-}
-
-"""Salesforce Leads connection, for use in pagination."""
-type SalesforceLeadsConnection {
- """The count of all Lead you could get from the connection."""
- totalCount: Int!
-
- """Pagination Information"""
- pageInfo: PageInfo!
-
- """List of Salesforce Leads"""
- nodes: [SalesforceLead!]!
-
- """List of Lead edges"""
- edges: [SalesforceLeadEdge!]!
-}
-
-"""An edge in a connection."""
-type SalesforceAccountPartnerEdge {
- """The item at the end of the edge."""
- node: SalesforceAccountPartner!
-
- """A cursor for use in pagination"""
- cursor: String!
-}
-
-"""
-A filter to be used against AccountPartner object types. All fields are combined with a logical ‘and.’
-"""
-input SalesforceAccountPartnerConnectionFilter {
- """Filter against custom fields."""
- customField: SalesforceCustomFieldFilter
-
- """Filter by the AccountPartner's reversePartner relation."""
- reversePartner: SalesforceAccountPartnerConnectionFilter
-
- """Filter by the AccountPartner's lastModifiedBy relation."""
- lastModifiedBy: SalesforceUserConnectionFilter
-
- """Filter by the AccountPartner's createdBy relation."""
- createdBy: SalesforceUserConnectionFilter
-
- """Filter by the AccountPartner's opportunity relation."""
- opportunity: SalesforceOpportunityConnectionFilter
-
- """Filter by the AccountPartner's accountTo relation."""
- accountTo: SalesforceAccountConnectionFilter
-
- """Filter by the AccountPartner's accountFrom relation."""
- accountFrom: SalesforceAccountConnectionFilter
-
- """Filter by the AccountPartner's id field"""
- id: SalesforceIdFilter
-
- """Filter by the AccountPartner's accountFromId field"""
- accountFromId: SalesforceIdFilter
-
- """Filter by the AccountPartner's accountToId field"""
- accountToId: SalesforceIdFilter
-
- """Filter by the AccountPartner's opportunityId field"""
- opportunityId: SalesforceIdFilter
-
- """Filter by the AccountPartner's role field"""
- role: SalesforceStringFilter
-
- """Filter by the AccountPartner's isPrimary field"""
- isPrimary: SalesforceBooleanFilter
-
- """Filter by the AccountPartner's createdDate field"""
- createdDate: SalesforceDateTimeFilter
-
- """Filter by the AccountPartner's createdById field"""
- createdById: SalesforceIdFilter
-
- """Filter by the AccountPartner's lastModifiedDate field"""
- lastModifiedDate: SalesforceDateTimeFilter
-
- """Filter by the AccountPartner's lastModifiedById field"""
- lastModifiedById: SalesforceIdFilter
-
- """Filter by the AccountPartner's systemModstamp field"""
- systemModstamp: SalesforceDateTimeFilter
-
- """Filter by the AccountPartner's isDeleted field"""
- isDeleted: SalesforceBooleanFilter
-
- """Filter by the AccountPartner's reversePartnerId field"""
- reversePartnerId: SalesforceIdFilter
-
- """Checks for any expressions in this list."""
- or: [SalesforceAccountPartnerConnectionFilter!]
-
- """Checks for all expressions in this list."""
- and: [SalesforceAccountPartnerConnectionFilter!]
-}
-
-"""Field that Account Partners can be sorted by"""
-enum SalesforceAccountPartnerSortByFieldEnum {
- ID
- ACCOUNT_FROM_ID
- ACCOUNT_TO_ID
- OPPORTUNITY_ID
- ROLE
- IS_PRIMARY
- CREATED_DATE
- CREATED_BY_ID
- LAST_MODIFIED_DATE
- LAST_MODIFIED_BY_ID
- SYSTEM_MODSTAMP
- IS_DELETED
- REVERSE_PARTNER_ID
-}
-
-"""Account Partner"""
-type SalesforceAccountPartner implements OneGraphNode {
- """Account Partner ID"""
- id: String!
-
- """Account ID"""
- accountFromId: String!
-
- """Account ID"""
- accountFrom: SalesforceAccount!
-
- """Account ID"""
- accountToId: String
-
- """Account ID"""
- accountTo: SalesforceAccount
-
- """Opportunity ID"""
- opportunityId: String
-
- """Opportunity ID"""
- opportunity: SalesforceOpportunity
-
- """Role"""
- role: String
-
- """Primary"""
- isPrimary: Boolean!
-
- """Created Date"""
- createdDate: String!
-
- """Created By ID"""
- createdById: String!
-
- """Created By ID"""
- createdBy: SalesforceUser!
-
- """Last Modified Date"""
- lastModifiedDate: String!
-
- """Last Modified By ID"""
- lastModifiedById: String!
-
- """Last Modified By ID"""
- lastModifiedBy: SalesforceUser!
-
- """System Modstamp"""
- systemModstamp: String!
-
- """Deleted"""
- isDeleted: Boolean!
-
- """Reverse Partner ID"""
- reversePartnerId: String
-
- """Reverse Partner ID"""
- reversePartner: SalesforceAccountPartner
-
- """Collection of Salesforce AccountPartner"""
- accountPartners(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceAccountPartnerConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceAccountPartnerSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceAccountPartnerSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of AccountPartners to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceAccountPartnersConnection
- customFields(
- """
- List of custom fields to return. By default, returns all custom fields.
- """
- fields: [String!]
- ): JSON!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-"""Salesforce Account Partners connection, for use in pagination."""
-type SalesforceAccountPartnersConnection {
- """The count of all Account Partner you could get from the connection."""
- totalCount: Int!
-
- """Pagination Information"""
- pageInfo: PageInfo!
-
- """List of Salesforce Account Partners"""
- nodes: [SalesforceAccountPartner!]!
-
- """List of Account Partner edges"""
- edges: [SalesforceAccountPartnerEdge!]!
-}
-
-"""Field that Opportunities can be sorted by"""
-enum SalesforceOpportunitySortByFieldEnum {
- ID
- IS_DELETED
- ACCOUNT_ID
- IS_PRIVATE
- NAME
- STAGE_NAME
- AMOUNT
- PROBABILITY
- EXPECTED_REVENUE
- TOTAL_OPPORTUNITY_QUANTITY
- CLOSE_DATE
- TYPE
- NEXT_STEP
- LEAD_SOURCE
- IS_CLOSED
- IS_WON
- FORECAST_CATEGORY
- FORECAST_CATEGORY_NAME
- CAMPAIGN_ID
- HAS_OPPORTUNITY_LINE_ITEM
- PRICEBOOK_2_ID
- OWNER_ID
- CREATED_DATE
- CREATED_BY_ID
- LAST_MODIFIED_DATE
- LAST_MODIFIED_BY_ID
- SYSTEM_MODSTAMP
- LAST_ACTIVITY_DATE
- FISCAL_QUARTER
- FISCAL_YEAR
- FISCAL
- LAST_VIEWED_DATE
- LAST_REFERENCED_DATE
-}
-
-"""
-A filter to be used against CampaignShare object types. All fields are combined with a logical ‘and.’
-"""
-input SalesforceCampaignShareConnectionFilter {
- """Filter against custom fields."""
- customField: SalesforceCustomFieldFilter
-
- """Filter by the CampaignShare's lastModifiedBy relation."""
- lastModifiedBy: SalesforceUserConnectionFilter
-
- """Filter by the CampaignShare's campaign relation."""
- campaign: SalesforceCampaignConnectionFilter
-
- """Filter by the CampaignShare's id field"""
- id: SalesforceIdFilter
-
- """Filter by the CampaignShare's campaignId field"""
- campaignId: SalesforceIdFilter
-
- """Filter by the CampaignShare's userOrGroupId field"""
- userOrGroupId: SalesforceIdFilter
-
- """Filter by the CampaignShare's campaignAccessLevel field"""
- campaignAccessLevel: SalesforceStringFilter
-
- """Filter by the CampaignShare's rowCause field"""
- rowCause: SalesforceStringFilter
-
- """Filter by the CampaignShare's lastModifiedDate field"""
- lastModifiedDate: SalesforceDateTimeFilter
-
- """Filter by the CampaignShare's lastModifiedById field"""
- lastModifiedById: SalesforceIdFilter
-
- """Filter by the CampaignShare's isDeleted field"""
- isDeleted: SalesforceBooleanFilter
-
- """Checks for any expressions in this list."""
- or: [SalesforceCampaignShareConnectionFilter!]
-
- """Checks for all expressions in this list."""
- and: [SalesforceCampaignShareConnectionFilter!]
-}
-
-"""Field that Campaign Shares can be sorted by"""
-enum SalesforceCampaignShareSortByFieldEnum {
- ID
- CAMPAIGN_ID
- USER_OR_GROUP_ID
- CAMPAIGN_ACCESS_LEVEL
- ROW_CAUSE
- LAST_MODIFIED_DATE
- LAST_MODIFIED_BY_ID
- IS_DELETED
-}
-
-"""An edge in a connection."""
-type SalesforceCampaignShareEdge {
- """The item at the end of the edge."""
- node: SalesforceCampaignShare!
-
- """A cursor for use in pagination"""
- cursor: String!
-}
-
-union SalesforceCampaignShareUserOrGroupUnion = SalesforceUser | SalesforceGroup
-
-"""Campaign Share"""
-type SalesforceCampaignShare implements OneGraphNode {
- """Campaign Share ID"""
- id: String!
-
- """Campaign ID"""
- campaignId: String!
-
- """Campaign ID"""
- campaign: SalesforceCampaign!
-
- """User/Group ID"""
- userOrGroupId: String!
-
- """User/Group ID"""
- userOrGroup: SalesforceCampaignShareUserOrGroupUnion!
-
- """Campaign Access"""
- campaignAccessLevel: String!
-
- """Row Cause"""
- rowCause: String
-
- """Last Modified Date"""
- lastModifiedDate: String!
-
- """Last Modified By ID"""
- lastModifiedById: String!
-
- """Last Modified By ID"""
- lastModifiedBy: SalesforceUser!
-
- """Deleted"""
- isDeleted: Boolean!
- customFields(
- """
- List of custom fields to return. By default, returns all custom fields.
- """
- fields: [String!]
- ): JSON!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-"""Salesforce Campaign Shares connection, for use in pagination."""
-type SalesforceCampaignSharesConnection {
- """The count of all Campaign Share you could get from the connection."""
- totalCount: Int!
-
- """Pagination Information"""
- pageInfo: PageInfo!
-
- """List of Salesforce Campaign Shares"""
- nodes: [SalesforceCampaignShare!]!
-
- """List of Campaign Share edges"""
- edges: [SalesforceCampaignShareEdge!]!
-}
-
-"""
-A filter to be used against CampaignMemberStatus object types. All fields are combined with a logical ‘and.’
-"""
-input SalesforceCampaignMemberStatusConnectionFilter {
- """Filter against custom fields."""
- customField: SalesforceCustomFieldFilter
-
- """Filter by the CampaignMemberStatus's lastModifiedBy relation."""
- lastModifiedBy: SalesforceUserConnectionFilter
-
- """Filter by the CampaignMemberStatus's createdBy relation."""
- createdBy: SalesforceUserConnectionFilter
-
- """Filter by the CampaignMemberStatus's campaign relation."""
- campaign: SalesforceCampaignConnectionFilter
-
- """Filter by the CampaignMemberStatus's id field"""
- id: SalesforceIdFilter
-
- """Filter by the CampaignMemberStatus's isDeleted field"""
- isDeleted: SalesforceBooleanFilter
-
- """Filter by the CampaignMemberStatus's campaignId field"""
- campaignId: SalesforceIdFilter
-
- """Filter by the CampaignMemberStatus's label field"""
- label: SalesforceStringFilter
-
- """Filter by the CampaignMemberStatus's sortOrder field"""
- sortOrder: SalesforceIntFilter
-
- """Filter by the CampaignMemberStatus's isDefault field"""
- isDefault: SalesforceBooleanFilter
-
- """Filter by the CampaignMemberStatus's hasResponded field"""
- hasResponded: SalesforceBooleanFilter
-
- """Filter by the CampaignMemberStatus's createdDate field"""
- createdDate: SalesforceDateTimeFilter
-
- """Filter by the CampaignMemberStatus's createdById field"""
- createdById: SalesforceIdFilter
-
- """Filter by the CampaignMemberStatus's lastModifiedDate field"""
- lastModifiedDate: SalesforceDateTimeFilter
-
- """Filter by the CampaignMemberStatus's lastModifiedById field"""
- lastModifiedById: SalesforceIdFilter
-
- """Filter by the CampaignMemberStatus's systemModstamp field"""
- systemModstamp: SalesforceDateTimeFilter
-
- """Checks for any expressions in this list."""
- or: [SalesforceCampaignMemberStatusConnectionFilter!]
-
- """Checks for all expressions in this list."""
- and: [SalesforceCampaignMemberStatusConnectionFilter!]
-}
-
-"""Field that Campaign Member Statuses can be sorted by"""
-enum SalesforceCampaignMemberStatusSortByFieldEnum {
- ID
- IS_DELETED
- CAMPAIGN_ID
- LABEL
- SORT_ORDER
- IS_DEFAULT
- HAS_RESPONDED
- CREATED_DATE
- CREATED_BY_ID
- LAST_MODIFIED_DATE
- LAST_MODIFIED_BY_ID
- SYSTEM_MODSTAMP
-}
-
-"""An edge in a connection."""
-type SalesforceCampaignMemberStatusEdge {
- """The item at the end of the edge."""
- node: SalesforceCampaignMemberStatus!
-
- """A cursor for use in pagination"""
- cursor: String!
-}
-
-"""Campaign Member Status"""
-type SalesforceCampaignMemberStatus implements OneGraphNode {
- """Campaign Member Status ID"""
- id: String!
-
- """Deleted"""
- isDeleted: Boolean!
-
- """Campaign ID"""
- campaignId: String!
-
- """Campaign ID"""
- campaign: SalesforceCampaign!
-
- """Member Status"""
- label: String!
-
- """Sort Order"""
- sortOrder: Int
-
- """Is Default"""
- isDefault: Boolean!
-
- """Responded"""
- hasResponded: Boolean!
-
- """Created Date"""
- createdDate: String!
-
- """Created By ID"""
- createdById: String!
-
- """Created By ID"""
- createdBy: SalesforceUser!
-
- """Last Modified Date"""
- lastModifiedDate: String!
-
- """Last Modified By ID"""
- lastModifiedById: String!
-
- """Last Modified By ID"""
- lastModifiedBy: SalesforceUser!
-
- """System Modstamp"""
- systemModstamp: String!
- customFields(
- """
- List of custom fields to return. By default, returns all custom fields.
- """
- fields: [String!]
- ): JSON!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-"""Salesforce Campaign Member Statuses connection, for use in pagination."""
-type SalesforceCampaignMemberStatussConnection {
- """
- The count of all Campaign Member Status you could get from the connection.
- """
- totalCount: Int!
-
- """Pagination Information"""
- pageInfo: PageInfo!
-
- """List of Salesforce Campaign Member Statuses"""
- nodes: [SalesforceCampaignMemberStatus!]!
-
- """List of Campaign Member Status edges"""
- edges: [SalesforceCampaignMemberStatusEdge!]!
-}
-
-"""
-A filter to be used against Lead object types. All fields are combined with a logical ‘and.’
-"""
-input SalesforceLeadConnectionFilter {
- """Filter against custom fields."""
- customField: SalesforceCustomFieldFilter
-
- """Filter by the Lead's dandbCompany relation."""
- dandbCompany: SalesforceDandBCompanyConnectionFilter
-
- """Filter by the Lead's lastModifiedBy relation."""
- lastModifiedBy: SalesforceUserConnectionFilter
-
- """Filter by the Lead's createdBy relation."""
- createdBy: SalesforceUserConnectionFilter
-
- """Filter by the Lead's convertedOpportunity relation."""
- convertedOpportunity: SalesforceOpportunityConnectionFilter
-
- """Filter by the Lead's convertedContact relation."""
- convertedContact: SalesforceContactConnectionFilter
-
- """Filter by the Lead's convertedAccount relation."""
- convertedAccount: SalesforceAccountConnectionFilter
-
- """Filter by the Lead's masterRecord relation."""
- masterRecord: SalesforceLeadConnectionFilter
-
- """Filter by the Lead's id field"""
- id: SalesforceIdFilter
-
- """Filter by the Lead's isDeleted field"""
- isDeleted: SalesforceBooleanFilter
-
- """Filter by the Lead's masterRecordId field"""
- masterRecordId: SalesforceIdFilter
-
- """Filter by the Lead's lastName field"""
- lastName: SalesforceStringFilter
-
- """Filter by the Lead's firstName field"""
- firstName: SalesforceStringFilter
-
- """Filter by the Lead's salutation field"""
- salutation: SalesforceStringFilter
-
- """Filter by the Lead's name field"""
- name: SalesforceStringFilter
-
- """Filter by the Lead's title field"""
- title: SalesforceStringFilter
-
- """Filter by the Lead's company field"""
- company: SalesforceStringFilter
-
- """Filter by the Lead's street field"""
- street: SalesforceStringFilter
-
- """Filter by the Lead's city field"""
- city: SalesforceStringFilter
-
- """Filter by the Lead's state field"""
- state: SalesforceStringFilter
-
- """Filter by the Lead's postalCode field"""
- postalCode: SalesforceStringFilter
-
- """Filter by the Lead's country field"""
- country: SalesforceStringFilter
-
- """Filter by the Lead's latitude field"""
- latitude: SalesforceFloatFilter
-
- """Filter by the Lead's longitude field"""
- longitude: SalesforceFloatFilter
-
- """Filter by the Lead's geocodeAccuracy field"""
- geocodeAccuracy: SalesforceStringFilter
-
- """Filter by the Lead's phone field"""
- phone: SalesforceStringFilter
-
- """Filter by the Lead's mobilePhone field"""
- mobilePhone: SalesforceStringFilter
-
- """Filter by the Lead's fax field"""
- fax: SalesforceStringFilter
-
- """Filter by the Lead's email field"""
- email: SalesforceStringFilter
-
- """Filter by the Lead's website field"""
- website: SalesforceStringFilter
-
- """Filter by the Lead's photoUrl field"""
- photoUrl: SalesforceStringFilter
-
- """Filter by the Lead's leadSource field"""
- leadSource: SalesforceStringFilter
-
- """Filter by the Lead's status field"""
- status: SalesforceStringFilter
-
- """Filter by the Lead's industry field"""
- industry: SalesforceStringFilter
-
- """Filter by the Lead's rating field"""
- rating: SalesforceStringFilter
-
- """Filter by the Lead's annualRevenue field"""
- annualRevenue: SalesforceFloatFilter
-
- """Filter by the Lead's numberOfEmployees field"""
- numberOfEmployees: SalesforceIntFilter
-
- """Filter by the Lead's ownerId field"""
- ownerId: SalesforceIdFilter
-
- """Filter by the Lead's isConverted field"""
- isConverted: SalesforceBooleanFilter
-
- """Filter by the Lead's convertedDate field"""
- convertedDate: SalesforceDateFilter
-
- """Filter by the Lead's convertedAccountId field"""
- convertedAccountId: SalesforceIdFilter
-
- """Filter by the Lead's convertedContactId field"""
- convertedContactId: SalesforceIdFilter
-
- """Filter by the Lead's convertedOpportunityId field"""
- convertedOpportunityId: SalesforceIdFilter
-
- """Filter by the Lead's isUnreadByOwner field"""
- isUnreadByOwner: SalesforceBooleanFilter
-
- """Filter by the Lead's createdDate field"""
- createdDate: SalesforceDateTimeFilter
-
- """Filter by the Lead's createdById field"""
- createdById: SalesforceIdFilter
-
- """Filter by the Lead's lastModifiedDate field"""
- lastModifiedDate: SalesforceDateTimeFilter
-
- """Filter by the Lead's lastModifiedById field"""
- lastModifiedById: SalesforceIdFilter
-
- """Filter by the Lead's systemModstamp field"""
- systemModstamp: SalesforceDateTimeFilter
-
- """Filter by the Lead's lastActivityDate field"""
- lastActivityDate: SalesforceDateFilter
-
- """Filter by the Lead's lastViewedDate field"""
- lastViewedDate: SalesforceDateTimeFilter
-
- """Filter by the Lead's lastReferencedDate field"""
- lastReferencedDate: SalesforceDateTimeFilter
-
- """Filter by the Lead's jigsaw field"""
- jigsaw: SalesforceStringFilter
-
- """Filter by the Lead's jigsawContactId field"""
- jigsawContactId: SalesforceStringFilter
-
- """Filter by the Lead's cleanStatus field"""
- cleanStatus: SalesforceStringFilter
-
- """Filter by the Lead's companyDunsNumber field"""
- companyDunsNumber: SalesforceStringFilter
-
- """Filter by the Lead's dandbCompanyId field"""
- dandbCompanyId: SalesforceIdFilter
-
- """Filter by the Lead's emailBouncedReason field"""
- emailBouncedReason: SalesforceStringFilter
-
- """Filter by the Lead's emailBouncedDate field"""
- emailBouncedDate: SalesforceDateTimeFilter
-
- """Checks for any expressions in this list."""
- or: [SalesforceLeadConnectionFilter!]
-
- """Checks for all expressions in this list."""
- and: [SalesforceLeadConnectionFilter!]
-}
-
-"""
-A filter to be used against CampaignMember object types. All fields are combined with a logical ‘and.’
-"""
-input SalesforceCampaignMemberConnectionFilter {
- """Filter against custom fields."""
- customField: SalesforceCustomFieldFilter
-
- """Filter by the CampaignMember's lastModifiedBy relation."""
- lastModifiedBy: SalesforceUserConnectionFilter
-
- """Filter by the CampaignMember's createdBy relation."""
- createdBy: SalesforceUserConnectionFilter
-
- """Filter by the CampaignMember's contact relation."""
- contact: SalesforceContactConnectionFilter
-
- """Filter by the CampaignMember's lead relation."""
- lead: SalesforceLeadConnectionFilter
-
- """Filter by the CampaignMember's campaign relation."""
- campaign: SalesforceCampaignConnectionFilter
-
- """Filter by the CampaignMember's id field"""
- id: SalesforceIdFilter
-
- """Filter by the CampaignMember's isDeleted field"""
- isDeleted: SalesforceBooleanFilter
-
- """Filter by the CampaignMember's campaignId field"""
- campaignId: SalesforceIdFilter
-
- """Filter by the CampaignMember's leadId field"""
- leadId: SalesforceIdFilter
-
- """Filter by the CampaignMember's contactId field"""
- contactId: SalesforceIdFilter
-
- """Filter by the CampaignMember's status field"""
- status: SalesforceStringFilter
-
- """Filter by the CampaignMember's hasResponded field"""
- hasResponded: SalesforceBooleanFilter
-
- """Filter by the CampaignMember's createdDate field"""
- createdDate: SalesforceDateTimeFilter
-
- """Filter by the CampaignMember's createdById field"""
- createdById: SalesforceIdFilter
-
- """Filter by the CampaignMember's lastModifiedDate field"""
- lastModifiedDate: SalesforceDateTimeFilter
-
- """Filter by the CampaignMember's lastModifiedById field"""
- lastModifiedById: SalesforceIdFilter
-
- """Filter by the CampaignMember's systemModstamp field"""
- systemModstamp: SalesforceDateTimeFilter
-
- """Filter by the CampaignMember's firstRespondedDate field"""
- firstRespondedDate: SalesforceDateFilter
-
- """Filter by the CampaignMember's salutation field"""
- salutation: SalesforceStringFilter
-
- """Filter by the CampaignMember's name field"""
- name: SalesforceStringFilter
-
- """Filter by the CampaignMember's firstName field"""
- firstName: SalesforceStringFilter
-
- """Filter by the CampaignMember's lastName field"""
- lastName: SalesforceStringFilter
-
- """Filter by the CampaignMember's title field"""
- title: SalesforceStringFilter
-
- """Filter by the CampaignMember's street field"""
- street: SalesforceStringFilter
-
- """Filter by the CampaignMember's city field"""
- city: SalesforceStringFilter
-
- """Filter by the CampaignMember's state field"""
- state: SalesforceStringFilter
-
- """Filter by the CampaignMember's postalCode field"""
- postalCode: SalesforceStringFilter
-
- """Filter by the CampaignMember's country field"""
- country: SalesforceStringFilter
-
- """Filter by the CampaignMember's email field"""
- email: SalesforceStringFilter
-
- """Filter by the CampaignMember's phone field"""
- phone: SalesforceStringFilter
-
- """Filter by the CampaignMember's fax field"""
- fax: SalesforceStringFilter
-
- """Filter by the CampaignMember's mobilePhone field"""
- mobilePhone: SalesforceStringFilter
-
- """Filter by the CampaignMember's doNotCall field"""
- doNotCall: SalesforceBooleanFilter
-
- """Filter by the CampaignMember's hasOptedOutOfEmail field"""
- hasOptedOutOfEmail: SalesforceBooleanFilter
-
- """Filter by the CampaignMember's hasOptedOutOfFax field"""
- hasOptedOutOfFax: SalesforceBooleanFilter
-
- """Filter by the CampaignMember's leadSource field"""
- leadSource: SalesforceStringFilter
-
- """Filter by the CampaignMember's companyOrAccount field"""
- companyOrAccount: SalesforceStringFilter
-
- """Filter by the CampaignMember's type field"""
- type: SalesforceStringFilter
-
- """Filter by the CampaignMember's leadOrContactId field"""
- leadOrContactId: SalesforceIdFilter
-
- """Filter by the CampaignMember's leadOrContactOwnerId field"""
- leadOrContactOwnerId: SalesforceIdFilter
-
- """Checks for any expressions in this list."""
- or: [SalesforceCampaignMemberConnectionFilter!]
-
- """Checks for all expressions in this list."""
- and: [SalesforceCampaignMemberConnectionFilter!]
-}
-
-"""Field that Campaign Members can be sorted by"""
-enum SalesforceCampaignMemberSortByFieldEnum {
- ID
- IS_DELETED
- CAMPAIGN_ID
- LEAD_ID
- CONTACT_ID
- STATUS
- HAS_RESPONDED
- CREATED_DATE
- CREATED_BY_ID
- LAST_MODIFIED_DATE
- LAST_MODIFIED_BY_ID
- SYSTEM_MODSTAMP
- FIRST_RESPONDED_DATE
- SALUTATION
- NAME
- FIRST_NAME
- LAST_NAME
- TITLE
- STREET
- CITY
- STATE
- POSTAL_CODE
- COUNTRY
- EMAIL
- PHONE
- FAX
- MOBILE_PHONE
- DO_NOT_CALL
- HAS_OPTED_OUT_OF_EMAIL
- HAS_OPTED_OUT_OF_FAX
- LEAD_SOURCE
- COMPANY_OR_ACCOUNT
- TYPE
- LEAD_OR_CONTACT_ID
- LEAD_OR_CONTACT_OWNER_ID
-}
-
-"""An edge in a connection."""
-type SalesforceCampaignMemberEdge {
- """The item at the end of the edge."""
- node: SalesforceCampaignMember!
-
- """A cursor for use in pagination"""
- cursor: String!
-}
-
-union SalesforceCampaignMemberLeadOrContactOwnerUnion = SalesforceUser | SalesforceGroup
-
-union SalesforceCampaignMemberLeadOrContactUnion = SalesforceLead | SalesforceContact
-
-"""Campaign Member"""
-type SalesforceCampaignMember implements OneGraphNode {
- """Campaign Member ID"""
- id: String!
-
- """Deleted"""
- isDeleted: Boolean!
-
- """Campaign ID"""
- campaignId: String!
-
- """Campaign ID"""
- campaign: SalesforceCampaign!
-
- """Lead ID"""
- leadId: String
-
- """Lead ID"""
- lead: SalesforceLead
-
- """Contact ID"""
- contactId: String
-
- """Contact ID"""
- contact: SalesforceContact
-
- """Status"""
- status: String
-
- """Responded"""
- hasResponded: Boolean!
-
- """Created Date"""
- createdDate: String!
-
- """Created By ID"""
- createdById: String!
-
- """Created By ID"""
- createdBy: SalesforceUser!
-
- """Last Modified Date"""
- lastModifiedDate: String!
-
- """Last Modified By ID"""
- lastModifiedById: String!
-
- """Last Modified By ID"""
- lastModifiedBy: SalesforceUser!
-
- """System Modstamp"""
- systemModstamp: String!
-
- """First Responded Date"""
- firstRespondedDate: String
-
- """Salutation"""
- salutation: String
-
- """Name"""
- name: String
-
- """First Name"""
- firstName: String
-
- """Last Name"""
- lastName: String
-
- """Title"""
- title: String
-
- """Street"""
- street: String
-
- """City"""
- city: String
-
- """State/Province"""
- state: String
-
- """Zip/Postal Code"""
- postalCode: String
-
- """Country"""
- country: String
-
- """Email"""
- email: String
-
- """Phone"""
- phone: String
-
- """Fax"""
- fax: String
-
- """Mobile"""
- mobilePhone: String
-
- """Description"""
- description: String
-
- """Do Not Call"""
- doNotCall: Boolean!
-
- """Email Opt Out"""
- hasOptedOutOfEmail: Boolean!
-
- """Fax Opt Out"""
- hasOptedOutOfFax: Boolean!
-
- """Lead Source"""
- leadSource: String
-
- """Company (Account)"""
- companyOrAccount: String
-
- """Type"""
- type: String
-
- """Lead/Contact ID"""
- leadOrContactId: String
-
- """Lead/Contact ID"""
- leadOrContact: SalesforceCampaignMemberLeadOrContactUnion
-
- """Lead/Contact Owner ID"""
- leadOrContactOwnerId: String
-
- """Lead/Contact Owner ID"""
- leadOrContactOwner: SalesforceCampaignMemberLeadOrContactOwnerUnion
-
- """Collection of Salesforce FlowRecordRelation"""
- flowRecordRelations(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceFlowRecordRelationConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceFlowRecordRelationSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceFlowRecordRelationsConnection
- customFields(
- """
- List of custom fields to return. By default, returns all custom fields.
- """
- fields: [String!]
- ): JSON!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-"""Salesforce Campaign Members connection, for use in pagination."""
-type SalesforceCampaignMembersConnection {
- """The count of all Campaign Member you could get from the connection."""
- totalCount: Int!
-
- """Pagination Information"""
- pageInfo: PageInfo!
-
- """List of Salesforce Campaign Members"""
- nodes: [SalesforceCampaignMember!]!
-
- """List of Campaign Member edges"""
- edges: [SalesforceCampaignMemberEdge!]!
-}
-
-"""
-A filter to be used against CampaignHistory object types. All fields are combined with a logical ‘and.’
-"""
-input SalesforceCampaignHistoryConnectionFilter {
- """Filter against custom fields."""
- customField: SalesforceCustomFieldFilter
-
- """Filter by the CampaignHistory's createdBy relation."""
- createdBy: SalesforceUserConnectionFilter
-
- """Filter by the CampaignHistory's campaign relation."""
- campaign: SalesforceCampaignConnectionFilter
-
- """Filter by the CampaignHistory's id field"""
- id: SalesforceIdFilter
-
- """Filter by the CampaignHistory's isDeleted field"""
- isDeleted: SalesforceBooleanFilter
-
- """Filter by the CampaignHistory's campaignId field"""
- campaignId: SalesforceIdFilter
-
- """Filter by the CampaignHistory's createdById field"""
- createdById: SalesforceIdFilter
-
- """Filter by the CampaignHistory's createdDate field"""
- createdDate: SalesforceDateTimeFilter
-
- """Filter by the CampaignHistory's field field"""
- field: SalesforceStringFilter
-
- """Checks for any expressions in this list."""
- or: [SalesforceCampaignHistoryConnectionFilter!]
-
- """Checks for all expressions in this list."""
- and: [SalesforceCampaignHistoryConnectionFilter!]
-}
-
-"""Field that Campaign Field Histories can be sorted by"""
-enum SalesforceCampaignHistorySortByFieldEnum {
- ID
- IS_DELETED
- CAMPAIGN_ID
- CREATED_BY_ID
- CREATED_DATE
- FIELD
- OLD_VALUE
- NEW_VALUE
-}
-
-"""An edge in a connection."""
-type SalesforceCampaignHistoryEdge {
- """The item at the end of the edge."""
- node: SalesforceCampaignHistory!
-
- """A cursor for use in pagination"""
- cursor: String!
-}
-
-"""Campaign Field History"""
-type SalesforceCampaignHistory implements OneGraphNode {
- """Campaign Field History ID"""
- id: String!
-
- """Deleted"""
- isDeleted: Boolean!
-
- """Campaign ID"""
- campaignId: String!
-
- """Campaign ID"""
- campaign: SalesforceCampaign!
-
- """Created By ID"""
- createdById: String!
-
- """Created By ID"""
- createdBy: SalesforceUser!
-
- """Created Date"""
- createdDate: String!
-
- """Changed Field"""
- field: String!
-
- """Old Value"""
- oldValue: String
-
- """New Value"""
- newValue: String
- customFields(
- """
- List of custom fields to return. By default, returns all custom fields.
- """
- fields: [String!]
- ): JSON!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-"""Salesforce Campaign Field Histories connection, for use in pagination."""
-type SalesforceCampaignHistorysConnection {
- """
- The count of all Campaign Field History you could get from the connection.
- """
- totalCount: Int!
-
- """Pagination Information"""
- pageInfo: PageInfo!
-
- """List of Salesforce Campaign Field Histories"""
- nodes: [SalesforceCampaignHistory!]!
-
- """List of Campaign Field History edges"""
- edges: [SalesforceCampaignHistoryEdge!]!
-}
-
-"""
-A filter to be used against CampaignFeed object types. All fields are combined with a logical ‘and.’
-"""
-input SalesforceCampaignFeedConnectionFilter {
- """Filter against custom fields."""
- customField: SalesforceCustomFieldFilter
-
- """Filter by the CampaignFeed's insertedBy relation."""
- insertedBy: SalesforceUserConnectionFilter
-
- """Filter by the CampaignFeed's relatedRecord relation."""
- relatedRecord: SalesforceContentVersionConnectionFilter
-
- """Filter by the CampaignFeed's createdBy relation."""
- createdBy: SalesforceUserConnectionFilter
-
- """Filter by the CampaignFeed's parent relation."""
- parent: SalesforceCampaignConnectionFilter
-
- """Filter by the CampaignFeed's id field"""
- id: SalesforceIdFilter
-
- """Filter by the CampaignFeed's parentId field"""
- parentId: SalesforceIdFilter
-
- """Filter by the CampaignFeed's type field"""
- type: SalesforceStringFilter
-
- """Filter by the CampaignFeed's createdById field"""
- createdById: SalesforceIdFilter
-
- """Filter by the CampaignFeed's createdDate field"""
- createdDate: SalesforceDateTimeFilter
-
- """Filter by the CampaignFeed's isDeleted field"""
- isDeleted: SalesforceBooleanFilter
-
- """Filter by the CampaignFeed's lastModifiedDate field"""
- lastModifiedDate: SalesforceDateTimeFilter
-
- """Filter by the CampaignFeed's systemModstamp field"""
- systemModstamp: SalesforceDateTimeFilter
-
- """Filter by the CampaignFeed's commentCount field"""
- commentCount: SalesforceIntFilter
-
- """Filter by the CampaignFeed's likeCount field"""
- likeCount: SalesforceIntFilter
-
- """Filter by the CampaignFeed's isRichText field"""
- isRichText: SalesforceBooleanFilter
-
- """Checks for any expressions in this list."""
- or: [SalesforceCampaignFeedConnectionFilter!]
-
- """Checks for all expressions in this list."""
- and: [SalesforceCampaignFeedConnectionFilter!]
-}
-
-"""Field that Campaign Feeds can be sorted by"""
-enum SalesforceCampaignFeedSortByFieldEnum {
- ID
- PARENT_ID
- TYPE
- CREATED_BY_ID
- CREATED_DATE
- IS_DELETED
- LAST_MODIFIED_DATE
- SYSTEM_MODSTAMP
- COMMENT_COUNT
- LIKE_COUNT
- TITLE
- BODY
- LINK_URL
- IS_RICH_TEXT
- RELATED_RECORD_ID
- INSERTED_BY_ID
-}
-
-"""An edge in a connection."""
-type SalesforceCampaignFeedEdge {
- """The item at the end of the edge."""
- node: SalesforceCampaignFeed!
-
- """A cursor for use in pagination"""
- cursor: String!
-}
-
-"""An edge in a connection."""
-type SalesforceFeedAttachmentEdge {
- """The item at the end of the edge."""
- node: SalesforceFeedAttachment!
-
- """A cursor for use in pagination"""
- cursor: String!
-}
-
-"""An edge in a connection."""
-type SalesforceFeedCommentEdge {
- """The item at the end of the edge."""
- node: SalesforceFeedComment!
-
- """A cursor for use in pagination"""
- cursor: String!
-}
-
-"""An edge in a connection."""
-type SalesforceFeedPollChoiceEdge {
- """The item at the end of the edge."""
- node: SalesforceFeedPollChoice!
-
- """A cursor for use in pagination"""
- cursor: String!
-}
-
-"""An edge in a connection."""
-type SalesforceFeedPollVoteEdge {
- """The item at the end of the edge."""
- node: SalesforceFeedPollVote!
-
- """A cursor for use in pagination"""
- cursor: String!
-}
-
-"""
-A filter to be used against SiteHistory object types. All fields are combined with a logical ‘and.’
-"""
-input SalesforceSiteHistoryConnectionFilter {
- """Filter against custom fields."""
- customField: SalesforceCustomFieldFilter
-
- """Filter by the SiteHistory's createdBy relation."""
- createdBy: SalesforceUserConnectionFilter
-
- """Filter by the SiteHistory's site relation."""
- site: SalesforceSiteConnectionFilter
-
- """Filter by the SiteHistory's id field"""
- id: SalesforceIdFilter
-
- """Filter by the SiteHistory's isDeleted field"""
- isDeleted: SalesforceBooleanFilter
-
- """Filter by the SiteHistory's siteId field"""
- siteId: SalesforceIdFilter
-
- """Filter by the SiteHistory's createdById field"""
- createdById: SalesforceIdFilter
-
- """Filter by the SiteHistory's createdDate field"""
- createdDate: SalesforceDateTimeFilter
-
- """Filter by the SiteHistory's field field"""
- field: SalesforceStringFilter
-
- """Checks for any expressions in this list."""
- or: [SalesforceSiteHistoryConnectionFilter!]
-
- """Checks for all expressions in this list."""
- and: [SalesforceSiteHistoryConnectionFilter!]
-}
-
-"""Field that Site Histories can be sorted by"""
-enum SalesforceSiteHistorySortByFieldEnum {
- ID
- IS_DELETED
- SITE_ID
- CREATED_BY_ID
- CREATED_DATE
- FIELD
- OLD_VALUE
- NEW_VALUE
-}
-
-"""An edge in a connection."""
-type SalesforceSiteHistoryEdge {
- """The item at the end of the edge."""
- node: SalesforceSiteHistory!
-
- """A cursor for use in pagination"""
- cursor: String!
-}
-
-"""Site History"""
-type SalesforceSiteHistory implements OneGraphNode {
- """Custom Site ID"""
- id: String!
-
- """Deleted"""
- isDeleted: Boolean!
-
- """Site ID"""
- siteId: String!
-
- """Site ID"""
- site: SalesforceSite!
-
- """Created By ID"""
- createdById: String!
-
- """Created By ID"""
- createdBy: SalesforceUser!
-
- """Created Date"""
- createdDate: String!
-
- """Changed Field"""
- field: String!
-
- """Old Value"""
- oldValue: String
-
- """New Value"""
- newValue: String
- customFields(
- """
- List of custom fields to return. By default, returns all custom fields.
- """
- fields: [String!]
- ): JSON!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-"""Salesforce Site Histories connection, for use in pagination."""
-type SalesforceSiteHistorysConnection {
- """The count of all Site History you could get from the connection."""
- totalCount: Int!
-
- """Pagination Information"""
- pageInfo: PageInfo!
-
- """List of Salesforce Site Histories"""
- nodes: [SalesforceSiteHistory!]!
-
- """List of Site History edges"""
- edges: [SalesforceSiteHistoryEdge!]!
-}
-
-"""
-A filter to be used against SiteFeed object types. All fields are combined with a logical ‘and.’
-"""
-input SalesforceSiteFeedConnectionFilter {
- """Filter against custom fields."""
- customField: SalesforceCustomFieldFilter
-
- """Filter by the SiteFeed's insertedBy relation."""
- insertedBy: SalesforceUserConnectionFilter
-
- """Filter by the SiteFeed's relatedRecord relation."""
- relatedRecord: SalesforceContentVersionConnectionFilter
-
- """Filter by the SiteFeed's createdBy relation."""
- createdBy: SalesforceUserConnectionFilter
-
- """Filter by the SiteFeed's parent relation."""
- parent: SalesforceSiteConnectionFilter
-
- """Filter by the SiteFeed's id field"""
- id: SalesforceIdFilter
-
- """Filter by the SiteFeed's parentId field"""
- parentId: SalesforceIdFilter
-
- """Filter by the SiteFeed's type field"""
- type: SalesforceStringFilter
-
- """Filter by the SiteFeed's createdById field"""
- createdById: SalesforceIdFilter
-
- """Filter by the SiteFeed's createdDate field"""
- createdDate: SalesforceDateTimeFilter
-
- """Filter by the SiteFeed's isDeleted field"""
- isDeleted: SalesforceBooleanFilter
-
- """Filter by the SiteFeed's lastModifiedDate field"""
- lastModifiedDate: SalesforceDateTimeFilter
-
- """Filter by the SiteFeed's systemModstamp field"""
- systemModstamp: SalesforceDateTimeFilter
-
- """Filter by the SiteFeed's commentCount field"""
- commentCount: SalesforceIntFilter
-
- """Filter by the SiteFeed's likeCount field"""
- likeCount: SalesforceIntFilter
-
- """Filter by the SiteFeed's isRichText field"""
- isRichText: SalesforceBooleanFilter
-
- """Checks for any expressions in this list."""
- or: [SalesforceSiteFeedConnectionFilter!]
-
- """Checks for all expressions in this list."""
- and: [SalesforceSiteFeedConnectionFilter!]
-}
-
-"""Field that Sites can be sorted by"""
-enum SalesforceSiteFeedSortByFieldEnum {
- ID
- PARENT_ID
- TYPE
- CREATED_BY_ID
- CREATED_DATE
- IS_DELETED
- LAST_MODIFIED_DATE
- SYSTEM_MODSTAMP
- COMMENT_COUNT
- LIKE_COUNT
- TITLE
- BODY
- LINK_URL
- IS_RICH_TEXT
- RELATED_RECORD_ID
- INSERTED_BY_ID
-}
-
-"""An edge in a connection."""
-type SalesforceSiteFeedEdge {
- """The item at the end of the edge."""
- node: SalesforceSiteFeed!
-
- """A cursor for use in pagination"""
- cursor: String!
-}
-
-"""Salesforce Sites connection, for use in pagination."""
-type SalesforceSiteFeedsConnection {
- """The count of all Site you could get from the connection."""
- totalCount: Int!
-
- """Pagination Information"""
- pageInfo: PageInfo!
-
- """List of Salesforce Sites"""
- nodes: [SalesforceSiteFeed!]!
-
- """List of Site edges"""
- edges: [SalesforceSiteFeedEdge!]!
-}
-
-"""An edge in a connection."""
-type SalesforceFeedItemEdge {
- """The item at the end of the edge."""
- node: SalesforceFeedItem!
-
- """A cursor for use in pagination"""
- cursor: String!
-}
-
-union SalesforceFeedAttachmentRecordUnion = SalesforceFeedItem | SalesforceContentVersion | SalesforceContentDocument
-
-"""
-A filter to be used against FeedRevision object types. All fields are combined with a logical ‘and.’
-"""
-input SalesforceFeedRevisionConnectionFilter {
- """Filter against custom fields."""
- customField: SalesforceCustomFieldFilter
-
- """Filter by the FeedRevision's createdBy relation."""
- createdBy: SalesforceUserConnectionFilter
-
- """Filter by the FeedRevision's id field"""
- id: SalesforceIdFilter
-
- """Filter by the FeedRevision's createdDate field"""
- createdDate: SalesforceDateTimeFilter
-
- """Filter by the FeedRevision's createdById field"""
- createdById: SalesforceIdFilter
-
- """Filter by the FeedRevision's systemModstamp field"""
- systemModstamp: SalesforceDateTimeFilter
-
- """Filter by the FeedRevision's isDeleted field"""
- isDeleted: SalesforceBooleanFilter
-
- """Filter by the FeedRevision's feedEntityId field"""
- feedEntityId: SalesforceIdFilter
-
- """Filter by the FeedRevision's revision field"""
- revision: SalesforceIntFilter
-
- """Filter by the FeedRevision's action field"""
- action: SalesforceStringFilter
-
- """Filter by the FeedRevision's editedAttribute field"""
- editedAttribute: SalesforceStringFilter
-
- """Filter by the FeedRevision's isValueRichText field"""
- isValueRichText: SalesforceBooleanFilter
-
- """Checks for any expressions in this list."""
- or: [SalesforceFeedRevisionConnectionFilter!]
-
- """Checks for all expressions in this list."""
- and: [SalesforceFeedRevisionConnectionFilter!]
-}
-
-"""Field that Feed Revisions can be sorted by"""
-enum SalesforceFeedRevisionSortByFieldEnum {
- ID
- CREATED_DATE
- CREATED_BY_ID
- SYSTEM_MODSTAMP
- IS_DELETED
- FEED_ENTITY_ID
- REVISION
- ACTION
- EDITED_ATTRIBUTE
- IS_VALUE_RICH_TEXT
-}
-
-"""An edge in a connection."""
-type SalesforceFeedRevisionEdge {
- """The item at the end of the edge."""
- node: SalesforceFeedRevision!
-
- """A cursor for use in pagination"""
- cursor: String!
-}
-
-union SalesforceFeedRevisionFeedEntityUnion = SalesforceFeedItem | SalesforceFeedComment
-
-"""Feed Revision"""
-type SalesforceFeedRevision implements OneGraphNode {
- """Feed Revision ID"""
- id: String!
-
- """Created Date"""
- createdDate: String!
-
- """Created By ID"""
- createdById: String!
-
- """Created By ID"""
- createdBy: SalesforceUser!
-
- """System Modstamp"""
- systemModstamp: String!
-
- """Deleted"""
- isDeleted: Boolean!
-
- """Feed Entity ID"""
- feedEntityId: String!
-
- """Feed Entity ID"""
- feedEntity: SalesforceFeedRevisionFeedEntityUnion!
-
- """Revision"""
- revision: Int
-
- """Action"""
- action: String
-
- """Edited Attribute"""
- editedAttribute: String
-
- """Value"""
- value: String
-
- """Is Value RichText"""
- isValueRichText: Boolean!
-
- """Collection of Salesforce FlowRecordRelation"""
- flowRecordRelations(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceFlowRecordRelationConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceFlowRecordRelationSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceFlowRecordRelationsConnection
- customFields(
- """
- List of custom fields to return. By default, returns all custom fields.
- """
- fields: [String!]
- ): JSON!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-"""Salesforce Feed Revisions connection, for use in pagination."""
-type SalesforceFeedRevisionsConnection {
- """The count of all Feed Revision you could get from the connection."""
- totalCount: Int!
-
- """Pagination Information"""
- pageInfo: PageInfo!
-
- """List of Salesforce Feed Revisions"""
- nodes: [SalesforceFeedRevision!]!
-
- """List of Feed Revision edges"""
- edges: [SalesforceFeedRevisionEdge!]!
-}
-
-"""
-A filter to be used against OrderItemHistory object types. All fields are combined with a logical ‘and.’
-"""
-input SalesforceOrderItemHistoryConnectionFilter {
- """Filter against custom fields."""
- customField: SalesforceCustomFieldFilter
-
- """Filter by the OrderItemHistory's createdBy relation."""
- createdBy: SalesforceUserConnectionFilter
-
- """Filter by the OrderItemHistory's orderItem relation."""
- orderItem: SalesforceOrderItemConnectionFilter
-
- """Filter by the OrderItemHistory's id field"""
- id: SalesforceIdFilter
-
- """Filter by the OrderItemHistory's isDeleted field"""
- isDeleted: SalesforceBooleanFilter
-
- """Filter by the OrderItemHistory's orderItemId field"""
- orderItemId: SalesforceIdFilter
-
- """Filter by the OrderItemHistory's createdById field"""
- createdById: SalesforceIdFilter
-
- """Filter by the OrderItemHistory's createdDate field"""
- createdDate: SalesforceDateTimeFilter
-
- """Filter by the OrderItemHistory's field field"""
- field: SalesforceStringFilter
-
- """Checks for any expressions in this list."""
- or: [SalesforceOrderItemHistoryConnectionFilter!]
-
- """Checks for all expressions in this list."""
- and: [SalesforceOrderItemHistoryConnectionFilter!]
-}
-
-"""Field that Order Product Histories can be sorted by"""
-enum SalesforceOrderItemHistorySortByFieldEnum {
- ID
- IS_DELETED
- ORDER_ITEM_ID
- CREATED_BY_ID
- CREATED_DATE
- FIELD
- OLD_VALUE
- NEW_VALUE
-}
-
-"""An edge in a connection."""
-type SalesforceOrderItemHistoryEdge {
- """The item at the end of the edge."""
- node: SalesforceOrderItemHistory!
-
- """A cursor for use in pagination"""
- cursor: String!
-}
-
-"""Order Product History"""
-type SalesforceOrderItemHistory implements OneGraphNode {
- """Order Product History ID"""
- id: String!
-
- """Deleted"""
- isDeleted: Boolean!
-
- """Order Product ID"""
- orderItemId: String!
-
- """Order Product ID"""
- orderItem: SalesforceOrderItem!
-
- """Created By ID"""
- createdById: String!
-
- """Created By ID"""
- createdBy: SalesforceUser!
-
- """Created Date"""
- createdDate: String!
-
- """Changed Field"""
- field: String!
-
- """Old Value"""
- oldValue: String
-
- """New Value"""
- newValue: String
- customFields(
- """
- List of custom fields to return. By default, returns all custom fields.
- """
- fields: [String!]
- ): JSON!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-"""Salesforce Order Product Histories connection, for use in pagination."""
-type SalesforceOrderItemHistorysConnection {
- """
- The count of all Order Product History you could get from the connection.
- """
- totalCount: Int!
-
- """Pagination Information"""
- pageInfo: PageInfo!
-
- """List of Salesforce Order Product Histories"""
- nodes: [SalesforceOrderItemHistory!]!
-
- """List of Order Product History edges"""
- edges: [SalesforceOrderItemHistoryEdge!]!
-}
-
-"""
-A filter to be used against OrderItemFeed object types. All fields are combined with a logical ‘and.’
-"""
-input SalesforceOrderItemFeedConnectionFilter {
- """Filter against custom fields."""
- customField: SalesforceCustomFieldFilter
-
- """Filter by the OrderItemFeed's insertedBy relation."""
- insertedBy: SalesforceUserConnectionFilter
-
- """Filter by the OrderItemFeed's relatedRecord relation."""
- relatedRecord: SalesforceContentVersionConnectionFilter
-
- """Filter by the OrderItemFeed's createdBy relation."""
- createdBy: SalesforceUserConnectionFilter
-
- """Filter by the OrderItemFeed's parent relation."""
- parent: SalesforceOrderItemConnectionFilter
-
- """Filter by the OrderItemFeed's id field"""
- id: SalesforceIdFilter
-
- """Filter by the OrderItemFeed's parentId field"""
- parentId: SalesforceIdFilter
-
- """Filter by the OrderItemFeed's type field"""
- type: SalesforceStringFilter
-
- """Filter by the OrderItemFeed's createdById field"""
- createdById: SalesforceIdFilter
-
- """Filter by the OrderItemFeed's createdDate field"""
- createdDate: SalesforceDateTimeFilter
-
- """Filter by the OrderItemFeed's isDeleted field"""
- isDeleted: SalesforceBooleanFilter
-
- """Filter by the OrderItemFeed's lastModifiedDate field"""
- lastModifiedDate: SalesforceDateTimeFilter
-
- """Filter by the OrderItemFeed's systemModstamp field"""
- systemModstamp: SalesforceDateTimeFilter
-
- """Filter by the OrderItemFeed's commentCount field"""
- commentCount: SalesforceIntFilter
-
- """Filter by the OrderItemFeed's likeCount field"""
- likeCount: SalesforceIntFilter
-
- """Filter by the OrderItemFeed's isRichText field"""
- isRichText: SalesforceBooleanFilter
-
- """Checks for any expressions in this list."""
- or: [SalesforceOrderItemFeedConnectionFilter!]
-
- """Checks for all expressions in this list."""
- and: [SalesforceOrderItemFeedConnectionFilter!]
-}
-
-"""Field that Order Product Feeds can be sorted by"""
-enum SalesforceOrderItemFeedSortByFieldEnum {
- ID
- PARENT_ID
- TYPE
- CREATED_BY_ID
- CREATED_DATE
- IS_DELETED
- LAST_MODIFIED_DATE
- SYSTEM_MODSTAMP
- COMMENT_COUNT
- LIKE_COUNT
- TITLE
- BODY
- LINK_URL
- IS_RICH_TEXT
- RELATED_RECORD_ID
- INSERTED_BY_ID
-}
-
-"""An edge in a connection."""
-type SalesforceOrderItemFeedEdge {
- """The item at the end of the edge."""
- node: SalesforceOrderItemFeed!
-
- """A cursor for use in pagination"""
- cursor: String!
-}
-
-"""Account Feed"""
-type SalesforceAccountFeed implements OneGraphNode {
- """Feed Item ID"""
- id: String!
-
- """Parent ID"""
- parentId: String!
-
- """Parent ID"""
- parent: SalesforceAccount!
-
- """Feed Item Type"""
- type: String
-
- """Created By ID"""
- createdById: String!
-
- """Created By ID"""
- createdBy: SalesforceUser!
-
- """Created Date"""
- createdDate: String!
-
- """Deleted"""
- isDeleted: Boolean!
-
- """Last Modified Date"""
- lastModifiedDate: String!
-
- """System Modstamp"""
- systemModstamp: String!
-
- """Comment Count"""
- commentCount: Int!
-
- """Like Count"""
- likeCount: Int!
-
- """Title"""
- title: String
-
- """Body"""
- body: String
-
- """Link Url"""
- linkUrl: String
-
- """Is Rich Text"""
- isRichText: Boolean!
-
- """Related Record ID"""
- relatedRecordId: String
-
- """Related Record ID"""
- relatedRecord: SalesforceContentVersion
-
- """InsertedBy ID"""
- insertedById: String
-
- """InsertedBy ID"""
- insertedBy: SalesforceUser
-
- """Collection of Salesforce FeedAttachment"""
- feedAttachments(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceFeedAttachmentConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceFeedAttachmentSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceFeedAttachmentSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of FeedAttachments to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceFeedAttachmentsConnection
-
- """Collection of Salesforce FeedComment"""
- feedComments(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceFeedCommentConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceFeedCommentSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceFeedCommentSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of FeedComments to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceFeedCommentsConnection
-
- """Collection of Salesforce FeedPollChoice"""
- feedPollChoices(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceFeedPollChoiceConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceFeedPollChoiceSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceFeedPollChoiceSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of FeedPollChoices to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceFeedPollChoicesConnection
-
- """Collection of Salesforce FeedPollVote"""
- feedPollVotes(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceFeedPollVoteConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceFeedPollVoteSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceFeedPollVoteSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of FeedPollVotes to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceFeedPollVotesConnection
- customFields(
- """
- List of custom fields to return. By default, returns all custom fields.
- """
- fields: [String!]
- ): JSON!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-"""Case Feed"""
-type SalesforceCaseFeed implements OneGraphNode {
- """Feed Item ID"""
- id: String!
-
- """Parent ID"""
- parentId: String!
-
- """Parent ID"""
- parent: SalesforceCase!
-
- """Feed Item Type"""
- type: String
-
- """Created By ID"""
- createdById: String!
-
- """Created By ID"""
- createdBy: SalesforceUser!
-
- """Created Date"""
- createdDate: String!
-
- """Deleted"""
- isDeleted: Boolean!
-
- """Last Modified Date"""
- lastModifiedDate: String!
-
- """System Modstamp"""
- systemModstamp: String!
-
- """Comment Count"""
- commentCount: Int!
-
- """Like Count"""
- likeCount: Int!
-
- """Title"""
- title: String
-
- """Body"""
- body: String
-
- """Link Url"""
- linkUrl: String
-
- """Is Rich Text"""
- isRichText: Boolean!
-
- """Related Record ID"""
- relatedRecordId: String
-
- """Related Record ID"""
- relatedRecord: SalesforceContentVersion
-
- """InsertedBy ID"""
- insertedById: String
-
- """InsertedBy ID"""
- insertedBy: SalesforceUser
-
- """Collection of Salesforce FeedAttachment"""
- feedAttachments(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceFeedAttachmentConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceFeedAttachmentSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceFeedAttachmentSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of FeedAttachments to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceFeedAttachmentsConnection
-
- """Collection of Salesforce FeedComment"""
- feedComments(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceFeedCommentConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceFeedCommentSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceFeedCommentSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of FeedComments to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceFeedCommentsConnection
-
- """Collection of Salesforce FeedPollChoice"""
- feedPollChoices(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceFeedPollChoiceConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceFeedPollChoiceSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceFeedPollChoiceSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of FeedPollChoices to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceFeedPollChoicesConnection
-
- """Collection of Salesforce FeedPollVote"""
- feedPollVotes(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceFeedPollVoteConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceFeedPollVoteSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceFeedPollVoteSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of FeedPollVotes to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceFeedPollVotesConnection
- customFields(
- """
- List of custom fields to return. By default, returns all custom fields.
- """
- fields: [String!]
- ): JSON!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-"""Contact Feed"""
-type SalesforceContactFeed implements OneGraphNode {
- """Feed Item ID"""
- id: String!
-
- """Parent ID"""
- parentId: String!
-
- """Parent ID"""
- parent: SalesforceContact!
-
- """Feed Item Type"""
- type: String
-
- """Created By ID"""
- createdById: String!
-
- """Created By ID"""
- createdBy: SalesforceUser!
-
- """Created Date"""
- createdDate: String!
-
- """Deleted"""
- isDeleted: Boolean!
-
- """Last Modified Date"""
- lastModifiedDate: String!
-
- """System Modstamp"""
- systemModstamp: String!
-
- """Comment Count"""
- commentCount: Int!
-
- """Like Count"""
- likeCount: Int!
-
- """Title"""
- title: String
-
- """Body"""
- body: String
-
- """Link Url"""
- linkUrl: String
-
- """Is Rich Text"""
- isRichText: Boolean!
-
- """Related Record ID"""
- relatedRecordId: String
-
- """Related Record ID"""
- relatedRecord: SalesforceContentVersion
-
- """InsertedBy ID"""
- insertedById: String
-
- """InsertedBy ID"""
- insertedBy: SalesforceUser
-
- """Collection of Salesforce FeedAttachment"""
- feedAttachments(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceFeedAttachmentConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceFeedAttachmentSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceFeedAttachmentSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of FeedAttachments to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceFeedAttachmentsConnection
-
- """Collection of Salesforce FeedComment"""
- feedComments(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceFeedCommentConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceFeedCommentSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceFeedCommentSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of FeedComments to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceFeedCommentsConnection
-
- """Collection of Salesforce FeedPollChoice"""
- feedPollChoices(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceFeedPollChoiceConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceFeedPollChoiceSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceFeedPollChoiceSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of FeedPollChoices to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceFeedPollChoicesConnection
-
- """Collection of Salesforce FeedPollVote"""
- feedPollVotes(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceFeedPollVoteConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceFeedPollVoteSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceFeedPollVoteSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of FeedPollVotes to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceFeedPollVotesConnection
- customFields(
- """
- List of custom fields to return. By default, returns all custom fields.
- """
- fields: [String!]
- ): JSON!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-"""ContentDocument Feed"""
-type SalesforceContentDocumentFeed implements OneGraphNode {
- """Feed Item ID"""
- id: String!
-
- """Parent ID"""
- parentId: String!
-
- """Parent ID"""
- parent: SalesforceContentDocument!
-
- """Feed Item Type"""
- type: String
-
- """Created By ID"""
- createdById: String!
-
- """Created By ID"""
- createdBy: SalesforceUser!
-
- """Created Date"""
- createdDate: String!
-
- """Deleted"""
- isDeleted: Boolean!
-
- """Last Modified Date"""
- lastModifiedDate: String!
-
- """System Modstamp"""
- systemModstamp: String!
-
- """Comment Count"""
- commentCount: Int!
-
- """Like Count"""
- likeCount: Int!
-
- """Title"""
- title: String
-
- """Body"""
- body: String
-
- """Link Url"""
- linkUrl: String
-
- """Is Rich Text"""
- isRichText: Boolean!
-
- """Related Record ID"""
- relatedRecordId: String
-
- """Related Record ID"""
- relatedRecord: SalesforceContentVersion
-
- """InsertedBy ID"""
- insertedById: String
-
- """InsertedBy ID"""
- insertedBy: SalesforceUser
-
- """Collection of Salesforce FeedAttachment"""
- feedAttachments(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceFeedAttachmentConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceFeedAttachmentSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceFeedAttachmentSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of FeedAttachments to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceFeedAttachmentsConnection
-
- """Collection of Salesforce FeedComment"""
- feedComments(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceFeedCommentConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceFeedCommentSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceFeedCommentSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of FeedComments to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceFeedCommentsConnection
-
- """Collection of Salesforce FeedPollChoice"""
- feedPollChoices(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceFeedPollChoiceConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceFeedPollChoiceSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceFeedPollChoiceSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of FeedPollChoices to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceFeedPollChoicesConnection
-
- """Collection of Salesforce FeedPollVote"""
- feedPollVotes(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceFeedPollVoteConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceFeedPollVoteSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceFeedPollVoteSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of FeedPollVotes to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceFeedPollVotesConnection
- customFields(
- """
- List of custom fields to return. By default, returns all custom fields.
- """
- fields: [String!]
- ): JSON!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-"""Contract Feed"""
-type SalesforceContractFeed implements OneGraphNode {
- """Feed Item ID"""
- id: String!
-
- """Parent ID"""
- parentId: String!
-
- """Parent ID"""
- parent: SalesforceContract!
-
- """Feed Item Type"""
- type: String
-
- """Created By ID"""
- createdById: String!
-
- """Created By ID"""
- createdBy: SalesforceUser!
-
- """Created Date"""
- createdDate: String!
-
- """Deleted"""
- isDeleted: Boolean!
-
- """Last Modified Date"""
- lastModifiedDate: String!
-
- """System Modstamp"""
- systemModstamp: String!
-
- """Comment Count"""
- commentCount: Int!
-
- """Like Count"""
- likeCount: Int!
-
- """Title"""
- title: String
-
- """Body"""
- body: String
-
- """Link Url"""
- linkUrl: String
-
- """Is Rich Text"""
- isRichText: Boolean!
-
- """Related Record ID"""
- relatedRecordId: String
-
- """Related Record ID"""
- relatedRecord: SalesforceContentVersion
-
- """InsertedBy ID"""
- insertedById: String
-
- """InsertedBy ID"""
- insertedBy: SalesforceUser
-
- """Collection of Salesforce FeedAttachment"""
- feedAttachments(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceFeedAttachmentConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceFeedAttachmentSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceFeedAttachmentSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of FeedAttachments to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceFeedAttachmentsConnection
-
- """Collection of Salesforce FeedComment"""
- feedComments(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceFeedCommentConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceFeedCommentSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceFeedCommentSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of FeedComments to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceFeedCommentsConnection
-
- """Collection of Salesforce FeedPollChoice"""
- feedPollChoices(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceFeedPollChoiceConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceFeedPollChoiceSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceFeedPollChoiceSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of FeedPollChoices to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceFeedPollChoicesConnection
-
- """Collection of Salesforce FeedPollVote"""
- feedPollVotes(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceFeedPollVoteConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceFeedPollVoteSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceFeedPollVoteSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of FeedPollVotes to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceFeedPollVotesConnection
- customFields(
- """
- List of custom fields to return. By default, returns all custom fields.
- """
- fields: [String!]
- ): JSON!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-"""Dashboard Component Feed"""
-type SalesforceDashboardComponentFeed implements OneGraphNode {
- """Feed Item ID"""
- id: String!
-
- """Parent ID"""
- parentId: String!
-
- """Parent ID"""
- parent: SalesforceDashboardComponent!
-
- """Feed Item Type"""
- type: String
-
- """Created By ID"""
- createdById: String!
-
- """Created By ID"""
- createdBy: SalesforceUser!
-
- """Created Date"""
- createdDate: String!
-
- """Deleted"""
- isDeleted: Boolean!
-
- """Last Modified Date"""
- lastModifiedDate: String!
-
- """System Modstamp"""
- systemModstamp: String!
-
- """Comment Count"""
- commentCount: Int!
-
- """Like Count"""
- likeCount: Int!
-
- """Title"""
- title: String
-
- """Body"""
- body: String
-
- """Link Url"""
- linkUrl: String
-
- """Is Rich Text"""
- isRichText: Boolean!
-
- """Related Record ID"""
- relatedRecordId: String
-
- """Related Record ID"""
- relatedRecord: SalesforceContentVersion
-
- """InsertedBy ID"""
- insertedById: String
-
- """InsertedBy ID"""
- insertedBy: SalesforceUser
-
- """Collection of Salesforce FeedAttachment"""
- feedAttachments(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceFeedAttachmentConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceFeedAttachmentSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceFeedAttachmentSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of FeedAttachments to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceFeedAttachmentsConnection
-
- """Collection of Salesforce FeedComment"""
- feedComments(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceFeedCommentConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceFeedCommentSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceFeedCommentSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of FeedComments to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceFeedCommentsConnection
-
- """Collection of Salesforce FeedPollChoice"""
- feedPollChoices(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceFeedPollChoiceConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceFeedPollChoiceSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceFeedPollChoiceSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of FeedPollChoices to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceFeedPollChoicesConnection
-
- """Collection of Salesforce FeedPollVote"""
- feedPollVotes(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceFeedPollVoteConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceFeedPollVoteSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceFeedPollVoteSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of FeedPollVotes to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceFeedPollVotesConnection
- customFields(
- """
- List of custom fields to return. By default, returns all custom fields.
- """
- fields: [String!]
- ): JSON!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-"""Dashboard Feed"""
-type SalesforceDashboardFeed implements OneGraphNode {
- """Feed Item ID"""
- id: String!
-
- """Parent ID"""
- parentId: String!
-
- """Parent ID"""
- parent: SalesforceDashboard!
-
- """Feed Item Type"""
- type: String
-
- """Created By ID"""
- createdById: String!
-
- """Created By ID"""
- createdBy: SalesforceUser!
-
- """Created Date"""
- createdDate: String!
-
- """Deleted"""
- isDeleted: Boolean!
-
- """Last Modified Date"""
- lastModifiedDate: String!
-
- """System Modstamp"""
- systemModstamp: String!
-
- """Comment Count"""
- commentCount: Int!
-
- """Like Count"""
- likeCount: Int!
-
- """Title"""
- title: String
-
- """Body"""
- body: String
-
- """Link Url"""
- linkUrl: String
-
- """Is Rich Text"""
- isRichText: Boolean!
-
- """Related Record ID"""
- relatedRecordId: String
-
- """Related Record ID"""
- relatedRecord: SalesforceContentVersion
-
- """InsertedBy ID"""
- insertedById: String
-
- """InsertedBy ID"""
- insertedBy: SalesforceUser
-
- """Collection of Salesforce FeedAttachment"""
- feedAttachments(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceFeedAttachmentConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceFeedAttachmentSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceFeedAttachmentSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of FeedAttachments to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceFeedAttachmentsConnection
-
- """Collection of Salesforce FeedComment"""
- feedComments(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceFeedCommentConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceFeedCommentSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceFeedCommentSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of FeedComments to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceFeedCommentsConnection
-
- """Collection of Salesforce FeedPollChoice"""
- feedPollChoices(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceFeedPollChoiceConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceFeedPollChoiceSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceFeedPollChoiceSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of FeedPollChoices to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceFeedPollChoicesConnection
-
- """Collection of Salesforce FeedPollVote"""
- feedPollVotes(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceFeedPollVoteConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceFeedPollVoteSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceFeedPollVoteSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of FeedPollVotes to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceFeedPollVotesConnection
- customFields(
- """
- List of custom fields to return. By default, returns all custom fields.
- """
- fields: [String!]
- ): JSON!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-"""
-A filter to be used against UndecidedEventRelation object types. All fields are combined with a logical ‘and.’
-"""
-input SalesforceUndecidedEventRelationConnectionFilter {
- """Filter against custom fields."""
- customField: SalesforceCustomFieldFilter
-
- """Filter by the UndecidedEventRelation's lastModifiedBy relation."""
- lastModifiedBy: SalesforceUserConnectionFilter
-
- """Filter by the UndecidedEventRelation's createdBy relation."""
- createdBy: SalesforceUserConnectionFilter
-
- """Filter by the UndecidedEventRelation's event relation."""
- event: SalesforceEventConnectionFilter
-
- """Filter by the UndecidedEventRelation's id field"""
- id: SalesforceIdFilter
-
- """Filter by the UndecidedEventRelation's relationId field"""
- relationId: SalesforceIdFilter
-
- """Filter by the UndecidedEventRelation's eventId field"""
- eventId: SalesforceIdFilter
-
- """Filter by the UndecidedEventRelation's respondedDate field"""
- respondedDate: SalesforceDateTimeFilter
-
- """Filter by the UndecidedEventRelation's response field"""
- response: SalesforceStringFilter
-
- """Filter by the UndecidedEventRelation's createdDate field"""
- createdDate: SalesforceDateTimeFilter
-
- """Filter by the UndecidedEventRelation's createdById field"""
- createdById: SalesforceIdFilter
-
- """Filter by the UndecidedEventRelation's lastModifiedDate field"""
- lastModifiedDate: SalesforceDateTimeFilter
-
- """Filter by the UndecidedEventRelation's lastModifiedById field"""
- lastModifiedById: SalesforceIdFilter
-
- """Filter by the UndecidedEventRelation's systemModstamp field"""
- systemModstamp: SalesforceDateTimeFilter
-
- """Filter by the UndecidedEventRelation's isDeleted field"""
- isDeleted: SalesforceBooleanFilter
-
- """Filter by the UndecidedEventRelation's type field"""
- type: SalesforceStringFilter
-
- """Checks for any expressions in this list."""
- or: [SalesforceUndecidedEventRelationConnectionFilter!]
-
- """Checks for all expressions in this list."""
- and: [SalesforceUndecidedEventRelationConnectionFilter!]
-}
-
-"""Field that Undecided Event Relations can be sorted by"""
-enum SalesforceUndecidedEventRelationSortByFieldEnum {
- ID
- RELATION_ID
- EVENT_ID
- RESPONDED_DATE
- RESPONSE
- CREATED_DATE
- CREATED_BY_ID
- LAST_MODIFIED_DATE
- LAST_MODIFIED_BY_ID
- SYSTEM_MODSTAMP
- IS_DELETED
- TYPE
-}
-
-"""An edge in a connection."""
-type SalesforceUndecidedEventRelationEdge {
- """The item at the end of the edge."""
- node: SalesforceUndecidedEventRelation!
-
- """A cursor for use in pagination"""
- cursor: String!
-}
-
-union SalesforceUndecidedEventRelationRelationUnion = SalesforceUser | SalesforceLead | SalesforceContact
-
-"""Undecided Event Relation"""
-type SalesforceUndecidedEventRelation implements OneGraphNode {
- """Event Relation ID"""
- id: String!
-
- """Relation ID"""
- relationId: String
-
- """Relation ID"""
- relation: SalesforceUndecidedEventRelationRelationUnion
-
- """Event ID"""
- eventId: String
-
- """Event ID"""
- event: SalesforceEvent
-
- """Response Date"""
- respondedDate: String
-
- """Response"""
- response: String
-
- """Created Date"""
- createdDate: String!
-
- """Created By ID"""
- createdById: String!
-
- """Created By ID"""
- createdBy: SalesforceUser!
-
- """Last Modified Date"""
- lastModifiedDate: String!
-
- """Last Modified By ID"""
- lastModifiedById: String!
-
- """Last Modified By ID"""
- lastModifiedBy: SalesforceUser!
-
- """System Modstamp"""
- systemModstamp: String!
-
- """Deleted"""
- isDeleted: Boolean!
-
- """Type"""
- type: String
- customFields(
- """
- List of custom fields to return. By default, returns all custom fields.
- """
- fields: [String!]
- ): JSON!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-"""
-Salesforce Undecided Event Relations connection, for use in pagination.
-"""
-type SalesforceUndecidedEventRelationsConnection {
- """
- The count of all Undecided Event Relation you could get from the connection.
- """
- totalCount: Int!
-
- """Pagination Information"""
- pageInfo: PageInfo!
-
- """List of Salesforce Undecided Event Relations"""
- nodes: [SalesforceUndecidedEventRelation!]!
-
- """List of Undecided Event Relation edges"""
- edges: [SalesforceUndecidedEventRelationEdge!]!
-}
-
-"""
-A filter to be used against EventRelation object types. All fields are combined with a logical ‘and.’
-"""
-input SalesforceEventRelationConnectionFilter {
- """Filter against custom fields."""
- customField: SalesforceCustomFieldFilter
-
- """Filter by the EventRelation's lastModifiedBy relation."""
- lastModifiedBy: SalesforceUserConnectionFilter
-
- """Filter by the EventRelation's createdBy relation."""
- createdBy: SalesforceUserConnectionFilter
-
- """Filter by the EventRelation's event relation."""
- event: SalesforceEventConnectionFilter
-
- """Filter by the EventRelation's id field"""
- id: SalesforceIdFilter
-
- """Filter by the EventRelation's relationId field"""
- relationId: SalesforceIdFilter
-
- """Filter by the EventRelation's eventId field"""
- eventId: SalesforceIdFilter
-
- """Filter by the EventRelation's status field"""
- status: SalesforceStringFilter
-
- """Filter by the EventRelation's respondedDate field"""
- respondedDate: SalesforceDateTimeFilter
-
- """Filter by the EventRelation's response field"""
- response: SalesforceStringFilter
-
- """Filter by the EventRelation's createdDate field"""
- createdDate: SalesforceDateTimeFilter
-
- """Filter by the EventRelation's createdById field"""
- createdById: SalesforceIdFilter
-
- """Filter by the EventRelation's lastModifiedDate field"""
- lastModifiedDate: SalesforceDateTimeFilter
-
- """Filter by the EventRelation's lastModifiedById field"""
- lastModifiedById: SalesforceIdFilter
-
- """Filter by the EventRelation's systemModstamp field"""
- systemModstamp: SalesforceDateTimeFilter
-
- """Filter by the EventRelation's isDeleted field"""
- isDeleted: SalesforceBooleanFilter
-
- """Checks for any expressions in this list."""
- or: [SalesforceEventRelationConnectionFilter!]
-
- """Checks for all expressions in this list."""
- and: [SalesforceEventRelationConnectionFilter!]
-}
-
-"""Field that Event Relations can be sorted by"""
-enum SalesforceEventRelationSortByFieldEnum {
- ID
- RELATION_ID
- EVENT_ID
- STATUS
- RESPONDED_DATE
- RESPONSE
- CREATED_DATE
- CREATED_BY_ID
- LAST_MODIFIED_DATE
- LAST_MODIFIED_BY_ID
- SYSTEM_MODSTAMP
- IS_DELETED
-}
-
-"""An edge in a connection."""
-type SalesforceEventRelationEdge {
- """The item at the end of the edge."""
- node: SalesforceEventRelation!
-
- """A cursor for use in pagination"""
- cursor: String!
-}
-
-union SalesforceEventRelationRelationUnion = SalesforceUser | SalesforceLead | SalesforceContact
-
-"""Event Relation"""
-type SalesforceEventRelation implements OneGraphNode {
- """Event Relation ID"""
- id: String!
-
- """Relation ID"""
- relationId: String!
-
- """Relation ID"""
- relation: SalesforceEventRelationRelationUnion!
-
- """Event ID"""
- eventId: String!
-
- """Event ID"""
- event: SalesforceEvent!
-
- """Status"""
- status: String
-
- """Response Date"""
- respondedDate: String
-
- """Response"""
- response: String
-
- """Created Date"""
- createdDate: String!
-
- """Created By ID"""
- createdById: String!
-
- """Created By ID"""
- createdBy: SalesforceUser!
-
- """Last Modified Date"""
- lastModifiedDate: String!
-
- """Last Modified By ID"""
- lastModifiedById: String!
-
- """Last Modified By ID"""
- lastModifiedBy: SalesforceUser!
-
- """System Modstamp"""
- systemModstamp: String!
-
- """Deleted"""
- isDeleted: Boolean!
-
- """Collection of Salesforce FlowRecordRelation"""
- flowRecordRelations(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceFlowRecordRelationConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceFlowRecordRelationSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceFlowRecordRelationsConnection
- customFields(
- """
- List of custom fields to return. By default, returns all custom fields.
- """
- fields: [String!]
- ): JSON!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-"""Salesforce Event Relations connection, for use in pagination."""
-type SalesforceEventRelationsConnection {
- """The count of all Event Relation you could get from the connection."""
- totalCount: Int!
-
- """Pagination Information"""
- pageInfo: PageInfo!
-
- """List of Salesforce Event Relations"""
- nodes: [SalesforceEventRelation!]!
-
- """List of Event Relation edges"""
- edges: [SalesforceEventRelationEdge!]!
-}
-
-"""
-A filter to be used against EventFeed object types. All fields are combined with a logical ‘and.’
-"""
-input SalesforceEventFeedConnectionFilter {
- """Filter against custom fields."""
- customField: SalesforceCustomFieldFilter
-
- """Filter by the EventFeed's insertedBy relation."""
- insertedBy: SalesforceUserConnectionFilter
-
- """Filter by the EventFeed's relatedRecord relation."""
- relatedRecord: SalesforceContentVersionConnectionFilter
-
- """Filter by the EventFeed's createdBy relation."""
- createdBy: SalesforceUserConnectionFilter
-
- """Filter by the EventFeed's parent relation."""
- parent: SalesforceEventConnectionFilter
-
- """Filter by the EventFeed's id field"""
- id: SalesforceIdFilter
-
- """Filter by the EventFeed's parentId field"""
- parentId: SalesforceIdFilter
-
- """Filter by the EventFeed's type field"""
- type: SalesforceStringFilter
-
- """Filter by the EventFeed's createdById field"""
- createdById: SalesforceIdFilter
-
- """Filter by the EventFeed's createdDate field"""
- createdDate: SalesforceDateTimeFilter
-
- """Filter by the EventFeed's isDeleted field"""
- isDeleted: SalesforceBooleanFilter
-
- """Filter by the EventFeed's lastModifiedDate field"""
- lastModifiedDate: SalesforceDateTimeFilter
-
- """Filter by the EventFeed's systemModstamp field"""
- systemModstamp: SalesforceDateTimeFilter
-
- """Filter by the EventFeed's commentCount field"""
- commentCount: SalesforceIntFilter
-
- """Filter by the EventFeed's likeCount field"""
- likeCount: SalesforceIntFilter
-
- """Filter by the EventFeed's isRichText field"""
- isRichText: SalesforceBooleanFilter
-
- """Checks for any expressions in this list."""
- or: [SalesforceEventFeedConnectionFilter!]
-
- """Checks for all expressions in this list."""
- and: [SalesforceEventFeedConnectionFilter!]
-}
-
-"""Field that Event Feeds can be sorted by"""
-enum SalesforceEventFeedSortByFieldEnum {
- ID
- PARENT_ID
- TYPE
- CREATED_BY_ID
- CREATED_DATE
- IS_DELETED
- LAST_MODIFIED_DATE
- SYSTEM_MODSTAMP
- COMMENT_COUNT
- LIKE_COUNT
- TITLE
- BODY
- LINK_URL
- IS_RICH_TEXT
- RELATED_RECORD_ID
- INSERTED_BY_ID
-}
-
-"""An edge in a connection."""
-type SalesforceEventFeedEdge {
- """The item at the end of the edge."""
- node: SalesforceEventFeed!
-
- """A cursor for use in pagination"""
- cursor: String!
-}
-
-"""Salesforce Event Feeds connection, for use in pagination."""
-type SalesforceEventFeedsConnection {
- """The count of all Event Feed you could get from the connection."""
- totalCount: Int!
-
- """Pagination Information"""
- pageInfo: PageInfo!
-
- """List of Salesforce Event Feeds"""
- nodes: [SalesforceEventFeed!]!
-
- """List of Event Feed edges"""
- edges: [SalesforceEventFeedEdge!]!
-}
-
-"""
-A filter to be used against DeclinedEventRelation object types. All fields are combined with a logical ‘and.’
-"""
-input SalesforceDeclinedEventRelationConnectionFilter {
- """Filter against custom fields."""
- customField: SalesforceCustomFieldFilter
-
- """Filter by the DeclinedEventRelation's lastModifiedBy relation."""
- lastModifiedBy: SalesforceUserConnectionFilter
-
- """Filter by the DeclinedEventRelation's createdBy relation."""
- createdBy: SalesforceUserConnectionFilter
-
- """Filter by the DeclinedEventRelation's event relation."""
- event: SalesforceEventConnectionFilter
-
- """Filter by the DeclinedEventRelation's id field"""
- id: SalesforceIdFilter
-
- """Filter by the DeclinedEventRelation's relationId field"""
- relationId: SalesforceIdFilter
-
- """Filter by the DeclinedEventRelation's eventId field"""
- eventId: SalesforceIdFilter
-
- """Filter by the DeclinedEventRelation's respondedDate field"""
- respondedDate: SalesforceDateTimeFilter
-
- """Filter by the DeclinedEventRelation's response field"""
- response: SalesforceStringFilter
-
- """Filter by the DeclinedEventRelation's createdDate field"""
- createdDate: SalesforceDateTimeFilter
-
- """Filter by the DeclinedEventRelation's createdById field"""
- createdById: SalesforceIdFilter
-
- """Filter by the DeclinedEventRelation's lastModifiedDate field"""
- lastModifiedDate: SalesforceDateTimeFilter
-
- """Filter by the DeclinedEventRelation's lastModifiedById field"""
- lastModifiedById: SalesforceIdFilter
-
- """Filter by the DeclinedEventRelation's systemModstamp field"""
- systemModstamp: SalesforceDateTimeFilter
-
- """Filter by the DeclinedEventRelation's isDeleted field"""
- isDeleted: SalesforceBooleanFilter
-
- """Filter by the DeclinedEventRelation's type field"""
- type: SalesforceStringFilter
-
- """Checks for any expressions in this list."""
- or: [SalesforceDeclinedEventRelationConnectionFilter!]
-
- """Checks for all expressions in this list."""
- and: [SalesforceDeclinedEventRelationConnectionFilter!]
-}
-
-"""Field that Declined Event Relations can be sorted by"""
-enum SalesforceDeclinedEventRelationSortByFieldEnum {
- ID
- RELATION_ID
- EVENT_ID
- RESPONDED_DATE
- RESPONSE
- CREATED_DATE
- CREATED_BY_ID
- LAST_MODIFIED_DATE
- LAST_MODIFIED_BY_ID
- SYSTEM_MODSTAMP
- IS_DELETED
- TYPE
-}
-
-"""An edge in a connection."""
-type SalesforceDeclinedEventRelationEdge {
- """The item at the end of the edge."""
- node: SalesforceDeclinedEventRelation!
-
- """A cursor for use in pagination"""
- cursor: String!
-}
-
-union SalesforceDeclinedEventRelationRelationUnion = SalesforceUser | SalesforceLead | SalesforceContact
-
-"""Declined Event Relation"""
-type SalesforceDeclinedEventRelation implements OneGraphNode {
- """Event Relation ID"""
- id: String!
-
- """Relation ID"""
- relationId: String
-
- """Relation ID"""
- relation: SalesforceDeclinedEventRelationRelationUnion
-
- """Event ID"""
- eventId: String
-
- """Event ID"""
- event: SalesforceEvent
-
- """Response Date"""
- respondedDate: String
-
- """Response"""
- response: String
-
- """Created Date"""
- createdDate: String!
-
- """Created By ID"""
- createdById: String!
-
- """Created By ID"""
- createdBy: SalesforceUser!
-
- """Last Modified Date"""
- lastModifiedDate: String!
-
- """Last Modified By ID"""
- lastModifiedById: String!
-
- """Last Modified By ID"""
- lastModifiedBy: SalesforceUser!
-
- """System Modstamp"""
- systemModstamp: String!
-
- """Deleted"""
- isDeleted: Boolean!
-
- """Type"""
- type: String
- customFields(
- """
- List of custom fields to return. By default, returns all custom fields.
- """
- fields: [String!]
- ): JSON!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-"""Salesforce Declined Event Relations connection, for use in pagination."""
-type SalesforceDeclinedEventRelationsConnection {
- """
- The count of all Declined Event Relation you could get from the connection.
- """
- totalCount: Int!
-
- """Pagination Information"""
- pageInfo: PageInfo!
-
- """List of Salesforce Declined Event Relations"""
- nodes: [SalesforceDeclinedEventRelation!]!
-
- """List of Declined Event Relation edges"""
- edges: [SalesforceDeclinedEventRelationEdge!]!
-}
-
-"""
-A filter to be used against AcceptedEventRelation object types. All fields are combined with a logical ‘and.’
-"""
-input SalesforceAcceptedEventRelationConnectionFilter {
- """Filter against custom fields."""
- customField: SalesforceCustomFieldFilter
-
- """Filter by the AcceptedEventRelation's lastModifiedBy relation."""
- lastModifiedBy: SalesforceUserConnectionFilter
-
- """Filter by the AcceptedEventRelation's createdBy relation."""
- createdBy: SalesforceUserConnectionFilter
-
- """Filter by the AcceptedEventRelation's event relation."""
- event: SalesforceEventConnectionFilter
-
- """Filter by the AcceptedEventRelation's id field"""
- id: SalesforceIdFilter
-
- """Filter by the AcceptedEventRelation's relationId field"""
- relationId: SalesforceIdFilter
-
- """Filter by the AcceptedEventRelation's eventId field"""
- eventId: SalesforceIdFilter
-
- """Filter by the AcceptedEventRelation's respondedDate field"""
- respondedDate: SalesforceDateTimeFilter
-
- """Filter by the AcceptedEventRelation's response field"""
- response: SalesforceStringFilter
-
- """Filter by the AcceptedEventRelation's createdDate field"""
- createdDate: SalesforceDateTimeFilter
-
- """Filter by the AcceptedEventRelation's createdById field"""
- createdById: SalesforceIdFilter
-
- """Filter by the AcceptedEventRelation's lastModifiedDate field"""
- lastModifiedDate: SalesforceDateTimeFilter
-
- """Filter by the AcceptedEventRelation's lastModifiedById field"""
- lastModifiedById: SalesforceIdFilter
-
- """Filter by the AcceptedEventRelation's systemModstamp field"""
- systemModstamp: SalesforceDateTimeFilter
-
- """Filter by the AcceptedEventRelation's isDeleted field"""
- isDeleted: SalesforceBooleanFilter
-
- """Filter by the AcceptedEventRelation's type field"""
- type: SalesforceStringFilter
-
- """Checks for any expressions in this list."""
- or: [SalesforceAcceptedEventRelationConnectionFilter!]
-
- """Checks for all expressions in this list."""
- and: [SalesforceAcceptedEventRelationConnectionFilter!]
-}
-
-"""Field that Accepted Event Relations can be sorted by"""
-enum SalesforceAcceptedEventRelationSortByFieldEnum {
- ID
- RELATION_ID
- EVENT_ID
- RESPONDED_DATE
- RESPONSE
- CREATED_DATE
- CREATED_BY_ID
- LAST_MODIFIED_DATE
- LAST_MODIFIED_BY_ID
- SYSTEM_MODSTAMP
- IS_DELETED
- TYPE
-}
-
-"""An edge in a connection."""
-type SalesforceAcceptedEventRelationEdge {
- """The item at the end of the edge."""
- node: SalesforceAcceptedEventRelation!
-
- """A cursor for use in pagination"""
- cursor: String!
-}
-
-union SalesforceAcceptedEventRelationRelationUnion = SalesforceUser | SalesforceLead | SalesforceContact
-
-"""Accepted Event Relation"""
-type SalesforceAcceptedEventRelation implements OneGraphNode {
- """Event Relation ID"""
- id: String!
-
- """Relation ID"""
- relationId: String
-
- """Relation ID"""
- relation: SalesforceAcceptedEventRelationRelationUnion
-
- """Event ID"""
- eventId: String
-
- """Event ID"""
- event: SalesforceEvent
-
- """Response Date"""
- respondedDate: String
-
- """Response"""
- response: String
-
- """Created Date"""
- createdDate: String!
-
- """Created By ID"""
- createdById: String!
-
- """Created By ID"""
- createdBy: SalesforceUser!
-
- """Last Modified Date"""
- lastModifiedDate: String!
-
- """Last Modified By ID"""
- lastModifiedById: String!
-
- """Last Modified By ID"""
- lastModifiedBy: SalesforceUser!
-
- """System Modstamp"""
- systemModstamp: String!
-
- """Deleted"""
- isDeleted: Boolean!
-
- """Type"""
- type: String
- customFields(
- """
- List of custom fields to return. By default, returns all custom fields.
- """
- fields: [String!]
- ): JSON!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-"""Salesforce Accepted Event Relations connection, for use in pagination."""
-type SalesforceAcceptedEventRelationsConnection {
- """
- The count of all Accepted Event Relation you could get from the connection.
- """
- totalCount: Int!
-
- """Pagination Information"""
- pageInfo: PageInfo!
-
- """List of Salesforce Accepted Event Relations"""
- nodes: [SalesforceAcceptedEventRelation!]!
-
- """List of Accepted Event Relation edges"""
- edges: [SalesforceAcceptedEventRelationEdge!]!
-}
-
-"""
-A filter to be used against AssetRelationshipHistory object types. All fields are combined with a logical ‘and.’
-"""
-input SalesforceAssetRelationshipHistoryConnectionFilter {
- """Filter against custom fields."""
- customField: SalesforceCustomFieldFilter
-
- """Filter by the AssetRelationshipHistory's createdBy relation."""
- createdBy: SalesforceUserConnectionFilter
-
- """Filter by the AssetRelationshipHistory's assetRelationship relation."""
- assetRelationship: SalesforceAssetRelationshipConnectionFilter
-
- """Filter by the AssetRelationshipHistory's id field"""
- id: SalesforceIdFilter
-
- """Filter by the AssetRelationshipHistory's isDeleted field"""
- isDeleted: SalesforceBooleanFilter
-
- """Filter by the AssetRelationshipHistory's assetRelationshipId field"""
- assetRelationshipId: SalesforceIdFilter
-
- """Filter by the AssetRelationshipHistory's createdById field"""
- createdById: SalesforceIdFilter
-
- """Filter by the AssetRelationshipHistory's createdDate field"""
- createdDate: SalesforceDateTimeFilter
-
- """Filter by the AssetRelationshipHistory's field field"""
- field: SalesforceStringFilter
-
- """Checks for any expressions in this list."""
- or: [SalesforceAssetRelationshipHistoryConnectionFilter!]
-
- """Checks for all expressions in this list."""
- and: [SalesforceAssetRelationshipHistoryConnectionFilter!]
-}
-
-"""Field that Asset Relationship Histories can be sorted by"""
-enum SalesforceAssetRelationshipHistorySortByFieldEnum {
- ID
- IS_DELETED
- ASSET_RELATIONSHIP_ID
- CREATED_BY_ID
- CREATED_DATE
- FIELD
- OLD_VALUE
- NEW_VALUE
-}
-
-"""An edge in a connection."""
-type SalesforceAssetRelationshipHistoryEdge {
- """The item at the end of the edge."""
- node: SalesforceAssetRelationshipHistory!
-
- """A cursor for use in pagination"""
- cursor: String!
-}
-
-"""Asset Relationship History"""
-type SalesforceAssetRelationshipHistory implements OneGraphNode {
- """Asset Relationship History ID"""
- id: String!
-
- """Deleted"""
- isDeleted: Boolean!
-
- """Asset Relationship ID"""
- assetRelationshipId: String!
-
- """Asset Relationship ID"""
- assetRelationship: SalesforceAssetRelationship!
-
- """Created By ID"""
- createdById: String!
-
- """Created By ID"""
- createdBy: SalesforceUser!
-
- """Created Date"""
- createdDate: String!
-
- """Changed Field"""
- field: String!
-
- """Old Value"""
- oldValue: String
-
- """New Value"""
- newValue: String
- customFields(
- """
- List of custom fields to return. By default, returns all custom fields.
- """
- fields: [String!]
- ): JSON!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-"""
-Salesforce Asset Relationship Histories connection, for use in pagination.
-"""
-type SalesforceAssetRelationshipHistorysConnection {
- """
- The count of all Asset Relationship History you could get from the connection.
- """
- totalCount: Int!
-
- """Pagination Information"""
- pageInfo: PageInfo!
-
- """List of Salesforce Asset Relationship Histories"""
- nodes: [SalesforceAssetRelationshipHistory!]!
-
- """List of Asset Relationship History edges"""
- edges: [SalesforceAssetRelationshipHistoryEdge!]!
-}
-
-"""
-A filter to be used against AssetRelationshipFeed object types. All fields are combined with a logical ‘and.’
-"""
-input SalesforceAssetRelationshipFeedConnectionFilter {
- """Filter against custom fields."""
- customField: SalesforceCustomFieldFilter
-
- """Filter by the AssetRelationshipFeed's insertedBy relation."""
- insertedBy: SalesforceUserConnectionFilter
-
- """Filter by the AssetRelationshipFeed's relatedRecord relation."""
- relatedRecord: SalesforceContentVersionConnectionFilter
-
- """Filter by the AssetRelationshipFeed's createdBy relation."""
- createdBy: SalesforceUserConnectionFilter
-
- """Filter by the AssetRelationshipFeed's parent relation."""
- parent: SalesforceAssetRelationshipConnectionFilter
-
- """Filter by the AssetRelationshipFeed's id field"""
- id: SalesforceIdFilter
-
- """Filter by the AssetRelationshipFeed's parentId field"""
- parentId: SalesforceIdFilter
-
- """Filter by the AssetRelationshipFeed's type field"""
- type: SalesforceStringFilter
-
- """Filter by the AssetRelationshipFeed's createdById field"""
- createdById: SalesforceIdFilter
-
- """Filter by the AssetRelationshipFeed's createdDate field"""
- createdDate: SalesforceDateTimeFilter
-
- """Filter by the AssetRelationshipFeed's isDeleted field"""
- isDeleted: SalesforceBooleanFilter
-
- """Filter by the AssetRelationshipFeed's lastModifiedDate field"""
- lastModifiedDate: SalesforceDateTimeFilter
-
- """Filter by the AssetRelationshipFeed's systemModstamp field"""
- systemModstamp: SalesforceDateTimeFilter
-
- """Filter by the AssetRelationshipFeed's commentCount field"""
- commentCount: SalesforceIntFilter
-
- """Filter by the AssetRelationshipFeed's likeCount field"""
- likeCount: SalesforceIntFilter
-
- """Filter by the AssetRelationshipFeed's isRichText field"""
- isRichText: SalesforceBooleanFilter
-
- """Checks for any expressions in this list."""
- or: [SalesforceAssetRelationshipFeedConnectionFilter!]
-
- """Checks for all expressions in this list."""
- and: [SalesforceAssetRelationshipFeedConnectionFilter!]
-}
-
-"""Field that Asset Relationship Feeds can be sorted by"""
-enum SalesforceAssetRelationshipFeedSortByFieldEnum {
- ID
- PARENT_ID
- TYPE
- CREATED_BY_ID
- CREATED_DATE
- IS_DELETED
- LAST_MODIFIED_DATE
- SYSTEM_MODSTAMP
- COMMENT_COUNT
- LIKE_COUNT
- TITLE
- BODY
- LINK_URL
- IS_RICH_TEXT
- RELATED_RECORD_ID
- INSERTED_BY_ID
-}
-
-"""An edge in a connection."""
-type SalesforceAssetRelationshipFeedEdge {
- """The item at the end of the edge."""
- node: SalesforceAssetRelationshipFeed!
-
- """A cursor for use in pagination"""
- cursor: String!
-}
-
-"""Asset Relationship Feed"""
-type SalesforceAssetRelationshipFeed implements OneGraphNode {
- """Feed Item ID"""
- id: String!
-
- """Parent ID"""
- parentId: String!
-
- """Parent ID"""
- parent: SalesforceAssetRelationship!
-
- """Feed Item Type"""
- type: String
-
- """Created By ID"""
- createdById: String!
-
- """Created By ID"""
- createdBy: SalesforceUser!
-
- """Created Date"""
- createdDate: String!
-
- """Deleted"""
- isDeleted: Boolean!
-
- """Last Modified Date"""
- lastModifiedDate: String!
-
- """System Modstamp"""
- systemModstamp: String!
-
- """Comment Count"""
- commentCount: Int!
-
- """Like Count"""
- likeCount: Int!
-
- """Title"""
- title: String
-
- """Body"""
- body: String
-
- """Link Url"""
- linkUrl: String
-
- """Is Rich Text"""
- isRichText: Boolean!
-
- """Related Record ID"""
- relatedRecordId: String
-
- """Related Record ID"""
- relatedRecord: SalesforceContentVersion
-
- """InsertedBy ID"""
- insertedById: String
-
- """InsertedBy ID"""
- insertedBy: SalesforceUser
-
- """Collection of Salesforce FeedAttachment"""
- feedAttachments(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceFeedAttachmentConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceFeedAttachmentSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceFeedAttachmentSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of FeedAttachments to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceFeedAttachmentsConnection
-
- """Collection of Salesforce FeedComment"""
- feedComments(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceFeedCommentConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceFeedCommentSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceFeedCommentSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of FeedComments to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceFeedCommentsConnection
-
- """Collection of Salesforce FeedPollChoice"""
- feedPollChoices(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceFeedPollChoiceConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceFeedPollChoiceSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceFeedPollChoiceSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of FeedPollChoices to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceFeedPollChoicesConnection
-
- """Collection of Salesforce FeedPollVote"""
- feedPollVotes(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceFeedPollVoteConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceFeedPollVoteSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceFeedPollVoteSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of FeedPollVotes to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceFeedPollVotesConnection
- customFields(
- """
- List of custom fields to return. By default, returns all custom fields.
- """
- fields: [String!]
- ): JSON!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-"""Salesforce Asset Relationship Feeds connection, for use in pagination."""
-type SalesforceAssetRelationshipFeedsConnection {
- """
- The count of all Asset Relationship Feed you could get from the connection.
- """
- totalCount: Int!
-
- """Pagination Information"""
- pageInfo: PageInfo!
-
- """List of Salesforce Asset Relationship Feeds"""
- nodes: [SalesforceAssetRelationshipFeed!]!
-
- """List of Asset Relationship Feed edges"""
- edges: [SalesforceAssetRelationshipFeedEdge!]!
-}
-
-union SalesforceNoteAndAttachmentParentUnion = SalesforceProduct2 | SalesforceOrder | SalesforceOpportunity | SalesforceLead | SalesforceContract | SalesforceContact | SalesforceAsset | SalesforceAccount
-
-union SalesforceOpenActivityWhatUnion = SalesforceSolution | SalesforceProduct2 | SalesforceOrder | SalesforceOpportunity | SalesforceContract | SalesforceCase | SalesforceCampaign | SalesforceAssetRelationship | SalesforceAsset | SalesforceAccount
-
-union SalesforceLookedUpFromActivityWhatUnion = SalesforceSolution | SalesforceProduct2 | SalesforceOrder | SalesforceOpportunity | SalesforceContract | SalesforceCase | SalesforceCampaign | SalesforceAssetRelationship | SalesforceAsset | SalesforceAccount
-
-union SalesforceActivityHistoryWhatUnion = SalesforceSolution | SalesforceProduct2 | SalesforceOrder | SalesforceOpportunity | SalesforceContract | SalesforceCase | SalesforceCampaign | SalesforceAssetRelationship | SalesforceAsset | SalesforceAccount
-
-"""
-A filter to be used against Topic object types. All fields are combined with a logical ‘and.’
-"""
-input SalesforceTopicConnectionFilter {
- """Filter against custom fields."""
- customField: SalesforceCustomFieldFilter
-
- """Filter by the Topic's createdBy relation."""
- createdBy: SalesforceUserConnectionFilter
-
- """Filter by the Topic's id field"""
- id: SalesforceIdFilter
-
- """Filter by the Topic's name field"""
- name: SalesforceStringFilter
-
- """Filter by the Topic's description field"""
- description: SalesforceStringFilter
-
- """Filter by the Topic's createdDate field"""
- createdDate: SalesforceDateTimeFilter
-
- """Filter by the Topic's createdById field"""
- createdById: SalesforceIdFilter
-
- """Filter by the Topic's talkingAbout field"""
- talkingAbout: SalesforceIntFilter
-
- """Filter by the Topic's systemModstamp field"""
- systemModstamp: SalesforceDateTimeFilter
-
- """Checks for any expressions in this list."""
- or: [SalesforceTopicConnectionFilter!]
-
- """Checks for all expressions in this list."""
- and: [SalesforceTopicConnectionFilter!]
-}
-
-"""
-A filter to be used against TopicAssignment object types. All fields are combined with a logical ‘and.’
-"""
-input SalesforceTopicAssignmentConnectionFilter {
- """Filter against custom fields."""
- customField: SalesforceCustomFieldFilter
-
- """Filter by the TopicAssignment's createdBy relation."""
- createdBy: SalesforceUserConnectionFilter
-
- """Filter by the TopicAssignment's topic relation."""
- topic: SalesforceTopicConnectionFilter
-
- """Filter by the TopicAssignment's id field"""
- id: SalesforceIdFilter
-
- """Filter by the TopicAssignment's topicId field"""
- topicId: SalesforceIdFilter
-
- """Filter by the TopicAssignment's entityId field"""
- entityId: SalesforceIdFilter
-
- """Filter by the TopicAssignment's entityKeyPrefix field"""
- entityKeyPrefix: SalesforceStringFilter
-
- """Filter by the TopicAssignment's entityType field"""
- entityType: SalesforceStringFilter
-
- """Filter by the TopicAssignment's createdDate field"""
- createdDate: SalesforceDateTimeFilter
-
- """Filter by the TopicAssignment's createdById field"""
- createdById: SalesforceIdFilter
-
- """Filter by the TopicAssignment's isDeleted field"""
- isDeleted: SalesforceBooleanFilter
-
- """Filter by the TopicAssignment's systemModstamp field"""
- systemModstamp: SalesforceDateTimeFilter
-
- """Checks for any expressions in this list."""
- or: [SalesforceTopicAssignmentConnectionFilter!]
-
- """Checks for all expressions in this list."""
- and: [SalesforceTopicAssignmentConnectionFilter!]
-}
-
-"""Field that Records can be sorted by"""
-enum SalesforceTopicAssignmentSortByFieldEnum {
- ID
- TOPIC_ID
- ENTITY_ID
- ENTITY_KEY_PREFIX
- ENTITY_TYPE
- CREATED_DATE
- CREATED_BY_ID
- IS_DELETED
- SYSTEM_MODSTAMP
-}
-
-"""An edge in a connection."""
-type SalesforceTopicAssignmentEdge {
- """The item at the end of the edge."""
- node: SalesforceTopicAssignment!
-
- """A cursor for use in pagination"""
- cursor: String!
-}
-
-union SalesforceTopicAssignmentEntityUnion = SalesforceTask | SalesforceSolution | SalesforceOrder | SalesforceOpportunity | SalesforceLead | SalesforceFeedItem | SalesforceEvent | SalesforceContract | SalesforceContentDocument | SalesforceContact | SalesforceCase | SalesforceCampaign | SalesforceAsset | SalesforceAccount
-
-"""Record"""
-type SalesforceTopicAssignment implements OneGraphNode {
- """Topic Assignment Id"""
- id: String!
-
- """Topic ID"""
- topicId: String!
-
- """Topic ID"""
- topic: SalesforceTopic!
-
- """Entity ID"""
- entityId: String!
-
- """Entity ID"""
- entity: SalesforceTopicAssignmentEntityUnion!
-
- """Record Key Prefix"""
- entityKeyPrefix: String!
-
- """Object Type"""
- entityType: String
-
- """Created Date"""
- createdDate: String!
-
- """Created By ID"""
- createdById: String!
-
- """Created By ID"""
- createdBy: SalesforceUser!
-
- """Deleted"""
- isDeleted: Boolean!
-
- """System Modstamp"""
- systemModstamp: String!
-
- """Collection of Salesforce FlowRecordRelation"""
- flowRecordRelations(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceFlowRecordRelationConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceFlowRecordRelationSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceFlowRecordRelationsConnection
- customFields(
- """
- List of custom fields to return. By default, returns all custom fields.
- """
- fields: [String!]
- ): JSON!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-"""Salesforce Records connection, for use in pagination."""
-type SalesforceTopicAssignmentsConnection {
- """The count of all Record you could get from the connection."""
- totalCount: Int!
-
- """Pagination Information"""
- pageInfo: PageInfo!
-
- """List of Salesforce Records"""
- nodes: [SalesforceTopicAssignment!]!
-
- """List of Record edges"""
- edges: [SalesforceTopicAssignmentEdge!]!
-}
-
-"""Field that Tasks can be sorted by"""
-enum SalesforceTaskSortByFieldEnum {
- ID
- WHO_ID
- WHAT_ID
- SUBJECT
- ACTIVITY_DATE
- STATUS
- PRIORITY
- IS_HIGH_PRIORITY
- OWNER_ID
- IS_DELETED
- ACCOUNT_ID
- IS_CLOSED
- CREATED_DATE
- CREATED_BY_ID
- LAST_MODIFIED_DATE
- LAST_MODIFIED_BY_ID
- SYSTEM_MODSTAMP
- IS_ARCHIVED
- CALL_DURATION_IN_SECONDS
- CALL_TYPE
- CALL_DISPOSITION
- CALL_OBJECT
- REMINDER_DATE_TIME
- IS_REMINDER_SET
- RECURRENCE_ACTIVITY_ID
- IS_RECURRENCE
- RECURRENCE_START_DATE_ONLY
- RECURRENCE_END_DATE_ONLY
- RECURRENCE_TIME_ZONE_SID_KEY
- RECURRENCE_TYPE
- RECURRENCE_INTERVAL
- RECURRENCE_DAY_OF_WEEK_MASK
- RECURRENCE_DAY_OF_MONTH
- RECURRENCE_INSTANCE
- RECURRENCE_MONTH_OF_YEAR
- RECURRENCE_REGENERATED_TYPE
- TASK_SUBTYPE
-}
-
-"""An edge in a connection."""
-type SalesforceTaskEdge {
- """The item at the end of the edge."""
- node: SalesforceTask!
-
- """A cursor for use in pagination"""
- cursor: String!
-}
-
-"""Salesforce Tasks connection, for use in pagination."""
-type SalesforceTasksConnection {
- """The count of all Task you could get from the connection."""
- totalCount: Int!
-
- """Pagination Information"""
- pageInfo: PageInfo!
-
- """List of Salesforce Tasks"""
- nodes: [SalesforceTask!]!
-
- """List of Task edges"""
- edges: [SalesforceTaskEdge!]!
-}
-
-"""
-A filter to be used against Note object types. All fields are combined with a logical ‘and.’
-"""
-input SalesforceNoteConnectionFilter {
- """Filter against custom fields."""
- customField: SalesforceCustomFieldFilter
-
- """Filter by the Note's lastModifiedBy relation."""
- lastModifiedBy: SalesforceUserConnectionFilter
-
- """Filter by the Note's createdBy relation."""
- createdBy: SalesforceUserConnectionFilter
-
- """Filter by the Note's owner relation."""
- owner: SalesforceUserConnectionFilter
-
- """Filter by the Note's id field"""
- id: SalesforceIdFilter
-
- """Filter by the Note's isDeleted field"""
- isDeleted: SalesforceBooleanFilter
-
- """Filter by the Note's parentId field"""
- parentId: SalesforceIdFilter
-
- """Filter by the Note's title field"""
- title: SalesforceStringFilter
-
- """Filter by the Note's isPrivate field"""
- isPrivate: SalesforceBooleanFilter
-
- """Filter by the Note's ownerId field"""
- ownerId: SalesforceIdFilter
-
- """Filter by the Note's createdDate field"""
- createdDate: SalesforceDateTimeFilter
-
- """Filter by the Note's createdById field"""
- createdById: SalesforceIdFilter
-
- """Filter by the Note's lastModifiedDate field"""
- lastModifiedDate: SalesforceDateTimeFilter
-
- """Filter by the Note's lastModifiedById field"""
- lastModifiedById: SalesforceIdFilter
-
- """Filter by the Note's systemModstamp field"""
- systemModstamp: SalesforceDateTimeFilter
-
- """Checks for any expressions in this list."""
- or: [SalesforceNoteConnectionFilter!]
-
- """Checks for all expressions in this list."""
- and: [SalesforceNoteConnectionFilter!]
-}
-
-"""Field that Notes can be sorted by"""
-enum SalesforceNoteSortByFieldEnum {
- ID
- IS_DELETED
- PARENT_ID
- TITLE
- IS_PRIVATE
- OWNER_ID
- CREATED_DATE
- CREATED_BY_ID
- LAST_MODIFIED_DATE
- LAST_MODIFIED_BY_ID
- SYSTEM_MODSTAMP
-}
-
-"""An edge in a connection."""
-type SalesforceNoteEdge {
- """The item at the end of the edge."""
- node: SalesforceNote!
-
- """A cursor for use in pagination"""
- cursor: String!
-}
-
-union SalesforceNoteParentUnion = SalesforceProduct2 | SalesforceOrder | SalesforceOpportunity | SalesforceLead | SalesforceContract | SalesforceContact | SalesforceAsset | SalesforceAccount
-
-"""Note"""
-type SalesforceNote implements OneGraphNode {
- """Note Id"""
- id: String!
-
- """Deleted"""
- isDeleted: Boolean!
-
- """Parent ID"""
- parentId: String!
-
- """Parent ID"""
- parent: SalesforceNoteParentUnion!
-
- """Title"""
- title: String!
-
- """Private"""
- isPrivate: Boolean!
-
- """Body"""
- body: String
-
- """Owner ID"""
- ownerId: String!
-
- """Owner ID"""
- owner: SalesforceUser!
-
- """Created Date"""
- createdDate: String!
-
- """Created By ID"""
- createdById: String!
-
- """Created By ID"""
- createdBy: SalesforceUser!
-
- """Last Modified Date"""
- lastModifiedDate: String!
-
- """Last Modified By ID"""
- lastModifiedById: String!
-
- """Last Modified By ID"""
- lastModifiedBy: SalesforceUser!
-
- """System Modstamp"""
- systemModstamp: String!
-
- """Collection of Salesforce FlowRecordRelation"""
- flowRecordRelations(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceFlowRecordRelationConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceFlowRecordRelationSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceFlowRecordRelationsConnection
- customFields(
- """
- List of custom fields to return. By default, returns all custom fields.
- """
- fields: [String!]
- ): JSON!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-"""Salesforce Notes connection, for use in pagination."""
-type SalesforceNotesConnection {
- """The count of all Note you could get from the connection."""
- totalCount: Int!
-
- """Pagination Information"""
- pageInfo: PageInfo!
-
- """List of Salesforce Notes"""
- nodes: [SalesforceNote!]!
-
- """List of Note edges"""
- edges: [SalesforceNoteEdge!]!
-}
-
-"""
-A filter to be used against Event object types. All fields are combined with a logical ‘and.’
-"""
-input SalesforceEventConnectionFilter {
- """Filter against custom fields."""
- customField: SalesforceCustomFieldFilter
-
- """Filter by the Event's recurrenceActivity relation."""
- recurrenceActivity: SalesforceEventConnectionFilter
-
- """Filter by the Event's lastModifiedBy relation."""
- lastModifiedBy: SalesforceUserConnectionFilter
-
- """Filter by the Event's createdBy relation."""
- createdBy: SalesforceUserConnectionFilter
-
- """Filter by the Event's owner relation."""
- owner: SalesforceUserConnectionFilter
-
- """Filter by the Event's account relation."""
- account: SalesforceAccountConnectionFilter
-
- """Filter by the Event's id field"""
- id: SalesforceIdFilter
-
- """Filter by the Event's whoId field"""
- whoId: SalesforceIdFilter
-
- """Filter by the Event's whatId field"""
- whatId: SalesforceIdFilter
-
- """Filter by the Event's location field"""
- location: SalesforceStringFilter
-
- """Filter by the Event's isAllDayEvent field"""
- isAllDayEvent: SalesforceBooleanFilter
-
- """Filter by the Event's activityDateTime field"""
- activityDateTime: SalesforceDateTimeFilter
-
- """Filter by the Event's activityDate field"""
- activityDate: SalesforceDateFilter
-
- """Filter by the Event's durationInMinutes field"""
- durationInMinutes: SalesforceIntFilter
-
- """Filter by the Event's startDateTime field"""
- startDateTime: SalesforceDateTimeFilter
-
- """Filter by the Event's endDateTime field"""
- endDateTime: SalesforceDateTimeFilter
-
- """Filter by the Event's accountId field"""
- accountId: SalesforceIdFilter
-
- """Filter by the Event's ownerId field"""
- ownerId: SalesforceIdFilter
-
- """Filter by the Event's isPrivate field"""
- isPrivate: SalesforceBooleanFilter
-
- """Filter by the Event's showAs field"""
- showAs: SalesforceStringFilter
-
- """Filter by the Event's isDeleted field"""
- isDeleted: SalesforceBooleanFilter
-
- """Filter by the Event's isChild field"""
- isChild: SalesforceBooleanFilter
-
- """Filter by the Event's isGroupEvent field"""
- isGroupEvent: SalesforceBooleanFilter
-
- """Filter by the Event's groupEventType field"""
- groupEventType: SalesforceStringFilter
-
- """Filter by the Event's createdDate field"""
- createdDate: SalesforceDateTimeFilter
-
- """Filter by the Event's createdById field"""
- createdById: SalesforceIdFilter
-
- """Filter by the Event's lastModifiedDate field"""
- lastModifiedDate: SalesforceDateTimeFilter
-
- """Filter by the Event's lastModifiedById field"""
- lastModifiedById: SalesforceIdFilter
-
- """Filter by the Event's systemModstamp field"""
- systemModstamp: SalesforceDateTimeFilter
-
- """Filter by the Event's isArchived field"""
- isArchived: SalesforceBooleanFilter
-
- """Filter by the Event's recurrenceActivityId field"""
- recurrenceActivityId: SalesforceIdFilter
-
- """Filter by the Event's isRecurrence field"""
- isRecurrence: SalesforceBooleanFilter
-
- """Filter by the Event's recurrenceStartDateTime field"""
- recurrenceStartDateTime: SalesforceDateTimeFilter
-
- """Filter by the Event's recurrenceEndDateOnly field"""
- recurrenceEndDateOnly: SalesforceDateFilter
-
- """Filter by the Event's recurrenceTimeZoneSidKey field"""
- recurrenceTimeZoneSidKey: SalesforceStringFilter
-
- """Filter by the Event's recurrenceType field"""
- recurrenceType: SalesforceStringFilter
-
- """Filter by the Event's recurrenceInterval field"""
- recurrenceInterval: SalesforceIntFilter
-
- """Filter by the Event's recurrenceDayOfWeekMask field"""
- recurrenceDayOfWeekMask: SalesforceIntFilter
-
- """Filter by the Event's recurrenceDayOfMonth field"""
- recurrenceDayOfMonth: SalesforceIntFilter
-
- """Filter by the Event's recurrenceInstance field"""
- recurrenceInstance: SalesforceStringFilter
-
- """Filter by the Event's recurrenceMonthOfYear field"""
- recurrenceMonthOfYear: SalesforceStringFilter
-
- """Filter by the Event's reminderDateTime field"""
- reminderDateTime: SalesforceDateTimeFilter
-
- """Filter by the Event's isReminderSet field"""
- isReminderSet: SalesforceBooleanFilter
-
- """Filter by the Event's eventSubtype field"""
- eventSubtype: SalesforceStringFilter
-
- """Checks for any expressions in this list."""
- or: [SalesforceEventConnectionFilter!]
-
- """Checks for all expressions in this list."""
- and: [SalesforceEventConnectionFilter!]
-}
-
-"""Field that Events can be sorted by"""
-enum SalesforceEventSortByFieldEnum {
- ID
- WHO_ID
- WHAT_ID
- SUBJECT
- LOCATION
- IS_ALL_DAY_EVENT
- ACTIVITY_DATE_TIME
- ACTIVITY_DATE
- DURATION_IN_MINUTES
- START_DATE_TIME
- END_DATE_TIME
- ACCOUNT_ID
- OWNER_ID
- IS_PRIVATE
- SHOW_AS
- IS_DELETED
- IS_CHILD
- IS_GROUP_EVENT
- GROUP_EVENT_TYPE
- CREATED_DATE
- CREATED_BY_ID
- LAST_MODIFIED_DATE
- LAST_MODIFIED_BY_ID
- SYSTEM_MODSTAMP
- IS_ARCHIVED
- RECURRENCE_ACTIVITY_ID
- IS_RECURRENCE
- RECURRENCE_START_DATE_TIME
- RECURRENCE_END_DATE_ONLY
- RECURRENCE_TIME_ZONE_SID_KEY
- RECURRENCE_TYPE
- RECURRENCE_INTERVAL
- RECURRENCE_DAY_OF_WEEK_MASK
- RECURRENCE_DAY_OF_MONTH
- RECURRENCE_INSTANCE
- RECURRENCE_MONTH_OF_YEAR
- REMINDER_DATE_TIME
- IS_REMINDER_SET
- EVENT_SUBTYPE
-}
-
-"""An edge in a connection."""
-type SalesforceEventEdge {
- """The item at the end of the edge."""
- node: SalesforceEvent!
-
- """A cursor for use in pagination"""
- cursor: String!
-}
-
-"""Salesforce Events connection, for use in pagination."""
-type SalesforceEventsConnection {
- """The count of all Event you could get from the connection."""
- totalCount: Int!
-
- """Pagination Information"""
- pageInfo: PageInfo!
-
- """List of Salesforce Events"""
- nodes: [SalesforceEvent!]!
-
- """List of Event edges"""
- edges: [SalesforceEventEdge!]!
-}
-
-"""An edge in a connection."""
-type SalesforceEmailMessageEdge {
- """The item at the end of the edge."""
- node: SalesforceEmailMessage!
-
- """A cursor for use in pagination"""
- cursor: String!
-}
-
-"""
-A filter to be used against EmailMessageRelation object types. All fields are combined with a logical ‘and.’
-"""
-input SalesforceEmailMessageRelationConnectionFilter {
- """Filter against custom fields."""
- customField: SalesforceCustomFieldFilter
-
- """Filter by the EmailMessageRelation's createdBy relation."""
- createdBy: SalesforceUserConnectionFilter
-
- """Filter by the EmailMessageRelation's emailMessage relation."""
- emailMessage: SalesforceEmailMessageConnectionFilter
-
- """Filter by the EmailMessageRelation's id field"""
- id: SalesforceIdFilter
-
- """Filter by the EmailMessageRelation's emailMessageId field"""
- emailMessageId: SalesforceIdFilter
-
- """Filter by the EmailMessageRelation's relationId field"""
- relationId: SalesforceIdFilter
-
- """Filter by the EmailMessageRelation's relationType field"""
- relationType: SalesforceStringFilter
-
- """Filter by the EmailMessageRelation's relationAddress field"""
- relationAddress: SalesforceStringFilter
-
- """Filter by the EmailMessageRelation's relationObjectType field"""
- relationObjectType: SalesforceStringFilter
-
- """Filter by the EmailMessageRelation's createdDate field"""
- createdDate: SalesforceDateTimeFilter
-
- """Filter by the EmailMessageRelation's createdById field"""
- createdById: SalesforceIdFilter
-
- """Filter by the EmailMessageRelation's systemModstamp field"""
- systemModstamp: SalesforceDateTimeFilter
-
- """Filter by the EmailMessageRelation's isDeleted field"""
- isDeleted: SalesforceBooleanFilter
-
- """Checks for any expressions in this list."""
- or: [SalesforceEmailMessageRelationConnectionFilter!]
-
- """Checks for all expressions in this list."""
- and: [SalesforceEmailMessageRelationConnectionFilter!]
-}
-
-"""Field that Email Message Relations can be sorted by"""
-enum SalesforceEmailMessageRelationSortByFieldEnum {
- ID
- EMAIL_MESSAGE_ID
- RELATION_ID
- RELATION_TYPE
- RELATION_ADDRESS
- RELATION_OBJECT_TYPE
- CREATED_DATE
- CREATED_BY_ID
- SYSTEM_MODSTAMP
- IS_DELETED
-}
-
-"""An edge in a connection."""
-type SalesforceEmailMessageRelationEdge {
- """The item at the end of the edge."""
- node: SalesforceEmailMessageRelation!
-
- """A cursor for use in pagination"""
- cursor: String!
-}
-
-union SalesforceEmailMessageRelationRelationUnion = SalesforceUser | SalesforceLead | SalesforceContact
-
-"""Email Message Relation"""
-type SalesforceEmailMessageRelation implements OneGraphNode {
- """Email Message Relation ID"""
- id: String!
-
- """Email Message ID"""
- emailMessageId: String!
-
- """Email Message ID"""
- emailMessage: SalesforceEmailMessage!
-
- """Relation ID"""
- relationId: String
-
- """Relation ID"""
- relation: SalesforceEmailMessageRelationRelationUnion
-
- """Relation Type"""
- relationType: String!
-
- """Relation Address"""
- relationAddress: String
-
- """Relation Object Type"""
- relationObjectType: String
-
- """Created Date"""
- createdDate: String!
-
- """Created By ID"""
- createdById: String!
-
- """Created By ID"""
- createdBy: SalesforceUser!
-
- """System Modstamp"""
- systemModstamp: String!
-
- """Deleted"""
- isDeleted: Boolean!
-
- """Collection of Salesforce FlowRecordRelation"""
- flowRecordRelations(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceFlowRecordRelationConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceFlowRecordRelationSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceFlowRecordRelationsConnection
- customFields(
- """
- List of custom fields to return. By default, returns all custom fields.
- """
- fields: [String!]
- ): JSON!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-"""Salesforce Email Message Relations connection, for use in pagination."""
-type SalesforceEmailMessageRelationsConnection {
- """
- The count of all Email Message Relation you could get from the connection.
- """
- totalCount: Int!
-
- """Pagination Information"""
- pageInfo: PageInfo!
-
- """List of Salesforce Email Message Relations"""
- nodes: [SalesforceEmailMessageRelation!]!
-
- """List of Email Message Relation edges"""
- edges: [SalesforceEmailMessageRelationEdge!]!
-}
-
-"""
-A filter to be used against Task object types. All fields are combined with a logical ‘and.’
-"""
-input SalesforceTaskConnectionFilter {
- """Filter against custom fields."""
- customField: SalesforceCustomFieldFilter
-
- """Filter by the Task's recurrenceActivity relation."""
- recurrenceActivity: SalesforceTaskConnectionFilter
-
- """Filter by the Task's lastModifiedBy relation."""
- lastModifiedBy: SalesforceUserConnectionFilter
-
- """Filter by the Task's createdBy relation."""
- createdBy: SalesforceUserConnectionFilter
-
- """Filter by the Task's account relation."""
- account: SalesforceAccountConnectionFilter
-
- """Filter by the Task's owner relation."""
- owner: SalesforceUserConnectionFilter
-
- """Filter by the Task's id field"""
- id: SalesforceIdFilter
-
- """Filter by the Task's whoId field"""
- whoId: SalesforceIdFilter
-
- """Filter by the Task's whatId field"""
- whatId: SalesforceIdFilter
-
- """Filter by the Task's activityDate field"""
- activityDate: SalesforceDateFilter
-
- """Filter by the Task's status field"""
- status: SalesforceStringFilter
-
- """Filter by the Task's priority field"""
- priority: SalesforceStringFilter
-
- """Filter by the Task's isHighPriority field"""
- isHighPriority: SalesforceBooleanFilter
-
- """Filter by the Task's ownerId field"""
- ownerId: SalesforceIdFilter
-
- """Filter by the Task's isDeleted field"""
- isDeleted: SalesforceBooleanFilter
-
- """Filter by the Task's accountId field"""
- accountId: SalesforceIdFilter
-
- """Filter by the Task's isClosed field"""
- isClosed: SalesforceBooleanFilter
-
- """Filter by the Task's createdDate field"""
- createdDate: SalesforceDateTimeFilter
-
- """Filter by the Task's createdById field"""
- createdById: SalesforceIdFilter
-
- """Filter by the Task's lastModifiedDate field"""
- lastModifiedDate: SalesforceDateTimeFilter
-
- """Filter by the Task's lastModifiedById field"""
- lastModifiedById: SalesforceIdFilter
-
- """Filter by the Task's systemModstamp field"""
- systemModstamp: SalesforceDateTimeFilter
-
- """Filter by the Task's isArchived field"""
- isArchived: SalesforceBooleanFilter
-
- """Filter by the Task's callDurationInSeconds field"""
- callDurationInSeconds: SalesforceIntFilter
-
- """Filter by the Task's callType field"""
- callType: SalesforceStringFilter
-
- """Filter by the Task's callDisposition field"""
- callDisposition: SalesforceStringFilter
-
- """Filter by the Task's callObject field"""
- callObject: SalesforceStringFilter
-
- """Filter by the Task's reminderDateTime field"""
- reminderDateTime: SalesforceDateTimeFilter
-
- """Filter by the Task's isReminderSet field"""
- isReminderSet: SalesforceBooleanFilter
-
- """Filter by the Task's recurrenceActivityId field"""
- recurrenceActivityId: SalesforceIdFilter
-
- """Filter by the Task's isRecurrence field"""
- isRecurrence: SalesforceBooleanFilter
-
- """Filter by the Task's recurrenceStartDateOnly field"""
- recurrenceStartDateOnly: SalesforceDateFilter
-
- """Filter by the Task's recurrenceEndDateOnly field"""
- recurrenceEndDateOnly: SalesforceDateFilter
-
- """Filter by the Task's recurrenceTimeZoneSidKey field"""
- recurrenceTimeZoneSidKey: SalesforceStringFilter
-
- """Filter by the Task's recurrenceType field"""
- recurrenceType: SalesforceStringFilter
-
- """Filter by the Task's recurrenceInterval field"""
- recurrenceInterval: SalesforceIntFilter
-
- """Filter by the Task's recurrenceDayOfWeekMask field"""
- recurrenceDayOfWeekMask: SalesforceIntFilter
-
- """Filter by the Task's recurrenceDayOfMonth field"""
- recurrenceDayOfMonth: SalesforceIntFilter
-
- """Filter by the Task's recurrenceInstance field"""
- recurrenceInstance: SalesforceStringFilter
-
- """Filter by the Task's recurrenceMonthOfYear field"""
- recurrenceMonthOfYear: SalesforceStringFilter
-
- """Filter by the Task's recurrenceRegeneratedType field"""
- recurrenceRegeneratedType: SalesforceStringFilter
-
- """Filter by the Task's taskSubtype field"""
- taskSubtype: SalesforceStringFilter
-
- """Checks for any expressions in this list."""
- or: [SalesforceTaskConnectionFilter!]
-
- """Checks for all expressions in this list."""
- and: [SalesforceTaskConnectionFilter!]
-}
-
-"""
-A filter to be used against EmailMessage object types. All fields are combined with a logical ‘and.’
-"""
-input SalesforceEmailMessageConnectionFilter {
- """Filter against custom fields."""
- customField: SalesforceCustomFieldFilter
-
- """Filter by the EmailMessage's replyToEmailMessage relation."""
- replyToEmailMessage: SalesforceEmailMessageConnectionFilter
-
- """Filter by the EmailMessage's lastModifiedBy relation."""
- lastModifiedBy: SalesforceUserConnectionFilter
-
- """Filter by the EmailMessage's createdBy relation."""
- createdBy: SalesforceUserConnectionFilter
-
- """Filter by the EmailMessage's activity relation."""
- activity: SalesforceTaskConnectionFilter
-
- """Filter by the EmailMessage's parent relation."""
- parent: SalesforceCaseConnectionFilter
-
- """Filter by the EmailMessage's id field"""
- id: SalesforceIdFilter
-
- """Filter by the EmailMessage's parentId field"""
- parentId: SalesforceIdFilter
-
- """Filter by the EmailMessage's activityId field"""
- activityId: SalesforceIdFilter
-
- """Filter by the EmailMessage's createdById field"""
- createdById: SalesforceIdFilter
-
- """Filter by the EmailMessage's createdDate field"""
- createdDate: SalesforceDateTimeFilter
-
- """Filter by the EmailMessage's lastModifiedDate field"""
- lastModifiedDate: SalesforceDateTimeFilter
-
- """Filter by the EmailMessage's lastModifiedById field"""
- lastModifiedById: SalesforceIdFilter
-
- """Filter by the EmailMessage's systemModstamp field"""
- systemModstamp: SalesforceDateTimeFilter
-
- """Filter by the EmailMessage's subject field"""
- subject: SalesforceStringFilter
-
- """Filter by the EmailMessage's fromName field"""
- fromName: SalesforceStringFilter
-
- """Filter by the EmailMessage's fromAddress field"""
- fromAddress: SalesforceStringFilter
-
- """Filter by the EmailMessage's validatedFromAddress field"""
- validatedFromAddress: SalesforceStringFilter
-
- """Filter by the EmailMessage's toAddress field"""
- toAddress: SalesforceStringFilter
-
- """Filter by the EmailMessage's ccAddress field"""
- ccAddress: SalesforceStringFilter
-
- """Filter by the EmailMessage's bccAddress field"""
- bccAddress: SalesforceStringFilter
-
- """Filter by the EmailMessage's incoming field"""
- incoming: SalesforceBooleanFilter
-
- """Filter by the EmailMessage's hasAttachment field"""
- hasAttachment: SalesforceBooleanFilter
-
- """Filter by the EmailMessage's status field"""
- status: SalesforceStringFilter
-
- """Filter by the EmailMessage's messageDate field"""
- messageDate: SalesforceDateTimeFilter
-
- """Filter by the EmailMessage's isDeleted field"""
- isDeleted: SalesforceBooleanFilter
-
- """Filter by the EmailMessage's replyToEmailMessageId field"""
- replyToEmailMessageId: SalesforceIdFilter
-
- """Filter by the EmailMessage's isExternallyVisible field"""
- isExternallyVisible: SalesforceBooleanFilter
-
- """Filter by the EmailMessage's messageIdentifier field"""
- messageIdentifier: SalesforceStringFilter
-
- """Filter by the EmailMessage's threadIdentifier field"""
- threadIdentifier: SalesforceStringFilter
-
- """Filter by the EmailMessage's isClientManaged field"""
- isClientManaged: SalesforceBooleanFilter
-
- """Filter by the EmailMessage's relatedToId field"""
- relatedToId: SalesforceIdFilter
-
- """Checks for any expressions in this list."""
- or: [SalesforceEmailMessageConnectionFilter!]
-
- """Checks for all expressions in this list."""
- and: [SalesforceEmailMessageConnectionFilter!]
-}
-
-"""Field that Email Messages can be sorted by"""
-enum SalesforceEmailMessageSortByFieldEnum {
- ID
- PARENT_ID
- ACTIVITY_ID
- CREATED_BY_ID
- CREATED_DATE
- LAST_MODIFIED_DATE
- LAST_MODIFIED_BY_ID
- SYSTEM_MODSTAMP
- SUBJECT
- FROM_NAME
- FROM_ADDRESS
- VALIDATED_FROM_ADDRESS
- TO_ADDRESS
- CC_ADDRESS
- BCC_ADDRESS
- INCOMING
- HAS_ATTACHMENT
- STATUS
- MESSAGE_DATE
- IS_DELETED
- REPLY_TO_EMAIL_MESSAGE_ID
- IS_EXTERNALLY_VISIBLE
- MESSAGE_IDENTIFIER
- THREAD_IDENTIFIER
- IS_CLIENT_MANAGED
- RELATED_TO_ID
-}
-
-"""An edge in a connection."""
-type SalesforceContentDistributionEdge {
- """The item at the end of the edge."""
- node: SalesforceContentDistribution!
-
- """A cursor for use in pagination"""
- cursor: String!
-}
-
-"""An edge in a connection."""
-type SalesforceContentDistributionViewEdge {
- """The item at the end of the edge."""
- node: SalesforceContentDistributionView!
-
- """A cursor for use in pagination"""
- cursor: String!
-}
-
-"""
-A filter to be used against ContentDistributionView object types. All fields are combined with a logical ‘and.’
-"""
-input SalesforceContentDistributionViewConnectionFilter {
- """Filter against custom fields."""
- customField: SalesforceCustomFieldFilter
-
- """Filter by the ContentDistributionView's createdBy relation."""
- createdBy: SalesforceUserConnectionFilter
-
- """Filter by the ContentDistributionView's parentView relation."""
- parentView: SalesforceContentDistributionViewConnectionFilter
-
- """Filter by the ContentDistributionView's distribution relation."""
- distribution: SalesforceContentDistributionConnectionFilter
-
- """Filter by the ContentDistributionView's id field"""
- id: SalesforceIdFilter
-
- """Filter by the ContentDistributionView's distributionId field"""
- distributionId: SalesforceIdFilter
-
- """Filter by the ContentDistributionView's parentViewId field"""
- parentViewId: SalesforceIdFilter
-
- """Filter by the ContentDistributionView's createdDate field"""
- createdDate: SalesforceDateTimeFilter
-
- """Filter by the ContentDistributionView's createdById field"""
- createdById: SalesforceIdFilter
-
- """Filter by the ContentDistributionView's systemModstamp field"""
- systemModstamp: SalesforceDateTimeFilter
-
- """Filter by the ContentDistributionView's isDeleted field"""
- isDeleted: SalesforceBooleanFilter
-
- """Filter by the ContentDistributionView's isInternal field"""
- isInternal: SalesforceBooleanFilter
-
- """Filter by the ContentDistributionView's isDownload field"""
- isDownload: SalesforceBooleanFilter
-
- """Checks for any expressions in this list."""
- or: [SalesforceContentDistributionViewConnectionFilter!]
-
- """Checks for all expressions in this list."""
- and: [SalesforceContentDistributionViewConnectionFilter!]
-}
-
-"""Field that Content Delivery Views can be sorted by"""
-enum SalesforceContentDistributionViewSortByFieldEnum {
- ID
- DISTRIBUTION_ID
- PARENT_VIEW_ID
- CREATED_DATE
- CREATED_BY_ID
- SYSTEM_MODSTAMP
- IS_DELETED
- IS_INTERNAL
- IS_DOWNLOAD
-}
-
-"""Content Delivery View"""
-type SalesforceContentDistributionView implements OneGraphNode {
- """Content Delivery View ID"""
- id: String!
-
- """Content Delivery ID"""
- distributionId: String!
-
- """Content Delivery ID"""
- distribution: SalesforceContentDistribution!
-
- """Content Delivery View ID"""
- parentViewId: String
-
- """Content Delivery View ID"""
- parentView: SalesforceContentDistributionView
-
- """View Date"""
- createdDate: String!
-
- """Created By ID"""
- createdById: String!
-
- """Created By ID"""
- createdBy: SalesforceUser!
-
- """System Modstamp"""
- systemModstamp: String!
-
- """Deleted"""
- isDeleted: Boolean!
-
- """Internal View"""
- isInternal: Boolean!
-
- """File Downloaded"""
- isDownload: Boolean!
-
- """Collection of Salesforce ContentDistributionView"""
- contentDistributionViews(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceContentDistributionViewConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceContentDistributionViewSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceContentDistributionViewSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """
- Number of ContentDistributionViews to fetch. Defaults to 10. Maximum is 60.
- """
- first: Int
- ): SalesforceContentDistributionViewsConnection
- customFields(
- """
- List of custom fields to return. By default, returns all custom fields.
- """
- fields: [String!]
- ): JSON!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-"""Salesforce Content Delivery Views connection, for use in pagination."""
-type SalesforceContentDistributionViewsConnection {
- """
- The count of all Content Delivery View you could get from the connection.
- """
- totalCount: Int!
-
- """Pagination Information"""
- pageInfo: PageInfo!
-
- """List of Salesforce Content Delivery Views"""
- nodes: [SalesforceContentDistributionView!]!
-
- """List of Content Delivery View edges"""
- edges: [SalesforceContentDistributionViewEdge!]!
-}
-
-union SalesforceOutgoingEmailWhoUnion = SalesforceLead | SalesforceContact
-
-union SalesforceOutgoingEmailRelatedToUnion = SalesforceSolution | SalesforceProduct2 | SalesforceOrder | SalesforceOpportunity | SalesforceContract | SalesforceCampaign | SalesforceAssetRelationship | SalesforceAsset | SalesforceAccount
-
-"""Outgoing Email"""
-type SalesforceOutgoingEmail {
- """Outgoing Email ID"""
- id: String!
-
- """External ID"""
- externalId: String
-
- """From"""
- validatedFromAddress: String
-
- """To"""
- toAddress: String
-
- """CC"""
- ccAddress: String
-
- """BCC"""
- bccAddress: String
-
- """Subject"""
- subject: String
-
- """Text Body"""
- textBody: String
-
- """HTML Body"""
- htmlBody: String
-
- """Related To ID"""
- relatedToId: String
-
- """Related To ID"""
- relatedTo: SalesforceOutgoingEmailRelatedToUnion
-
- """Name ID"""
- whoId: String
-
- """Name ID"""
- who: SalesforceOutgoingEmailWhoUnion
-
- """Email Template ID"""
- emailTemplateId: String
-
- """Email Template ID"""
- emailTemplate: SalesforceEmailTemplate
-
- """Collection of Salesforce ContentDocumentLink"""
- contentDocumentLinks(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceContentDocumentLinkConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceContentDocumentLinkSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceContentDocumentLinkSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """
- Number of ContentDocumentLinks to fetch. Defaults to 10. Maximum is 60.
- """
- first: Int
- ): SalesforceContentDocumentLinksConnection
-
- """Collection of Salesforce ContentVersion"""
- contentVersions(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceContentVersionConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceContentVersionSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceContentVersionSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of ContentVersions to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceContentVersionsConnection
- customFields(
- """
- List of custom fields to return. By default, returns all custom fields.
- """
- fields: [String!]
- ): JSON!
-}
-
-union SalesforceContentVersionFirstPublishLocationUnion = SalesforceUser | SalesforceTopic | SalesforceTask | SalesforceSolution | SalesforceSite | SalesforceReport | SalesforceProduct2 | SalesforceOutgoingEmail | SalesforceOrganization | SalesforceOrderItem | SalesforceOrder | SalesforceOpportunity | SalesforceListEmail | SalesforceLead | SalesforceEvent | SalesforceEmailTemplate | SalesforceEmailMessage | SalesforceDashboardComponent | SalesforceDashboard | SalesforceContract | SalesforceContentWorkspace | SalesforceContact | SalesforceCollaborationGroup | SalesforceCase | SalesforceCampaign | SalesforceAssetRelationship | SalesforceAsset | SalesforceAccount
-
-union SalesforceFeedCommentParentUnion = SalesforceUser | SalesforceTopic | SalesforceTask | SalesforceSolution | SalesforceSite | SalesforceReport | SalesforceProduct2 | SalesforceOrderItem | SalesforceOrder | SalesforceOpportunity | SalesforceLead | SalesforceEvent | SalesforceDashboardComponent | SalesforceDashboard | SalesforceContract | SalesforceContentDocument | SalesforceContact | SalesforceCollaborationGroup | SalesforceCase | SalesforceCampaign | SalesforceAssetRelationship | SalesforceAsset | SalesforceAccount
-
-"""An edge in a connection."""
-type SalesforceCollaborationInvitationEdge {
- """The item at the end of the edge."""
- node: SalesforceCollaborationInvitation!
-
- """A cursor for use in pagination"""
- cursor: String!
-}
-
-"""
-A filter to be used against CollaborationInvitation object types. All fields are combined with a logical ‘and.’
-"""
-input SalesforceCollaborationInvitationConnectionFilter {
- """Filter against custom fields."""
- customField: SalesforceCustomFieldFilter
-
- """Filter by the CollaborationInvitation's lastModifiedBy relation."""
- lastModifiedBy: SalesforceUserConnectionFilter
-
- """Filter by the CollaborationInvitation's createdBy relation."""
- createdBy: SalesforceUserConnectionFilter
-
- """Filter by the CollaborationInvitation's inviter relation."""
- inviter: SalesforceUserConnectionFilter
-
- """Filter by the CollaborationInvitation's parent relation."""
- parent: SalesforceCollaborationInvitationConnectionFilter
-
- """Filter by the CollaborationInvitation's id field"""
- id: SalesforceIdFilter
-
- """Filter by the CollaborationInvitation's parentId field"""
- parentId: SalesforceIdFilter
-
- """Filter by the CollaborationInvitation's sharedEntityId field"""
- sharedEntityId: SalesforceIdFilter
-
- """Filter by the CollaborationInvitation's inviterId field"""
- inviterId: SalesforceIdFilter
-
- """Filter by the CollaborationInvitation's invitedUserEmail field"""
- invitedUserEmail: SalesforceStringFilter
-
- """
- Filter by the CollaborationInvitation's invitedUserEmailNormalized field
- """
- invitedUserEmailNormalized: SalesforceStringFilter
-
- """Filter by the CollaborationInvitation's status field"""
- status: SalesforceStringFilter
-
- """Filter by the CollaborationInvitation's optionalMessage field"""
- optionalMessage: SalesforceStringFilter
-
- """Filter by the CollaborationInvitation's createdDate field"""
- createdDate: SalesforceDateTimeFilter
-
- """Filter by the CollaborationInvitation's createdById field"""
- createdById: SalesforceIdFilter
-
- """Filter by the CollaborationInvitation's lastModifiedDate field"""
- lastModifiedDate: SalesforceDateTimeFilter
-
- """Filter by the CollaborationInvitation's lastModifiedById field"""
- lastModifiedById: SalesforceIdFilter
-
- """Filter by the CollaborationInvitation's systemModstamp field"""
- systemModstamp: SalesforceDateTimeFilter
-
- """Checks for any expressions in this list."""
- or: [SalesforceCollaborationInvitationConnectionFilter!]
-
- """Checks for all expressions in this list."""
- and: [SalesforceCollaborationInvitationConnectionFilter!]
-}
-
-"""Field that Chatter Invitations can be sorted by"""
-enum SalesforceCollaborationInvitationSortByFieldEnum {
- ID
- PARENT_ID
- SHARED_ENTITY_ID
- INVITER_ID
- INVITED_USER_EMAIL
- INVITED_USER_EMAIL_NORMALIZED
- STATUS
- OPTIONAL_MESSAGE
- CREATED_DATE
- CREATED_BY_ID
- LAST_MODIFIED_DATE
- LAST_MODIFIED_BY_ID
- SYSTEM_MODSTAMP
-}
-
-union SalesforceCollaborationInvitationSharedEntityUnion = SalesforceUser | SalesforceCollaborationGroup
-
-"""Chatter Invitation"""
-type SalesforceCollaborationInvitation implements OneGraphNode {
- """Chatter Invitation Id"""
- id: String!
-
- """Parent ID"""
- parentId: String
-
- """Parent ID"""
- parent: SalesforceCollaborationInvitation
-
- """Shared Entity ID"""
- sharedEntityId: String!
-
- """Shared Entity ID"""
- sharedEntity: SalesforceCollaborationInvitationSharedEntityUnion!
-
- """Inviter User ID"""
- inviterId: String!
-
- """Inviter User ID"""
- inviter: SalesforceUser!
-
- """Invited Email"""
- invitedUserEmail: String!
-
- """Invited Email (Normalized)"""
- invitedUserEmailNormalized: String!
-
- """Invitation Status"""
- status: String!
-
- """Optional Message"""
- optionalMessage: String
-
- """Created Date"""
- createdDate: String!
-
- """Created By ID"""
- createdById: String!
-
- """Created By ID"""
- createdBy: SalesforceUser!
-
- """Modified Date"""
- lastModifiedDate: String!
-
- """Last Modified By ID"""
- lastModifiedById: String!
-
- """Last Modified By ID"""
- lastModifiedBy: SalesforceUser!
-
- """System Modstamp"""
- systemModstamp: String!
-
- """Collection of Salesforce CollaborationInvitation"""
- collaborationInvitations(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceCollaborationInvitationConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceCollaborationInvitationSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceCollaborationInvitationSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """
- Number of CollaborationInvitations to fetch. Defaults to 10. Maximum is 60.
- """
- first: Int
- ): SalesforceCollaborationInvitationsConnection
-
- """Collection of Salesforce FlowRecordRelation"""
- flowRecordRelations(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceFlowRecordRelationConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceFlowRecordRelationSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceFlowRecordRelationsConnection
- customFields(
- """
- List of custom fields to return. By default, returns all custom fields.
- """
- fields: [String!]
- ): JSON!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-"""Salesforce Chatter Invitations connection, for use in pagination."""
-type SalesforceCollaborationInvitationsConnection {
- """The count of all Chatter Invitation you could get from the connection."""
- totalCount: Int!
-
- """Pagination Information"""
- pageInfo: PageInfo!
-
- """List of Salesforce Chatter Invitations"""
- nodes: [SalesforceCollaborationInvitation!]!
-
- """List of Chatter Invitation edges"""
- edges: [SalesforceCollaborationInvitationEdge!]!
-}
-
-"""
-A filter to be used against CollaborationGroupRecord object types. All fields are combined with a logical ‘and.’
-"""
-input SalesforceCollaborationGroupRecordConnectionFilter {
- """Filter against custom fields."""
- customField: SalesforceCustomFieldFilter
-
- """Filter by the CollaborationGroupRecord's collaborationGroup relation."""
- collaborationGroup: SalesforceCollaborationGroupConnectionFilter
-
- """Filter by the CollaborationGroupRecord's lastModifiedBy relation."""
- lastModifiedBy: SalesforceUserConnectionFilter
-
- """Filter by the CollaborationGroupRecord's createdBy relation."""
- createdBy: SalesforceUserConnectionFilter
-
- """Filter by the CollaborationGroupRecord's id field"""
- id: SalesforceIdFilter
-
- """Filter by the CollaborationGroupRecord's isDeleted field"""
- isDeleted: SalesforceBooleanFilter
-
- """Filter by the CollaborationGroupRecord's createdDate field"""
- createdDate: SalesforceDateTimeFilter
-
- """Filter by the CollaborationGroupRecord's createdById field"""
- createdById: SalesforceIdFilter
-
- """Filter by the CollaborationGroupRecord's lastModifiedDate field"""
- lastModifiedDate: SalesforceDateTimeFilter
-
- """Filter by the CollaborationGroupRecord's lastModifiedById field"""
- lastModifiedById: SalesforceIdFilter
-
- """Filter by the CollaborationGroupRecord's systemModstamp field"""
- systemModstamp: SalesforceDateTimeFilter
-
- """Filter by the CollaborationGroupRecord's collaborationGroupId field"""
- collaborationGroupId: SalesforceIdFilter
-
- """Filter by the CollaborationGroupRecord's recordId field"""
- recordId: SalesforceIdFilter
-
- """Checks for any expressions in this list."""
- or: [SalesforceCollaborationGroupRecordConnectionFilter!]
-
- """Checks for all expressions in this list."""
- and: [SalesforceCollaborationGroupRecordConnectionFilter!]
-}
-
-"""Field that Group Records can be sorted by"""
-enum SalesforceCollaborationGroupRecordSortByFieldEnum {
- ID
- IS_DELETED
- CREATED_DATE
- CREATED_BY_ID
- LAST_MODIFIED_DATE
- LAST_MODIFIED_BY_ID
- SYSTEM_MODSTAMP
- COLLABORATION_GROUP_ID
- RECORD_ID
-}
-
-"""An edge in a connection."""
-type SalesforceCollaborationGroupRecordEdge {
- """The item at the end of the edge."""
- node: SalesforceCollaborationGroupRecord!
-
- """A cursor for use in pagination"""
- cursor: String!
-}
-
-union SalesforceCollaborationGroupRecordRecordUnion = SalesforceOpportunity | SalesforceLead | SalesforceContract | SalesforceContact | SalesforceCase | SalesforceCampaign | SalesforceAccount
-
-"""Group Record"""
-type SalesforceCollaborationGroupRecord implements OneGraphNode {
- """Group Record ID"""
- id: String!
-
- """Deleted"""
- isDeleted: Boolean!
-
- """Created Date"""
- createdDate: String!
-
- """Created By ID"""
- createdById: String!
-
- """Created By ID"""
- createdBy: SalesforceUser!
-
- """Last Modified Date"""
- lastModifiedDate: String!
-
- """Last Modified By ID"""
- lastModifiedById: String!
-
- """Last Modified By ID"""
- lastModifiedBy: SalesforceUser!
-
- """System Modstamp"""
- systemModstamp: String!
-
- """Chatter Group ID"""
- collaborationGroupId: String!
-
- """Chatter Group ID"""
- collaborationGroup: SalesforceCollaborationGroup!
-
- """Record ID"""
- recordId: String!
-
- """Record ID"""
- record: SalesforceCollaborationGroupRecordRecordUnion!
-
- """Collection of Salesforce FlowRecordRelation"""
- flowRecordRelations(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceFlowRecordRelationConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceFlowRecordRelationSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceFlowRecordRelationsConnection
- customFields(
- """
- List of custom fields to return. By default, returns all custom fields.
- """
- fields: [String!]
- ): JSON!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-"""Salesforce Group Records connection, for use in pagination."""
-type SalesforceCollaborationGroupRecordsConnection {
- """The count of all Group Record you could get from the connection."""
- totalCount: Int!
-
- """Pagination Information"""
- pageInfo: PageInfo!
-
- """List of Salesforce Group Records"""
- nodes: [SalesforceCollaborationGroupRecord!]!
-
- """List of Group Record edges"""
- edges: [SalesforceCollaborationGroupRecordEdge!]!
-}
-
-"""
-A filter to be used against CollaborationGroupMemberRequest object types. All fields are combined with a logical ‘and.’
-"""
-input SalesforceCollaborationGroupMemberRequestConnectionFilter {
- """Filter against custom fields."""
- customField: SalesforceCustomFieldFilter
-
- """
- Filter by the CollaborationGroupMemberRequest's lastModifiedBy relation.
- """
- lastModifiedBy: SalesforceUserConnectionFilter
-
- """Filter by the CollaborationGroupMemberRequest's createdBy relation."""
- createdBy: SalesforceUserConnectionFilter
-
- """Filter by the CollaborationGroupMemberRequest's requester relation."""
- requester: SalesforceUserConnectionFilter
-
- """
- Filter by the CollaborationGroupMemberRequest's collaborationGroup relation.
- """
- collaborationGroup: SalesforceCollaborationGroupConnectionFilter
-
- """Filter by the CollaborationGroupMemberRequest's id field"""
- id: SalesforceIdFilter
-
- """
- Filter by the CollaborationGroupMemberRequest's collaborationGroupId field
- """
- collaborationGroupId: SalesforceIdFilter
-
- """Filter by the CollaborationGroupMemberRequest's requesterId field"""
- requesterId: SalesforceIdFilter
-
- """Filter by the CollaborationGroupMemberRequest's responseMessage field"""
- responseMessage: SalesforceStringFilter
-
- """Filter by the CollaborationGroupMemberRequest's status field"""
- status: SalesforceStringFilter
-
- """Filter by the CollaborationGroupMemberRequest's createdDate field"""
- createdDate: SalesforceDateTimeFilter
-
- """Filter by the CollaborationGroupMemberRequest's createdById field"""
- createdById: SalesforceIdFilter
-
- """Filter by the CollaborationGroupMemberRequest's lastModifiedDate field"""
- lastModifiedDate: SalesforceDateTimeFilter
-
- """Filter by the CollaborationGroupMemberRequest's lastModifiedById field"""
- lastModifiedById: SalesforceIdFilter
-
- """Filter by the CollaborationGroupMemberRequest's systemModstamp field"""
- systemModstamp: SalesforceDateTimeFilter
-
- """Checks for any expressions in this list."""
- or: [SalesforceCollaborationGroupMemberRequestConnectionFilter!]
-
- """Checks for all expressions in this list."""
- and: [SalesforceCollaborationGroupMemberRequestConnectionFilter!]
-}
-
-"""Field that Group Member Requests can be sorted by"""
-enum SalesforceCollaborationGroupMemberRequestSortByFieldEnum {
- ID
- COLLABORATION_GROUP_ID
- REQUESTER_ID
- RESPONSE_MESSAGE
- STATUS
- CREATED_DATE
- CREATED_BY_ID
- LAST_MODIFIED_DATE
- LAST_MODIFIED_BY_ID
- SYSTEM_MODSTAMP
-}
-
-"""An edge in a connection."""
-type SalesforceCollaborationGroupMemberRequestEdge {
- """The item at the end of the edge."""
- node: SalesforceCollaborationGroupMemberRequest!
-
- """A cursor for use in pagination"""
- cursor: String!
-}
-
-"""Group Member Request"""
-type SalesforceCollaborationGroupMemberRequest implements OneGraphNode {
- """Group Member Request Id"""
- id: String!
-
- """CollaborationGroup ID"""
- collaborationGroupId: String!
-
- """CollaborationGroup ID"""
- collaborationGroup: SalesforceCollaborationGroup!
-
- """User ID"""
- requesterId: String!
-
- """User ID"""
- requester: SalesforceUser!
-
- """Response Message"""
- responseMessage: String
-
- """Status"""
- status: String!
-
- """Created Date"""
- createdDate: String!
-
- """Created By ID"""
- createdById: String!
-
- """Created By ID"""
- createdBy: SalesforceUser!
-
- """Last Modified Date"""
- lastModifiedDate: String!
-
- """Last Modified By ID"""
- lastModifiedById: String!
-
- """Last Modified By ID"""
- lastModifiedBy: SalesforceUser!
-
- """System Modstamp"""
- systemModstamp: String!
-
- """Collection of Salesforce FlowRecordRelation"""
- flowRecordRelations(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceFlowRecordRelationConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceFlowRecordRelationSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceFlowRecordRelationsConnection
- customFields(
- """
- List of custom fields to return. By default, returns all custom fields.
- """
- fields: [String!]
- ): JSON!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-"""Salesforce Group Member Requests connection, for use in pagination."""
-type SalesforceCollaborationGroupMemberRequestsConnection {
- """
- The count of all Group Member Request you could get from the connection.
- """
- totalCount: Int!
-
- """Pagination Information"""
- pageInfo: PageInfo!
-
- """List of Salesforce Group Member Requests"""
- nodes: [SalesforceCollaborationGroupMemberRequest!]!
-
- """List of Group Member Request edges"""
- edges: [SalesforceCollaborationGroupMemberRequestEdge!]!
-}
-
-"""
-A filter to be used against CollaborationGroupMember object types. All fields are combined with a logical ‘and.’
-"""
-input SalesforceCollaborationGroupMemberConnectionFilter {
- """Filter against custom fields."""
- customField: SalesforceCustomFieldFilter
-
- """Filter by the CollaborationGroupMember's lastModifiedBy relation."""
- lastModifiedBy: SalesforceUserConnectionFilter
-
- """Filter by the CollaborationGroupMember's createdBy relation."""
- createdBy: SalesforceUserConnectionFilter
-
- """Filter by the CollaborationGroupMember's member relation."""
- member: SalesforceUserConnectionFilter
-
- """Filter by the CollaborationGroupMember's collaborationGroup relation."""
- collaborationGroup: SalesforceCollaborationGroupConnectionFilter
-
- """Filter by the CollaborationGroupMember's id field"""
- id: SalesforceIdFilter
-
- """Filter by the CollaborationGroupMember's collaborationGroupId field"""
- collaborationGroupId: SalesforceIdFilter
-
- """Filter by the CollaborationGroupMember's memberId field"""
- memberId: SalesforceIdFilter
-
- """Filter by the CollaborationGroupMember's collaborationRole field"""
- collaborationRole: SalesforceStringFilter
-
- """Filter by the CollaborationGroupMember's notificationFrequency field"""
- notificationFrequency: SalesforceStringFilter
-
- """Filter by the CollaborationGroupMember's createdDate field"""
- createdDate: SalesforceDateTimeFilter
-
- """Filter by the CollaborationGroupMember's createdById field"""
- createdById: SalesforceIdFilter
-
- """Filter by the CollaborationGroupMember's lastModifiedDate field"""
- lastModifiedDate: SalesforceDateTimeFilter
-
- """Filter by the CollaborationGroupMember's lastModifiedById field"""
- lastModifiedById: SalesforceIdFilter
-
- """Filter by the CollaborationGroupMember's systemModstamp field"""
- systemModstamp: SalesforceDateTimeFilter
-
- """Filter by the CollaborationGroupMember's lastFeedAccessDate field"""
- lastFeedAccessDate: SalesforceDateTimeFilter
-
- """Checks for any expressions in this list."""
- or: [SalesforceCollaborationGroupMemberConnectionFilter!]
-
- """Checks for all expressions in this list."""
- and: [SalesforceCollaborationGroupMemberConnectionFilter!]
-}
-
-"""Field that Group Members can be sorted by"""
-enum SalesforceCollaborationGroupMemberSortByFieldEnum {
- ID
- COLLABORATION_GROUP_ID
- MEMBER_ID
- COLLABORATION_ROLE
- NOTIFICATION_FREQUENCY
- CREATED_DATE
- CREATED_BY_ID
- LAST_MODIFIED_DATE
- LAST_MODIFIED_BY_ID
- SYSTEM_MODSTAMP
- LAST_FEED_ACCESS_DATE
-}
-
-"""An edge in a connection."""
-type SalesforceCollaborationGroupMemberEdge {
- """The item at the end of the edge."""
- node: SalesforceCollaborationGroupMember!
-
- """A cursor for use in pagination"""
- cursor: String!
-}
-
-"""Group Member"""
-type SalesforceCollaborationGroupMember implements OneGraphNode {
- """Group Member Id"""
- id: String!
-
- """CollaborationGroup ID"""
- collaborationGroupId: String!
-
- """CollaborationGroup ID"""
- collaborationGroup: SalesforceCollaborationGroup!
-
- """Member ID"""
- memberId: String!
-
- """Member ID"""
- member: SalesforceUser!
-
- """Group Member Role"""
- collaborationRole: String
-
- """Notification Frequency"""
- notificationFrequency: String
-
- """Created Date"""
- createdDate: String!
-
- """Created By ID"""
- createdById: String!
-
- """Created By ID"""
- createdBy: SalesforceUser!
-
- """Last Modified Date"""
- lastModifiedDate: String!
-
- """Last Modified By ID"""
- lastModifiedById: String!
-
- """Last Modified By ID"""
- lastModifiedBy: SalesforceUser!
-
- """System Modstamp"""
- systemModstamp: String!
-
- """Last Feed Access Date"""
- lastFeedAccessDate: String
-
- """Collection of Salesforce FlowRecordRelation"""
- flowRecordRelations(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceFlowRecordRelationConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceFlowRecordRelationSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceFlowRecordRelationsConnection
- customFields(
- """
- List of custom fields to return. By default, returns all custom fields.
- """
- fields: [String!]
- ): JSON!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-"""Salesforce Group Members connection, for use in pagination."""
-type SalesforceCollaborationGroupMembersConnection {
- """The count of all Group Member you could get from the connection."""
- totalCount: Int!
-
- """Pagination Information"""
- pageInfo: PageInfo!
-
- """List of Salesforce Group Members"""
- nodes: [SalesforceCollaborationGroupMember!]!
-
- """List of Group Member edges"""
- edges: [SalesforceCollaborationGroupMemberEdge!]!
-}
-
-"""
-A filter to be used against CollaborationGroupFeed object types. All fields are combined with a logical ‘and.’
-"""
-input SalesforceCollaborationGroupFeedConnectionFilter {
- """Filter against custom fields."""
- customField: SalesforceCustomFieldFilter
-
- """Filter by the CollaborationGroupFeed's insertedBy relation."""
- insertedBy: SalesforceUserConnectionFilter
-
- """Filter by the CollaborationGroupFeed's relatedRecord relation."""
- relatedRecord: SalesforceContentVersionConnectionFilter
-
- """Filter by the CollaborationGroupFeed's createdBy relation."""
- createdBy: SalesforceUserConnectionFilter
-
- """Filter by the CollaborationGroupFeed's parent relation."""
- parent: SalesforceCollaborationGroupConnectionFilter
-
- """Filter by the CollaborationGroupFeed's id field"""
- id: SalesforceIdFilter
-
- """Filter by the CollaborationGroupFeed's parentId field"""
- parentId: SalesforceIdFilter
-
- """Filter by the CollaborationGroupFeed's type field"""
- type: SalesforceStringFilter
-
- """Filter by the CollaborationGroupFeed's createdById field"""
- createdById: SalesforceIdFilter
-
- """Filter by the CollaborationGroupFeed's createdDate field"""
- createdDate: SalesforceDateTimeFilter
-
- """Filter by the CollaborationGroupFeed's isDeleted field"""
- isDeleted: SalesforceBooleanFilter
-
- """Filter by the CollaborationGroupFeed's lastModifiedDate field"""
- lastModifiedDate: SalesforceDateTimeFilter
-
- """Filter by the CollaborationGroupFeed's systemModstamp field"""
- systemModstamp: SalesforceDateTimeFilter
-
- """Filter by the CollaborationGroupFeed's commentCount field"""
- commentCount: SalesforceIntFilter
-
- """Filter by the CollaborationGroupFeed's likeCount field"""
- likeCount: SalesforceIntFilter
-
- """Filter by the CollaborationGroupFeed's isRichText field"""
- isRichText: SalesforceBooleanFilter
-
- """Checks for any expressions in this list."""
- or: [SalesforceCollaborationGroupFeedConnectionFilter!]
-
- """Checks for all expressions in this list."""
- and: [SalesforceCollaborationGroupFeedConnectionFilter!]
-}
-
-"""Field that Group Feeds can be sorted by"""
-enum SalesforceCollaborationGroupFeedSortByFieldEnum {
- ID
- PARENT_ID
- TYPE
- CREATED_BY_ID
- CREATED_DATE
- IS_DELETED
- LAST_MODIFIED_DATE
- SYSTEM_MODSTAMP
- COMMENT_COUNT
- LIKE_COUNT
- TITLE
- BODY
- LINK_URL
- IS_RICH_TEXT
- RELATED_RECORD_ID
- INSERTED_BY_ID
-}
-
-"""An edge in a connection."""
-type SalesforceCollaborationGroupFeedEdge {
- """The item at the end of the edge."""
- node: SalesforceCollaborationGroupFeed!
-
- """A cursor for use in pagination"""
- cursor: String!
-}
-
-"""Group Feed"""
-type SalesforceCollaborationGroupFeed implements OneGraphNode {
- """Feed Item ID"""
- id: String!
-
- """Parent ID"""
- parentId: String!
-
- """Parent ID"""
- parent: SalesforceCollaborationGroup!
-
- """Feed Item Type"""
- type: String
-
- """Created By ID"""
- createdById: String!
-
- """Created By ID"""
- createdBy: SalesforceUser!
-
- """Created Date"""
- createdDate: String!
-
- """Deleted"""
- isDeleted: Boolean!
-
- """Last Modified Date"""
- lastModifiedDate: String!
-
- """System Modstamp"""
- systemModstamp: String!
-
- """Comment Count"""
- commentCount: Int!
-
- """Like Count"""
- likeCount: Int!
-
- """Title"""
- title: String
-
- """Body"""
- body: String
-
- """Link Url"""
- linkUrl: String
-
- """Is Rich Text"""
- isRichText: Boolean!
-
- """Related Record ID"""
- relatedRecordId: String
-
- """Related Record ID"""
- relatedRecord: SalesforceContentVersion
-
- """InsertedBy ID"""
- insertedById: String
-
- """InsertedBy ID"""
- insertedBy: SalesforceUser
-
- """Collection of Salesforce FeedAttachment"""
- feedAttachments(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceFeedAttachmentConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceFeedAttachmentSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceFeedAttachmentSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of FeedAttachments to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceFeedAttachmentsConnection
-
- """Collection of Salesforce FeedComment"""
- feedComments(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceFeedCommentConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceFeedCommentSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceFeedCommentSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of FeedComments to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceFeedCommentsConnection
-
- """Collection of Salesforce FeedPollChoice"""
- feedPollChoices(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceFeedPollChoiceConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceFeedPollChoiceSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceFeedPollChoiceSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of FeedPollChoices to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceFeedPollChoicesConnection
-
- """Collection of Salesforce FeedPollVote"""
- feedPollVotes(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceFeedPollVoteConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceFeedPollVoteSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceFeedPollVoteSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of FeedPollVotes to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceFeedPollVotesConnection
- customFields(
- """
- List of custom fields to return. By default, returns all custom fields.
- """
- fields: [String!]
- ): JSON!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-"""Salesforce Group Feeds connection, for use in pagination."""
-type SalesforceCollaborationGroupFeedsConnection {
- """The count of all Group Feed you could get from the connection."""
- totalCount: Int!
-
- """Pagination Information"""
- pageInfo: PageInfo!
-
- """List of Salesforce Group Feeds"""
- nodes: [SalesforceCollaborationGroupFeed!]!
-
- """List of Group Feed edges"""
- edges: [SalesforceCollaborationGroupFeedEdge!]!
-}
-
-"""Field that Announcements can be sorted by"""
-enum SalesforceAnnouncementSortByFieldEnum {
- ID
- IS_DELETED
- CREATED_DATE
- CREATED_BY_ID
- LAST_MODIFIED_DATE
- LAST_MODIFIED_BY_ID
- SYSTEM_MODSTAMP
- FEED_ITEM_ID
- EXPIRATION_DATE
- SEND_EMAILS
- IS_ARCHIVED
- PARENT_ID
-}
-
-"""An edge in a connection."""
-type SalesforceAnnouncementEdge {
- """The item at the end of the edge."""
- node: SalesforceAnnouncement!
-
- """A cursor for use in pagination"""
- cursor: String!
-}
-
-"""Salesforce Announcements connection, for use in pagination."""
-type SalesforceAnnouncementsConnection {
- """The count of all Announcement you could get from the connection."""
- totalCount: Int!
-
- """Pagination Information"""
- pageInfo: PageInfo!
-
- """List of Salesforce Announcements"""
- nodes: [SalesforceAnnouncement!]!
-
- """List of Announcement edges"""
- edges: [SalesforceAnnouncementEdge!]!
-}
-
-"""
-A filter to be used against Announcement object types. All fields are combined with a logical ‘and.’
-"""
-input SalesforceAnnouncementConnectionFilter {
- """Filter against custom fields."""
- customField: SalesforceCustomFieldFilter
-
- """Filter by the Announcement's parent relation."""
- parent: SalesforceCollaborationGroupConnectionFilter
-
- """Filter by the Announcement's feedItem relation."""
- feedItem: SalesforceFeedItemConnectionFilter
-
- """Filter by the Announcement's lastModifiedBy relation."""
- lastModifiedBy: SalesforceUserConnectionFilter
-
- """Filter by the Announcement's createdBy relation."""
- createdBy: SalesforceUserConnectionFilter
-
- """Filter by the Announcement's id field"""
- id: SalesforceIdFilter
-
- """Filter by the Announcement's isDeleted field"""
- isDeleted: SalesforceBooleanFilter
-
- """Filter by the Announcement's createdDate field"""
- createdDate: SalesforceDateTimeFilter
-
- """Filter by the Announcement's createdById field"""
- createdById: SalesforceIdFilter
-
- """Filter by the Announcement's lastModifiedDate field"""
- lastModifiedDate: SalesforceDateTimeFilter
-
- """Filter by the Announcement's lastModifiedById field"""
- lastModifiedById: SalesforceIdFilter
-
- """Filter by the Announcement's systemModstamp field"""
- systemModstamp: SalesforceDateTimeFilter
-
- """Filter by the Announcement's feedItemId field"""
- feedItemId: SalesforceIdFilter
-
- """Filter by the Announcement's expirationDate field"""
- expirationDate: SalesforceDateTimeFilter
-
- """Filter by the Announcement's sendEmails field"""
- sendEmails: SalesforceBooleanFilter
-
- """Filter by the Announcement's isArchived field"""
- isArchived: SalesforceBooleanFilter
-
- """Filter by the Announcement's parentId field"""
- parentId: SalesforceIdFilter
-
- """Checks for any expressions in this list."""
- or: [SalesforceAnnouncementConnectionFilter!]
-
- """Checks for all expressions in this list."""
- and: [SalesforceAnnouncementConnectionFilter!]
-}
-
-"""
-A filter to be used against CollaborationGroup object types. All fields are combined with a logical ‘and.’
-"""
-input SalesforceCollaborationGroupConnectionFilter {
- """Filter against custom fields."""
- customField: SalesforceCustomFieldFilter
-
- """Filter by the CollaborationGroup's announcement relation."""
- announcement: SalesforceAnnouncementConnectionFilter
-
- """Filter by the CollaborationGroup's lastModifiedBy relation."""
- lastModifiedBy: SalesforceUserConnectionFilter
-
- """Filter by the CollaborationGroup's createdBy relation."""
- createdBy: SalesforceUserConnectionFilter
-
- """Filter by the CollaborationGroup's owner relation."""
- owner: SalesforceUserConnectionFilter
-
- """Filter by the CollaborationGroup's id field"""
- id: SalesforceIdFilter
-
- """Filter by the CollaborationGroup's name field"""
- name: SalesforceStringFilter
-
- """Filter by the CollaborationGroup's memberCount field"""
- memberCount: SalesforceIntFilter
-
- """Filter by the CollaborationGroup's ownerId field"""
- ownerId: SalesforceIdFilter
-
- """Filter by the CollaborationGroup's collaborationType field"""
- collaborationType: SalesforceStringFilter
-
- """Filter by the CollaborationGroup's description field"""
- description: SalesforceStringFilter
-
- """Filter by the CollaborationGroup's createdDate field"""
- createdDate: SalesforceDateTimeFilter
-
- """Filter by the CollaborationGroup's createdById field"""
- createdById: SalesforceIdFilter
-
- """Filter by the CollaborationGroup's lastModifiedDate field"""
- lastModifiedDate: SalesforceDateTimeFilter
-
- """Filter by the CollaborationGroup's lastModifiedById field"""
- lastModifiedById: SalesforceIdFilter
-
- """Filter by the CollaborationGroup's systemModstamp field"""
- systemModstamp: SalesforceDateTimeFilter
-
- """Filter by the CollaborationGroup's fullPhotoUrl field"""
- fullPhotoUrl: SalesforceStringFilter
-
- """Filter by the CollaborationGroup's mediumPhotoUrl field"""
- mediumPhotoUrl: SalesforceStringFilter
-
- """Filter by the CollaborationGroup's smallPhotoUrl field"""
- smallPhotoUrl: SalesforceStringFilter
-
- """Filter by the CollaborationGroup's lastFeedModifiedDate field"""
- lastFeedModifiedDate: SalesforceDateTimeFilter
-
- """Filter by the CollaborationGroup's informationTitle field"""
- informationTitle: SalesforceStringFilter
-
- """Filter by the CollaborationGroup's hasPrivateFieldsAccess field"""
- hasPrivateFieldsAccess: SalesforceBooleanFilter
-
- """Filter by the CollaborationGroup's canHaveGuests field"""
- canHaveGuests: SalesforceBooleanFilter
-
- """Filter by the CollaborationGroup's lastViewedDate field"""
- lastViewedDate: SalesforceDateTimeFilter
-
- """Filter by the CollaborationGroup's lastReferencedDate field"""
- lastReferencedDate: SalesforceDateTimeFilter
-
- """Filter by the CollaborationGroup's isArchived field"""
- isArchived: SalesforceBooleanFilter
-
- """Filter by the CollaborationGroup's isAutoArchiveDisabled field"""
- isAutoArchiveDisabled: SalesforceBooleanFilter
-
- """Filter by the CollaborationGroup's announcementId field"""
- announcementId: SalesforceIdFilter
-
- """Filter by the CollaborationGroup's bannerPhotoUrl field"""
- bannerPhotoUrl: SalesforceStringFilter
-
- """Filter by the CollaborationGroup's isBroadcast field"""
- isBroadcast: SalesforceBooleanFilter
-
- """Checks for any expressions in this list."""
- or: [SalesforceCollaborationGroupConnectionFilter!]
-
- """Checks for all expressions in this list."""
- and: [SalesforceCollaborationGroupConnectionFilter!]
-}
-
-"""Field that Groups can be sorted by"""
-enum SalesforceCollaborationGroupSortByFieldEnum {
- ID
- NAME
- MEMBER_COUNT
- OWNER_ID
- COLLABORATION_TYPE
- DESCRIPTION
- CREATED_DATE
- CREATED_BY_ID
- LAST_MODIFIED_DATE
- LAST_MODIFIED_BY_ID
- SYSTEM_MODSTAMP
- FULL_PHOTO_URL
- MEDIUM_PHOTO_URL
- SMALL_PHOTO_URL
- LAST_FEED_MODIFIED_DATE
- INFORMATION_TITLE
- HAS_PRIVATE_FIELDS_ACCESS
- CAN_HAVE_GUESTS
- LAST_VIEWED_DATE
- LAST_REFERENCED_DATE
- IS_ARCHIVED
- IS_AUTO_ARCHIVE_DISABLED
- ANNOUNCEMENT_ID
- GROUP_EMAIL
- BANNER_PHOTO_URL
- IS_BROADCAST
-}
-
-"""An edge in a connection."""
-type SalesforceCollaborationGroupEdge {
- """The item at the end of the edge."""
- node: SalesforceCollaborationGroup!
-
- """A cursor for use in pagination"""
- cursor: String!
-}
-
-"""Salesforce Groups connection, for use in pagination."""
-type SalesforceCollaborationGroupsConnection {
- """The count of all Group you could get from the connection."""
- totalCount: Int!
-
- """Pagination Information"""
- pageInfo: PageInfo!
-
- """List of Salesforce Groups"""
- nodes: [SalesforceCollaborationGroup!]!
-
- """List of Group edges"""
- edges: [SalesforceCollaborationGroupEdge!]!
-}
-
-"""Announcement"""
-type SalesforceAnnouncement implements OneGraphNode {
- """Announcement ID"""
- id: String!
-
- """Deleted"""
- isDeleted: Boolean!
-
- """Created Date"""
- createdDate: String!
-
- """Created By ID"""
- createdById: String!
-
- """Created By ID"""
- createdBy: SalesforceUser!
-
- """Last Modified Date"""
- lastModifiedDate: String!
-
- """Last Modified By ID"""
- lastModifiedById: String!
-
- """Last Modified By ID"""
- lastModifiedBy: SalesforceUser!
-
- """System Modstamp"""
- systemModstamp: String!
-
- """Feed Item ID"""
- feedItemId: String!
-
- """Feed Item ID"""
- feedItem: SalesforceFeedItem!
-
- """Expiration Date"""
- expirationDate: String!
-
- """Send Emails on Announcement"""
- sendEmails: Boolean!
-
- """Is Announcement Archived"""
- isArchived: Boolean!
-
- """Parent ID"""
- parentId: String
-
- """Parent ID"""
- parent: SalesforceCollaborationGroup
-
- """Collection of Salesforce CollaborationGroup"""
- collaborationGroups(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceCollaborationGroupConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceCollaborationGroupSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceCollaborationGroupSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of CollaborationGroups to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceCollaborationGroupsConnection
-
- """Collection of Salesforce FlowRecordRelation"""
- flowRecordRelations(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceFlowRecordRelationConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceFlowRecordRelationSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceFlowRecordRelationsConnection
- customFields(
- """
- List of custom fields to return. By default, returns all custom fields.
- """
- fields: [String!]
- ): JSON!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-"""Group"""
-type SalesforceCollaborationGroup implements OneGraphNode {
- """Group Id"""
- id: String!
-
- """Name"""
- name: String!
-
- """Member Count"""
- memberCount: Int
-
- """Owner ID"""
- ownerId: String!
-
- """Owner ID"""
- owner: SalesforceUser!
-
- """Access Type"""
- collaborationType: String!
-
- """Description"""
- description: String
-
- """Created Date"""
- createdDate: String!
-
- """Created By ID"""
- createdById: String!
-
- """Created By ID"""
- createdBy: SalesforceUser!
-
- """Last Modified Date"""
- lastModifiedDate: String!
-
- """Last Modified By ID"""
- lastModifiedById: String!
-
- """Last Modified By ID"""
- lastModifiedBy: SalesforceUser!
-
- """System Modstamp"""
- systemModstamp: String!
-
- """Url for full-sized Photo"""
- fullPhotoUrl: String
-
- """Url for medium profile photo"""
- mediumPhotoUrl: String
-
- """Photo"""
- smallPhotoUrl: String
-
- """Last Feed Modified Date"""
- lastFeedModifiedDate: String!
-
- """Information Title"""
- informationTitle: String
-
- """Information"""
- informationBody: String
-
- """Has Private Fields Access"""
- hasPrivateFieldsAccess: Boolean!
-
- """Allow customers"""
- canHaveGuests: Boolean!
-
- """Last Viewed Date"""
- lastViewedDate: String
-
- """Last Referenced Date"""
- lastReferencedDate: String
-
- """Archive"""
- isArchived: Boolean!
-
- """Disable automatic archiving"""
- isAutoArchiveDisabled: Boolean!
-
- """Announcement ID"""
- announcementId: String
-
- """Announcement ID"""
- announcement: SalesforceAnnouncement
-
- """Group Email"""
- groupEmail: String
-
- """Banner Photo Url"""
- bannerPhotoUrl: String
-
- """Broadcast Only"""
- isBroadcast: Boolean!
-
- """Collection of Salesforce Announcement"""
- announcements(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceAnnouncementConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceAnnouncementSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceAnnouncementSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of Announcements to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceAnnouncementsConnection
-
- """Collection of Salesforce CollaborationGroupFeed"""
- feeds(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceCollaborationGroupFeedConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceCollaborationGroupFeedSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceCollaborationGroupFeedSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """
- Number of CollaborationGroupFeeds to fetch. Defaults to 10. Maximum is 60.
- """
- first: Int
- ): SalesforceCollaborationGroupFeedsConnection
-
- """Collection of Salesforce CollaborationGroupMember"""
- groupMembers(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceCollaborationGroupMemberConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceCollaborationGroupMemberSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceCollaborationGroupMemberSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """
- Number of CollaborationGroupMembers to fetch. Defaults to 10. Maximum is 60.
- """
- first: Int
- ): SalesforceCollaborationGroupMembersConnection
-
- """Collection of Salesforce CollaborationGroupMemberRequest"""
- groupMemberRequests(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceCollaborationGroupMemberRequestConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceCollaborationGroupMemberRequestSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceCollaborationGroupMemberRequestSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """
- Number of CollaborationGroupMemberRequests to fetch. Defaults to 10. Maximum is 60.
- """
- first: Int
- ): SalesforceCollaborationGroupMemberRequestsConnection
-
- """Collection of Salesforce CollaborationGroupRecord"""
- collaborationGroupRecords(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceCollaborationGroupRecordConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceCollaborationGroupRecordSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceCollaborationGroupRecordSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """
- Number of CollaborationGroupRecords to fetch. Defaults to 10. Maximum is 60.
- """
- first: Int
- ): SalesforceCollaborationGroupRecordsConnection
-
- """Collection of Salesforce CollaborationInvitation"""
- collaborationInvitations(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceCollaborationInvitationConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceCollaborationInvitationSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceCollaborationInvitationSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """
- Number of CollaborationInvitations to fetch. Defaults to 10. Maximum is 60.
- """
- first: Int
- ): SalesforceCollaborationInvitationsConnection
-
- """Collection of Salesforce ContentDocumentLink"""
- contentDocumentLinks(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceContentDocumentLinkConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceContentDocumentLinkSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceContentDocumentLinkSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """
- Number of ContentDocumentLinks to fetch. Defaults to 10. Maximum is 60.
- """
- first: Int
- ): SalesforceContentDocumentLinksConnection
-
- """Collection of Salesforce ContentVersion"""
- contentVersions(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceContentVersionConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceContentVersionSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceContentVersionSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of ContentVersions to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceContentVersionsConnection
-
- """Collection of Salesforce EntitySubscription"""
- feedSubscriptionsForEntity(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceEntitySubscriptionConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceEntitySubscriptionSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceEntitySubscriptionSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of EntitySubscriptions to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceEntitySubscriptionsConnection
-
- """Collection of Salesforce FeedComment"""
- feedComments(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceFeedCommentConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceFeedCommentSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceFeedCommentSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of FeedComments to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceFeedCommentsConnection
-
- """Collection of Salesforce FeedItem"""
- feedItems(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceFeedItemConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceFeedItemSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceFeedItemSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of FeedItems to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceFeedItemsConnection
-
- """Collection of Salesforce FlowRecordRelation"""
- flowRecordRelations(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceFlowRecordRelationConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceFlowRecordRelationSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceFlowRecordRelationsConnection
- customFields(
- """
- List of custom fields to return. By default, returns all custom fields.
- """
- fields: [String!]
- ): JSON!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-union SalesforceCombinedAttachmentParentUnion = SalesforceUser | SalesforceTask | SalesforceSolution | SalesforceSite | SalesforceReport | SalesforceProduct2 | SalesforceOrganization | SalesforceOrderItem | SalesforceOrder | SalesforceOpportunity | SalesforceListEmail | SalesforceLead | SalesforceEvent | SalesforceEmailTemplate | SalesforceEmailMessage | SalesforceDashboardComponent | SalesforceDashboard | SalesforceContract | SalesforceContentWorkspace | SalesforceContact | SalesforceCollaborationGroup | SalesforceCase | SalesforceCampaign | SalesforceAssetRelationship | SalesforceAsset | SalesforceAccount
-
-"""
-A filter to be used against Document object types. All fields are combined with a logical ‘and.’
-"""
-input SalesforceDocumentConnectionFilter {
- """Filter against custom fields."""
- customField: SalesforceCustomFieldFilter
-
- """Filter by the Document's lastModifiedBy relation."""
- lastModifiedBy: SalesforceUserConnectionFilter
-
- """Filter by the Document's createdBy relation."""
- createdBy: SalesforceUserConnectionFilter
-
- """Filter by the Document's author relation."""
- author: SalesforceUserConnectionFilter
-
- """Filter by the Document's id field"""
- id: SalesforceIdFilter
-
- """Filter by the Document's folderId field"""
- folderId: SalesforceIdFilter
-
- """Filter by the Document's isDeleted field"""
- isDeleted: SalesforceBooleanFilter
-
- """Filter by the Document's name field"""
- name: SalesforceStringFilter
-
- """Filter by the Document's developerName field"""
- developerName: SalesforceStringFilter
-
- """Filter by the Document's namespacePrefix field"""
- namespacePrefix: SalesforceStringFilter
-
- """Filter by the Document's contentType field"""
- contentType: SalesforceStringFilter
-
- """Filter by the Document's type field"""
- type: SalesforceStringFilter
-
- """Filter by the Document's isPublic field"""
- isPublic: SalesforceBooleanFilter
-
- """Filter by the Document's bodyLength field"""
- bodyLength: SalesforceIntFilter
-
- """Filter by the Document's url field"""
- url: SalesforceStringFilter
-
- """Filter by the Document's description field"""
- description: SalesforceStringFilter
-
- """Filter by the Document's keywords field"""
- keywords: SalesforceStringFilter
-
- """Filter by the Document's isInternalUseOnly field"""
- isInternalUseOnly: SalesforceBooleanFilter
-
- """Filter by the Document's authorId field"""
- authorId: SalesforceIdFilter
-
- """Filter by the Document's createdDate field"""
- createdDate: SalesforceDateTimeFilter
-
- """Filter by the Document's createdById field"""
- createdById: SalesforceIdFilter
-
- """Filter by the Document's lastModifiedDate field"""
- lastModifiedDate: SalesforceDateTimeFilter
-
- """Filter by the Document's lastModifiedById field"""
- lastModifiedById: SalesforceIdFilter
-
- """Filter by the Document's systemModstamp field"""
- systemModstamp: SalesforceDateTimeFilter
-
- """Filter by the Document's isBodySearchable field"""
- isBodySearchable: SalesforceBooleanFilter
-
- """Filter by the Document's lastViewedDate field"""
- lastViewedDate: SalesforceDateTimeFilter
-
- """Filter by the Document's lastReferencedDate field"""
- lastReferencedDate: SalesforceDateTimeFilter
-
- """Checks for any expressions in this list."""
- or: [SalesforceDocumentConnectionFilter!]
-
- """Checks for all expressions in this list."""
- and: [SalesforceDocumentConnectionFilter!]
-}
-
-"""
-A filter to be used against DocumentAttachmentMap object types. All fields are combined with a logical ‘and.’
-"""
-input SalesforceDocumentAttachmentMapConnectionFilter {
- """Filter against custom fields."""
- customField: SalesforceCustomFieldFilter
-
- """Filter by the DocumentAttachmentMap's createdBy relation."""
- createdBy: SalesforceUserConnectionFilter
-
- """Filter by the DocumentAttachmentMap's document relation."""
- document: SalesforceDocumentConnectionFilter
-
- """Filter by the DocumentAttachmentMap's parent relation."""
- parent: SalesforceEmailTemplateConnectionFilter
-
- """Filter by the DocumentAttachmentMap's id field"""
- id: SalesforceIdFilter
-
- """Filter by the DocumentAttachmentMap's parentId field"""
- parentId: SalesforceIdFilter
-
- """Filter by the DocumentAttachmentMap's documentId field"""
- documentId: SalesforceIdFilter
-
- """Filter by the DocumentAttachmentMap's documentSequence field"""
- documentSequence: SalesforceIntFilter
-
- """Filter by the DocumentAttachmentMap's createdDate field"""
- createdDate: SalesforceDateTimeFilter
-
- """Filter by the DocumentAttachmentMap's createdById field"""
- createdById: SalesforceIdFilter
-
- """Checks for any expressions in this list."""
- or: [SalesforceDocumentAttachmentMapConnectionFilter!]
-
- """Checks for all expressions in this list."""
- and: [SalesforceDocumentAttachmentMapConnectionFilter!]
-}
-
-"""Field that Document Entity Maps can be sorted by"""
-enum SalesforceDocumentAttachmentMapSortByFieldEnum {
- ID
- PARENT_ID
- DOCUMENT_ID
- DOCUMENT_SEQUENCE
- CREATED_DATE
- CREATED_BY_ID
-}
-
-"""An edge in a connection."""
-type SalesforceDocumentAttachmentMapEdge {
- """The item at the end of the edge."""
- node: SalesforceDocumentAttachmentMap!
-
- """A cursor for use in pagination"""
- cursor: String!
-}
-
-"""Document Entity Map"""
-type SalesforceDocumentAttachmentMap implements OneGraphNode {
- """Document Entity Map Id"""
- id: String!
-
- """Entity ID"""
- parentId: String!
-
- """Entity ID"""
- parent: SalesforceEmailTemplate!
-
- """Document ID"""
- documentId: String!
-
- """Document ID"""
- document: SalesforceDocument!
-
- """Attachment Sequence"""
- documentSequence: Int!
-
- """Created Date"""
- createdDate: String!
-
- """Created By ID"""
- createdById: String!
-
- """Created By ID"""
- createdBy: SalesforceUser!
- customFields(
- """
- List of custom fields to return. By default, returns all custom fields.
- """
- fields: [String!]
- ): JSON!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-"""Salesforce Document Entity Maps connection, for use in pagination."""
-type SalesforceDocumentAttachmentMapsConnection {
- """
- The count of all Document Entity Map you could get from the connection.
- """
- totalCount: Int!
-
- """Pagination Information"""
- pageInfo: PageInfo!
-
- """List of Salesforce Document Entity Maps"""
- nodes: [SalesforceDocumentAttachmentMap!]!
-
- """List of Document Entity Map edges"""
- edges: [SalesforceDocumentAttachmentMapEdge!]!
-}
-
-"""
-A filter to be used against BrandTemplate object types. All fields are combined with a logical ‘and.’
-"""
-input SalesforceBrandTemplateConnectionFilter {
- """Filter against custom fields."""
- customField: SalesforceCustomFieldFilter
-
- """Filter by the BrandTemplate's lastModifiedBy relation."""
- lastModifiedBy: SalesforceUserConnectionFilter
-
- """Filter by the BrandTemplate's createdBy relation."""
- createdBy: SalesforceUserConnectionFilter
-
- """Filter by the BrandTemplate's id field"""
- id: SalesforceIdFilter
-
- """Filter by the BrandTemplate's name field"""
- name: SalesforceStringFilter
-
- """Filter by the BrandTemplate's developerName field"""
- developerName: SalesforceStringFilter
-
- """Filter by the BrandTemplate's isActive field"""
- isActive: SalesforceBooleanFilter
-
- """Filter by the BrandTemplate's description field"""
- description: SalesforceStringFilter
-
- """Filter by the BrandTemplate's namespacePrefix field"""
- namespacePrefix: SalesforceStringFilter
-
- """Filter by the BrandTemplate's createdDate field"""
- createdDate: SalesforceDateTimeFilter
-
- """Filter by the BrandTemplate's createdById field"""
- createdById: SalesforceIdFilter
-
- """Filter by the BrandTemplate's lastModifiedDate field"""
- lastModifiedDate: SalesforceDateTimeFilter
-
- """Filter by the BrandTemplate's lastModifiedById field"""
- lastModifiedById: SalesforceIdFilter
-
- """Filter by the BrandTemplate's systemModstamp field"""
- systemModstamp: SalesforceDateTimeFilter
-
- """Checks for any expressions in this list."""
- or: [SalesforceBrandTemplateConnectionFilter!]
-
- """Checks for all expressions in this list."""
- and: [SalesforceBrandTemplateConnectionFilter!]
-}
-
-"""
-A filter to be used against EmailTemplate object types. All fields are combined with a logical ‘and.’
-"""
-input SalesforceEmailTemplateConnectionFilter {
- """Filter against custom fields."""
- customField: SalesforceCustomFieldFilter
-
- """Filter by the EmailTemplate's lastModifiedBy relation."""
- lastModifiedBy: SalesforceUserConnectionFilter
-
- """Filter by the EmailTemplate's createdBy relation."""
- createdBy: SalesforceUserConnectionFilter
-
- """Filter by the EmailTemplate's brandTemplate relation."""
- brandTemplate: SalesforceBrandTemplateConnectionFilter
-
- """Filter by the EmailTemplate's owner relation."""
- owner: SalesforceUserConnectionFilter
-
- """Filter by the EmailTemplate's id field"""
- id: SalesforceIdFilter
-
- """Filter by the EmailTemplate's name field"""
- name: SalesforceStringFilter
-
- """Filter by the EmailTemplate's developerName field"""
- developerName: SalesforceStringFilter
-
- """Filter by the EmailTemplate's namespacePrefix field"""
- namespacePrefix: SalesforceStringFilter
-
- """Filter by the EmailTemplate's ownerId field"""
- ownerId: SalesforceIdFilter
-
- """Filter by the EmailTemplate's folderId field"""
- folderId: SalesforceIdFilter
-
- """Filter by the EmailTemplate's brandTemplateId field"""
- brandTemplateId: SalesforceIdFilter
-
- """Filter by the EmailTemplate's templateStyle field"""
- templateStyle: SalesforceStringFilter
-
- """Filter by the EmailTemplate's isActive field"""
- isActive: SalesforceBooleanFilter
-
- """Filter by the EmailTemplate's templateType field"""
- templateType: SalesforceStringFilter
-
- """Filter by the EmailTemplate's encoding field"""
- encoding: SalesforceStringFilter
-
- """Filter by the EmailTemplate's description field"""
- description: SalesforceStringFilter
-
- """Filter by the EmailTemplate's timesUsed field"""
- timesUsed: SalesforceIntFilter
-
- """Filter by the EmailTemplate's lastUsedDate field"""
- lastUsedDate: SalesforceDateTimeFilter
-
- """Filter by the EmailTemplate's createdDate field"""
- createdDate: SalesforceDateTimeFilter
-
- """Filter by the EmailTemplate's createdById field"""
- createdById: SalesforceIdFilter
-
- """Filter by the EmailTemplate's lastModifiedDate field"""
- lastModifiedDate: SalesforceDateTimeFilter
-
- """Filter by the EmailTemplate's lastModifiedById field"""
- lastModifiedById: SalesforceIdFilter
-
- """Filter by the EmailTemplate's systemModstamp field"""
- systemModstamp: SalesforceDateTimeFilter
-
- """Filter by the EmailTemplate's apiVersion field"""
- apiVersion: SalesforceFloatFilter
-
- """Filter by the EmailTemplate's uiType field"""
- uiType: SalesforceStringFilter
-
- """Filter by the EmailTemplate's relatedEntityType field"""
- relatedEntityType: SalesforceStringFilter
-
- """Checks for any expressions in this list."""
- or: [SalesforceEmailTemplateConnectionFilter!]
-
- """Checks for all expressions in this list."""
- and: [SalesforceEmailTemplateConnectionFilter!]
-}
-
-"""Field that Email Templates can be sorted by"""
-enum SalesforceEmailTemplateSortByFieldEnum {
- ID
- NAME
- DEVELOPER_NAME
- NAMESPACE_PREFIX
- OWNER_ID
- FOLDER_ID
- BRAND_TEMPLATE_ID
- TEMPLATE_STYLE
- IS_ACTIVE
- TEMPLATE_TYPE
- ENCODING
- DESCRIPTION
- SUBJECT
- TIMES_USED
- LAST_USED_DATE
- CREATED_DATE
- CREATED_BY_ID
- LAST_MODIFIED_DATE
- LAST_MODIFIED_BY_ID
- SYSTEM_MODSTAMP
- API_VERSION
- UI_TYPE
- RELATED_ENTITY_TYPE
-}
-
-"""An edge in a connection."""
-type SalesforceEmailTemplateEdge {
- """The item at the end of the edge."""
- node: SalesforceEmailTemplate!
-
- """A cursor for use in pagination"""
- cursor: String!
-}
-
-"""Salesforce Email Templates connection, for use in pagination."""
-type SalesforceEmailTemplatesConnection {
- """The count of all Email Template you could get from the connection."""
- totalCount: Int!
-
- """Pagination Information"""
- pageInfo: PageInfo!
-
- """List of Salesforce Email Templates"""
- nodes: [SalesforceEmailTemplate!]!
-
- """List of Email Template edges"""
- edges: [SalesforceEmailTemplateEdge!]!
-}
-
-"""Letterhead"""
-type SalesforceBrandTemplate implements OneGraphNode {
- """Letterhead ID"""
- id: String!
-
- """Brand Template Name"""
- name: String!
-
- """Letterhead Unique Name"""
- developerName: String!
-
- """Active"""
- isActive: Boolean!
-
- """Description"""
- description: String
-
- """Value"""
- value: String!
-
- """Namespace Prefix"""
- namespacePrefix: String
-
- """Created Date"""
- createdDate: String!
-
- """Created By ID"""
- createdById: String!
-
- """Created By ID"""
- createdBy: SalesforceUser!
-
- """Last Modified Date"""
- lastModifiedDate: String!
-
- """Last Modified By ID"""
- lastModifiedById: String!
-
- """Last Modified By ID"""
- lastModifiedBy: SalesforceUser!
-
- """System Modstamp"""
- systemModstamp: String!
-
- """Collection of Salesforce EmailTemplate"""
- emailTemplates(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceEmailTemplateConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceEmailTemplateSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceEmailTemplateSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of EmailTemplates to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceEmailTemplatesConnection
- customFields(
- """
- List of custom fields to return. By default, returns all custom fields.
- """
- fields: [String!]
- ): JSON!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-union SalesforceEmailTemplateFolderUnion = SalesforceUser | SalesforceOrganization | SalesforceFolder
-
-"""Email Template"""
-type SalesforceEmailTemplate implements OneGraphNode {
- """Email Template ID"""
- id: String!
-
- """Email Template Name"""
- name: String!
-
- """Template Unique Name"""
- developerName: String!
-
- """Namespace Prefix"""
- namespacePrefix: String
-
- """Owner ID"""
- ownerId: String!
-
- """Owner ID"""
- owner: SalesforceUser!
-
- """Folder ID"""
- folderId: String!
-
- """Folder ID"""
- folder: SalesforceEmailTemplateFolderUnion!
-
- """Letterhead ID"""
- brandTemplateId: String
-
- """Letterhead ID"""
- brandTemplate: SalesforceBrandTemplate
-
- """Style"""
- templateStyle: String!
-
- """Available For Use"""
- isActive: Boolean!
-
- """Template Type"""
- templateType: String!
-
- """Encoding"""
- encoding: String
-
- """Description"""
- description: String
-
- """Subject"""
- subject: String
-
- """HTML Value"""
- htmlValue: String
-
- """Email Body"""
- body: String
-
- """Times Used"""
- timesUsed: Int
-
- """Last Used Date"""
- lastUsedDate: String
-
- """Created Date"""
- createdDate: String!
-
- """Created By ID"""
- createdById: String!
-
- """Created By ID"""
- createdBy: SalesforceUser!
-
- """Last Modified Date"""
- lastModifiedDate: String!
-
- """Last Modified By ID"""
- lastModifiedById: String!
-
- """Last Modified By ID"""
- lastModifiedBy: SalesforceUser!
-
- """System Modstamp"""
- systemModstamp: String!
-
- """API Version"""
- apiVersion: Float
-
- """Markup"""
- markup: String
-
- """UI Type"""
- uiType: String
-
- """Custom Object Definition ID"""
- relatedEntityType: String
-
- """Collection of Salesforce Attachment"""
- attachments(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceAttachmentConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceAttachmentSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceAttachmentSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of Attachments to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceAttachmentsConnection
-
- """Collection of Salesforce ContentDocumentLink"""
- contentDocumentLinks(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceContentDocumentLinkConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceContentDocumentLinkSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceContentDocumentLinkSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """
- Number of ContentDocumentLinks to fetch. Defaults to 10. Maximum is 60.
- """
- first: Int
- ): SalesforceContentDocumentLinksConnection
-
- """Collection of Salesforce ContentVersion"""
- contentVersions(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceContentVersionConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceContentVersionSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceContentVersionSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of ContentVersions to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceContentVersionsConnection
-
- """Collection of Salesforce DocumentAttachmentMap"""
- documentAttachmentMaps(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceDocumentAttachmentMapConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceDocumentAttachmentMapSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceDocumentAttachmentMapSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """
- Number of DocumentAttachmentMaps to fetch. Defaults to 10. Maximum is 60.
- """
- first: Int
- ): SalesforceDocumentAttachmentMapsConnection
- customFields(
- """
- List of custom fields to return. By default, returns all custom fields.
- """
- fields: [String!]
- ): JSON!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-union SalesforceAttachedContentDocumentLinkedEntityUnion = SalesforceUser | SalesforceTask | SalesforceSolution | SalesforceSite | SalesforceReport | SalesforceProduct2 | SalesforceOrganization | SalesforceOrderItem | SalesforceOrder | SalesforceOpportunity | SalesforceListEmail | SalesforceLead | SalesforceEvent | SalesforceEmailTemplate | SalesforceEmailMessage | SalesforceDashboardComponent | SalesforceDashboard | SalesforceContract | SalesforceContentWorkspace | SalesforceContact | SalesforceCollaborationGroup | SalesforceCase | SalesforceCampaign | SalesforceAssetRelationship | SalesforceAsset | SalesforceAccount
-
-"""An edge in a connection."""
-type SalesforceListEmailRecipientSourceEdge {
- """The item at the end of the edge."""
- node: SalesforceListEmailRecipientSource!
-
- """A cursor for use in pagination"""
- cursor: String!
-}
-
-"""Field that User List Views can be sorted by"""
-enum SalesforceUserListViewSortByFieldEnum {
- ID
- IS_DELETED
- CREATED_DATE
- CREATED_BY_ID
- LAST_MODIFIED_DATE
- LAST_MODIFIED_BY_ID
- SYSTEM_MODSTAMP
- USER_ID
- LIST_VIEW_ID
- SOBJECT_TYPE
- LAST_VIEWED_CHART
-}
-
-"""An edge in a connection."""
-type SalesforceUserListViewEdge {
- """The item at the end of the edge."""
- node: SalesforceUserListView!
-
- """A cursor for use in pagination"""
- cursor: String!
-}
-
-"""
-A filter to be used against UserListView object types. All fields are combined with a logical ‘and.’
-"""
-input SalesforceUserListViewConnectionFilter {
- """Filter against custom fields."""
- customField: SalesforceCustomFieldFilter
-
- """Filter by the UserListView's listView relation."""
- listView: SalesforceListViewConnectionFilter
-
- """Filter by the UserListView's user relation."""
- user: SalesforceUserConnectionFilter
-
- """Filter by the UserListView's lastModifiedBy relation."""
- lastModifiedBy: SalesforceUserConnectionFilter
-
- """Filter by the UserListView's createdBy relation."""
- createdBy: SalesforceUserConnectionFilter
-
- """Filter by the UserListView's id field"""
- id: SalesforceIdFilter
-
- """Filter by the UserListView's isDeleted field"""
- isDeleted: SalesforceBooleanFilter
-
- """Filter by the UserListView's createdDate field"""
- createdDate: SalesforceDateTimeFilter
-
- """Filter by the UserListView's createdById field"""
- createdById: SalesforceIdFilter
-
- """Filter by the UserListView's lastModifiedDate field"""
- lastModifiedDate: SalesforceDateTimeFilter
-
- """Filter by the UserListView's lastModifiedById field"""
- lastModifiedById: SalesforceIdFilter
-
- """Filter by the UserListView's systemModstamp field"""
- systemModstamp: SalesforceDateTimeFilter
-
- """Filter by the UserListView's userId field"""
- userId: SalesforceIdFilter
-
- """Filter by the UserListView's listViewId field"""
- listViewId: SalesforceIdFilter
-
- """Filter by the UserListView's sobjectType field"""
- sobjectType: SalesforceStringFilter
-
- """Filter by the UserListView's lastViewedChart field"""
- lastViewedChart: SalesforceStringFilter
-
- """Checks for any expressions in this list."""
- or: [SalesforceUserListViewConnectionFilter!]
-
- """Checks for all expressions in this list."""
- and: [SalesforceUserListViewConnectionFilter!]
-}
-
-"""
-A filter to be used against UserListViewCriterion object types. All fields are combined with a logical ‘and.’
-"""
-input SalesforceUserListViewCriterionConnectionFilter {
- """Filter against custom fields."""
- customField: SalesforceCustomFieldFilter
-
- """Filter by the UserListViewCriterion's userListView relation."""
- userListView: SalesforceUserListViewConnectionFilter
-
- """Filter by the UserListViewCriterion's lastModifiedBy relation."""
- lastModifiedBy: SalesforceUserConnectionFilter
-
- """Filter by the UserListViewCriterion's createdBy relation."""
- createdBy: SalesforceUserConnectionFilter
-
- """Filter by the UserListViewCriterion's id field"""
- id: SalesforceIdFilter
-
- """Filter by the UserListViewCriterion's isDeleted field"""
- isDeleted: SalesforceBooleanFilter
-
- """Filter by the UserListViewCriterion's createdDate field"""
- createdDate: SalesforceDateTimeFilter
-
- """Filter by the UserListViewCriterion's createdById field"""
- createdById: SalesforceIdFilter
-
- """Filter by the UserListViewCriterion's lastModifiedDate field"""
- lastModifiedDate: SalesforceDateTimeFilter
-
- """Filter by the UserListViewCriterion's lastModifiedById field"""
- lastModifiedById: SalesforceIdFilter
-
- """Filter by the UserListViewCriterion's systemModstamp field"""
- systemModstamp: SalesforceDateTimeFilter
-
- """Filter by the UserListViewCriterion's userListViewId field"""
- userListViewId: SalesforceIdFilter
-
- """Filter by the UserListViewCriterion's sortOrder field"""
- sortOrder: SalesforceIntFilter
-
- """Filter by the UserListViewCriterion's columnName field"""
- columnName: SalesforceStringFilter
-
- """Filter by the UserListViewCriterion's operation field"""
- operation: SalesforceStringFilter
-
- """Filter by the UserListViewCriterion's value field"""
- value: SalesforceStringFilter
-
- """Checks for any expressions in this list."""
- or: [SalesforceUserListViewCriterionConnectionFilter!]
-
- """Checks for all expressions in this list."""
- and: [SalesforceUserListViewCriterionConnectionFilter!]
-}
-
-"""Field that User List View Criterias can be sorted by"""
-enum SalesforceUserListViewCriterionSortByFieldEnum {
- ID
- IS_DELETED
- CREATED_DATE
- CREATED_BY_ID
- LAST_MODIFIED_DATE
- LAST_MODIFIED_BY_ID
- SYSTEM_MODSTAMP
- USER_LIST_VIEW_ID
- SORT_ORDER
- COLUMN_NAME
- OPERATION
- VALUE
-}
-
-"""An edge in a connection."""
-type SalesforceUserListViewCriterionEdge {
- """The item at the end of the edge."""
- node: SalesforceUserListViewCriterion!
-
- """A cursor for use in pagination"""
- cursor: String!
-}
-
-"""User List View Criteria"""
-type SalesforceUserListViewCriterion implements OneGraphNode {
- """User List View Criteria Id"""
- id: String!
-
- """Deleted"""
- isDeleted: Boolean!
-
- """Created Date"""
- createdDate: String!
-
- """Created By ID"""
- createdById: String!
-
- """Created By ID"""
- createdBy: SalesforceUser!
-
- """Last Modified Date"""
- lastModifiedDate: String!
-
- """Last Modified By ID"""
- lastModifiedById: String!
-
- """Last Modified By ID"""
- lastModifiedBy: SalesforceUser!
-
- """System Modstamp"""
- systemModstamp: String!
-
- """User List View ID"""
- userListViewId: String!
-
- """User List View ID"""
- userListView: SalesforceUserListView!
-
- """Sort Order"""
- sortOrder: Int!
-
- """Column Name"""
- columnName: String!
-
- """Operation"""
- operation: String!
-
- """Value"""
- value: String
- customFields(
- """
- List of custom fields to return. By default, returns all custom fields.
- """
- fields: [String!]
- ): JSON!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-"""Salesforce User List View Criterias connection, for use in pagination."""
-type SalesforceUserListViewCriterionsConnection {
- """
- The count of all User List View Criteria you could get from the connection.
- """
- totalCount: Int!
-
- """Pagination Information"""
- pageInfo: PageInfo!
-
- """List of Salesforce User List View Criterias"""
- nodes: [SalesforceUserListViewCriterion!]!
-
- """List of User List View Criteria edges"""
- edges: [SalesforceUserListViewCriterionEdge!]!
-}
-
-"""User List View"""
-type SalesforceUserListView implements OneGraphNode {
- """User List View Id"""
- id: String!
-
- """Deleted"""
- isDeleted: Boolean!
-
- """Created Date"""
- createdDate: String!
-
- """Created By ID"""
- createdById: String!
-
- """Created By ID"""
- createdBy: SalesforceUser!
-
- """Last Modified Date"""
- lastModifiedDate: String!
-
- """Last Modified By ID"""
- lastModifiedById: String!
-
- """Last Modified By ID"""
- lastModifiedBy: SalesforceUser!
-
- """System Modstamp"""
- systemModstamp: String!
-
- """User ID"""
- userId: String!
-
- """User ID"""
- user: SalesforceUser!
-
- """List View ID"""
- listViewId: String!
-
- """List View ID"""
- listView: SalesforceListView!
-
- """Custom Object Definition ID"""
- sobjectType: String
-
- """List View Chart ID"""
- lastViewedChart: String
-
- """Collection of Salesforce UserListViewCriterion"""
- userListViewCriterions(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceUserListViewCriterionConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceUserListViewCriterionSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceUserListViewCriterionSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """
- Number of UserListViewCriterions to fetch. Defaults to 10. Maximum is 60.
- """
- first: Int
- ): SalesforceUserListViewCriterionsConnection
- customFields(
- """
- List of custom fields to return. By default, returns all custom fields.
- """
- fields: [String!]
- ): JSON!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-"""Salesforce User List Views connection, for use in pagination."""
-type SalesforceUserListViewsConnection {
- """The count of all User List View you could get from the connection."""
- totalCount: Int!
-
- """Pagination Information"""
- pageInfo: PageInfo!
-
- """List of Salesforce User List Views"""
- nodes: [SalesforceUserListView!]!
-
- """List of User List View edges"""
- edges: [SalesforceUserListViewEdge!]!
-}
-
-"""
-A filter to be used against ListView object types. All fields are combined with a logical ‘and.’
-"""
-input SalesforceListViewConnectionFilter {
- """Filter against custom fields."""
- customField: SalesforceCustomFieldFilter
-
- """Filter by the ListView's lastModifiedBy relation."""
- lastModifiedBy: SalesforceUserConnectionFilter
-
- """Filter by the ListView's createdBy relation."""
- createdBy: SalesforceUserConnectionFilter
-
- """Filter by the ListView's id field"""
- id: SalesforceIdFilter
-
- """Filter by the ListView's name field"""
- name: SalesforceStringFilter
-
- """Filter by the ListView's developerName field"""
- developerName: SalesforceStringFilter
-
- """Filter by the ListView's namespacePrefix field"""
- namespacePrefix: SalesforceStringFilter
-
- """Filter by the ListView's sobjectType field"""
- sobjectType: SalesforceStringFilter
-
- """Filter by the ListView's isSoqlCompatible field"""
- isSoqlCompatible: SalesforceBooleanFilter
-
- """Filter by the ListView's createdDate field"""
- createdDate: SalesforceDateTimeFilter
-
- """Filter by the ListView's createdById field"""
- createdById: SalesforceIdFilter
-
- """Filter by the ListView's lastModifiedDate field"""
- lastModifiedDate: SalesforceDateTimeFilter
-
- """Filter by the ListView's lastModifiedById field"""
- lastModifiedById: SalesforceIdFilter
-
- """Filter by the ListView's systemModstamp field"""
- systemModstamp: SalesforceDateTimeFilter
-
- """Filter by the ListView's lastViewedDate field"""
- lastViewedDate: SalesforceDateTimeFilter
-
- """Filter by the ListView's lastReferencedDate field"""
- lastReferencedDate: SalesforceDateTimeFilter
-
- """Checks for any expressions in this list."""
- or: [SalesforceListViewConnectionFilter!]
-
- """Checks for all expressions in this list."""
- and: [SalesforceListViewConnectionFilter!]
-}
-
-"""
-A filter to be used against ListEmail object types. All fields are combined with a logical ‘and.’
-"""
-input SalesforceListEmailConnectionFilter {
- """Filter against custom fields."""
- customField: SalesforceCustomFieldFilter
-
- """Filter by the ListEmail's lastModifiedBy relation."""
- lastModifiedBy: SalesforceUserConnectionFilter
-
- """Filter by the ListEmail's createdBy relation."""
- createdBy: SalesforceUserConnectionFilter
-
- """Filter by the ListEmail's id field"""
- id: SalesforceIdFilter
-
- """Filter by the ListEmail's ownerId field"""
- ownerId: SalesforceIdFilter
-
- """Filter by the ListEmail's isDeleted field"""
- isDeleted: SalesforceBooleanFilter
-
- """Filter by the ListEmail's name field"""
- name: SalesforceStringFilter
-
- """Filter by the ListEmail's createdDate field"""
- createdDate: SalesforceDateTimeFilter
-
- """Filter by the ListEmail's createdById field"""
- createdById: SalesforceIdFilter
-
- """Filter by the ListEmail's lastModifiedDate field"""
- lastModifiedDate: SalesforceDateTimeFilter
-
- """Filter by the ListEmail's lastModifiedById field"""
- lastModifiedById: SalesforceIdFilter
-
- """Filter by the ListEmail's systemModstamp field"""
- systemModstamp: SalesforceDateTimeFilter
-
- """Filter by the ListEmail's lastViewedDate field"""
- lastViewedDate: SalesforceDateTimeFilter
-
- """Filter by the ListEmail's lastReferencedDate field"""
- lastReferencedDate: SalesforceDateTimeFilter
-
- """Filter by the ListEmail's subject field"""
- subject: SalesforceStringFilter
-
- """Filter by the ListEmail's fromName field"""
- fromName: SalesforceStringFilter
-
- """Filter by the ListEmail's fromAddress field"""
- fromAddress: SalesforceStringFilter
-
- """Filter by the ListEmail's status field"""
- status: SalesforceStringFilter
-
- """Filter by the ListEmail's hasAttachment field"""
- hasAttachment: SalesforceBooleanFilter
-
- """Filter by the ListEmail's scheduledDate field"""
- scheduledDate: SalesforceDateTimeFilter
-
- """Filter by the ListEmail's totalSent field"""
- totalSent: SalesforceIntFilter
-
- """Checks for any expressions in this list."""
- or: [SalesforceListEmailConnectionFilter!]
-
- """Checks for all expressions in this list."""
- and: [SalesforceListEmailConnectionFilter!]
-}
-
-"""
-A filter to be used against ListEmailRecipientSource object types. All fields are combined with a logical ‘and.’
-"""
-input SalesforceListEmailRecipientSourceConnectionFilter {
- """Filter against custom fields."""
- customField: SalesforceCustomFieldFilter
-
- """Filter by the ListEmailRecipientSource's sourceList relation."""
- sourceList: SalesforceListViewConnectionFilter
-
- """Filter by the ListEmailRecipientSource's listEmail relation."""
- listEmail: SalesforceListEmailConnectionFilter
-
- """Filter by the ListEmailRecipientSource's lastModifiedBy relation."""
- lastModifiedBy: SalesforceUserConnectionFilter
-
- """Filter by the ListEmailRecipientSource's createdBy relation."""
- createdBy: SalesforceUserConnectionFilter
-
- """Filter by the ListEmailRecipientSource's id field"""
- id: SalesforceIdFilter
-
- """Filter by the ListEmailRecipientSource's isDeleted field"""
- isDeleted: SalesforceBooleanFilter
-
- """Filter by the ListEmailRecipientSource's name field"""
- name: SalesforceStringFilter
-
- """Filter by the ListEmailRecipientSource's createdDate field"""
- createdDate: SalesforceDateTimeFilter
-
- """Filter by the ListEmailRecipientSource's createdById field"""
- createdById: SalesforceIdFilter
-
- """Filter by the ListEmailRecipientSource's lastModifiedDate field"""
- lastModifiedDate: SalesforceDateTimeFilter
-
- """Filter by the ListEmailRecipientSource's lastModifiedById field"""
- lastModifiedById: SalesforceIdFilter
-
- """Filter by the ListEmailRecipientSource's systemModstamp field"""
- systemModstamp: SalesforceDateTimeFilter
-
- """Filter by the ListEmailRecipientSource's listEmailId field"""
- listEmailId: SalesforceIdFilter
-
- """Filter by the ListEmailRecipientSource's sourceListId field"""
- sourceListId: SalesforceIdFilter
-
- """Filter by the ListEmailRecipientSource's sourceType field"""
- sourceType: SalesforceStringFilter
-
- """Checks for any expressions in this list."""
- or: [SalesforceListEmailRecipientSourceConnectionFilter!]
-
- """Checks for all expressions in this list."""
- and: [SalesforceListEmailRecipientSourceConnectionFilter!]
-}
-
-"""Field that List Email Recipient Sources can be sorted by"""
-enum SalesforceListEmailRecipientSourceSortByFieldEnum {
- ID
- IS_DELETED
- NAME
- CREATED_DATE
- CREATED_BY_ID
- LAST_MODIFIED_DATE
- LAST_MODIFIED_BY_ID
- SYSTEM_MODSTAMP
- LIST_EMAIL_ID
- SOURCE_LIST_ID
- SOURCE_TYPE
-}
-
-"""List View"""
-type SalesforceListView implements OneGraphNode {
- """List View ID"""
- id: String!
-
- """View Name"""
- name: String!
-
- """View Unique Name"""
- developerName: String!
-
- """Namespace Prefix"""
- namespacePrefix: String
-
- """Custom Object Definition ID"""
- sobjectType: String
-
- """Is SOQL Compatible"""
- isSoqlCompatible: Boolean!
-
- """Created Date"""
- createdDate: String!
-
- """Created By ID"""
- createdById: String!
-
- """Created By ID"""
- createdBy: SalesforceUser!
-
- """Last Modified Date"""
- lastModifiedDate: String!
-
- """Last Modified By ID"""
- lastModifiedById: String!
-
- """Last Modified By ID"""
- lastModifiedBy: SalesforceUser!
-
- """System Modstamp"""
- systemModstamp: String!
-
- """Last Viewed Date"""
- lastViewedDate: String
-
- """Last Referenced Date"""
- lastReferencedDate: String
-
- """Collection of Salesforce ListEmailRecipientSource"""
- listEmailRecipientSources(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceListEmailRecipientSourceConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceListEmailRecipientSourceSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceListEmailRecipientSourceSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """
- Number of ListEmailRecipientSources to fetch. Defaults to 10. Maximum is 60.
- """
- first: Int
- ): SalesforceListEmailRecipientSourcesConnection
-
- """Collection of Salesforce UserListView"""
- userListViews(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceUserListViewConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceUserListViewSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceUserListViewSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of UserListViews to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceUserListViewsConnection
- customFields(
- """
- List of custom fields to return. By default, returns all custom fields.
- """
- fields: [String!]
- ): JSON!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-"""List Email Recipient Source"""
-type SalesforceListEmailRecipientSource implements OneGraphNode {
- """List Email Recipient Source ID"""
- id: String!
-
- """Deleted"""
- isDeleted: Boolean!
-
- """Name"""
- name: String!
-
- """Created Date"""
- createdDate: String!
-
- """Created By ID"""
- createdById: String!
-
- """Created By ID"""
- createdBy: SalesforceUser!
-
- """Last Modified Date"""
- lastModifiedDate: String!
-
- """Last Modified By ID"""
- lastModifiedById: String!
-
- """Last Modified By ID"""
- lastModifiedBy: SalesforceUser!
-
- """System Modstamp"""
- systemModstamp: String!
-
- """List Email ID"""
- listEmailId: String!
-
- """List Email ID"""
- listEmail: SalesforceListEmail!
-
- """SourceList ID"""
- sourceListId: String!
-
- """SourceList ID"""
- sourceList: SalesforceListView!
-
- """Type"""
- sourceType: String!
-
- """Collection of Salesforce FlowRecordRelation"""
- flowRecordRelations(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceFlowRecordRelationConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceFlowRecordRelationSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceFlowRecordRelationsConnection
- customFields(
- """
- List of custom fields to return. By default, returns all custom fields.
- """
- fields: [String!]
- ): JSON!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-"""
-Salesforce List Email Recipient Sources connection, for use in pagination.
-"""
-type SalesforceListEmailRecipientSourcesConnection {
- """
- The count of all List Email Recipient Source you could get from the connection.
- """
- totalCount: Int!
-
- """Pagination Information"""
- pageInfo: PageInfo!
-
- """List of Salesforce List Email Recipient Sources"""
- nodes: [SalesforceListEmailRecipientSource!]!
-
- """List of List Email Recipient Source edges"""
- edges: [SalesforceListEmailRecipientSourceEdge!]!
-}
-
-"""
-A filter to be used against ContentDistribution object types. All fields are combined with a logical ‘and.’
-"""
-input SalesforceContentDistributionConnectionFilter {
- """Filter against custom fields."""
- customField: SalesforceCustomFieldFilter
-
- """Filter by the ContentDistribution's contentDocument relation."""
- contentDocument: SalesforceContentDocumentConnectionFilter
-
- """Filter by the ContentDistribution's contentVersion relation."""
- contentVersion: SalesforceContentVersionConnectionFilter
-
- """Filter by the ContentDistribution's lastModifiedBy relation."""
- lastModifiedBy: SalesforceUserConnectionFilter
-
- """Filter by the ContentDistribution's owner relation."""
- owner: SalesforceUserConnectionFilter
-
- """Filter by the ContentDistribution's createdBy relation."""
- createdBy: SalesforceUserConnectionFilter
-
- """Filter by the ContentDistribution's id field"""
- id: SalesforceIdFilter
-
- """Filter by the ContentDistribution's createdDate field"""
- createdDate: SalesforceDateTimeFilter
-
- """Filter by the ContentDistribution's createdById field"""
- createdById: SalesforceIdFilter
-
- """Filter by the ContentDistribution's ownerId field"""
- ownerId: SalesforceIdFilter
-
- """Filter by the ContentDistribution's lastModifiedDate field"""
- lastModifiedDate: SalesforceDateTimeFilter
-
- """Filter by the ContentDistribution's lastModifiedById field"""
- lastModifiedById: SalesforceIdFilter
-
- """Filter by the ContentDistribution's systemModstamp field"""
- systemModstamp: SalesforceDateTimeFilter
-
- """Filter by the ContentDistribution's name field"""
- name: SalesforceStringFilter
-
- """Filter by the ContentDistribution's isDeleted field"""
- isDeleted: SalesforceBooleanFilter
-
- """Filter by the ContentDistribution's contentVersionId field"""
- contentVersionId: SalesforceIdFilter
-
- """Filter by the ContentDistribution's contentDocumentId field"""
- contentDocumentId: SalesforceIdFilter
-
- """Filter by the ContentDistribution's relatedRecordId field"""
- relatedRecordId: SalesforceIdFilter
-
- """Filter by the ContentDistribution's preferencesAllowPdfDownload field"""
- preferencesAllowPdfDownload: SalesforceBooleanFilter
-
- """
- Filter by the ContentDistribution's preferencesAllowOriginalDownload field
- """
- preferencesAllowOriginalDownload: SalesforceBooleanFilter
-
- """Filter by the ContentDistribution's preferencesPasswordRequired field"""
- preferencesPasswordRequired: SalesforceBooleanFilter
-
- """Filter by the ContentDistribution's preferencesNotifyOnVisit field"""
- preferencesNotifyOnVisit: SalesforceBooleanFilter
-
- """Filter by the ContentDistribution's preferencesLinkLatestVersion field"""
- preferencesLinkLatestVersion: SalesforceBooleanFilter
-
- """
- Filter by the ContentDistribution's preferencesAllowViewInBrowser field
- """
- preferencesAllowViewInBrowser: SalesforceBooleanFilter
-
- """Filter by the ContentDistribution's preferencesExpires field"""
- preferencesExpires: SalesforceBooleanFilter
-
- """
- Filter by the ContentDistribution's preferencesNotifyRndtnComplete field
- """
- preferencesNotifyRndtnComplete: SalesforceBooleanFilter
-
- """Filter by the ContentDistribution's expiryDate field"""
- expiryDate: SalesforceDateTimeFilter
-
- """Filter by the ContentDistribution's viewCount field"""
- viewCount: SalesforceIntFilter
-
- """Filter by the ContentDistribution's firstViewDate field"""
- firstViewDate: SalesforceDateTimeFilter
-
- """Filter by the ContentDistribution's lastViewDate field"""
- lastViewDate: SalesforceDateTimeFilter
-
- """Checks for any expressions in this list."""
- or: [SalesforceContentDistributionConnectionFilter!]
-
- """Checks for all expressions in this list."""
- and: [SalesforceContentDistributionConnectionFilter!]
-}
-
-"""Field that Content Deliveries can be sorted by"""
-enum SalesforceContentDistributionSortByFieldEnum {
- ID
- CREATED_DATE
- CREATED_BY_ID
- OWNER_ID
- LAST_MODIFIED_DATE
- LAST_MODIFIED_BY_ID
- SYSTEM_MODSTAMP
- NAME
- IS_DELETED
- CONTENT_VERSION_ID
- CONTENT_DOCUMENT_ID
- RELATED_RECORD_ID
- EXPIRY_DATE
- PASSWORD
- VIEW_COUNT
- FIRST_VIEW_DATE
- LAST_VIEW_DATE
- DISTRIBUTION_PUBLIC_URL
- CONTENT_DOWNLOAD_URL
- PDF_DOWNLOAD_URL
-}
-
-union SalesforceListEmailOwnerUnion = SalesforceUser | SalesforceGroup
-
-"""List Email"""
-type SalesforceListEmail implements OneGraphNode {
- """List Email ID"""
- id: String!
-
- """Owner ID"""
- ownerId: String!
-
- """Owner ID"""
- owner: SalesforceListEmailOwnerUnion!
-
- """Deleted"""
- isDeleted: Boolean!
-
- """Name"""
- name: String!
-
- """Created Date"""
- createdDate: String!
-
- """Created By ID"""
- createdById: String!
-
- """Created By ID"""
- createdBy: SalesforceUser!
-
- """Last Modified Date"""
- lastModifiedDate: String!
-
- """Last Modified By ID"""
- lastModifiedById: String!
-
- """Last Modified By ID"""
- lastModifiedBy: SalesforceUser!
-
- """System Modstamp"""
- systemModstamp: String!
-
- """Last Viewed Date"""
- lastViewedDate: String
-
- """Last Referenced Date"""
- lastReferencedDate: String
-
- """Subject"""
- subject: String
-
- """Html Body"""
- htmlBody: String
-
- """Text Body"""
- textBody: String
-
- """From Name"""
- fromName: String
-
- """From Address"""
- fromAddress: String!
-
- """Status"""
- status: String!
-
- """Has Attachment"""
- hasAttachment: Boolean!
-
- """Scheduled Date"""
- scheduledDate: String
-
- """Total Sent"""
- totalSent: Int
-
- """Collection of Salesforce ContentDistribution"""
- contentDistributions(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceContentDistributionConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceContentDistributionSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceContentDistributionSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """
- Number of ContentDistributions to fetch. Defaults to 10. Maximum is 60.
- """
- first: Int
- ): SalesforceContentDistributionsConnection
-
- """Collection of Salesforce ContentDocumentLink"""
- contentDocumentLinks(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceContentDocumentLinkConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceContentDocumentLinkSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceContentDocumentLinkSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """
- Number of ContentDocumentLinks to fetch. Defaults to 10. Maximum is 60.
- """
- first: Int
- ): SalesforceContentDocumentLinksConnection
-
- """Collection of Salesforce ContentVersion"""
- contentVersions(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceContentVersionConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceContentVersionSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceContentVersionSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of ContentVersions to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceContentVersionsConnection
-
- """Collection of Salesforce FlowRecordRelation"""
- flowRecordRelations(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceFlowRecordRelationConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceFlowRecordRelationSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceFlowRecordRelationsConnection
-
- """Collection of Salesforce ListEmailRecipientSource"""
- listEmailRecipientSources(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceListEmailRecipientSourceConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceListEmailRecipientSourceSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceListEmailRecipientSourceSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """
- Number of ListEmailRecipientSources to fetch. Defaults to 10. Maximum is 60.
- """
- first: Int
- ): SalesforceListEmailRecipientSourcesConnection
- customFields(
- """
- List of custom fields to return. By default, returns all custom fields.
- """
- fields: [String!]
- ): JSON!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-union SalesforceContentDistributionRelatedRecordUnion = SalesforceOpportunity | SalesforceListEmail | SalesforceLead | SalesforceEmailMessage | SalesforceContact | SalesforceCase | SalesforceCampaign | SalesforceAccount
-
-"""Content Delivery"""
-type SalesforceContentDistribution implements OneGraphNode {
- """Content Delivery ID"""
- id: String!
-
- """Created Date"""
- createdDate: String!
-
- """Created By ID"""
- createdById: String!
-
- """Created By ID"""
- createdBy: SalesforceUser!
-
- """Owner ID"""
- ownerId: String!
-
- """Owner ID"""
- owner: SalesforceUser!
-
- """Last Modified Date"""
- lastModifiedDate: String!
-
- """Last Modified By ID"""
- lastModifiedById: String!
-
- """Last Modified By ID"""
- lastModifiedBy: SalesforceUser!
-
- """System Modstamp"""
- systemModstamp: String!
-
- """Content Delivery Name"""
- name: String!
-
- """Deleted"""
- isDeleted: Boolean!
-
- """ContentVersion ID"""
- contentVersionId: String!
-
- """ContentVersion ID"""
- contentVersion: SalesforceContentVersion!
-
- """ContentDocument ID"""
- contentDocumentId: String
-
- """ContentDocument ID"""
- contentDocument: SalesforceContentDocument
-
- """Related Record ID"""
- relatedRecordId: String
-
- """Related Record ID"""
- relatedRecord: SalesforceContentDistributionRelatedRecordUnion
-
- """Allow Download as PDF"""
- preferencesAllowPdfDownload: Boolean!
-
- """Allow Download in Original Format"""
- preferencesAllowOriginalDownload: Boolean!
-
- """Require Password to Access Content"""
- preferencesPasswordRequired: Boolean!
-
- """Notify Me of First View or Download"""
- preferencesNotifyOnVisit: Boolean!
-
- """Content Delivery Opens Latest Version"""
- preferencesLinkLatestVersion: Boolean!
-
- """Allow View in the Browser"""
- preferencesAllowViewInBrowser: Boolean!
-
- """Content Delivery Expires"""
- preferencesExpires: Boolean!
-
- """Email when Preview Images are Ready"""
- preferencesNotifyRndtnComplete: Boolean!
-
- """Expiration Date"""
- expiryDate: String
-
- """Password"""
- password: String
-
- """View Count"""
- viewCount: Int
-
- """First Viewed"""
- firstViewDate: String
-
- """Last Viewed"""
- lastViewDate: String
-
- """External Link"""
- distributionPublicUrl: String
-
- """File Download Link"""
- contentDownloadUrl: String
-
- """PDF Download Link"""
- pdfDownloadUrl: String
-
- """Collection of Salesforce ContentDistributionView"""
- contentDistributionViews(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceContentDistributionViewConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceContentDistributionViewSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceContentDistributionViewSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """
- Number of ContentDistributionViews to fetch. Defaults to 10. Maximum is 60.
- """
- first: Int
- ): SalesforceContentDistributionViewsConnection
-
- """Collection of Salesforce FlowRecordRelation"""
- flowRecordRelations(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceFlowRecordRelationConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceFlowRecordRelationSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceFlowRecordRelationsConnection
- customFields(
- """
- List of custom fields to return. By default, returns all custom fields.
- """
- fields: [String!]
- ): JSON!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-"""Salesforce Content Deliveries connection, for use in pagination."""
-type SalesforceContentDistributionsConnection {
- """The count of all Content Delivery you could get from the connection."""
- totalCount: Int!
-
- """Pagination Information"""
- pageInfo: PageInfo!
-
- """List of Salesforce Content Deliveries"""
- nodes: [SalesforceContentDistribution!]!
-
- """List of Content Delivery edges"""
- edges: [SalesforceContentDistributionEdge!]!
-}
-
-union SalesforceEmailMessageRelatedToUnion = SalesforceSolution | SalesforceProduct2 | SalesforceOrder | SalesforceOpportunity | SalesforceContract | SalesforceCase | SalesforceCampaign | SalesforceAssetRelationship | SalesforceAsset | SalesforceAccount
-
-"""Email Message"""
-type SalesforceEmailMessage implements OneGraphNode {
- """Email Message ID"""
- id: String!
-
- """Case ID"""
- parentId: String
-
- """Case ID"""
- parent: SalesforceCase
-
- """Activity ID"""
- activityId: String
-
- """Activity ID"""
- activity: SalesforceTask
-
- """Created By ID"""
- createdById: String!
-
- """Created By ID"""
- createdBy: SalesforceUser!
-
- """Created Date"""
- createdDate: String!
-
- """Last Modified Date"""
- lastModifiedDate: String!
-
- """Last Modified By ID"""
- lastModifiedById: String!
-
- """Last Modified By ID"""
- lastModifiedBy: SalesforceUser!
-
- """System Modstamp"""
- systemModstamp: String!
-
- """Text Body"""
- textBody: String
-
- """HTML Body"""
- htmlBody: String
-
- """Headers"""
- headers: String
-
- """Subject"""
- subject: String
-
- """From Name"""
- fromName: String
-
- """From Address"""
- fromAddress: String
-
- """From"""
- validatedFromAddress: String
-
- """To Address"""
- toAddress: String
-
- """CC Address"""
- ccAddress: String
-
- """BCC Address"""
- bccAddress: String
-
- """Is Incoming"""
- incoming: Boolean!
-
- """Has Attachment"""
- hasAttachment: Boolean!
-
- """Status"""
- status: String!
-
- """Message Date"""
- messageDate: String
-
- """Deleted"""
- isDeleted: Boolean!
-
- """Email Message ID"""
- replyToEmailMessageId: String
-
- """Email Message ID"""
- replyToEmailMessage: SalesforceEmailMessage
-
- """Is Externally Visible"""
- isExternallyVisible: Boolean!
-
- """Message ID"""
- messageIdentifier: String
-
- """Thread ID"""
- threadIdentifier: String
-
- """Is Client Managed"""
- isClientManaged: Boolean!
-
- """Related To ID"""
- relatedToId: String
-
- """Related To ID"""
- relatedTo: SalesforceEmailMessageRelatedToUnion
-
- """Collection of Salesforce Attachment"""
- attachments(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceAttachmentConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceAttachmentSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceAttachmentSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of Attachments to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceAttachmentsConnection
-
- """Collection of Salesforce ContentDistribution"""
- contentDistributions(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceContentDistributionConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceContentDistributionSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceContentDistributionSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """
- Number of ContentDistributions to fetch. Defaults to 10. Maximum is 60.
- """
- first: Int
- ): SalesforceContentDistributionsConnection
-
- """Collection of Salesforce ContentDocumentLink"""
- contentDocumentLinks(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceContentDocumentLinkConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceContentDocumentLinkSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceContentDocumentLinkSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """
- Number of ContentDocumentLinks to fetch. Defaults to 10. Maximum is 60.
- """
- first: Int
- ): SalesforceContentDocumentLinksConnection
-
- """Collection of Salesforce ContentVersion"""
- contentVersions(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceContentVersionConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceContentVersionSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceContentVersionSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of ContentVersions to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceContentVersionsConnection
-
- """Collection of Salesforce EmailMessage"""
- emailMessages(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceEmailMessageConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceEmailMessageSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceEmailMessageSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of EmailMessages to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceEmailMessagesConnection
-
- """Collection of Salesforce EmailMessageRelation"""
- emailMessageRelations(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceEmailMessageRelationConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceEmailMessageRelationSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceEmailMessageRelationSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """
- Number of EmailMessageRelations to fetch. Defaults to 10. Maximum is 60.
- """
- first: Int
- ): SalesforceEmailMessageRelationsConnection
-
- """Collection of Salesforce FlowRecordRelation"""
- flowRecordRelations(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceFlowRecordRelationConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceFlowRecordRelationSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceFlowRecordRelationsConnection
-
- """Collection of Salesforce ProcessInstance"""
- processInstances(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceProcessInstanceConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceProcessInstanceSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceProcessInstanceSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of ProcessInstances to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceProcessInstancesConnection
- customFields(
- """
- List of custom fields to return. By default, returns all custom fields.
- """
- fields: [String!]
- ): JSON!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-"""Salesforce Email Messages connection, for use in pagination."""
-type SalesforceEmailMessagesConnection {
- """The count of all Email Message you could get from the connection."""
- totalCount: Int!
-
- """Pagination Information"""
- pageInfo: PageInfo!
-
- """List of Salesforce Email Messages"""
- nodes: [SalesforceEmailMessage!]!
-
- """List of Email Message edges"""
- edges: [SalesforceEmailMessageEdge!]!
-}
-
-"""
-A filter to be used against Case object types. All fields are combined with a logical ‘and.’
-"""
-input SalesforceCaseConnectionFilter {
- """Filter against custom fields."""
- customField: SalesforceCustomFieldFilter
-
- """Filter by the Case's lastModifiedBy relation."""
- lastModifiedBy: SalesforceUserConnectionFilter
-
- """Filter by the Case's createdBy relation."""
- createdBy: SalesforceUserConnectionFilter
-
- """Filter by the Case's parent relation."""
- parent: SalesforceCaseConnectionFilter
-
- """Filter by the Case's asset relation."""
- asset: SalesforceAssetConnectionFilter
-
- """Filter by the Case's account relation."""
- account: SalesforceAccountConnectionFilter
-
- """Filter by the Case's contact relation."""
- contact: SalesforceContactConnectionFilter
-
- """Filter by the Case's id field"""
- id: SalesforceIdFilter
-
- """Filter by the Case's isDeleted field"""
- isDeleted: SalesforceBooleanFilter
-
- """Filter by the Case's caseNumber field"""
- caseNumber: SalesforceStringFilter
-
- """Filter by the Case's contactId field"""
- contactId: SalesforceIdFilter
-
- """Filter by the Case's accountId field"""
- accountId: SalesforceIdFilter
-
- """Filter by the Case's assetId field"""
- assetId: SalesforceIdFilter
-
- """Filter by the Case's parentId field"""
- parentId: SalesforceIdFilter
-
- """Filter by the Case's suppliedName field"""
- suppliedName: SalesforceStringFilter
-
- """Filter by the Case's suppliedEmail field"""
- suppliedEmail: SalesforceStringFilter
-
- """Filter by the Case's suppliedPhone field"""
- suppliedPhone: SalesforceStringFilter
-
- """Filter by the Case's suppliedCompany field"""
- suppliedCompany: SalesforceStringFilter
-
- """Filter by the Case's type field"""
- type: SalesforceStringFilter
-
- """Filter by the Case's status field"""
- status: SalesforceStringFilter
-
- """Filter by the Case's reason field"""
- reason: SalesforceStringFilter
-
- """Filter by the Case's origin field"""
- origin: SalesforceStringFilter
-
- """Filter by the Case's subject field"""
- subject: SalesforceStringFilter
-
- """Filter by the Case's priority field"""
- priority: SalesforceStringFilter
-
- """Filter by the Case's isClosed field"""
- isClosed: SalesforceBooleanFilter
-
- """Filter by the Case's closedDate field"""
- closedDate: SalesforceDateTimeFilter
-
- """Filter by the Case's isEscalated field"""
- isEscalated: SalesforceBooleanFilter
-
- """Filter by the Case's ownerId field"""
- ownerId: SalesforceIdFilter
-
- """Filter by the Case's createdDate field"""
- createdDate: SalesforceDateTimeFilter
-
- """Filter by the Case's createdById field"""
- createdById: SalesforceIdFilter
-
- """Filter by the Case's lastModifiedDate field"""
- lastModifiedDate: SalesforceDateTimeFilter
-
- """Filter by the Case's lastModifiedById field"""
- lastModifiedById: SalesforceIdFilter
-
- """Filter by the Case's systemModstamp field"""
- systemModstamp: SalesforceDateTimeFilter
-
- """Filter by the Case's contactPhone field"""
- contactPhone: SalesforceStringFilter
-
- """Filter by the Case's contactMobile field"""
- contactMobile: SalesforceStringFilter
-
- """Filter by the Case's contactEmail field"""
- contactEmail: SalesforceStringFilter
-
- """Filter by the Case's contactFax field"""
- contactFax: SalesforceStringFilter
-
- """Filter by the Case's lastViewedDate field"""
- lastViewedDate: SalesforceDateTimeFilter
-
- """Filter by the Case's lastReferencedDate field"""
- lastReferencedDate: SalesforceDateTimeFilter
-
- """Checks for any expressions in this list."""
- or: [SalesforceCaseConnectionFilter!]
-
- """Checks for all expressions in this list."""
- and: [SalesforceCaseConnectionFilter!]
-}
-
-"""Field that Cases can be sorted by"""
-enum SalesforceCaseSortByFieldEnum {
- ID
- IS_DELETED
- CASE_NUMBER
- CONTACT_ID
- ACCOUNT_ID
- ASSET_ID
- PARENT_ID
- SUPPLIED_NAME
- SUPPLIED_EMAIL
- SUPPLIED_PHONE
- SUPPLIED_COMPANY
- TYPE
- STATUS
- REASON
- ORIGIN
- SUBJECT
- PRIORITY
- IS_CLOSED
- CLOSED_DATE
- IS_ESCALATED
- OWNER_ID
- CREATED_DATE
- CREATED_BY_ID
- LAST_MODIFIED_DATE
- LAST_MODIFIED_BY_ID
- SYSTEM_MODSTAMP
- CONTACT_PHONE
- CONTACT_MOBILE
- CONTACT_EMAIL
- CONTACT_FAX
- LAST_VIEWED_DATE
- LAST_REFERENCED_DATE
-}
-
-"""An edge in a connection."""
-type SalesforceCaseEdge {
- """The item at the end of the edge."""
- node: SalesforceCase!
-
- """A cursor for use in pagination"""
- cursor: String!
-}
-
-"""Salesforce Cases connection, for use in pagination."""
-type SalesforceCasesConnection {
- """The count of all Case you could get from the connection."""
- totalCount: Int!
-
- """Pagination Information"""
- pageInfo: PageInfo!
-
- """List of Salesforce Cases"""
- nodes: [SalesforceCase!]!
-
- """List of Case edges"""
- edges: [SalesforceCaseEdge!]!
-}
-
-"""
-A filter to be used against AssetShare object types. All fields are combined with a logical ‘and.’
-"""
-input SalesforceAssetShareConnectionFilter {
- """Filter against custom fields."""
- customField: SalesforceCustomFieldFilter
-
- """Filter by the AssetShare's lastModifiedBy relation."""
- lastModifiedBy: SalesforceUserConnectionFilter
-
- """Filter by the AssetShare's asset relation."""
- asset: SalesforceAssetConnectionFilter
-
- """Filter by the AssetShare's id field"""
- id: SalesforceIdFilter
-
- """Filter by the AssetShare's assetId field"""
- assetId: SalesforceIdFilter
-
- """Filter by the AssetShare's userOrGroupId field"""
- userOrGroupId: SalesforceIdFilter
-
- """Filter by the AssetShare's assetAccessLevel field"""
- assetAccessLevel: SalesforceStringFilter
-
- """Filter by the AssetShare's rowCause field"""
- rowCause: SalesforceStringFilter
-
- """Filter by the AssetShare's lastModifiedDate field"""
- lastModifiedDate: SalesforceDateTimeFilter
-
- """Filter by the AssetShare's lastModifiedById field"""
- lastModifiedById: SalesforceIdFilter
-
- """Filter by the AssetShare's isDeleted field"""
- isDeleted: SalesforceBooleanFilter
-
- """Checks for any expressions in this list."""
- or: [SalesforceAssetShareConnectionFilter!]
-
- """Checks for all expressions in this list."""
- and: [SalesforceAssetShareConnectionFilter!]
-}
-
-"""Field that Asset Shares can be sorted by"""
-enum SalesforceAssetShareSortByFieldEnum {
- ID
- ASSET_ID
- USER_OR_GROUP_ID
- ASSET_ACCESS_LEVEL
- ROW_CAUSE
- LAST_MODIFIED_DATE
- LAST_MODIFIED_BY_ID
- IS_DELETED
-}
-
-"""An edge in a connection."""
-type SalesforceAssetShareEdge {
- """The item at the end of the edge."""
- node: SalesforceAssetShare!
-
- """A cursor for use in pagination"""
- cursor: String!
-}
-
-union SalesforceAssetShareUserOrGroupUnion = SalesforceUser | SalesforceGroup
-
-"""Asset Share"""
-type SalesforceAssetShare implements OneGraphNode {
- """Asset Share ID"""
- id: String!
-
- """Asset ID"""
- assetId: String!
-
- """Asset ID"""
- asset: SalesforceAsset!
-
- """User/Group ID"""
- userOrGroupId: String!
-
- """User/Group ID"""
- userOrGroup: SalesforceAssetShareUserOrGroupUnion!
-
- """Asset Access"""
- assetAccessLevel: String!
-
- """Row Cause"""
- rowCause: String
-
- """Last Modified Date"""
- lastModifiedDate: String!
-
- """Last Modified By ID"""
- lastModifiedById: String!
-
- """Last Modified By ID"""
- lastModifiedBy: SalesforceUser!
-
- """Deleted"""
- isDeleted: Boolean!
- customFields(
- """
- List of custom fields to return. By default, returns all custom fields.
- """
- fields: [String!]
- ): JSON!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-"""Salesforce Asset Shares connection, for use in pagination."""
-type SalesforceAssetSharesConnection {
- """The count of all Asset Share you could get from the connection."""
- totalCount: Int!
-
- """Pagination Information"""
- pageInfo: PageInfo!
-
- """List of Salesforce Asset Shares"""
- nodes: [SalesforceAssetShare!]!
-
- """List of Asset Share edges"""
- edges: [SalesforceAssetShareEdge!]!
-}
-
-"""
-A filter to be used against AssetRelationship object types. All fields are combined with a logical ‘and.’
-"""
-input SalesforceAssetRelationshipConnectionFilter {
- """Filter against custom fields."""
- customField: SalesforceCustomFieldFilter
-
- """Filter by the AssetRelationship's relatedAsset relation."""
- relatedAsset: SalesforceAssetConnectionFilter
-
- """Filter by the AssetRelationship's asset relation."""
- asset: SalesforceAssetConnectionFilter
-
- """Filter by the AssetRelationship's lastModifiedBy relation."""
- lastModifiedBy: SalesforceUserConnectionFilter
-
- """Filter by the AssetRelationship's createdBy relation."""
- createdBy: SalesforceUserConnectionFilter
-
- """Filter by the AssetRelationship's id field"""
- id: SalesforceIdFilter
-
- """Filter by the AssetRelationship's isDeleted field"""
- isDeleted: SalesforceBooleanFilter
-
- """Filter by the AssetRelationship's assetRelationshipNumber field"""
- assetRelationshipNumber: SalesforceStringFilter
-
- """Filter by the AssetRelationship's createdDate field"""
- createdDate: SalesforceDateTimeFilter
-
- """Filter by the AssetRelationship's createdById field"""
- createdById: SalesforceIdFilter
-
- """Filter by the AssetRelationship's lastModifiedDate field"""
- lastModifiedDate: SalesforceDateTimeFilter
-
- """Filter by the AssetRelationship's lastModifiedById field"""
- lastModifiedById: SalesforceIdFilter
-
- """Filter by the AssetRelationship's systemModstamp field"""
- systemModstamp: SalesforceDateTimeFilter
-
- """Filter by the AssetRelationship's lastViewedDate field"""
- lastViewedDate: SalesforceDateTimeFilter
-
- """Filter by the AssetRelationship's lastReferencedDate field"""
- lastReferencedDate: SalesforceDateTimeFilter
-
- """Filter by the AssetRelationship's assetId field"""
- assetId: SalesforceIdFilter
-
- """Filter by the AssetRelationship's relatedAssetId field"""
- relatedAssetId: SalesforceIdFilter
-
- """Filter by the AssetRelationship's fromDate field"""
- fromDate: SalesforceDateTimeFilter
-
- """Filter by the AssetRelationship's toDate field"""
- toDate: SalesforceDateTimeFilter
-
- """Filter by the AssetRelationship's relationshipType field"""
- relationshipType: SalesforceStringFilter
-
- """Checks for any expressions in this list."""
- or: [SalesforceAssetRelationshipConnectionFilter!]
-
- """Checks for all expressions in this list."""
- and: [SalesforceAssetRelationshipConnectionFilter!]
-}
-
-"""Field that Asset Relationships can be sorted by"""
-enum SalesforceAssetRelationshipSortByFieldEnum {
- ID
- IS_DELETED
- ASSET_RELATIONSHIP_NUMBER
- CREATED_DATE
- CREATED_BY_ID
- LAST_MODIFIED_DATE
- LAST_MODIFIED_BY_ID
- SYSTEM_MODSTAMP
- LAST_VIEWED_DATE
- LAST_REFERENCED_DATE
- ASSET_ID
- RELATED_ASSET_ID
- FROM_DATE
- TO_DATE
- RELATIONSHIP_TYPE
-}
-
-"""An edge in a connection."""
-type SalesforceAssetRelationshipEdge {
- """The item at the end of the edge."""
- node: SalesforceAssetRelationship!
-
- """A cursor for use in pagination"""
- cursor: String!
-}
-
-"""Salesforce Asset Relationships connection, for use in pagination."""
-type SalesforceAssetRelationshipsConnection {
- """The count of all Asset Relationship you could get from the connection."""
- totalCount: Int!
-
- """Pagination Information"""
- pageInfo: PageInfo!
-
- """List of Salesforce Asset Relationships"""
- nodes: [SalesforceAssetRelationship!]!
-
- """List of Asset Relationship edges"""
- edges: [SalesforceAssetRelationshipEdge!]!
-}
-
-"""
-A filter to be used against AssetHistory object types. All fields are combined with a logical ‘and.’
-"""
-input SalesforceAssetHistoryConnectionFilter {
- """Filter against custom fields."""
- customField: SalesforceCustomFieldFilter
-
- """Filter by the AssetHistory's createdBy relation."""
- createdBy: SalesforceUserConnectionFilter
-
- """Filter by the AssetHistory's asset relation."""
- asset: SalesforceAssetConnectionFilter
-
- """Filter by the AssetHistory's id field"""
- id: SalesforceIdFilter
-
- """Filter by the AssetHistory's isDeleted field"""
- isDeleted: SalesforceBooleanFilter
-
- """Filter by the AssetHistory's assetId field"""
- assetId: SalesforceIdFilter
-
- """Filter by the AssetHistory's createdById field"""
- createdById: SalesforceIdFilter
-
- """Filter by the AssetHistory's createdDate field"""
- createdDate: SalesforceDateTimeFilter
-
- """Filter by the AssetHistory's field field"""
- field: SalesforceStringFilter
-
- """Checks for any expressions in this list."""
- or: [SalesforceAssetHistoryConnectionFilter!]
-
- """Checks for all expressions in this list."""
- and: [SalesforceAssetHistoryConnectionFilter!]
-}
-
-"""Field that Asset Histories can be sorted by"""
-enum SalesforceAssetHistorySortByFieldEnum {
- ID
- IS_DELETED
- ASSET_ID
- CREATED_BY_ID
- CREATED_DATE
- FIELD
- OLD_VALUE
- NEW_VALUE
-}
-
-"""An edge in a connection."""
-type SalesforceAssetHistoryEdge {
- """The item at the end of the edge."""
- node: SalesforceAssetHistory!
-
- """A cursor for use in pagination"""
- cursor: String!
-}
-
-"""Asset History"""
-type SalesforceAssetHistory implements OneGraphNode {
- """Asset History ID"""
- id: String!
-
- """Deleted"""
- isDeleted: Boolean!
-
- """Asset ID"""
- assetId: String!
-
- """Asset ID"""
- asset: SalesforceAsset!
-
- """Created By ID"""
- createdById: String!
-
- """Created By ID"""
- createdBy: SalesforceUser!
-
- """Created Date"""
- createdDate: String!
-
- """Changed Field"""
- field: String!
-
- """Old Value"""
- oldValue: String
-
- """New Value"""
- newValue: String
- customFields(
- """
- List of custom fields to return. By default, returns all custom fields.
- """
- fields: [String!]
- ): JSON!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-"""Salesforce Asset Histories connection, for use in pagination."""
-type SalesforceAssetHistorysConnection {
- """The count of all Asset History you could get from the connection."""
- totalCount: Int!
-
- """Pagination Information"""
- pageInfo: PageInfo!
-
- """List of Salesforce Asset Histories"""
- nodes: [SalesforceAssetHistory!]!
-
- """List of Asset History edges"""
- edges: [SalesforceAssetHistoryEdge!]!
-}
-
-"""
-A filter to be used against AssetFeed object types. All fields are combined with a logical ‘and.’
-"""
-input SalesforceAssetFeedConnectionFilter {
- """Filter against custom fields."""
- customField: SalesforceCustomFieldFilter
-
- """Filter by the AssetFeed's insertedBy relation."""
- insertedBy: SalesforceUserConnectionFilter
-
- """Filter by the AssetFeed's relatedRecord relation."""
- relatedRecord: SalesforceContentVersionConnectionFilter
-
- """Filter by the AssetFeed's createdBy relation."""
- createdBy: SalesforceUserConnectionFilter
-
- """Filter by the AssetFeed's parent relation."""
- parent: SalesforceAssetConnectionFilter
-
- """Filter by the AssetFeed's id field"""
- id: SalesforceIdFilter
-
- """Filter by the AssetFeed's parentId field"""
- parentId: SalesforceIdFilter
-
- """Filter by the AssetFeed's type field"""
- type: SalesforceStringFilter
-
- """Filter by the AssetFeed's createdById field"""
- createdById: SalesforceIdFilter
-
- """Filter by the AssetFeed's createdDate field"""
- createdDate: SalesforceDateTimeFilter
-
- """Filter by the AssetFeed's isDeleted field"""
- isDeleted: SalesforceBooleanFilter
-
- """Filter by the AssetFeed's lastModifiedDate field"""
- lastModifiedDate: SalesforceDateTimeFilter
-
- """Filter by the AssetFeed's systemModstamp field"""
- systemModstamp: SalesforceDateTimeFilter
-
- """Filter by the AssetFeed's commentCount field"""
- commentCount: SalesforceIntFilter
-
- """Filter by the AssetFeed's likeCount field"""
- likeCount: SalesforceIntFilter
-
- """Filter by the AssetFeed's isRichText field"""
- isRichText: SalesforceBooleanFilter
-
- """Checks for any expressions in this list."""
- or: [SalesforceAssetFeedConnectionFilter!]
-
- """Checks for all expressions in this list."""
- and: [SalesforceAssetFeedConnectionFilter!]
-}
-
-"""Field that Asset Feeds can be sorted by"""
-enum SalesforceAssetFeedSortByFieldEnum {
- ID
- PARENT_ID
- TYPE
- CREATED_BY_ID
- CREATED_DATE
- IS_DELETED
- LAST_MODIFIED_DATE
- SYSTEM_MODSTAMP
- COMMENT_COUNT
- LIKE_COUNT
- TITLE
- BODY
- LINK_URL
- IS_RICH_TEXT
- RELATED_RECORD_ID
- INSERTED_BY_ID
-}
-
-"""An edge in a connection."""
-type SalesforceAssetFeedEdge {
- """The item at the end of the edge."""
- node: SalesforceAssetFeed!
-
- """A cursor for use in pagination"""
- cursor: String!
-}
-
-"""Asset Feed"""
-type SalesforceAssetFeed implements OneGraphNode {
- """Feed Item ID"""
- id: String!
-
- """Parent ID"""
- parentId: String!
-
- """Parent ID"""
- parent: SalesforceAsset!
-
- """Feed Item Type"""
- type: String
-
- """Created By ID"""
- createdById: String!
-
- """Created By ID"""
- createdBy: SalesforceUser!
-
- """Created Date"""
- createdDate: String!
-
- """Deleted"""
- isDeleted: Boolean!
-
- """Last Modified Date"""
- lastModifiedDate: String!
-
- """System Modstamp"""
- systemModstamp: String!
-
- """Comment Count"""
- commentCount: Int!
-
- """Like Count"""
- likeCount: Int!
-
- """Title"""
- title: String
-
- """Body"""
- body: String
-
- """Link Url"""
- linkUrl: String
-
- """Is Rich Text"""
- isRichText: Boolean!
-
- """Related Record ID"""
- relatedRecordId: String
-
- """Related Record ID"""
- relatedRecord: SalesforceContentVersion
-
- """InsertedBy ID"""
- insertedById: String
-
- """InsertedBy ID"""
- insertedBy: SalesforceUser
-
- """Collection of Salesforce FeedAttachment"""
- feedAttachments(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceFeedAttachmentConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceFeedAttachmentSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceFeedAttachmentSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of FeedAttachments to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceFeedAttachmentsConnection
-
- """Collection of Salesforce FeedComment"""
- feedComments(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceFeedCommentConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceFeedCommentSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceFeedCommentSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of FeedComments to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceFeedCommentsConnection
-
- """Collection of Salesforce FeedPollChoice"""
- feedPollChoices(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceFeedPollChoiceConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceFeedPollChoiceSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceFeedPollChoiceSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of FeedPollChoices to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceFeedPollChoicesConnection
-
- """Collection of Salesforce FeedPollVote"""
- feedPollVotes(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceFeedPollVoteConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceFeedPollVoteSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceFeedPollVoteSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of FeedPollVotes to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceFeedPollVotesConnection
- customFields(
- """
- List of custom fields to return. By default, returns all custom fields.
- """
- fields: [String!]
- ): JSON!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-"""Salesforce Asset Feeds connection, for use in pagination."""
-type SalesforceAssetFeedsConnection {
- """The count of all Asset Feed you could get from the connection."""
- totalCount: Int!
-
- """Pagination Information"""
- pageInfo: PageInfo!
-
- """List of Salesforce Asset Feeds"""
- nodes: [SalesforceAssetFeed!]!
-
- """List of Asset Feed edges"""
- edges: [SalesforceAssetFeedEdge!]!
-}
-
-"""
-A filter to be used against Asset object types. All fields are combined with a logical ‘and.’
-"""
-input SalesforceAssetConnectionFilter {
- """Filter against custom fields."""
- customField: SalesforceCustomFieldFilter
-
- """Filter by the Asset's assetServicedBy relation."""
- assetServicedBy: SalesforceAccountConnectionFilter
-
- """Filter by the Asset's assetProvidedBy relation."""
- assetProvidedBy: SalesforceAccountConnectionFilter
-
- """Filter by the Asset's owner relation."""
- owner: SalesforceUserConnectionFilter
-
- """Filter by the Asset's lastModifiedBy relation."""
- lastModifiedBy: SalesforceUserConnectionFilter
-
- """Filter by the Asset's createdBy relation."""
- createdBy: SalesforceUserConnectionFilter
-
- """Filter by the Asset's product2 relation."""
- product2: SalesforceProduct2ConnectionFilter
-
- """Filter by the Asset's rootAsset relation."""
- rootAsset: SalesforceAssetConnectionFilter
-
- """Filter by the Asset's parent relation."""
- parent: SalesforceAssetConnectionFilter
-
- """Filter by the Asset's account relation."""
- account: SalesforceAccountConnectionFilter
-
- """Filter by the Asset's contact relation."""
- contact: SalesforceContactConnectionFilter
-
- """Filter by the Asset's id field"""
- id: SalesforceIdFilter
-
- """Filter by the Asset's contactId field"""
- contactId: SalesforceIdFilter
-
- """Filter by the Asset's accountId field"""
- accountId: SalesforceIdFilter
-
- """Filter by the Asset's parentId field"""
- parentId: SalesforceIdFilter
-
- """Filter by the Asset's rootAssetId field"""
- rootAssetId: SalesforceIdFilter
-
- """Filter by the Asset's product2Id field"""
- product2Id: SalesforceIdFilter
-
- """Filter by the Asset's productCode field"""
- productCode: SalesforceStringFilter
-
- """Filter by the Asset's isCompetitorProduct field"""
- isCompetitorProduct: SalesforceBooleanFilter
-
- """Filter by the Asset's createdDate field"""
- createdDate: SalesforceDateTimeFilter
-
- """Filter by the Asset's createdById field"""
- createdById: SalesforceIdFilter
-
- """Filter by the Asset's lastModifiedDate field"""
- lastModifiedDate: SalesforceDateTimeFilter
-
- """Filter by the Asset's lastModifiedById field"""
- lastModifiedById: SalesforceIdFilter
-
- """Filter by the Asset's systemModstamp field"""
- systemModstamp: SalesforceDateTimeFilter
-
- """Filter by the Asset's isDeleted field"""
- isDeleted: SalesforceBooleanFilter
-
- """Filter by the Asset's name field"""
- name: SalesforceStringFilter
-
- """Filter by the Asset's serialNumber field"""
- serialNumber: SalesforceStringFilter
-
- """Filter by the Asset's installDate field"""
- installDate: SalesforceDateFilter
-
- """Filter by the Asset's purchaseDate field"""
- purchaseDate: SalesforceDateFilter
-
- """Filter by the Asset's usageEndDate field"""
- usageEndDate: SalesforceDateFilter
-
- """Filter by the Asset's status field"""
- status: SalesforceStringFilter
-
- """Filter by the Asset's price field"""
- price: SalesforceFloatFilter
-
- """Filter by the Asset's quantity field"""
- quantity: SalesforceFloatFilter
-
- """Filter by the Asset's ownerId field"""
- ownerId: SalesforceIdFilter
-
- """Filter by the Asset's assetProvidedById field"""
- assetProvidedById: SalesforceIdFilter
-
- """Filter by the Asset's assetServicedById field"""
- assetServicedById: SalesforceIdFilter
-
- """Filter by the Asset's isInternal field"""
- isInternal: SalesforceBooleanFilter
-
- """Filter by the Asset's assetLevel field"""
- assetLevel: SalesforceIntFilter
-
- """Filter by the Asset's stockKeepingUnit field"""
- stockKeepingUnit: SalesforceStringFilter
-
- """Filter by the Asset's lastViewedDate field"""
- lastViewedDate: SalesforceDateTimeFilter
-
- """Filter by the Asset's lastReferencedDate field"""
- lastReferencedDate: SalesforceDateTimeFilter
-
- """Checks for any expressions in this list."""
- or: [SalesforceAssetConnectionFilter!]
-
- """Checks for all expressions in this list."""
- and: [SalesforceAssetConnectionFilter!]
-}
-
-"""Field that Assets can be sorted by"""
-enum SalesforceAssetSortByFieldEnum {
- ID
- CONTACT_ID
- ACCOUNT_ID
- PARENT_ID
- ROOT_ASSET_ID
- PRODUCT_2_ID
- PRODUCT_CODE
- IS_COMPETITOR_PRODUCT
- CREATED_DATE
- CREATED_BY_ID
- LAST_MODIFIED_DATE
- LAST_MODIFIED_BY_ID
- SYSTEM_MODSTAMP
- IS_DELETED
- NAME
- SERIAL_NUMBER
- INSTALL_DATE
- PURCHASE_DATE
- USAGE_END_DATE
- STATUS
- PRICE
- QUANTITY
- OWNER_ID
- ASSET_PROVIDED_BY_ID
- ASSET_SERVICED_BY_ID
- IS_INTERNAL
- ASSET_LEVEL
- STOCK_KEEPING_UNIT
- LAST_VIEWED_DATE
- LAST_REFERENCED_DATE
-}
-
-"""An edge in a connection."""
-type SalesforceAssetEdge {
- """The item at the end of the edge."""
- node: SalesforceAsset!
-
- """A cursor for use in pagination"""
- cursor: String!
-}
-
-"""Salesforce Assets connection, for use in pagination."""
-type SalesforceAssetsConnection {
- """The count of all Asset you could get from the connection."""
- totalCount: Int!
-
- """Pagination Information"""
- pageInfo: PageInfo!
-
- """List of Salesforce Assets"""
- nodes: [SalesforceAsset!]!
-
- """List of Asset edges"""
- edges: [SalesforceAssetEdge!]!
-}
-
-"""Asset"""
-type SalesforceAsset implements OneGraphNode {
- """Asset ID"""
- id: String!
-
- """Contact ID"""
- contactId: String
-
- """Contact ID"""
- contact: SalesforceContact
-
- """Account ID"""
- accountId: String
-
- """Account ID"""
- account: SalesforceAccount
-
- """Parent Asset ID"""
- parentId: String
-
- """Parent Asset ID"""
- parent: SalesforceAsset
-
- """Root Asset ID"""
- rootAssetId: String
-
- """Root Asset ID"""
- rootAsset: SalesforceAsset
-
- """Product ID"""
- product2Id: String
-
- """Product ID"""
- product2: SalesforceProduct2
-
- """Product Code"""
- productCode: String
-
- """Competitor Asset"""
- isCompetitorProduct: Boolean!
-
- """Created Date"""
- createdDate: String!
-
- """Created By ID"""
- createdById: String!
-
- """Created By ID"""
- createdBy: SalesforceUser!
-
- """Last Modified Date"""
- lastModifiedDate: String!
-
- """Last Modified By ID"""
- lastModifiedById: String!
-
- """Last Modified By ID"""
- lastModifiedBy: SalesforceUser!
-
- """System Modstamp"""
- systemModstamp: String!
-
- """Deleted"""
- isDeleted: Boolean!
-
- """Asset Name"""
- name: String!
-
- """Serial Number"""
- serialNumber: String
-
- """Install Date"""
- installDate: String
-
- """Purchase Date"""
- purchaseDate: String
-
- """Usage End Date"""
- usageEndDate: String
-
- """Status"""
- status: String
-
- """Price"""
- price: Float
-
- """Quantity"""
- quantity: Float
-
- """Description"""
- description: String
-
- """Owner ID"""
- ownerId: String!
-
- """Owner ID"""
- owner: SalesforceUser!
-
- """Asset Provided By ID"""
- assetProvidedById: String
-
- """Asset Provided By ID"""
- assetProvidedBy: SalesforceAccount
-
- """Asset Serviced By ID"""
- assetServicedById: String
-
- """Asset Serviced By ID"""
- assetServicedBy: SalesforceAccount
-
- """Internal Asset"""
- isInternal: Boolean!
-
- """Asset Level"""
- assetLevel: Int
-
- """Product SKU"""
- stockKeepingUnit: String
-
- """Last Viewed Date"""
- lastViewedDate: String
-
- """Last Referenced Date"""
- lastReferencedDate: String
-
- """Collection of Salesforce Asset"""
- childAssets(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceAssetConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceAssetSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceAssetSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of Assets to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceAssetsConnection
-
- """Collection of Salesforce Asset"""
- assets(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceAssetConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceAssetSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceAssetSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of Assets to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceAssetsConnection
-
- """Collection of Salesforce AssetFeed"""
- feeds(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceAssetFeedConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceAssetFeedSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceAssetFeedSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of AssetFeeds to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceAssetFeedsConnection
-
- """Collection of Salesforce AssetHistory"""
- histories(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceAssetHistoryConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceAssetHistorySortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceAssetHistorySortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of AssetHistories to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceAssetHistorysConnection
-
- """Collection of Salesforce AssetRelationship"""
- primaryAssets(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceAssetRelationshipConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceAssetRelationshipSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceAssetRelationshipSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of AssetRelationships to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceAssetRelationshipsConnection
-
- """Collection of Salesforce AssetRelationship"""
- relatedAssets(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceAssetRelationshipConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceAssetRelationshipSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceAssetRelationshipSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of AssetRelationships to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceAssetRelationshipsConnection
-
- """Collection of Salesforce AssetShare"""
- shares(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceAssetShareConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceAssetShareSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceAssetShareSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of AssetShares to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceAssetSharesConnection
-
- """Collection of Salesforce Attachment"""
- attachments(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceAttachmentConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceAttachmentSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceAttachmentSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of Attachments to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceAttachmentsConnection
-
- """Collection of Salesforce Case"""
- cases(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceCaseConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceCaseSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceCaseSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of Cases to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceCasesConnection
-
- """Collection of Salesforce ContentDocumentLink"""
- contentDocumentLinks(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceContentDocumentLinkConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceContentDocumentLinkSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceContentDocumentLinkSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """
- Number of ContentDocumentLinks to fetch. Defaults to 10. Maximum is 60.
- """
- first: Int
- ): SalesforceContentDocumentLinksConnection
-
- """Collection of Salesforce ContentVersion"""
- contentVersions(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceContentVersionConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceContentVersionSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceContentVersionSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of ContentVersions to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceContentVersionsConnection
-
- """Collection of Salesforce EmailMessage"""
- emails(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceEmailMessageConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceEmailMessageSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceEmailMessageSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of EmailMessages to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceEmailMessagesConnection
-
- """Collection of Salesforce EntitySubscription"""
- feedSubscriptionsForEntity(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceEntitySubscriptionConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceEntitySubscriptionSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceEntitySubscriptionSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of EntitySubscriptions to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceEntitySubscriptionsConnection
-
- """Collection of Salesforce Event"""
- events(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceEventConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceEventSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceEventSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of Events to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceEventsConnection
-
- """Collection of Salesforce FeedComment"""
- feedComments(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceFeedCommentConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceFeedCommentSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceFeedCommentSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of FeedComments to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceFeedCommentsConnection
-
- """Collection of Salesforce FeedItem"""
- feedItems(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceFeedItemConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceFeedItemSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceFeedItemSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of FeedItems to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceFeedItemsConnection
-
- """Collection of Salesforce FlowRecordRelation"""
- flowRecordRelations(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceFlowRecordRelationConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceFlowRecordRelationSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceFlowRecordRelationsConnection
-
- """Collection of Salesforce Note"""
- notes(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceNoteConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceNoteSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceNoteSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of Notes to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceNotesConnection
-
- """Collection of Salesforce ProcessInstance"""
- processInstances(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceProcessInstanceConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceProcessInstanceSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceProcessInstanceSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of ProcessInstances to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceProcessInstancesConnection
-
- """Collection of Salesforce Task"""
- tasks(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceTaskConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceTaskSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceTaskSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of Tasks to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceTasksConnection
-
- """Collection of Salesforce TopicAssignment"""
- topicAssignments(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceTopicAssignmentConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceTopicAssignmentSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceTopicAssignmentSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of TopicAssignments to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceTopicAssignmentsConnection
- customFields(
- """
- List of custom fields to return. By default, returns all custom fields.
- """
- fields: [String!]
- ): JSON!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-"""Asset Relationship"""
-type SalesforceAssetRelationship implements OneGraphNode {
- """Asset Relationship ID"""
- id: String!
-
- """Deleted"""
- isDeleted: Boolean!
-
- """Asset Relationship Number"""
- assetRelationshipNumber: String!
-
- """Created Date"""
- createdDate: String!
-
- """Created By ID"""
- createdById: String!
-
- """Created By ID"""
- createdBy: SalesforceUser!
-
- """Last Modified Date"""
- lastModifiedDate: String!
-
- """Last Modified By ID"""
- lastModifiedById: String!
-
- """Last Modified By ID"""
- lastModifiedBy: SalesforceUser!
-
- """System Modstamp"""
- systemModstamp: String!
-
- """Last Viewed Date"""
- lastViewedDate: String
-
- """Last Referenced Date"""
- lastReferencedDate: String
-
- """Asset ID"""
- assetId: String!
-
- """Asset ID"""
- asset: SalesforceAsset!
-
- """Asset ID"""
- relatedAssetId: String!
-
- """Asset ID"""
- relatedAsset: SalesforceAsset!
-
- """From Date"""
- fromDate: String
-
- """To Date"""
- toDate: String
-
- """Relationship Type"""
- relationshipType: String
-
- """Collection of Salesforce AssetRelationshipFeed"""
- feeds(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceAssetRelationshipFeedConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceAssetRelationshipFeedSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceAssetRelationshipFeedSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """
- Number of AssetRelationshipFeeds to fetch. Defaults to 10. Maximum is 60.
- """
- first: Int
- ): SalesforceAssetRelationshipFeedsConnection
-
- """Collection of Salesforce AssetRelationshipHistory"""
- histories(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceAssetRelationshipHistoryConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceAssetRelationshipHistorySortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceAssetRelationshipHistorySortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """
- Number of AssetRelationshipHistories to fetch. Defaults to 10. Maximum is 60.
- """
- first: Int
- ): SalesforceAssetRelationshipHistorysConnection
-
- """Collection of Salesforce ContentDocumentLink"""
- contentDocumentLinks(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceContentDocumentLinkConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceContentDocumentLinkSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceContentDocumentLinkSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """
- Number of ContentDocumentLinks to fetch. Defaults to 10. Maximum is 60.
- """
- first: Int
- ): SalesforceContentDocumentLinksConnection
-
- """Collection of Salesforce ContentVersion"""
- contentVersions(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceContentVersionConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceContentVersionSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceContentVersionSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of ContentVersions to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceContentVersionsConnection
-
- """Collection of Salesforce EmailMessage"""
- emails(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceEmailMessageConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceEmailMessageSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceEmailMessageSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of EmailMessages to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceEmailMessagesConnection
-
- """Collection of Salesforce EntitySubscription"""
- feedSubscriptionsForEntity(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceEntitySubscriptionConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceEntitySubscriptionSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceEntitySubscriptionSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of EntitySubscriptions to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceEntitySubscriptionsConnection
-
- """Collection of Salesforce Event"""
- events(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceEventConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceEventSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceEventSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of Events to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceEventsConnection
-
- """Collection of Salesforce FeedComment"""
- feedComments(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceFeedCommentConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceFeedCommentSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceFeedCommentSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of FeedComments to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceFeedCommentsConnection
-
- """Collection of Salesforce FeedItem"""
- feedItems(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceFeedItemConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceFeedItemSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceFeedItemSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of FeedItems to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceFeedItemsConnection
-
- """Collection of Salesforce FlowRecordRelation"""
- flowRecordRelations(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceFlowRecordRelationConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceFlowRecordRelationSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceFlowRecordRelationsConnection
-
- """Collection of Salesforce ProcessInstance"""
- processInstances(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceProcessInstanceConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceProcessInstanceSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceProcessInstanceSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of ProcessInstances to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceProcessInstancesConnection
-
- """Collection of Salesforce Task"""
- tasks(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceTaskConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceTaskSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceTaskSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of Tasks to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceTasksConnection
- customFields(
- """
- List of custom fields to return. By default, returns all custom fields.
- """
- fields: [String!]
- ): JSON!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-union SalesforceEventWhatUnion = SalesforceSolution | SalesforceProduct2 | SalesforceOrder | SalesforceOpportunity | SalesforceContract | SalesforceCase | SalesforceCampaign | SalesforceAssetRelationship | SalesforceAsset | SalesforceAccount
-
-union SalesforceEventWhoUnion = SalesforceLead | SalesforceContact
-
-"""Event"""
-type SalesforceEvent implements OneGraphNode {
- """Activity ID"""
- id: String!
-
- """Name ID"""
- whoId: String
-
- """Name ID"""
- who: SalesforceEventWhoUnion
-
- """Related To ID"""
- whatId: String
-
- """Related To ID"""
- what: SalesforceEventWhatUnion
-
- """Subject"""
- subject: String
-
- """Location"""
- location: String
-
- """All-Day Event"""
- isAllDayEvent: Boolean!
-
- """Due Date Time"""
- activityDateTime: String
-
- """Due Date Only"""
- activityDate: String
-
- """Duration"""
- durationInMinutes: Int
-
- """Start Date Time"""
- startDateTime: String
-
- """End Date Time"""
- endDateTime: String
-
- """Description"""
- description: String
-
- """Account ID"""
- accountId: String
-
- """Account ID"""
- account: SalesforceAccount
-
- """Assigned To ID"""
- ownerId: String!
-
- """Assigned To ID"""
- owner: SalesforceUser!
-
- """Private"""
- isPrivate: Boolean!
-
- """Show Time As"""
- showAs: String
-
- """Deleted"""
- isDeleted: Boolean!
-
- """Is Child"""
- isChild: Boolean!
-
- """Is Group Event"""
- isGroupEvent: Boolean!
-
- """Group Event Type"""
- groupEventType: String
-
- """Created Date"""
- createdDate: String!
-
- """Created By ID"""
- createdById: String!
-
- """Created By ID"""
- createdBy: SalesforceUser!
-
- """Last Modified Date"""
- lastModifiedDate: String!
-
- """Last Modified By ID"""
- lastModifiedById: String!
-
- """Last Modified By ID"""
- lastModifiedBy: SalesforceUser!
-
- """System Modstamp"""
- systemModstamp: String!
-
- """Archived"""
- isArchived: Boolean!
-
- """Recurrence Activity ID"""
- recurrenceActivityId: String
-
- """Recurrence Activity ID"""
- recurrenceActivity: SalesforceEvent
-
- """Create Recurring Series of Events"""
- isRecurrence: Boolean!
-
- """Recurrence Start"""
- recurrenceStartDateTime: String
-
- """Recurrence End"""
- recurrenceEndDateOnly: String
-
- """Recurrence Time Zone"""
- recurrenceTimeZoneSidKey: String
-
- """Recurrence Type"""
- recurrenceType: String
-
- """Recurrence Interval"""
- recurrenceInterval: Int
-
- """Recurrence Day of Week Mask"""
- recurrenceDayOfWeekMask: Int
-
- """Recurrence Day of Month"""
- recurrenceDayOfMonth: Int
-
- """Recurrence Instance"""
- recurrenceInstance: String
-
- """Recurrence Month of Year"""
- recurrenceMonthOfYear: String
-
- """Reminder Date/Time"""
- reminderDateTime: String
-
- """Reminder Set"""
- isReminderSet: Boolean!
-
- """Event Subtype"""
- eventSubtype: String
-
- """Collection of Salesforce AcceptedEventRelation"""
- acceptedEventRelations(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceAcceptedEventRelationConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceAcceptedEventRelationSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceAcceptedEventRelationSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """
- Number of AcceptedEventRelations to fetch. Defaults to 10. Maximum is 60.
- """
- first: Int
- ): SalesforceAcceptedEventRelationsConnection
-
- """Collection of Salesforce Attachment"""
- attachments(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceAttachmentConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceAttachmentSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceAttachmentSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of Attachments to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceAttachmentsConnection
-
- """Collection of Salesforce ContentDocumentLink"""
- contentDocumentLinks(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceContentDocumentLinkConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceContentDocumentLinkSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceContentDocumentLinkSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """
- Number of ContentDocumentLinks to fetch. Defaults to 10. Maximum is 60.
- """
- first: Int
- ): SalesforceContentDocumentLinksConnection
-
- """Collection of Salesforce ContentVersion"""
- contentVersions(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceContentVersionConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceContentVersionSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceContentVersionSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of ContentVersions to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceContentVersionsConnection
-
- """Collection of Salesforce DeclinedEventRelation"""
- declinedEventRelations(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceDeclinedEventRelationConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceDeclinedEventRelationSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceDeclinedEventRelationSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """
- Number of DeclinedEventRelations to fetch. Defaults to 10. Maximum is 60.
- """
- first: Int
- ): SalesforceDeclinedEventRelationsConnection
-
- """Collection of Salesforce EntitySubscription"""
- feedSubscriptionsForEntity(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceEntitySubscriptionConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceEntitySubscriptionSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceEntitySubscriptionSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of EntitySubscriptions to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceEntitySubscriptionsConnection
-
- """Collection of Salesforce Event"""
- recurringEvents(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceEventConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceEventSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceEventSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of Events to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceEventsConnection
-
- """Collection of Salesforce EventFeed"""
- feeds(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceEventFeedConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceEventFeedSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceEventFeedSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of EventFeeds to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceEventFeedsConnection
-
- """Collection of Salesforce EventRelation"""
- eventRelations(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceEventRelationConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceEventRelationSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceEventRelationSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of EventRelations to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceEventRelationsConnection
-
- """Collection of Salesforce FeedComment"""
- feedComments(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceFeedCommentConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceFeedCommentSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceFeedCommentSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of FeedComments to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceFeedCommentsConnection
-
- """Collection of Salesforce FeedItem"""
- feedItems(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceFeedItemConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceFeedItemSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceFeedItemSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of FeedItems to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceFeedItemsConnection
-
- """Collection of Salesforce FlowRecordRelation"""
- flowRecordRelations(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceFlowRecordRelationConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceFlowRecordRelationSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceFlowRecordRelationsConnection
-
- """Collection of Salesforce TopicAssignment"""
- topicAssignments(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceTopicAssignmentConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceTopicAssignmentSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceTopicAssignmentSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of TopicAssignments to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceTopicAssignmentsConnection
-
- """Collection of Salesforce UndecidedEventRelation"""
- undecidedEventRelations(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceUndecidedEventRelationConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceUndecidedEventRelationSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceUndecidedEventRelationSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """
- Number of UndecidedEventRelations to fetch. Defaults to 10. Maximum is 60.
- """
- first: Int
- ): SalesforceUndecidedEventRelationsConnection
- customFields(
- """
- List of custom fields to return. By default, returns all custom fields.
- """
- fields: [String!]
- ): JSON!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-"""Event Feed"""
-type SalesforceEventFeed implements OneGraphNode {
- """Feed Item ID"""
- id: String!
-
- """Parent ID"""
- parentId: String!
-
- """Parent ID"""
- parent: SalesforceEvent!
-
- """Feed Item Type"""
- type: String
-
- """Created By ID"""
- createdById: String!
-
- """Created By ID"""
- createdBy: SalesforceUser!
-
- """Created Date"""
- createdDate: String!
-
- """Deleted"""
- isDeleted: Boolean!
-
- """Last Modified Date"""
- lastModifiedDate: String!
-
- """System Modstamp"""
- systemModstamp: String!
-
- """Comment Count"""
- commentCount: Int!
-
- """Like Count"""
- likeCount: Int!
-
- """Title"""
- title: String
-
- """Body"""
- body: String
-
- """Link Url"""
- linkUrl: String
-
- """Is Rich Text"""
- isRichText: Boolean!
-
- """Related Record ID"""
- relatedRecordId: String
-
- """Related Record ID"""
- relatedRecord: SalesforceContentVersion
-
- """InsertedBy ID"""
- insertedById: String
-
- """InsertedBy ID"""
- insertedBy: SalesforceUser
-
- """Collection of Salesforce FeedAttachment"""
- feedAttachments(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceFeedAttachmentConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceFeedAttachmentSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceFeedAttachmentSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of FeedAttachments to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceFeedAttachmentsConnection
-
- """Collection of Salesforce FeedComment"""
- feedComments(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceFeedCommentConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceFeedCommentSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceFeedCommentSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of FeedComments to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceFeedCommentsConnection
-
- """Collection of Salesforce FeedPollChoice"""
- feedPollChoices(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceFeedPollChoiceConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceFeedPollChoiceSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceFeedPollChoiceSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of FeedPollChoices to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceFeedPollChoicesConnection
-
- """Collection of Salesforce FeedPollVote"""
- feedPollVotes(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceFeedPollVoteConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceFeedPollVoteSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceFeedPollVoteSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of FeedPollVotes to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceFeedPollVotesConnection
- customFields(
- """
- List of custom fields to return. By default, returns all custom fields.
- """
- fields: [String!]
- ): JSON!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-"""Lead Feed"""
-type SalesforceLeadFeed implements OneGraphNode {
- """Feed Item ID"""
- id: String!
-
- """Parent ID"""
- parentId: String!
-
- """Parent ID"""
- parent: SalesforceLead!
-
- """Feed Item Type"""
- type: String
-
- """Created By ID"""
- createdById: String!
-
- """Created By ID"""
- createdBy: SalesforceUser!
-
- """Created Date"""
- createdDate: String!
-
- """Deleted"""
- isDeleted: Boolean!
-
- """Last Modified Date"""
- lastModifiedDate: String!
-
- """System Modstamp"""
- systemModstamp: String!
-
- """Comment Count"""
- commentCount: Int!
-
- """Like Count"""
- likeCount: Int!
-
- """Title"""
- title: String
-
- """Body"""
- body: String
-
- """Link Url"""
- linkUrl: String
-
- """Is Rich Text"""
- isRichText: Boolean!
-
- """Related Record ID"""
- relatedRecordId: String
-
- """Related Record ID"""
- relatedRecord: SalesforceContentVersion
-
- """InsertedBy ID"""
- insertedById: String
-
- """InsertedBy ID"""
- insertedBy: SalesforceUser
-
- """Collection of Salesforce FeedAttachment"""
- feedAttachments(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceFeedAttachmentConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceFeedAttachmentSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceFeedAttachmentSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of FeedAttachments to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceFeedAttachmentsConnection
-
- """Collection of Salesforce FeedComment"""
- feedComments(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceFeedCommentConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceFeedCommentSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceFeedCommentSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of FeedComments to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceFeedCommentsConnection
-
- """Collection of Salesforce FeedPollChoice"""
- feedPollChoices(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceFeedPollChoiceConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceFeedPollChoiceSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceFeedPollChoiceSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of FeedPollChoices to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceFeedPollChoicesConnection
-
- """Collection of Salesforce FeedPollVote"""
- feedPollVotes(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceFeedPollVoteConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceFeedPollVoteSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceFeedPollVoteSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of FeedPollVotes to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceFeedPollVotesConnection
- customFields(
- """
- List of custom fields to return. By default, returns all custom fields.
- """
- fields: [String!]
- ): JSON!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-"""Opportunity Feed"""
-type SalesforceOpportunityFeed implements OneGraphNode {
- """Feed Item ID"""
- id: String!
-
- """Parent ID"""
- parentId: String!
-
- """Parent ID"""
- parent: SalesforceOpportunity!
-
- """Feed Item Type"""
- type: String
-
- """Created By ID"""
- createdById: String!
-
- """Created By ID"""
- createdBy: SalesforceUser!
-
- """Created Date"""
- createdDate: String!
-
- """Deleted"""
- isDeleted: Boolean!
-
- """Last Modified Date"""
- lastModifiedDate: String!
-
- """System Modstamp"""
- systemModstamp: String!
-
- """Comment Count"""
- commentCount: Int!
-
- """Like Count"""
- likeCount: Int!
-
- """Title"""
- title: String
-
- """Body"""
- body: String
-
- """Link Url"""
- linkUrl: String
-
- """Is Rich Text"""
- isRichText: Boolean!
-
- """Related Record ID"""
- relatedRecordId: String
-
- """Related Record ID"""
- relatedRecord: SalesforceContentVersion
-
- """InsertedBy ID"""
- insertedById: String
-
- """InsertedBy ID"""
- insertedBy: SalesforceUser
-
- """Collection of Salesforce FeedAttachment"""
- feedAttachments(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceFeedAttachmentConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceFeedAttachmentSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceFeedAttachmentSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of FeedAttachments to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceFeedAttachmentsConnection
-
- """Collection of Salesforce FeedComment"""
- feedComments(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceFeedCommentConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceFeedCommentSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceFeedCommentSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of FeedComments to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceFeedCommentsConnection
-
- """Collection of Salesforce FeedPollChoice"""
- feedPollChoices(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceFeedPollChoiceConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceFeedPollChoiceSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceFeedPollChoiceSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of FeedPollChoices to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceFeedPollChoicesConnection
-
- """Collection of Salesforce FeedPollVote"""
- feedPollVotes(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceFeedPollVoteConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceFeedPollVoteSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceFeedPollVoteSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of FeedPollVotes to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceFeedPollVotesConnection
- customFields(
- """
- List of custom fields to return. By default, returns all custom fields.
- """
- fields: [String!]
- ): JSON!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-union SalesforceFeedTrackedChangeFeedItemUnion = SalesforceUserFeed | SalesforceTopicFeed | SalesforceTaskFeed | SalesforceSolutionFeed | SalesforceSiteFeed | SalesforceReportFeed | SalesforceProduct2Feed | SalesforceOrderItemFeed | SalesforceOrderFeed | SalesforceOpportunityFeed | SalesforceLeadFeed | SalesforceFeedItem | SalesforceEventFeed | SalesforceDashboardFeed | SalesforceDashboardComponentFeed | SalesforceContractFeed | SalesforceContentDocumentFeed | SalesforceContactFeed | SalesforceCollaborationGroupFeed | SalesforceCaseFeed | SalesforceCampaignFeed | SalesforceAssetRelationshipFeed | SalesforceAssetFeed | SalesforceAccountFeed
-
-"""Order Feed"""
-type SalesforceOrderFeed implements OneGraphNode {
- """Feed Item ID"""
- id: String!
-
- """Parent ID"""
- parentId: String!
-
- """Parent ID"""
- parent: SalesforceOrder!
-
- """Feed Item Type"""
- type: String
-
- """Created By ID"""
- createdById: String!
-
- """Created By ID"""
- createdBy: SalesforceUser!
-
- """Created Date"""
- createdDate: String!
-
- """Deleted"""
- isDeleted: Boolean!
-
- """Last Modified Date"""
- lastModifiedDate: String!
-
- """System Modstamp"""
- systemModstamp: String!
-
- """Comment Count"""
- commentCount: Int!
-
- """Like Count"""
- likeCount: Int!
-
- """Title"""
- title: String
-
- """Body"""
- body: String
-
- """Link Url"""
- linkUrl: String
-
- """Is Rich Text"""
- isRichText: Boolean!
-
- """Related Record ID"""
- relatedRecordId: String
-
- """Related Record ID"""
- relatedRecord: SalesforceContentVersion
-
- """InsertedBy ID"""
- insertedById: String
-
- """InsertedBy ID"""
- insertedBy: SalesforceUser
-
- """Collection of Salesforce FeedAttachment"""
- feedAttachments(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceFeedAttachmentConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceFeedAttachmentSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceFeedAttachmentSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of FeedAttachments to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceFeedAttachmentsConnection
-
- """Collection of Salesforce FeedComment"""
- feedComments(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceFeedCommentConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceFeedCommentSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceFeedCommentSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of FeedComments to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceFeedCommentsConnection
-
- """Collection of Salesforce FeedPollChoice"""
- feedPollChoices(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceFeedPollChoiceConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceFeedPollChoiceSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceFeedPollChoiceSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of FeedPollChoices to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceFeedPollChoicesConnection
-
- """Collection of Salesforce FeedPollVote"""
- feedPollVotes(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceFeedPollVoteConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceFeedPollVoteSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceFeedPollVoteSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of FeedPollVotes to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceFeedPollVotesConnection
- customFields(
- """
- List of custom fields to return. By default, returns all custom fields.
- """
- fields: [String!]
- ): JSON!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-union SalesforceFeedSignalFeedItemUnion = SalesforceUserFeed | SalesforceTopicFeed | SalesforceTaskFeed | SalesforceSolutionFeed | SalesforceSiteFeed | SalesforceReportFeed | SalesforceProduct2Feed | SalesforceOrderItemFeed | SalesforceOrderFeed | SalesforceOpportunityFeed | SalesforceLeadFeed | SalesforceFeedItem | SalesforceEventFeed | SalesforceDashboardFeed | SalesforceDashboardComponentFeed | SalesforceContractFeed | SalesforceContentDocumentFeed | SalesforceContactFeed | SalesforceCollaborationGroupFeed | SalesforceCaseFeed | SalesforceCampaignFeed | SalesforceAssetRelationshipFeed | SalesforceAssetFeed | SalesforceAccountFeed
-
-"""Product Feed"""
-type SalesforceProduct2Feed implements OneGraphNode {
- """Feed Item ID"""
- id: String!
-
- """Parent ID"""
- parentId: String!
-
- """Parent ID"""
- parent: SalesforceProduct2!
-
- """Feed Item Type"""
- type: String
-
- """Created By ID"""
- createdById: String!
-
- """Created By ID"""
- createdBy: SalesforceUser!
-
- """Created Date"""
- createdDate: String!
-
- """Deleted"""
- isDeleted: Boolean!
-
- """Last Modified Date"""
- lastModifiedDate: String!
-
- """System Modstamp"""
- systemModstamp: String!
-
- """Comment Count"""
- commentCount: Int!
-
- """Like Count"""
- likeCount: Int!
-
- """Title"""
- title: String
-
- """Body"""
- body: String
-
- """Link Url"""
- linkUrl: String
-
- """Is Rich Text"""
- isRichText: Boolean!
-
- """Related Record ID"""
- relatedRecordId: String
-
- """Related Record ID"""
- relatedRecord: SalesforceContentVersion
-
- """InsertedBy ID"""
- insertedById: String
-
- """InsertedBy ID"""
- insertedBy: SalesforceUser
-
- """Collection of Salesforce FeedAttachment"""
- feedAttachments(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceFeedAttachmentConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceFeedAttachmentSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceFeedAttachmentSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of FeedAttachments to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceFeedAttachmentsConnection
-
- """Collection of Salesforce FeedComment"""
- feedComments(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceFeedCommentConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceFeedCommentSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceFeedCommentSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of FeedComments to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceFeedCommentsConnection
-
- """Collection of Salesforce FeedPollChoice"""
- feedPollChoices(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceFeedPollChoiceConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceFeedPollChoiceSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceFeedPollChoiceSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of FeedPollChoices to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceFeedPollChoicesConnection
-
- """Collection of Salesforce FeedPollVote"""
- feedPollVotes(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceFeedPollVoteConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceFeedPollVoteSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceFeedPollVoteSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of FeedPollVotes to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceFeedPollVotesConnection
- customFields(
- """
- List of custom fields to return. By default, returns all custom fields.
- """
- fields: [String!]
- ): JSON!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-union SalesforceFeedSignalFeedEntityUnion = SalesforceUserFeed | SalesforceTopicFeed | SalesforceTaskFeed | SalesforceSolutionFeed | SalesforceSiteFeed | SalesforceReportFeed | SalesforceProduct2Feed | SalesforceOrderItemFeed | SalesforceOrderFeed | SalesforceOpportunityFeed | SalesforceLeadFeed | SalesforceFeedItem | SalesforceFeedComment | SalesforceEventFeed | SalesforceDashboardFeed | SalesforceDashboardComponentFeed | SalesforceContractFeed | SalesforceContentDocumentFeed | SalesforceContactFeed | SalesforceCollaborationGroupFeed | SalesforceCaseFeed | SalesforceCampaignFeed | SalesforceAssetRelationshipFeed | SalesforceAssetFeed | SalesforceAccountFeed
-
-"""Report Feed"""
-type SalesforceReportFeed implements OneGraphNode {
- """Feed Item ID"""
- id: String!
-
- """Parent ID"""
- parentId: String!
-
- """Parent ID"""
- parent: SalesforceReport!
-
- """Feed Item Type"""
- type: String
-
- """Created By ID"""
- createdById: String!
-
- """Created By ID"""
- createdBy: SalesforceUser!
-
- """Created Date"""
- createdDate: String!
-
- """Deleted"""
- isDeleted: Boolean!
-
- """Last Modified Date"""
- lastModifiedDate: String!
-
- """System Modstamp"""
- systemModstamp: String!
-
- """Comment Count"""
- commentCount: Int!
-
- """Like Count"""
- likeCount: Int!
-
- """Title"""
- title: String
-
- """Body"""
- body: String
-
- """Link Url"""
- linkUrl: String
-
- """Is Rich Text"""
- isRichText: Boolean!
-
- """Related Record ID"""
- relatedRecordId: String
-
- """Related Record ID"""
- relatedRecord: SalesforceContentVersion
-
- """InsertedBy ID"""
- insertedById: String
-
- """InsertedBy ID"""
- insertedBy: SalesforceUser
-
- """Collection of Salesforce FeedAttachment"""
- feedAttachments(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceFeedAttachmentConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceFeedAttachmentSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceFeedAttachmentSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of FeedAttachments to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceFeedAttachmentsConnection
-
- """Collection of Salesforce FeedComment"""
- feedComments(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceFeedCommentConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceFeedCommentSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceFeedCommentSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of FeedComments to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceFeedCommentsConnection
-
- """Collection of Salesforce FeedPollChoice"""
- feedPollChoices(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceFeedPollChoiceConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceFeedPollChoiceSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceFeedPollChoiceSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of FeedPollChoices to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceFeedPollChoicesConnection
-
- """Collection of Salesforce FeedPollVote"""
- feedPollVotes(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceFeedPollVoteConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceFeedPollVoteSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceFeedPollVoteSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of FeedPollVotes to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceFeedPollVotesConnection
- customFields(
- """
- List of custom fields to return. By default, returns all custom fields.
- """
- fields: [String!]
- ): JSON!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-union SalesforceFeedLikeFeedItemUnion = SalesforceUserFeed | SalesforceTopicFeed | SalesforceTaskFeed | SalesforceSolutionFeed | SalesforceSiteFeed | SalesforceReportFeed | SalesforceProduct2Feed | SalesforceOrderItemFeed | SalesforceOrderFeed | SalesforceOpportunityFeed | SalesforceLeadFeed | SalesforceFeedItem | SalesforceEventFeed | SalesforceDashboardFeed | SalesforceDashboardComponentFeed | SalesforceContractFeed | SalesforceContentDocumentFeed | SalesforceContactFeed | SalesforceCollaborationGroupFeed | SalesforceCaseFeed | SalesforceCampaignFeed | SalesforceAssetRelationshipFeed | SalesforceAssetFeed | SalesforceAccountFeed
-
-"""Order Product Feed"""
-type SalesforceOrderItemFeed implements OneGraphNode {
- """Feed Item ID"""
- id: String!
-
- """Parent ID"""
- parentId: String!
-
- """Parent ID"""
- parent: SalesforceOrderItem!
-
- """Feed Item Type"""
- type: String
-
- """Created By ID"""
- createdById: String!
-
- """Created By ID"""
- createdBy: SalesforceUser!
-
- """Created Date"""
- createdDate: String!
-
- """Deleted"""
- isDeleted: Boolean!
-
- """Last Modified Date"""
- lastModifiedDate: String!
-
- """System Modstamp"""
- systemModstamp: String!
-
- """Comment Count"""
- commentCount: Int!
-
- """Like Count"""
- likeCount: Int!
-
- """Title"""
- title: String
-
- """Body"""
- body: String
-
- """Link Url"""
- linkUrl: String
-
- """Is Rich Text"""
- isRichText: Boolean!
-
- """Related Record ID"""
- relatedRecordId: String
-
- """Related Record ID"""
- relatedRecord: SalesforceContentVersion
-
- """InsertedBy ID"""
- insertedById: String
-
- """InsertedBy ID"""
- insertedBy: SalesforceUser
-
- """Collection of Salesforce FeedAttachment"""
- feedAttachments(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceFeedAttachmentConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceFeedAttachmentSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceFeedAttachmentSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of FeedAttachments to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceFeedAttachmentsConnection
-
- """Collection of Salesforce FeedComment"""
- feedComments(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceFeedCommentConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceFeedCommentSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceFeedCommentSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of FeedComments to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceFeedCommentsConnection
-
- """Collection of Salesforce FeedPollChoice"""
- feedPollChoices(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceFeedPollChoiceConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceFeedPollChoiceSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceFeedPollChoiceSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of FeedPollChoices to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceFeedPollChoicesConnection
-
- """Collection of Salesforce FeedPollVote"""
- feedPollVotes(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceFeedPollVoteConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceFeedPollVoteSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceFeedPollVoteSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of FeedPollVotes to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceFeedPollVotesConnection
- customFields(
- """
- List of custom fields to return. By default, returns all custom fields.
- """
- fields: [String!]
- ): JSON!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-"""Salesforce Order Product Feeds connection, for use in pagination."""
-type SalesforceOrderItemFeedsConnection {
- """The count of all Order Product Feed you could get from the connection."""
- totalCount: Int!
-
- """Pagination Information"""
- pageInfo: PageInfo!
-
- """List of Salesforce Order Product Feeds"""
- nodes: [SalesforceOrderItemFeed!]!
-
- """List of Order Product Feed edges"""
- edges: [SalesforceOrderItemFeedEdge!]!
-}
-
-"""
-A filter to be used against FeedItem object types. All fields are combined with a logical ‘and.’
-"""
-input SalesforceFeedItemConnectionFilter {
- """Filter against custom fields."""
- customField: SalesforceCustomFieldFilter
-
- """Filter by the FeedItem's bestComment relation."""
- bestComment: SalesforceFeedCommentConnectionFilter
-
- """Filter by the FeedItem's insertedBy relation."""
- insertedBy: SalesforceUserConnectionFilter
-
- """Filter by the FeedItem's relatedRecord relation."""
- relatedRecord: SalesforceContentVersionConnectionFilter
-
- """Filter by the FeedItem's lastEditBy relation."""
- lastEditBy: SalesforceUserConnectionFilter
-
- """Filter by the FeedItem's createdBy relation."""
- createdBy: SalesforceUserConnectionFilter
-
- """Filter by the FeedItem's id field"""
- id: SalesforceIdFilter
-
- """Filter by the FeedItem's parentId field"""
- parentId: SalesforceIdFilter
-
- """Filter by the FeedItem's type field"""
- type: SalesforceStringFilter
-
- """Filter by the FeedItem's createdById field"""
- createdById: SalesforceIdFilter
-
- """Filter by the FeedItem's createdDate field"""
- createdDate: SalesforceDateTimeFilter
-
- """Filter by the FeedItem's isDeleted field"""
- isDeleted: SalesforceBooleanFilter
-
- """Filter by the FeedItem's lastModifiedDate field"""
- lastModifiedDate: SalesforceDateTimeFilter
-
- """Filter by the FeedItem's systemModstamp field"""
- systemModstamp: SalesforceDateTimeFilter
-
- """Filter by the FeedItem's revision field"""
- revision: SalesforceIntFilter
-
- """Filter by the FeedItem's lastEditById field"""
- lastEditById: SalesforceIdFilter
-
- """Filter by the FeedItem's lastEditDate field"""
- lastEditDate: SalesforceDateTimeFilter
-
- """Filter by the FeedItem's commentCount field"""
- commentCount: SalesforceIntFilter
-
- """Filter by the FeedItem's likeCount field"""
- likeCount: SalesforceIntFilter
-
- """Filter by the FeedItem's title field"""
- title: SalesforceStringFilter
-
- """Filter by the FeedItem's isRichText field"""
- isRichText: SalesforceBooleanFilter
-
- """Filter by the FeedItem's insertedById field"""
- insertedById: SalesforceIdFilter
-
- """Filter by the FeedItem's bestCommentId field"""
- bestCommentId: SalesforceIdFilter
-
- """Filter by the FeedItem's hasContent field"""
- hasContent: SalesforceBooleanFilter
-
- """Filter by the FeedItem's hasLink field"""
- hasLink: SalesforceBooleanFilter
-
- """Filter by the FeedItem's hasFeedEntity field"""
- hasFeedEntity: SalesforceBooleanFilter
-
- """Filter by the FeedItem's hasVerifiedComment field"""
- hasVerifiedComment: SalesforceBooleanFilter
-
- """Checks for any expressions in this list."""
- or: [SalesforceFeedItemConnectionFilter!]
-
- """Checks for all expressions in this list."""
- and: [SalesforceFeedItemConnectionFilter!]
-}
-
-"""Field that Feed Items can be sorted by"""
-enum SalesforceFeedItemSortByFieldEnum {
- ID
- PARENT_ID
- TYPE
- CREATED_BY_ID
- CREATED_DATE
- IS_DELETED
- LAST_MODIFIED_DATE
- SYSTEM_MODSTAMP
- REVISION
- LAST_EDIT_BY_ID
- LAST_EDIT_DATE
- COMMENT_COUNT
- LIKE_COUNT
- TITLE
- BODY
- LINK_URL
- IS_RICH_TEXT
- RELATED_RECORD_ID
- INSERTED_BY_ID
- BEST_COMMENT_ID
- HAS_CONTENT
- HAS_LINK
- HAS_FEED_ENTITY
- HAS_VERIFIED_COMMENT
- STATUS
-}
-
-"""
-A filter to be used against Order object types. All fields are combined with a logical ‘and.’
-"""
-input SalesforceOrderConnectionFilter {
- """Filter against custom fields."""
- customField: SalesforceCustomFieldFilter
-
- """Filter by the Order's lastModifiedBy relation."""
- lastModifiedBy: SalesforceUserConnectionFilter
-
- """Filter by the Order's createdBy relation."""
- createdBy: SalesforceUserConnectionFilter
-
- """Filter by the Order's activatedBy relation."""
- activatedBy: SalesforceUserConnectionFilter
-
- """Filter by the Order's shipToContact relation."""
- shipToContact: SalesforceContactConnectionFilter
-
- """Filter by the Order's billToContact relation."""
- billToContact: SalesforceContactConnectionFilter
-
- """Filter by the Order's companyAuthorizedBy relation."""
- companyAuthorizedBy: SalesforceUserConnectionFilter
-
- """Filter by the Order's customerAuthorizedBy relation."""
- customerAuthorizedBy: SalesforceContactConnectionFilter
-
- """Filter by the Order's originalOrder relation."""
- originalOrder: SalesforceOrderConnectionFilter
-
- """Filter by the Order's pricebook2 relation."""
- pricebook2: SalesforcePricebook2ConnectionFilter
-
- """Filter by the Order's account relation."""
- account: SalesforceAccountConnectionFilter
-
- """Filter by the Order's contract relation."""
- contract: SalesforceContractConnectionFilter
-
- """Filter by the Order's id field"""
- id: SalesforceIdFilter
-
- """Filter by the Order's ownerId field"""
- ownerId: SalesforceIdFilter
-
- """Filter by the Order's contractId field"""
- contractId: SalesforceIdFilter
-
- """Filter by the Order's accountId field"""
- accountId: SalesforceIdFilter
-
- """Filter by the Order's pricebook2Id field"""
- pricebook2Id: SalesforceIdFilter
-
- """Filter by the Order's originalOrderId field"""
- originalOrderId: SalesforceIdFilter
-
- """Filter by the Order's effectiveDate field"""
- effectiveDate: SalesforceDateFilter
-
- """Filter by the Order's endDate field"""
- endDate: SalesforceDateFilter
-
- """Filter by the Order's isReductionOrder field"""
- isReductionOrder: SalesforceBooleanFilter
-
- """Filter by the Order's status field"""
- status: SalesforceStringFilter
-
- """Filter by the Order's customerAuthorizedById field"""
- customerAuthorizedById: SalesforceIdFilter
-
- """Filter by the Order's customerAuthorizedDate field"""
- customerAuthorizedDate: SalesforceDateFilter
-
- """Filter by the Order's companyAuthorizedById field"""
- companyAuthorizedById: SalesforceIdFilter
-
- """Filter by the Order's companyAuthorizedDate field"""
- companyAuthorizedDate: SalesforceDateFilter
-
- """Filter by the Order's type field"""
- type: SalesforceStringFilter
-
- """Filter by the Order's billingStreet field"""
- billingStreet: SalesforceStringFilter
-
- """Filter by the Order's billingCity field"""
- billingCity: SalesforceStringFilter
-
- """Filter by the Order's billingState field"""
- billingState: SalesforceStringFilter
-
- """Filter by the Order's billingPostalCode field"""
- billingPostalCode: SalesforceStringFilter
-
- """Filter by the Order's billingCountry field"""
- billingCountry: SalesforceStringFilter
-
- """Filter by the Order's billingLatitude field"""
- billingLatitude: SalesforceFloatFilter
-
- """Filter by the Order's billingLongitude field"""
- billingLongitude: SalesforceFloatFilter
-
- """Filter by the Order's billingGeocodeAccuracy field"""
- billingGeocodeAccuracy: SalesforceStringFilter
-
- """Filter by the Order's shippingStreet field"""
- shippingStreet: SalesforceStringFilter
-
- """Filter by the Order's shippingCity field"""
- shippingCity: SalesforceStringFilter
-
- """Filter by the Order's shippingState field"""
- shippingState: SalesforceStringFilter
-
- """Filter by the Order's shippingPostalCode field"""
- shippingPostalCode: SalesforceStringFilter
-
- """Filter by the Order's shippingCountry field"""
- shippingCountry: SalesforceStringFilter
-
- """Filter by the Order's shippingLatitude field"""
- shippingLatitude: SalesforceFloatFilter
-
- """Filter by the Order's shippingLongitude field"""
- shippingLongitude: SalesforceFloatFilter
-
- """Filter by the Order's shippingGeocodeAccuracy field"""
- shippingGeocodeAccuracy: SalesforceStringFilter
-
- """Filter by the Order's name field"""
- name: SalesforceStringFilter
-
- """Filter by the Order's poDate field"""
- poDate: SalesforceDateFilter
-
- """Filter by the Order's poNumber field"""
- poNumber: SalesforceStringFilter
-
- """Filter by the Order's orderReferenceNumber field"""
- orderReferenceNumber: SalesforceStringFilter
-
- """Filter by the Order's billToContactId field"""
- billToContactId: SalesforceIdFilter
-
- """Filter by the Order's shipToContactId field"""
- shipToContactId: SalesforceIdFilter
-
- """Filter by the Order's activatedDate field"""
- activatedDate: SalesforceDateTimeFilter
-
- """Filter by the Order's activatedById field"""
- activatedById: SalesforceIdFilter
-
- """Filter by the Order's statusCode field"""
- statusCode: SalesforceStringFilter
-
- """Filter by the Order's orderNumber field"""
- orderNumber: SalesforceStringFilter
-
- """Filter by the Order's totalAmount field"""
- totalAmount: SalesforceFloatFilter
-
- """Filter by the Order's createdDate field"""
- createdDate: SalesforceDateTimeFilter
-
- """Filter by the Order's createdById field"""
- createdById: SalesforceIdFilter
-
- """Filter by the Order's lastModifiedDate field"""
- lastModifiedDate: SalesforceDateTimeFilter
-
- """Filter by the Order's lastModifiedById field"""
- lastModifiedById: SalesforceIdFilter
-
- """Filter by the Order's isDeleted field"""
- isDeleted: SalesforceBooleanFilter
-
- """Filter by the Order's systemModstamp field"""
- systemModstamp: SalesforceDateTimeFilter
-
- """Filter by the Order's lastViewedDate field"""
- lastViewedDate: SalesforceDateTimeFilter
-
- """Filter by the Order's lastReferencedDate field"""
- lastReferencedDate: SalesforceDateTimeFilter
-
- """Checks for any expressions in this list."""
- or: [SalesforceOrderConnectionFilter!]
-
- """Checks for all expressions in this list."""
- and: [SalesforceOrderConnectionFilter!]
-}
-
-"""
-A filter to be used against OrderItem object types. All fields are combined with a logical ‘and.’
-"""
-input SalesforceOrderItemConnectionFilter {
- """Filter against custom fields."""
- customField: SalesforceCustomFieldFilter
-
- """Filter by the OrderItem's lastModifiedBy relation."""
- lastModifiedBy: SalesforceUserConnectionFilter
-
- """Filter by the OrderItem's createdBy relation."""
- createdBy: SalesforceUserConnectionFilter
-
- """Filter by the OrderItem's originalOrderItem relation."""
- originalOrderItem: SalesforceOrderItemConnectionFilter
-
- """Filter by the OrderItem's pricebookEntry relation."""
- pricebookEntry: SalesforcePricebookEntryConnectionFilter
-
- """Filter by the OrderItem's order relation."""
- order: SalesforceOrderConnectionFilter
-
- """Filter by the OrderItem's product2 relation."""
- product2: SalesforceProduct2ConnectionFilter
-
- """Filter by the OrderItem's id field"""
- id: SalesforceIdFilter
-
- """Filter by the OrderItem's product2Id field"""
- product2Id: SalesforceIdFilter
-
- """Filter by the OrderItem's isDeleted field"""
- isDeleted: SalesforceBooleanFilter
-
- """Filter by the OrderItem's orderId field"""
- orderId: SalesforceIdFilter
-
- """Filter by the OrderItem's pricebookEntryId field"""
- pricebookEntryId: SalesforceIdFilter
-
- """Filter by the OrderItem's originalOrderItemId field"""
- originalOrderItemId: SalesforceIdFilter
-
- """Filter by the OrderItem's availableQuantity field"""
- availableQuantity: SalesforceFloatFilter
-
- """Filter by the OrderItem's quantity field"""
- quantity: SalesforceFloatFilter
-
- """Filter by the OrderItem's unitPrice field"""
- unitPrice: SalesforceFloatFilter
-
- """Filter by the OrderItem's listPrice field"""
- listPrice: SalesforceFloatFilter
-
- """Filter by the OrderItem's totalPrice field"""
- totalPrice: SalesforceFloatFilter
-
- """Filter by the OrderItem's serviceDate field"""
- serviceDate: SalesforceDateFilter
-
- """Filter by the OrderItem's endDate field"""
- endDate: SalesforceDateFilter
-
- """Filter by the OrderItem's description field"""
- description: SalesforceStringFilter
-
- """Filter by the OrderItem's createdDate field"""
- createdDate: SalesforceDateTimeFilter
-
- """Filter by the OrderItem's createdById field"""
- createdById: SalesforceIdFilter
-
- """Filter by the OrderItem's lastModifiedDate field"""
- lastModifiedDate: SalesforceDateTimeFilter
-
- """Filter by the OrderItem's lastModifiedById field"""
- lastModifiedById: SalesforceIdFilter
-
- """Filter by the OrderItem's systemModstamp field"""
- systemModstamp: SalesforceDateTimeFilter
-
- """Filter by the OrderItem's orderItemNumber field"""
- orderItemNumber: SalesforceStringFilter
-
- """Checks for any expressions in this list."""
- or: [SalesforceOrderItemConnectionFilter!]
-
- """Checks for all expressions in this list."""
- and: [SalesforceOrderItemConnectionFilter!]
-}
-
-"""Field that Order Products can be sorted by"""
-enum SalesforceOrderItemSortByFieldEnum {
- ID
- PRODUCT_2_ID
- IS_DELETED
- ORDER_ID
- PRICEBOOK_ENTRY_ID
- ORIGINAL_ORDER_ITEM_ID
- AVAILABLE_QUANTITY
- QUANTITY
- UNIT_PRICE
- LIST_PRICE
- TOTAL_PRICE
- SERVICE_DATE
- END_DATE
- DESCRIPTION
- CREATED_DATE
- CREATED_BY_ID
- LAST_MODIFIED_DATE
- LAST_MODIFIED_BY_ID
- SYSTEM_MODSTAMP
- ORDER_ITEM_NUMBER
-}
-
-"""An edge in a connection."""
-type SalesforceOrderItemEdge {
- """The item at the end of the edge."""
- node: SalesforceOrderItem!
-
- """A cursor for use in pagination"""
- cursor: String!
-}
-
-"""Salesforce Order Products connection, for use in pagination."""
-type SalesforceOrderItemsConnection {
- """The count of all Order Product you could get from the connection."""
- totalCount: Int!
-
- """Pagination Information"""
- pageInfo: PageInfo!
-
- """List of Salesforce Order Products"""
- nodes: [SalesforceOrderItem!]!
-
- """List of Order Product edges"""
- edges: [SalesforceOrderItemEdge!]!
-}
-
-"""
-A filter to be used against Product2 object types. All fields are combined with a logical ‘and.’
-"""
-input SalesforceProduct2ConnectionFilter {
- """Filter against custom fields."""
- customField: SalesforceCustomFieldFilter
-
- """Filter by the Product2's externalDataSource relation."""
- externalDataSource: SalesforceExternalDataSourceConnectionFilter
-
- """Filter by the Product2's lastModifiedBy relation."""
- lastModifiedBy: SalesforceUserConnectionFilter
-
- """Filter by the Product2's createdBy relation."""
- createdBy: SalesforceUserConnectionFilter
-
- """Filter by the Product2's id field"""
- id: SalesforceIdFilter
-
- """Filter by the Product2's name field"""
- name: SalesforceStringFilter
-
- """Filter by the Product2's productCode field"""
- productCode: SalesforceStringFilter
-
- """Filter by the Product2's description field"""
- description: SalesforceStringFilter
-
- """Filter by the Product2's isActive field"""
- isActive: SalesforceBooleanFilter
-
- """Filter by the Product2's createdDate field"""
- createdDate: SalesforceDateTimeFilter
-
- """Filter by the Product2's createdById field"""
- createdById: SalesforceIdFilter
-
- """Filter by the Product2's lastModifiedDate field"""
- lastModifiedDate: SalesforceDateTimeFilter
-
- """Filter by the Product2's lastModifiedById field"""
- lastModifiedById: SalesforceIdFilter
-
- """Filter by the Product2's systemModstamp field"""
- systemModstamp: SalesforceDateTimeFilter
-
- """Filter by the Product2's family field"""
- family: SalesforceStringFilter
-
- """Filter by the Product2's externalDataSourceId field"""
- externalDataSourceId: SalesforceIdFilter
-
- """Filter by the Product2's externalId field"""
- externalId: SalesforceStringFilter
-
- """Filter by the Product2's displayUrl field"""
- displayUrl: SalesforceStringFilter
-
- """Filter by the Product2's quantityUnitOfMeasure field"""
- quantityUnitOfMeasure: SalesforceStringFilter
-
- """Filter by the Product2's isDeleted field"""
- isDeleted: SalesforceBooleanFilter
-
- """Filter by the Product2's lastViewedDate field"""
- lastViewedDate: SalesforceDateTimeFilter
-
- """Filter by the Product2's lastReferencedDate field"""
- lastReferencedDate: SalesforceDateTimeFilter
-
- """Filter by the Product2's stockKeepingUnit field"""
- stockKeepingUnit: SalesforceStringFilter
-
- """Checks for any expressions in this list."""
- or: [SalesforceProduct2ConnectionFilter!]
-
- """Checks for all expressions in this list."""
- and: [SalesforceProduct2ConnectionFilter!]
-}
-
-"""
-A filter to be used against PricebookEntry object types. All fields are combined with a logical ‘and.’
-"""
-input SalesforcePricebookEntryConnectionFilter {
- """Filter against custom fields."""
- customField: SalesforceCustomFieldFilter
-
- """Filter by the PricebookEntry's lastModifiedBy relation."""
- lastModifiedBy: SalesforceUserConnectionFilter
-
- """Filter by the PricebookEntry's createdBy relation."""
- createdBy: SalesforceUserConnectionFilter
-
- """Filter by the PricebookEntry's product2 relation."""
- product2: SalesforceProduct2ConnectionFilter
-
- """Filter by the PricebookEntry's pricebook2 relation."""
- pricebook2: SalesforcePricebook2ConnectionFilter
-
- """Filter by the PricebookEntry's id field"""
- id: SalesforceIdFilter
-
- """Filter by the PricebookEntry's name field"""
- name: SalesforceStringFilter
-
- """Filter by the PricebookEntry's pricebook2Id field"""
- pricebook2Id: SalesforceIdFilter
-
- """Filter by the PricebookEntry's product2Id field"""
- product2Id: SalesforceIdFilter
-
- """Filter by the PricebookEntry's unitPrice field"""
- unitPrice: SalesforceFloatFilter
-
- """Filter by the PricebookEntry's isActive field"""
- isActive: SalesforceBooleanFilter
-
- """Filter by the PricebookEntry's useStandardPrice field"""
- useStandardPrice: SalesforceBooleanFilter
-
- """Filter by the PricebookEntry's createdDate field"""
- createdDate: SalesforceDateTimeFilter
-
- """Filter by the PricebookEntry's createdById field"""
- createdById: SalesforceIdFilter
-
- """Filter by the PricebookEntry's lastModifiedDate field"""
- lastModifiedDate: SalesforceDateTimeFilter
-
- """Filter by the PricebookEntry's lastModifiedById field"""
- lastModifiedById: SalesforceIdFilter
-
- """Filter by the PricebookEntry's systemModstamp field"""
- systemModstamp: SalesforceDateTimeFilter
-
- """Filter by the PricebookEntry's productCode field"""
- productCode: SalesforceStringFilter
-
- """Filter by the PricebookEntry's isDeleted field"""
- isDeleted: SalesforceBooleanFilter
-
- """Checks for any expressions in this list."""
- or: [SalesforcePricebookEntryConnectionFilter!]
-
- """Checks for all expressions in this list."""
- and: [SalesforcePricebookEntryConnectionFilter!]
-}
-
-"""
-A filter to be used against Opportunity object types. All fields are combined with a logical ‘and.’
-"""
-input SalesforceOpportunityConnectionFilter {
- """Filter against custom fields."""
- customField: SalesforceCustomFieldFilter
-
- """Filter by the Opportunity's lastModifiedBy relation."""
- lastModifiedBy: SalesforceUserConnectionFilter
-
- """Filter by the Opportunity's createdBy relation."""
- createdBy: SalesforceUserConnectionFilter
-
- """Filter by the Opportunity's owner relation."""
- owner: SalesforceUserConnectionFilter
-
- """Filter by the Opportunity's pricebook2 relation."""
- pricebook2: SalesforcePricebook2ConnectionFilter
-
- """Filter by the Opportunity's campaign relation."""
- campaign: SalesforceCampaignConnectionFilter
-
- """Filter by the Opportunity's account relation."""
- account: SalesforceAccountConnectionFilter
-
- """Filter by the Opportunity's id field"""
- id: SalesforceIdFilter
-
- """Filter by the Opportunity's isDeleted field"""
- isDeleted: SalesforceBooleanFilter
-
- """Filter by the Opportunity's accountId field"""
- accountId: SalesforceIdFilter
-
- """Filter by the Opportunity's isPrivate field"""
- isPrivate: SalesforceBooleanFilter
-
- """Filter by the Opportunity's name field"""
- name: SalesforceStringFilter
-
- """Filter by the Opportunity's stageName field"""
- stageName: SalesforceStringFilter
-
- """Filter by the Opportunity's amount field"""
- amount: SalesforceFloatFilter
-
- """Filter by the Opportunity's probability field"""
- probability: SalesforceFloatFilter
-
- """Filter by the Opportunity's expectedRevenue field"""
- expectedRevenue: SalesforceFloatFilter
-
- """Filter by the Opportunity's totalOpportunityQuantity field"""
- totalOpportunityQuantity: SalesforceFloatFilter
-
- """Filter by the Opportunity's closeDate field"""
- closeDate: SalesforceDateFilter
-
- """Filter by the Opportunity's type field"""
- type: SalesforceStringFilter
-
- """Filter by the Opportunity's nextStep field"""
- nextStep: SalesforceStringFilter
-
- """Filter by the Opportunity's leadSource field"""
- leadSource: SalesforceStringFilter
-
- """Filter by the Opportunity's isClosed field"""
- isClosed: SalesforceBooleanFilter
-
- """Filter by the Opportunity's isWon field"""
- isWon: SalesforceBooleanFilter
-
- """Filter by the Opportunity's forecastCategory field"""
- forecastCategory: SalesforceStringFilter
-
- """Filter by the Opportunity's forecastCategoryName field"""
- forecastCategoryName: SalesforceStringFilter
-
- """Filter by the Opportunity's campaignId field"""
- campaignId: SalesforceIdFilter
-
- """Filter by the Opportunity's hasOpportunityLineItem field"""
- hasOpportunityLineItem: SalesforceBooleanFilter
-
- """Filter by the Opportunity's pricebook2Id field"""
- pricebook2Id: SalesforceIdFilter
-
- """Filter by the Opportunity's ownerId field"""
- ownerId: SalesforceIdFilter
-
- """Filter by the Opportunity's createdDate field"""
- createdDate: SalesforceDateTimeFilter
-
- """Filter by the Opportunity's createdById field"""
- createdById: SalesforceIdFilter
-
- """Filter by the Opportunity's lastModifiedDate field"""
- lastModifiedDate: SalesforceDateTimeFilter
-
- """Filter by the Opportunity's lastModifiedById field"""
- lastModifiedById: SalesforceIdFilter
-
- """Filter by the Opportunity's systemModstamp field"""
- systemModstamp: SalesforceDateTimeFilter
-
- """Filter by the Opportunity's lastActivityDate field"""
- lastActivityDate: SalesforceDateFilter
-
- """Filter by the Opportunity's fiscalQuarter field"""
- fiscalQuarter: SalesforceIntFilter
-
- """Filter by the Opportunity's fiscalYear field"""
- fiscalYear: SalesforceIntFilter
-
- """Filter by the Opportunity's fiscal field"""
- fiscal: SalesforceStringFilter
-
- """Filter by the Opportunity's lastViewedDate field"""
- lastViewedDate: SalesforceDateTimeFilter
-
- """Filter by the Opportunity's lastReferencedDate field"""
- lastReferencedDate: SalesforceDateTimeFilter
-
- """Checks for any expressions in this list."""
- or: [SalesforceOpportunityConnectionFilter!]
-
- """Checks for all expressions in this list."""
- and: [SalesforceOpportunityConnectionFilter!]
-}
-
-"""
-A filter to be used against OpportunityLineItem object types. All fields are combined with a logical ‘and.’
-"""
-input SalesforceOpportunityLineItemConnectionFilter {
- """Filter against custom fields."""
- customField: SalesforceCustomFieldFilter
-
- """Filter by the OpportunityLineItem's lastModifiedBy relation."""
- lastModifiedBy: SalesforceUserConnectionFilter
-
- """Filter by the OpportunityLineItem's createdBy relation."""
- createdBy: SalesforceUserConnectionFilter
-
- """Filter by the OpportunityLineItem's product2 relation."""
- product2: SalesforceProduct2ConnectionFilter
-
- """Filter by the OpportunityLineItem's pricebookEntry relation."""
- pricebookEntry: SalesforcePricebookEntryConnectionFilter
-
- """Filter by the OpportunityLineItem's opportunity relation."""
- opportunity: SalesforceOpportunityConnectionFilter
-
- """Filter by the OpportunityLineItem's id field"""
- id: SalesforceIdFilter
-
- """Filter by the OpportunityLineItem's opportunityId field"""
- opportunityId: SalesforceIdFilter
-
- """Filter by the OpportunityLineItem's sortOrder field"""
- sortOrder: SalesforceIntFilter
-
- """Filter by the OpportunityLineItem's pricebookEntryId field"""
- pricebookEntryId: SalesforceIdFilter
-
- """Filter by the OpportunityLineItem's product2Id field"""
- product2Id: SalesforceIdFilter
-
- """Filter by the OpportunityLineItem's productCode field"""
- productCode: SalesforceStringFilter
-
- """Filter by the OpportunityLineItem's name field"""
- name: SalesforceStringFilter
-
- """Filter by the OpportunityLineItem's quantity field"""
- quantity: SalesforceFloatFilter
-
- """Filter by the OpportunityLineItem's totalPrice field"""
- totalPrice: SalesforceFloatFilter
-
- """Filter by the OpportunityLineItem's unitPrice field"""
- unitPrice: SalesforceFloatFilter
-
- """Filter by the OpportunityLineItem's listPrice field"""
- listPrice: SalesforceFloatFilter
-
- """Filter by the OpportunityLineItem's serviceDate field"""
- serviceDate: SalesforceDateFilter
-
- """Filter by the OpportunityLineItem's description field"""
- description: SalesforceStringFilter
-
- """Filter by the OpportunityLineItem's createdDate field"""
- createdDate: SalesforceDateTimeFilter
-
- """Filter by the OpportunityLineItem's createdById field"""
- createdById: SalesforceIdFilter
-
- """Filter by the OpportunityLineItem's lastModifiedDate field"""
- lastModifiedDate: SalesforceDateTimeFilter
-
- """Filter by the OpportunityLineItem's lastModifiedById field"""
- lastModifiedById: SalesforceIdFilter
-
- """Filter by the OpportunityLineItem's systemModstamp field"""
- systemModstamp: SalesforceDateTimeFilter
-
- """Filter by the OpportunityLineItem's isDeleted field"""
- isDeleted: SalesforceBooleanFilter
-
- """Checks for any expressions in this list."""
- or: [SalesforceOpportunityLineItemConnectionFilter!]
-
- """Checks for all expressions in this list."""
- and: [SalesforceOpportunityLineItemConnectionFilter!]
-}
-
-"""Field that Opportunity Products can be sorted by"""
-enum SalesforceOpportunityLineItemSortByFieldEnum {
- ID
- OPPORTUNITY_ID
- SORT_ORDER
- PRICEBOOK_ENTRY_ID
- PRODUCT_2_ID
- PRODUCT_CODE
- NAME
- QUANTITY
- TOTAL_PRICE
- UNIT_PRICE
- LIST_PRICE
- SERVICE_DATE
- DESCRIPTION
- CREATED_DATE
- CREATED_BY_ID
- LAST_MODIFIED_DATE
- LAST_MODIFIED_BY_ID
- SYSTEM_MODSTAMP
- IS_DELETED
-}
-
-"""An edge in a connection."""
-type SalesforceOpportunityLineItemEdge {
- """The item at the end of the edge."""
- node: SalesforceOpportunityLineItem!
-
- """A cursor for use in pagination"""
- cursor: String!
-}
-
-"""Opportunity Product"""
-type SalesforceOpportunityLineItem implements OneGraphNode {
- """Line Item ID"""
- id: String!
-
- """Opportunity ID"""
- opportunityId: String!
-
- """Opportunity ID"""
- opportunity: SalesforceOpportunity!
-
- """Sort Order"""
- sortOrder: Int
-
- """Price Book Entry ID"""
- pricebookEntryId: String
-
- """Price Book Entry ID"""
- pricebookEntry: SalesforcePricebookEntry
-
- """Product ID"""
- product2Id: String
-
- """Product ID"""
- product2: SalesforceProduct2
-
- """Product Code"""
- productCode: String
-
- """Opportunity Product Name"""
- name: String
-
- """Quantity"""
- quantity: Float!
-
- """Total Price"""
- totalPrice: Float
-
- """Sales Price"""
- unitPrice: Float
-
- """List Price"""
- listPrice: Float
-
- """Date"""
- serviceDate: String
-
- """Line Description"""
- description: String
-
- """Created Date"""
- createdDate: String!
-
- """Created By ID"""
- createdById: String!
-
- """Created By ID"""
- createdBy: SalesforceUser!
-
- """Last Modified Date"""
- lastModifiedDate: String!
-
- """Last Modified By ID"""
- lastModifiedById: String!
-
- """Last Modified By ID"""
- lastModifiedBy: SalesforceUser!
-
- """System Modstamp"""
- systemModstamp: String!
-
- """Deleted"""
- isDeleted: Boolean!
-
- """Collection of Salesforce FlowRecordRelation"""
- flowRecordRelations(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceFlowRecordRelationConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceFlowRecordRelationSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceFlowRecordRelationsConnection
- customFields(
- """
- List of custom fields to return. By default, returns all custom fields.
- """
- fields: [String!]
- ): JSON!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-"""Salesforce Opportunity Products connection, for use in pagination."""
-type SalesforceOpportunityLineItemsConnection {
- """
- The count of all Opportunity Product you could get from the connection.
- """
- totalCount: Int!
-
- """Pagination Information"""
- pageInfo: PageInfo!
-
- """List of Salesforce Opportunity Products"""
- nodes: [SalesforceOpportunityLineItem!]!
-
- """List of Opportunity Product edges"""
- edges: [SalesforceOpportunityLineItemEdge!]!
-}
-
-"""Price Book Entry"""
-type SalesforcePricebookEntry implements OneGraphNode {
- """Price Book Entry ID"""
- id: String!
-
- """Product Name"""
- name: String
-
- """Price Book ID"""
- pricebook2Id: String!
-
- """Price Book ID"""
- pricebook2: SalesforcePricebook2!
-
- """Product ID"""
- product2Id: String!
-
- """Product ID"""
- product2: SalesforceProduct2!
-
- """List Price"""
- unitPrice: Float!
-
- """Active"""
- isActive: Boolean!
-
- """Use Standard Price"""
- useStandardPrice: Boolean!
-
- """Created Date"""
- createdDate: String!
-
- """Created By ID"""
- createdById: String!
-
- """Created By ID"""
- createdBy: SalesforceUser!
-
- """Last Modified Date"""
- lastModifiedDate: String!
-
- """Last Modified By ID"""
- lastModifiedById: String!
-
- """Last Modified By ID"""
- lastModifiedBy: SalesforceUser!
-
- """System Modstamp"""
- systemModstamp: String!
-
- """Product Code"""
- productCode: String
-
- """Deleted"""
- isDeleted: Boolean!
-
- """Collection of Salesforce FlowRecordRelation"""
- flowRecordRelations(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceFlowRecordRelationConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceFlowRecordRelationSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceFlowRecordRelationsConnection
-
- """Collection of Salesforce OpportunityLineItem"""
- opportunityLineItems(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceOpportunityLineItemConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceOpportunityLineItemSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceOpportunityLineItemSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """
- Number of OpportunityLineItems to fetch. Defaults to 10. Maximum is 60.
- """
- first: Int
- ): SalesforceOpportunityLineItemsConnection
-
- """Collection of Salesforce OrderItem"""
- orderItems(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceOrderItemConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceOrderItemSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceOrderItemSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of OrderItems to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceOrderItemsConnection
- customFields(
- """
- List of custom fields to return. By default, returns all custom fields.
- """
- fields: [String!]
- ): JSON!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-"""Order Product"""
-type SalesforceOrderItem implements OneGraphNode {
- """Order Product ID"""
- id: String!
-
- """Product ID"""
- product2Id: String
-
- """Product ID"""
- product2: SalesforceProduct2
-
- """Deleted"""
- isDeleted: Boolean!
-
- """Order ID"""
- orderId: String!
-
- """Order ID"""
- order: SalesforceOrder!
-
- """Price Book Entry ID"""
- pricebookEntryId: String!
-
- """Price Book Entry ID"""
- pricebookEntry: SalesforcePricebookEntry!
-
- """Original Order Item ID"""
- originalOrderItemId: String
-
- """Original Order Item ID"""
- originalOrderItem: SalesforceOrderItem
-
- """Available Quantity"""
- availableQuantity: Float
-
- """Quantity"""
- quantity: Float!
-
- """Unit Price"""
- unitPrice: Float
-
- """List Price"""
- listPrice: Float
-
- """Total Price"""
- totalPrice: Float
-
- """Start Date"""
- serviceDate: String
-
- """End Date"""
- endDate: String
-
- """Line Description"""
- description: String
-
- """Created Date"""
- createdDate: String!
-
- """Created By ID"""
- createdById: String!
-
- """Created By ID"""
- createdBy: SalesforceUser!
-
- """Last Modified Date"""
- lastModifiedDate: String!
-
- """Last Modified By ID"""
- lastModifiedById: String!
-
- """Last Modified By ID"""
- lastModifiedBy: SalesforceUser!
-
- """System Modstamp"""
- systemModstamp: String!
-
- """Order Product Number"""
- orderItemNumber: String!
-
- """Collection of Salesforce ContentDocumentLink"""
- contentDocumentLinks(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceContentDocumentLinkConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceContentDocumentLinkSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceContentDocumentLinkSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """
- Number of ContentDocumentLinks to fetch. Defaults to 10. Maximum is 60.
- """
- first: Int
- ): SalesforceContentDocumentLinksConnection
-
- """Collection of Salesforce ContentVersion"""
- contentVersions(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceContentVersionConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceContentVersionSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceContentVersionSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of ContentVersions to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceContentVersionsConnection
-
- """Collection of Salesforce EntitySubscription"""
- feedSubscriptionsForEntity(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceEntitySubscriptionConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceEntitySubscriptionSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceEntitySubscriptionSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of EntitySubscriptions to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceEntitySubscriptionsConnection
-
- """Collection of Salesforce FeedComment"""
- feedComments(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceFeedCommentConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceFeedCommentSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceFeedCommentSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of FeedComments to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceFeedCommentsConnection
-
- """Collection of Salesforce FeedItem"""
- feedItems(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceFeedItemConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceFeedItemSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceFeedItemSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of FeedItems to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceFeedItemsConnection
-
- """Collection of Salesforce FlowRecordRelation"""
- flowRecordRelations(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceFlowRecordRelationConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceFlowRecordRelationSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceFlowRecordRelationsConnection
-
- """Collection of Salesforce OrderItem"""
- childOrderItems(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceOrderItemConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceOrderItemSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceOrderItemSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of OrderItems to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceOrderItemsConnection
-
- """Collection of Salesforce OrderItemFeed"""
- feeds(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceOrderItemFeedConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceOrderItemFeedSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceOrderItemFeedSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of OrderItemFeeds to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceOrderItemFeedsConnection
-
- """Collection of Salesforce OrderItemHistory"""
- histories(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceOrderItemHistoryConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceOrderItemHistorySortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceOrderItemHistorySortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of OrderItemHistories to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceOrderItemHistorysConnection
- customFields(
- """
- List of custom fields to return. By default, returns all custom fields.
- """
- fields: [String!]
- ): JSON!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-union SalesforceFeedItemParentUnion = SalesforceUser | SalesforceTopic | SalesforceTask | SalesforceSolution | SalesforceSite | SalesforceReport | SalesforceProduct2 | SalesforceOrderItem | SalesforceOrder | SalesforceOpportunity | SalesforceLead | SalesforceEvent | SalesforceDashboardComponent | SalesforceDashboard | SalesforceContract | SalesforceContentDocument | SalesforceContact | SalesforceCollaborationGroup | SalesforceCase | SalesforceCampaign | SalesforceAssetRelationship | SalesforceAsset | SalesforceAccount
-
-"""Feed Item"""
-type SalesforceFeedItem implements OneGraphNode {
- """Linked Github IssueComment"""
- gitHubIssueComment: GitHubIssueComment
-
- """Feed Item ID"""
- id: String!
-
- """Parent ID"""
- parentId: String!
-
- """Parent ID"""
- parent: SalesforceFeedItemParentUnion!
-
- """Feed Item Type"""
- type: String
-
- """Created By ID"""
- createdById: String!
-
- """Created By ID"""
- createdBy: SalesforceUser!
-
- """Created Date"""
- createdDate: String!
-
- """Deleted"""
- isDeleted: Boolean!
-
- """Last Modified Date"""
- lastModifiedDate: String!
-
- """System Modstamp"""
- systemModstamp: String!
-
- """Revision"""
- revision: Int
-
- """Last Edit By ID"""
- lastEditById: String
-
- """Last Edit By ID"""
- lastEditBy: SalesforceUser
-
- """Last Edit Date"""
- lastEditDate: String
-
- """Comment Count"""
- commentCount: Int!
-
- """Like Count"""
- likeCount: Int!
-
- """Title"""
- title: String
-
- """Body"""
- body: String
-
- """Link Url"""
- linkUrl: String
-
- """Is Rich Text"""
- isRichText: Boolean!
-
- """Related Record ID"""
- relatedRecordId: String
-
- """Related Record ID"""
- relatedRecord: SalesforceContentVersion
-
- """InsertedBy ID"""
- insertedById: String!
-
- """InsertedBy ID"""
- insertedBy: SalesforceUser!
-
- """Best Comment ID"""
- bestCommentId: String
-
- """Best Comment ID"""
- bestComment: SalesforceFeedComment
-
- """Has Content"""
- hasContent: Boolean!
-
- """Has Link"""
- hasLink: Boolean!
-
- """Has Feed Entity Attachment"""
- hasFeedEntity: Boolean!
-
- """Has Verified Comment"""
- hasVerifiedComment: Boolean!
-
- """Status"""
- status: String
-
- """Collection of Salesforce Announcement"""
- announcements(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceAnnouncementConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceAnnouncementSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceAnnouncementSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of Announcements to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceAnnouncementsConnection
-
- """Collection of Salesforce FeedAttachment"""
- feedAttachments(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceFeedAttachmentConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceFeedAttachmentSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceFeedAttachmentSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of FeedAttachments to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceFeedAttachmentsConnection
-
- """Collection of Salesforce FeedComment"""
- feedComments(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceFeedCommentConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceFeedCommentSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceFeedCommentSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of FeedComments to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceFeedCommentsConnection
-
- """Collection of Salesforce FeedPollChoice"""
- feedPollChoices(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceFeedPollChoiceConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceFeedPollChoiceSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceFeedPollChoiceSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of FeedPollChoices to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceFeedPollChoicesConnection
-
- """Collection of Salesforce FeedPollVote"""
- feedPollVotes(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceFeedPollVoteConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceFeedPollVoteSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceFeedPollVoteSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of FeedPollVotes to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceFeedPollVotesConnection
-
- """Collection of Salesforce FeedRevision"""
- feedRevisions(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceFeedRevisionConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceFeedRevisionSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceFeedRevisionSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of FeedRevisions to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceFeedRevisionsConnection
-
- """Collection of Salesforce FlowRecordRelation"""
- flowRecordRelations(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceFlowRecordRelationConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceFlowRecordRelationSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceFlowRecordRelationsConnection
-
- """Collection of Salesforce TopicAssignment"""
- topicAssignments(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceTopicAssignmentConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceTopicAssignmentSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceTopicAssignmentSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of TopicAssignments to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceTopicAssignmentsConnection
- customFields(
- """
- List of custom fields to return. By default, returns all custom fields.
- """
- fields: [String!]
- ): JSON!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-"""Salesforce Feed Items connection, for use in pagination."""
-type SalesforceFeedItemsConnection {
- """The count of all Feed Item you could get from the connection."""
- totalCount: Int!
-
- """Pagination Information"""
- pageInfo: PageInfo!
-
- """List of Salesforce Feed Items"""
- nodes: [SalesforceFeedItem!]!
-
- """List of Feed Item edges"""
- edges: [SalesforceFeedItemEdge!]!
-}
-
-"""
-A filter to be used against EntitySubscription object types. All fields are combined with a logical ‘and.’
-"""
-input SalesforceEntitySubscriptionConnectionFilter {
- """Filter against custom fields."""
- customField: SalesforceCustomFieldFilter
-
- """Filter by the EntitySubscription's createdBy relation."""
- createdBy: SalesforceUserConnectionFilter
-
- """Filter by the EntitySubscription's subscriber relation."""
- subscriber: SalesforceUserConnectionFilter
-
- """Filter by the EntitySubscription's id field"""
- id: SalesforceIdFilter
-
- """Filter by the EntitySubscription's parentId field"""
- parentId: SalesforceIdFilter
-
- """Filter by the EntitySubscription's subscriberId field"""
- subscriberId: SalesforceIdFilter
-
- """Filter by the EntitySubscription's createdById field"""
- createdById: SalesforceIdFilter
-
- """Filter by the EntitySubscription's createdDate field"""
- createdDate: SalesforceDateTimeFilter
-
- """Filter by the EntitySubscription's isDeleted field"""
- isDeleted: SalesforceBooleanFilter
-
- """Checks for any expressions in this list."""
- or: [SalesforceEntitySubscriptionConnectionFilter!]
-
- """Checks for all expressions in this list."""
- and: [SalesforceEntitySubscriptionConnectionFilter!]
-}
-
-"""Field that Entity Subscriptions can be sorted by"""
-enum SalesforceEntitySubscriptionSortByFieldEnum {
- ID
- PARENT_ID
- SUBSCRIBER_ID
- CREATED_BY_ID
- CREATED_DATE
- IS_DELETED
-}
-
-"""An edge in a connection."""
-type SalesforceDomainSiteEdge {
- """The item at the end of the edge."""
- node: SalesforceDomainSite!
-
- """A cursor for use in pagination"""
- cursor: String!
-}
-
-"""
-A filter to be used against Site object types. All fields are combined with a logical ‘and.’
-"""
-input SalesforceSiteConnectionFilter {
- """Filter against custom fields."""
- customField: SalesforceCustomFieldFilter
-
- """Filter by the Site's lastModifiedBy relation."""
- lastModifiedBy: SalesforceUserConnectionFilter
-
- """Filter by the Site's createdBy relation."""
- createdBy: SalesforceUserConnectionFilter
-
- """Filter by the Site's admin relation."""
- admin: SalesforceUserConnectionFilter
-
- """Filter by the Site's guestUser relation."""
- guestUser: SalesforceUserConnectionFilter
-
- """Filter by the Site's id field"""
- id: SalesforceIdFilter
-
- """Filter by the Site's name field"""
- name: SalesforceStringFilter
-
- """Filter by the Site's subdomain field"""
- subdomain: SalesforceStringFilter
-
- """Filter by the Site's urlPathPrefix field"""
- urlPathPrefix: SalesforceStringFilter
-
- """Filter by the Site's guestUserId field"""
- guestUserId: SalesforceIdFilter
-
- """Filter by the Site's status field"""
- status: SalesforceStringFilter
-
- """Filter by the Site's adminId field"""
- adminId: SalesforceIdFilter
-
- """Filter by the Site's optionsEnableFeeds field"""
- optionsEnableFeeds: SalesforceBooleanFilter
-
- """Filter by the Site's optionsRequireHttps field"""
- optionsRequireHttps: SalesforceBooleanFilter
-
- """Filter by the Site's optionsAllowHomePage field"""
- optionsAllowHomePage: SalesforceBooleanFilter
-
- """Filter by the Site's optionsAllowStandardIdeasPages field"""
- optionsAllowStandardIdeasPages: SalesforceBooleanFilter
-
- """Filter by the Site's optionsAllowStandardSearch field"""
- optionsAllowStandardSearch: SalesforceBooleanFilter
-
- """Filter by the Site's optionsAllowStandardLookups field"""
- optionsAllowStandardLookups: SalesforceBooleanFilter
-
- """Filter by the Site's optionsAllowStandardAnswersPages field"""
- optionsAllowStandardAnswersPages: SalesforceBooleanFilter
-
- """Filter by the Site's optionsAllowGuestSupportApi field"""
- optionsAllowGuestSupportApi: SalesforceBooleanFilter
-
- """Filter by the Site's optionsAllowStandardPortalPages field"""
- optionsAllowStandardPortalPages: SalesforceBooleanFilter
-
- """Filter by the Site's optionsCspUpgradeInsecureRequests field"""
- optionsCspUpgradeInsecureRequests: SalesforceBooleanFilter
-
- """Filter by the Site's optionsContentSniffingProtection field"""
- optionsContentSniffingProtection: SalesforceBooleanFilter
-
- """Filter by the Site's optionsBrowserXssProtection field"""
- optionsBrowserXssProtection: SalesforceBooleanFilter
-
- """Filter by the Site's optionsReferrerPolicyOriginWhenCrossOrigin field"""
- optionsReferrerPolicyOriginWhenCrossOrigin: SalesforceBooleanFilter
-
- """Filter by the Site's description field"""
- description: SalesforceStringFilter
-
- """Filter by the Site's masterLabel field"""
- masterLabel: SalesforceStringFilter
-
- """Filter by the Site's analyticsTrackingCode field"""
- analyticsTrackingCode: SalesforceStringFilter
-
- """Filter by the Site's siteType field"""
- siteType: SalesforceStringFilter
-
- """Filter by the Site's clickjackProtectionLevel field"""
- clickjackProtectionLevel: SalesforceStringFilter
-
- """Filter by the Site's dailyBandwidthLimit field"""
- dailyBandwidthLimit: SalesforceIntFilter
-
- """Filter by the Site's dailyBandwidthUsed field"""
- dailyBandwidthUsed: SalesforceIntFilter
-
- """Filter by the Site's dailyRequestTimeLimit field"""
- dailyRequestTimeLimit: SalesforceIntFilter
-
- """Filter by the Site's dailyRequestTimeUsed field"""
- dailyRequestTimeUsed: SalesforceIntFilter
-
- """Filter by the Site's monthlyPageViewsEntitlement field"""
- monthlyPageViewsEntitlement: SalesforceIntFilter
-
- """Filter by the Site's createdDate field"""
- createdDate: SalesforceDateTimeFilter
-
- """Filter by the Site's createdById field"""
- createdById: SalesforceIdFilter
-
- """Filter by the Site's lastModifiedDate field"""
- lastModifiedDate: SalesforceDateTimeFilter
-
- """Filter by the Site's lastModifiedById field"""
- lastModifiedById: SalesforceIdFilter
-
- """Filter by the Site's systemModstamp field"""
- systemModstamp: SalesforceDateTimeFilter
-
- """Checks for any expressions in this list."""
- or: [SalesforceSiteConnectionFilter!]
-
- """Checks for all expressions in this list."""
- and: [SalesforceSiteConnectionFilter!]
-}
-
-"""
-A filter to be used against Domain object types. All fields are combined with a logical ‘and.’
-"""
-input SalesforceDomainConnectionFilter {
- """Filter against custom fields."""
- customField: SalesforceCustomFieldFilter
-
- """Filter by the Domain's lastModifiedBy relation."""
- lastModifiedBy: SalesforceUserConnectionFilter
-
- """Filter by the Domain's createdBy relation."""
- createdBy: SalesforceUserConnectionFilter
-
- """Filter by the Domain's id field"""
- id: SalesforceIdFilter
-
- """Filter by the Domain's domainType field"""
- domainType: SalesforceStringFilter
-
- """Filter by the Domain's domain field"""
- domain: SalesforceStringFilter
-
- """Filter by the Domain's optionsExternalHttps field"""
- optionsExternalHttps: SalesforceBooleanFilter
-
- """Filter by the Domain's createdDate field"""
- createdDate: SalesforceDateTimeFilter
-
- """Filter by the Domain's createdById field"""
- createdById: SalesforceIdFilter
-
- """Filter by the Domain's lastModifiedDate field"""
- lastModifiedDate: SalesforceDateTimeFilter
-
- """Filter by the Domain's lastModifiedById field"""
- lastModifiedById: SalesforceIdFilter
-
- """Filter by the Domain's systemModstamp field"""
- systemModstamp: SalesforceDateTimeFilter
-
- """Checks for any expressions in this list."""
- or: [SalesforceDomainConnectionFilter!]
-
- """Checks for all expressions in this list."""
- and: [SalesforceDomainConnectionFilter!]
-}
-
-"""
-A filter to be used against DomainSite object types. All fields are combined with a logical ‘and.’
-"""
-input SalesforceDomainSiteConnectionFilter {
- """Filter against custom fields."""
- customField: SalesforceCustomFieldFilter
-
- """Filter by the DomainSite's lastModifiedBy relation."""
- lastModifiedBy: SalesforceUserConnectionFilter
-
- """Filter by the DomainSite's createdBy relation."""
- createdBy: SalesforceUserConnectionFilter
-
- """Filter by the DomainSite's site relation."""
- site: SalesforceSiteConnectionFilter
-
- """Filter by the DomainSite's domain relation."""
- domain: SalesforceDomainConnectionFilter
-
- """Filter by the DomainSite's id field"""
- id: SalesforceIdFilter
-
- """Filter by the DomainSite's domainId field"""
- domainId: SalesforceIdFilter
-
- """Filter by the DomainSite's siteId field"""
- siteId: SalesforceIdFilter
-
- """Filter by the DomainSite's pathPrefix field"""
- pathPrefix: SalesforceStringFilter
-
- """Filter by the DomainSite's createdDate field"""
- createdDate: SalesforceDateTimeFilter
-
- """Filter by the DomainSite's createdById field"""
- createdById: SalesforceIdFilter
-
- """Filter by the DomainSite's lastModifiedDate field"""
- lastModifiedDate: SalesforceDateTimeFilter
-
- """Filter by the DomainSite's lastModifiedById field"""
- lastModifiedById: SalesforceIdFilter
-
- """Filter by the DomainSite's systemModstamp field"""
- systemModstamp: SalesforceDateTimeFilter
-
- """Checks for any expressions in this list."""
- or: [SalesforceDomainSiteConnectionFilter!]
-
- """Checks for all expressions in this list."""
- and: [SalesforceDomainSiteConnectionFilter!]
-}
-
-"""Field that Custom URLs can be sorted by"""
-enum SalesforceDomainSiteSortByFieldEnum {
- ID
- DOMAIN_ID
- SITE_ID
- PATH_PREFIX
- CREATED_DATE
- CREATED_BY_ID
- LAST_MODIFIED_DATE
- LAST_MODIFIED_BY_ID
- SYSTEM_MODSTAMP
-}
-
-"""Domain"""
-type SalesforceDomain implements OneGraphNode {
- """Domain ID"""
- id: String!
-
- """Domain Type"""
- domainType: String!
-
- """Domain Name"""
- domain: String!
-
- """Enable External HTTPS"""
- optionsExternalHttps: Boolean!
-
- """Created Date"""
- createdDate: String!
-
- """Created By ID"""
- createdById: String!
-
- """Created By ID"""
- createdBy: SalesforceUser!
-
- """Last Modified Date"""
- lastModifiedDate: String!
-
- """Last Modified By ID"""
- lastModifiedById: String!
-
- """Last Modified By ID"""
- lastModifiedBy: SalesforceUser!
-
- """System Modstamp"""
- systemModstamp: String!
-
- """Collection of Salesforce DomainSite"""
- domainSites(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceDomainSiteConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceDomainSiteSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceDomainSiteSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of DomainSites to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceDomainSitesConnection
- customFields(
- """
- List of custom fields to return. By default, returns all custom fields.
- """
- fields: [String!]
- ): JSON!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-"""Custom URL"""
-type SalesforceDomainSite implements OneGraphNode {
- """Custom URL ID"""
- id: String!
-
- """Domain ID"""
- domainId: String!
-
- """Domain ID"""
- domain: SalesforceDomain!
-
- """Site ID"""
- siteId: String!
-
- """Site ID"""
- site: SalesforceSite!
-
- """Path"""
- pathPrefix: String!
-
- """Created Date"""
- createdDate: String!
-
- """Created By ID"""
- createdById: String!
-
- """Created By ID"""
- createdBy: SalesforceUser!
-
- """Last Modified Date"""
- lastModifiedDate: String!
-
- """Last Modified By ID"""
- lastModifiedById: String!
-
- """Last Modified By ID"""
- lastModifiedBy: SalesforceUser!
-
- """System Modstamp"""
- systemModstamp: String!
- customFields(
- """
- List of custom fields to return. By default, returns all custom fields.
- """
- fields: [String!]
- ): JSON!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-"""Salesforce Custom URLs connection, for use in pagination."""
-type SalesforceDomainSitesConnection {
- """The count of all Custom URL you could get from the connection."""
- totalCount: Int!
-
- """Pagination Information"""
- pageInfo: PageInfo!
-
- """List of Salesforce Custom URLs"""
- nodes: [SalesforceDomainSite!]!
-
- """List of Custom URL edges"""
- edges: [SalesforceDomainSiteEdge!]!
-}
-
-"""Site"""
-type SalesforceSite implements OneGraphNode {
- """Site ID"""
- id: String!
-
- """Site Name"""
- name: String!
-
- """Site Subdomain Prefix"""
- subdomain: String
-
- """Default Web Address"""
- urlPathPrefix: String
-
- """User ID"""
- guestUserId: String
-
- """User ID"""
- guestUser: SalesforceUser
-
- """Site Status"""
- status: String!
-
- """User ID"""
- adminId: String!
-
- """User ID"""
- admin: SalesforceUser!
-
- """Enable Feeds"""
- optionsEnableFeeds: Boolean!
-
- """Require Secure Connections (HTTPS)"""
- optionsRequireHttps: Boolean!
-
- """Enable Standard Home Page"""
- optionsAllowHomePage: Boolean!
-
- """Enable Standard Ideas Pages"""
- optionsAllowStandardIdeasPages: Boolean!
-
- """Enable Standard Lookup Pages"""
- optionsAllowStandardSearch: Boolean!
-
- """Enable Standard Search Pages"""
- optionsAllowStandardLookups: Boolean!
-
- """Enable Standard Answers Pages"""
- optionsAllowStandardAnswersPages: Boolean!
-
- """Guest Access to the Support API"""
- optionsAllowGuestSupportApi: Boolean!
-
- """Allow Access to Standard Salesforce Pages"""
- optionsAllowStandardPortalPages: Boolean!
-
- """Upgrade all requests to HTTPS"""
- optionsCspUpgradeInsecureRequests: Boolean!
-
- """Enable Content Sniffing Protection"""
- optionsContentSniffingProtection: Boolean!
-
- """Enable Browser Cross Site Scripting Protection"""
- optionsBrowserXssProtection: Boolean!
-
- """Referrer URL Protection"""
- optionsReferrerPolicyOriginWhenCrossOrigin: Boolean!
-
- """Site Description"""
- description: String
-
- """Site Label"""
- masterLabel: String!
-
- """Analytics Tracking Code"""
- analyticsTrackingCode: String
-
- """Site Type"""
- siteType: String!
-
- """Clickjack Protection Level"""
- clickjackProtectionLevel: String!
-
- """Daily Bandwidth Limit (MB)"""
- dailyBandwidthLimit: Int
-
- """Daily Bandwidth Used"""
- dailyBandwidthUsed: Int
-
- """Daily Request Time Limit (min)"""
- dailyRequestTimeLimit: Int
-
- """Daily Request Time Used"""
- dailyRequestTimeUsed: Int
-
- """Monthly Page Views Allowed"""
- monthlyPageViewsEntitlement: Int
-
- """Created Date"""
- createdDate: String!
-
- """Created By ID"""
- createdById: String!
-
- """Created By ID"""
- createdBy: SalesforceUser!
-
- """Last Modified Date"""
- lastModifiedDate: String!
-
- """Last Modified By ID"""
- lastModifiedById: String!
-
- """Last Modified By ID"""
- lastModifiedBy: SalesforceUser!
-
- """System Modstamp"""
- systemModstamp: String!
-
- """Collection of Salesforce ContentDocumentLink"""
- contentDocumentLinks(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceContentDocumentLinkConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceContentDocumentLinkSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceContentDocumentLinkSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """
- Number of ContentDocumentLinks to fetch. Defaults to 10. Maximum is 60.
- """
- first: Int
- ): SalesforceContentDocumentLinksConnection
-
- """Collection of Salesforce ContentVersion"""
- contentVersions(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceContentVersionConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceContentVersionSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceContentVersionSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of ContentVersions to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceContentVersionsConnection
-
- """Collection of Salesforce DomainSite"""
- siteDomainPaths(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceDomainSiteConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceDomainSiteSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceDomainSiteSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of DomainSites to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceDomainSitesConnection
-
- """Collection of Salesforce EntitySubscription"""
- feedSubscriptionsForEntity(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceEntitySubscriptionConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceEntitySubscriptionSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceEntitySubscriptionSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of EntitySubscriptions to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceEntitySubscriptionsConnection
-
- """Collection of Salesforce FeedComment"""
- feedComments(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceFeedCommentConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceFeedCommentSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceFeedCommentSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of FeedComments to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceFeedCommentsConnection
-
- """Collection of Salesforce FeedItem"""
- feedItems(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceFeedItemConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceFeedItemSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceFeedItemSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of FeedItems to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceFeedItemsConnection
-
- """Collection of Salesforce SiteFeed"""
- feeds(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceSiteFeedConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceSiteFeedSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceSiteFeedSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of SiteFeeds to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceSiteFeedsConnection
-
- """Collection of Salesforce SiteHistory"""
- histories(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceSiteHistoryConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceSiteHistorySortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceSiteHistorySortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of SiteHistories to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceSiteHistorysConnection
- customFields(
- """
- List of custom fields to return. By default, returns all custom fields.
- """
- fields: [String!]
- ): JSON!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-"""Site"""
-type SalesforceSiteFeed implements OneGraphNode {
- """Feed Item ID"""
- id: String!
-
- """Parent ID"""
- parentId: String!
-
- """Parent ID"""
- parent: SalesforceSite!
-
- """Feed Item Type"""
- type: String
-
- """Created By ID"""
- createdById: String!
-
- """Created By ID"""
- createdBy: SalesforceUser!
-
- """Created Date"""
- createdDate: String!
-
- """Deleted"""
- isDeleted: Boolean!
-
- """Last Modified Date"""
- lastModifiedDate: String!
-
- """System Modstamp"""
- systemModstamp: String!
-
- """Comment Count"""
- commentCount: Int!
-
- """Like Count"""
- likeCount: Int!
-
- """Title"""
- title: String
-
- """Body"""
- body: String
-
- """Link Url"""
- linkUrl: String
-
- """Is Rich Text"""
- isRichText: Boolean!
-
- """Related Record ID"""
- relatedRecordId: String
-
- """Related Record ID"""
- relatedRecord: SalesforceContentVersion
-
- """InsertedBy ID"""
- insertedById: String
-
- """InsertedBy ID"""
- insertedBy: SalesforceUser
-
- """Collection of Salesforce FeedAttachment"""
- feedAttachments(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceFeedAttachmentConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceFeedAttachmentSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceFeedAttachmentSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of FeedAttachments to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceFeedAttachmentsConnection
-
- """Collection of Salesforce FeedComment"""
- feedComments(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceFeedCommentConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceFeedCommentSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceFeedCommentSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of FeedComments to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceFeedCommentsConnection
-
- """Collection of Salesforce FeedPollChoice"""
- feedPollChoices(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceFeedPollChoiceConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceFeedPollChoiceSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceFeedPollChoiceSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of FeedPollChoices to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceFeedPollChoicesConnection
-
- """Collection of Salesforce FeedPollVote"""
- feedPollVotes(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceFeedPollVoteConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceFeedPollVoteSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceFeedPollVoteSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of FeedPollVotes to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceFeedPollVotesConnection
- customFields(
- """
- List of custom fields to return. By default, returns all custom fields.
- """
- fields: [String!]
- ): JSON!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-union SalesforceFeedLikeFeedEntityUnion = SalesforceUserFeed | SalesforceTopicFeed | SalesforceTaskFeed | SalesforceSolutionFeed | SalesforceSiteFeed | SalesforceReportFeed | SalesforceProduct2Feed | SalesforceOrderItemFeed | SalesforceOrderFeed | SalesforceOpportunityFeed | SalesforceLeadFeed | SalesforceFeedItem | SalesforceFeedComment | SalesforceEventFeed | SalesforceDashboardFeed | SalesforceDashboardComponentFeed | SalesforceContractFeed | SalesforceContentDocumentFeed | SalesforceContactFeed | SalesforceCollaborationGroupFeed | SalesforceCaseFeed | SalesforceCampaignFeed | SalesforceAssetRelationshipFeed | SalesforceAssetFeed | SalesforceAccountFeed
-
-"""
-A filter to be used against FeedPollVote object types. All fields are combined with a logical ‘and.’
-"""
-input SalesforceFeedPollVoteConnectionFilter {
- """Filter against custom fields."""
- customField: SalesforceCustomFieldFilter
-
- """Filter by the FeedPollVote's createdBy relation."""
- createdBy: SalesforceUserConnectionFilter
-
- """Filter by the FeedPollVote's choice relation."""
- choice: SalesforceFeedPollChoiceConnectionFilter
-
- """Filter by the FeedPollVote's id field"""
- id: SalesforceIdFilter
-
- """Filter by the FeedPollVote's feedItemId field"""
- feedItemId: SalesforceIdFilter
-
- """Filter by the FeedPollVote's choiceId field"""
- choiceId: SalesforceIdFilter
-
- """Filter by the FeedPollVote's createdById field"""
- createdById: SalesforceIdFilter
-
- """Filter by the FeedPollVote's createdDate field"""
- createdDate: SalesforceDateTimeFilter
-
- """Filter by the FeedPollVote's lastModifiedDate field"""
- lastModifiedDate: SalesforceDateTimeFilter
-
- """Filter by the FeedPollVote's isDeleted field"""
- isDeleted: SalesforceBooleanFilter
-
- """Checks for any expressions in this list."""
- or: [SalesforceFeedPollVoteConnectionFilter!]
-
- """Checks for all expressions in this list."""
- and: [SalesforceFeedPollVoteConnectionFilter!]
-}
-
-"""Field that Feed Poll Votes can be sorted by"""
-enum SalesforceFeedPollVoteSortByFieldEnum {
- ID
- FEED_ITEM_ID
- CREATED_BY_ID
- CREATED_DATE
- LAST_MODIFIED_DATE
- IS_DELETED
-}
-
-"""Solution Feed"""
-type SalesforceSolutionFeed implements OneGraphNode {
- """Feed Item ID"""
- id: String!
-
- """Parent ID"""
- parentId: String!
-
- """Parent ID"""
- parent: SalesforceSolution!
-
- """Feed Item Type"""
- type: String
-
- """Created By ID"""
- createdById: String!
-
- """Created By ID"""
- createdBy: SalesforceUser!
-
- """Created Date"""
- createdDate: String!
-
- """Deleted"""
- isDeleted: Boolean!
-
- """Last Modified Date"""
- lastModifiedDate: String!
-
- """System Modstamp"""
- systemModstamp: String!
-
- """Comment Count"""
- commentCount: Int!
-
- """Like Count"""
- likeCount: Int!
-
- """Title"""
- title: String
-
- """Body"""
- body: String
-
- """Link Url"""
- linkUrl: String
-
- """Is Rich Text"""
- isRichText: Boolean!
-
- """Related Record ID"""
- relatedRecordId: String
-
- """Related Record ID"""
- relatedRecord: SalesforceContentVersion
-
- """InsertedBy ID"""
- insertedById: String
-
- """InsertedBy ID"""
- insertedBy: SalesforceUser
-
- """Collection of Salesforce FeedAttachment"""
- feedAttachments(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceFeedAttachmentConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceFeedAttachmentSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceFeedAttachmentSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of FeedAttachments to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceFeedAttachmentsConnection
-
- """Collection of Salesforce FeedComment"""
- feedComments(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceFeedCommentConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceFeedCommentSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceFeedCommentSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of FeedComments to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceFeedCommentsConnection
-
- """Collection of Salesforce FeedPollChoice"""
- feedPollChoices(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceFeedPollChoiceConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceFeedPollChoiceSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceFeedPollChoiceSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of FeedPollChoices to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceFeedPollChoicesConnection
-
- """Collection of Salesforce FeedPollVote"""
- feedPollVotes(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceFeedPollVoteConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceFeedPollVoteSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceFeedPollVoteSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of FeedPollVotes to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceFeedPollVotesConnection
- customFields(
- """
- List of custom fields to return. By default, returns all custom fields.
- """
- fields: [String!]
- ): JSON!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-union SalesforceFeedPollVoteFeedItemUnion = SalesforceUserFeed | SalesforceTopicFeed | SalesforceTaskFeed | SalesforceSolutionFeed | SalesforceSiteFeed | SalesforceReportFeed | SalesforceProduct2Feed | SalesforceOrderItemFeed | SalesforceOrderFeed | SalesforceOpportunityFeed | SalesforceLeadFeed | SalesforceFeedItem | SalesforceEventFeed | SalesforceDashboardFeed | SalesforceDashboardComponentFeed | SalesforceContractFeed | SalesforceContentDocumentFeed | SalesforceContactFeed | SalesforceCollaborationGroupFeed | SalesforceCaseFeed | SalesforceCampaignFeed | SalesforceAssetRelationshipFeed | SalesforceAssetFeed | SalesforceAccountFeed
-
-"""Feed Poll Vote"""
-type SalesforceFeedPollVote implements OneGraphNode {
- """Feed Poll Vote ID"""
- id: String!
-
- """Feed Item ID"""
- feedItemId: String!
-
- """Feed Item ID"""
- feedItem: SalesforceFeedPollVoteFeedItemUnion!
-
- """Feed Poll Choice ID"""
- choiceId: String!
-
- """Feed Poll Choice ID"""
- choice: SalesforceFeedPollChoice!
-
- """Created By ID"""
- createdById: String!
-
- """Created By ID"""
- createdBy: SalesforceUser!
-
- """Created Date"""
- createdDate: String!
-
- """Last Modified Date"""
- lastModifiedDate: String!
-
- """Deleted"""
- isDeleted: Boolean!
-
- """Collection of Salesforce FlowRecordRelation"""
- flowRecordRelations(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceFlowRecordRelationConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceFlowRecordRelationSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceFlowRecordRelationsConnection
- customFields(
- """
- List of custom fields to return. By default, returns all custom fields.
- """
- fields: [String!]
- ): JSON!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-"""Salesforce Feed Poll Votes connection, for use in pagination."""
-type SalesforceFeedPollVotesConnection {
- """The count of all Feed Poll Vote you could get from the connection."""
- totalCount: Int!
-
- """Pagination Information"""
- pageInfo: PageInfo!
-
- """List of Salesforce Feed Poll Votes"""
- nodes: [SalesforceFeedPollVote!]!
-
- """List of Feed Poll Vote edges"""
- edges: [SalesforceFeedPollVoteEdge!]!
-}
-
-"""
-A filter to be used against FeedPollChoice object types. All fields are combined with a logical ‘and.’
-"""
-input SalesforceFeedPollChoiceConnectionFilter {
- """Filter against custom fields."""
- customField: SalesforceCustomFieldFilter
-
- """Filter by the FeedPollChoice's createdBy relation."""
- createdBy: SalesforceUserConnectionFilter
-
- """Filter by the FeedPollChoice's id field"""
- id: SalesforceIdFilter
-
- """Filter by the FeedPollChoice's feedItemId field"""
- feedItemId: SalesforceIdFilter
-
- """Filter by the FeedPollChoice's createdById field"""
- createdById: SalesforceIdFilter
-
- """Filter by the FeedPollChoice's createdDate field"""
- createdDate: SalesforceDateTimeFilter
-
- """Filter by the FeedPollChoice's isDeleted field"""
- isDeleted: SalesforceBooleanFilter
-
- """Checks for any expressions in this list."""
- or: [SalesforceFeedPollChoiceConnectionFilter!]
-
- """Checks for all expressions in this list."""
- and: [SalesforceFeedPollChoiceConnectionFilter!]
-}
-
-"""Field that Feed Poll Choices can be sorted by"""
-enum SalesforceFeedPollChoiceSortByFieldEnum {
- ID
- FEED_ITEM_ID
- POSITION
- CREATED_BY_ID
- CREATED_DATE
- IS_DELETED
-}
-
-"""Task Feed"""
-type SalesforceTaskFeed implements OneGraphNode {
- """Feed Item ID"""
- id: String!
-
- """Parent ID"""
- parentId: String!
-
- """Parent ID"""
- parent: SalesforceTask!
-
- """Feed Item Type"""
- type: String
-
- """Created By ID"""
- createdById: String!
-
- """Created By ID"""
- createdBy: SalesforceUser!
-
- """Created Date"""
- createdDate: String!
-
- """Deleted"""
- isDeleted: Boolean!
-
- """Last Modified Date"""
- lastModifiedDate: String!
-
- """System Modstamp"""
- systemModstamp: String!
-
- """Comment Count"""
- commentCount: Int!
-
- """Like Count"""
- likeCount: Int!
-
- """Title"""
- title: String
-
- """Body"""
- body: String
-
- """Link Url"""
- linkUrl: String
-
- """Is Rich Text"""
- isRichText: Boolean!
-
- """Related Record ID"""
- relatedRecordId: String
-
- """Related Record ID"""
- relatedRecord: SalesforceContentVersion
-
- """InsertedBy ID"""
- insertedById: String
-
- """InsertedBy ID"""
- insertedBy: SalesforceUser
-
- """Collection of Salesforce FeedAttachment"""
- feedAttachments(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceFeedAttachmentConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceFeedAttachmentSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceFeedAttachmentSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of FeedAttachments to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceFeedAttachmentsConnection
-
- """Collection of Salesforce FeedComment"""
- feedComments(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceFeedCommentConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceFeedCommentSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceFeedCommentSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of FeedComments to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceFeedCommentsConnection
-
- """Collection of Salesforce FeedPollChoice"""
- feedPollChoices(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceFeedPollChoiceConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceFeedPollChoiceSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceFeedPollChoiceSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of FeedPollChoices to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceFeedPollChoicesConnection
-
- """Collection of Salesforce FeedPollVote"""
- feedPollVotes(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceFeedPollVoteConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceFeedPollVoteSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceFeedPollVoteSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of FeedPollVotes to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceFeedPollVotesConnection
- customFields(
- """
- List of custom fields to return. By default, returns all custom fields.
- """
- fields: [String!]
- ): JSON!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-union SalesforceFeedPollChoiceFeedItemUnion = SalesforceUserFeed | SalesforceTopicFeed | SalesforceTaskFeed | SalesforceSolutionFeed | SalesforceSiteFeed | SalesforceReportFeed | SalesforceProduct2Feed | SalesforceOrderItemFeed | SalesforceOrderFeed | SalesforceOpportunityFeed | SalesforceLeadFeed | SalesforceFeedItem | SalesforceEventFeed | SalesforceDashboardFeed | SalesforceDashboardComponentFeed | SalesforceContractFeed | SalesforceContentDocumentFeed | SalesforceContactFeed | SalesforceCollaborationGroupFeed | SalesforceCaseFeed | SalesforceCampaignFeed | SalesforceAssetRelationshipFeed | SalesforceAssetFeed | SalesforceAccountFeed
-
-"""Feed Poll Choice"""
-type SalesforceFeedPollChoice implements OneGraphNode {
- """Feed Poll Choice ID"""
- id: String!
-
- """Feed Item ID"""
- feedItemId: String!
-
- """Feed Item ID"""
- feedItem: SalesforceFeedPollChoiceFeedItemUnion!
-
- """Position"""
- position: Int!
-
- """ChoiceBody"""
- choiceBody: String!
-
- """Created By ID"""
- createdById: String!
-
- """Created By ID"""
- createdBy: SalesforceUser!
-
- """Created Date"""
- createdDate: String!
-
- """Deleted"""
- isDeleted: Boolean!
-
- """Collection of Salesforce FeedPollVote"""
- feedPollVotes(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceFeedPollVoteConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceFeedPollVoteSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceFeedPollVoteSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of FeedPollVotes to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceFeedPollVotesConnection
-
- """Collection of Salesforce FlowRecordRelation"""
- flowRecordRelations(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceFlowRecordRelationConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceFlowRecordRelationSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceFlowRecordRelationsConnection
- customFields(
- """
- List of custom fields to return. By default, returns all custom fields.
- """
- fields: [String!]
- ): JSON!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-"""Salesforce Feed Poll Choices connection, for use in pagination."""
-type SalesforceFeedPollChoicesConnection {
- """The count of all Feed Poll Choice you could get from the connection."""
- totalCount: Int!
-
- """Pagination Information"""
- pageInfo: PageInfo!
-
- """List of Salesforce Feed Poll Choices"""
- nodes: [SalesforceFeedPollChoice!]!
-
- """List of Feed Poll Choice edges"""
- edges: [SalesforceFeedPollChoiceEdge!]!
-}
-
-"""
-A filter to be used against FeedComment object types. All fields are combined with a logical ‘and.’
-"""
-input SalesforceFeedCommentConnectionFilter {
- """Filter against custom fields."""
- customField: SalesforceCustomFieldFilter
-
- """Filter by the FeedComment's relatedRecord relation."""
- relatedRecord: SalesforceContentVersionConnectionFilter
-
- """Filter by the FeedComment's insertedBy relation."""
- insertedBy: SalesforceUserConnectionFilter
-
- """Filter by the FeedComment's lastEditBy relation."""
- lastEditBy: SalesforceUserConnectionFilter
-
- """Filter by the FeedComment's createdBy relation."""
- createdBy: SalesforceUserConnectionFilter
-
- """Filter by the FeedComment's id field"""
- id: SalesforceIdFilter
-
- """Filter by the FeedComment's feedItemId field"""
- feedItemId: SalesforceIdFilter
-
- """Filter by the FeedComment's parentId field"""
- parentId: SalesforceIdFilter
-
- """Filter by the FeedComment's createdById field"""
- createdById: SalesforceIdFilter
-
- """Filter by the FeedComment's createdDate field"""
- createdDate: SalesforceDateTimeFilter
-
- """Filter by the FeedComment's systemModstamp field"""
- systemModstamp: SalesforceDateTimeFilter
-
- """Filter by the FeedComment's revision field"""
- revision: SalesforceIntFilter
-
- """Filter by the FeedComment's lastEditById field"""
- lastEditById: SalesforceIdFilter
-
- """Filter by the FeedComment's lastEditDate field"""
- lastEditDate: SalesforceDateTimeFilter
-
- """Filter by the FeedComment's commentBody field"""
- commentBody: SalesforceStringFilter
-
- """Filter by the FeedComment's isDeleted field"""
- isDeleted: SalesforceBooleanFilter
-
- """Filter by the FeedComment's insertedById field"""
- insertedById: SalesforceIdFilter
-
- """Filter by the FeedComment's commentType field"""
- commentType: SalesforceStringFilter
-
- """Filter by the FeedComment's isRichText field"""
- isRichText: SalesforceBooleanFilter
-
- """Filter by the FeedComment's isVerified field"""
- isVerified: SalesforceBooleanFilter
-
- """Checks for any expressions in this list."""
- or: [SalesforceFeedCommentConnectionFilter!]
-
- """Checks for all expressions in this list."""
- and: [SalesforceFeedCommentConnectionFilter!]
-}
-
-"""Field that Feed Comments can be sorted by"""
-enum SalesforceFeedCommentSortByFieldEnum {
- ID
- FEED_ITEM_ID
- PARENT_ID
- CREATED_BY_ID
- CREATED_DATE
- SYSTEM_MODSTAMP
- REVISION
- LAST_EDIT_BY_ID
- LAST_EDIT_DATE
- COMMENT_BODY
- IS_DELETED
- INSERTED_BY_ID
- COMMENT_TYPE
- RELATED_RECORD_ID
- IS_RICH_TEXT
- IS_VERIFIED
- STATUS
-}
-
-"""Topic Feed"""
-type SalesforceTopicFeed implements OneGraphNode {
- """Feed Item ID"""
- id: String!
-
- """Parent ID"""
- parentId: String!
-
- """Parent ID"""
- parent: SalesforceTopic!
-
- """Feed Item Type"""
- type: String
-
- """Created By ID"""
- createdById: String!
-
- """Created By ID"""
- createdBy: SalesforceUser!
-
- """Created Date"""
- createdDate: String!
-
- """Deleted"""
- isDeleted: Boolean!
-
- """Last Modified Date"""
- lastModifiedDate: String!
-
- """System Modstamp"""
- systemModstamp: String!
-
- """Comment Count"""
- commentCount: Int!
-
- """Like Count"""
- likeCount: Int!
-
- """Title"""
- title: String
-
- """Body"""
- body: String
-
- """Link Url"""
- linkUrl: String
-
- """Is Rich Text"""
- isRichText: Boolean!
-
- """Related Record ID"""
- relatedRecordId: String
-
- """Related Record ID"""
- relatedRecord: SalesforceContentVersion
-
- """InsertedBy ID"""
- insertedById: String
-
- """InsertedBy ID"""
- insertedBy: SalesforceUser
-
- """Collection of Salesforce FeedAttachment"""
- feedAttachments(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceFeedAttachmentConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceFeedAttachmentSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceFeedAttachmentSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of FeedAttachments to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceFeedAttachmentsConnection
-
- """Collection of Salesforce FeedComment"""
- feedComments(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceFeedCommentConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceFeedCommentSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceFeedCommentSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of FeedComments to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceFeedCommentsConnection
-
- """Collection of Salesforce FeedPollChoice"""
- feedPollChoices(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceFeedPollChoiceConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceFeedPollChoiceSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceFeedPollChoiceSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of FeedPollChoices to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceFeedPollChoicesConnection
-
- """Collection of Salesforce FeedPollVote"""
- feedPollVotes(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceFeedPollVoteConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceFeedPollVoteSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceFeedPollVoteSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of FeedPollVotes to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceFeedPollVotesConnection
- customFields(
- """
- List of custom fields to return. By default, returns all custom fields.
- """
- fields: [String!]
- ): JSON!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-union SalesforceFeedCommentFeedItemUnion = SalesforceUserFeed | SalesforceTopicFeed | SalesforceTaskFeed | SalesforceSolutionFeed | SalesforceSiteFeed | SalesforceReportFeed | SalesforceProduct2Feed | SalesforceOrderItemFeed | SalesforceOrderFeed | SalesforceOpportunityFeed | SalesforceLeadFeed | SalesforceFeedItem | SalesforceEventFeed | SalesforceDashboardFeed | SalesforceDashboardComponentFeed | SalesforceContractFeed | SalesforceContentDocumentFeed | SalesforceContactFeed | SalesforceCollaborationGroupFeed | SalesforceCaseFeed | SalesforceCampaignFeed | SalesforceAssetRelationshipFeed | SalesforceAssetFeed | SalesforceAccountFeed
-
-"""Feed Comment"""
-type SalesforceFeedComment implements OneGraphNode {
- """Linked Github IssueComment"""
- gitHubIssueComment: GitHubIssueComment
-
- """Feed Comment ID"""
- id: String!
-
- """Feed Item ID"""
- feedItemId: String!
-
- """Feed Item ID"""
- feedItem: SalesforceFeedCommentFeedItemUnion!
-
- """Parent ID"""
- parentId: String
-
- """Parent ID"""
- parent: SalesforceFeedCommentParentUnion
-
- """Created By ID"""
- createdById: String!
-
- """Created By ID"""
- createdBy: SalesforceUser!
-
- """Created Date"""
- createdDate: String!
-
- """System Modstamp"""
- systemModstamp: String!
-
- """Revision"""
- revision: Int
-
- """Last Edit By ID"""
- lastEditById: String
-
- """Last Edit By ID"""
- lastEditBy: SalesforceUser
-
- """Last Edit Date"""
- lastEditDate: String
-
- """Comment Body"""
- commentBody: String!
-
- """Deleted"""
- isDeleted: Boolean!
-
- """InsertedBy ID"""
- insertedById: String!
-
- """InsertedBy ID"""
- insertedBy: SalesforceUser!
-
- """Comment Type"""
- commentType: String
-
- """Related Record ID"""
- relatedRecordId: String
-
- """Related Record ID"""
- relatedRecord: SalesforceContentVersion
-
- """Is Rich Text"""
- isRichText: Boolean!
-
- """Is a Verified Comment"""
- isVerified: Boolean!
-
- """Status"""
- status: String
-
- """Collection of Salesforce FeedAttachment"""
- feedAttachments(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceFeedAttachmentConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceFeedAttachmentSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceFeedAttachmentSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of FeedAttachments to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceFeedAttachmentsConnection
-
- """Collection of Salesforce FeedItem"""
- feedItems(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceFeedItemConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceFeedItemSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceFeedItemSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of FeedItems to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceFeedItemsConnection
-
- """Collection of Salesforce FeedRevision"""
- feedRevisions(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceFeedRevisionConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceFeedRevisionSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceFeedRevisionSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of FeedRevisions to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceFeedRevisionsConnection
-
- """Collection of Salesforce FlowRecordRelation"""
- flowRecordRelations(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceFlowRecordRelationConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceFlowRecordRelationSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceFlowRecordRelationsConnection
- customFields(
- """
- List of custom fields to return. By default, returns all custom fields.
- """
- fields: [String!]
- ): JSON!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-"""Salesforce Feed Comments connection, for use in pagination."""
-type SalesforceFeedCommentsConnection {
- """The count of all Feed Comment you could get from the connection."""
- totalCount: Int!
-
- """Pagination Information"""
- pageInfo: PageInfo!
-
- """List of Salesforce Feed Comments"""
- nodes: [SalesforceFeedComment!]!
-
- """List of Feed Comment edges"""
- edges: [SalesforceFeedCommentEdge!]!
-}
-
-"""
-A filter to be used against FeedAttachment object types. All fields are combined with a logical ‘and.’
-"""
-input SalesforceFeedAttachmentConnectionFilter {
- """Filter against custom fields."""
- customField: SalesforceCustomFieldFilter
-
- """Filter by the FeedAttachment's id field"""
- id: SalesforceIdFilter
-
- """Filter by the FeedAttachment's feedEntityId field"""
- feedEntityId: SalesforceIdFilter
-
- """Filter by the FeedAttachment's type field"""
- type: SalesforceStringFilter
-
- """Filter by the FeedAttachment's recordId field"""
- recordId: SalesforceIdFilter
-
- """Filter by the FeedAttachment's title field"""
- title: SalesforceStringFilter
-
- """Filter by the FeedAttachment's value field"""
- value: SalesforceStringFilter
-
- """Filter by the FeedAttachment's isDeleted field"""
- isDeleted: SalesforceBooleanFilter
-
- """Checks for any expressions in this list."""
- or: [SalesforceFeedAttachmentConnectionFilter!]
-
- """Checks for all expressions in this list."""
- and: [SalesforceFeedAttachmentConnectionFilter!]
-}
-
-"""Field that Feed Attachments can be sorted by"""
-enum SalesforceFeedAttachmentSortByFieldEnum {
- ID
- FEED_ENTITY_ID
- TYPE
- RECORD_ID
- TITLE
- VALUE
- IS_DELETED
-}
-
-"""User Feed"""
-type SalesforceUserFeed implements OneGraphNode {
- """Feed Item ID"""
- id: String!
-
- """Parent ID"""
- parentId: String!
-
- """Parent ID"""
- parent: SalesforceUser!
-
- """Feed Item Type"""
- type: String
-
- """Created By ID"""
- createdById: String!
-
- """Created By ID"""
- createdBy: SalesforceUser!
-
- """Created Date"""
- createdDate: String!
-
- """Deleted"""
- isDeleted: Boolean!
-
- """Last Modified Date"""
- lastModifiedDate: String!
-
- """System Modstamp"""
- systemModstamp: String!
-
- """Comment Count"""
- commentCount: Int!
-
- """Like Count"""
- likeCount: Int!
-
- """Title"""
- title: String
-
- """Body"""
- body: String
-
- """Link Url"""
- linkUrl: String
-
- """Is Rich Text"""
- isRichText: Boolean!
-
- """Related Record ID"""
- relatedRecordId: String
-
- """Related Record ID"""
- relatedRecord: SalesforceContentVersion
-
- """InsertedBy ID"""
- insertedById: String
-
- """InsertedBy ID"""
- insertedBy: SalesforceUser
-
- """Collection of Salesforce FeedAttachment"""
- feedAttachments(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceFeedAttachmentConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceFeedAttachmentSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceFeedAttachmentSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of FeedAttachments to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceFeedAttachmentsConnection
-
- """Collection of Salesforce FeedComment"""
- feedComments(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceFeedCommentConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceFeedCommentSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceFeedCommentSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of FeedComments to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceFeedCommentsConnection
-
- """Collection of Salesforce FeedPollChoice"""
- feedPollChoices(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceFeedPollChoiceConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceFeedPollChoiceSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceFeedPollChoiceSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of FeedPollChoices to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceFeedPollChoicesConnection
-
- """Collection of Salesforce FeedPollVote"""
- feedPollVotes(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceFeedPollVoteConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceFeedPollVoteSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceFeedPollVoteSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of FeedPollVotes to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceFeedPollVotesConnection
- customFields(
- """
- List of custom fields to return. By default, returns all custom fields.
- """
- fields: [String!]
- ): JSON!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-union SalesforceFeedAttachmentFeedEntityUnion = SalesforceUserFeed | SalesforceTopicFeed | SalesforceTaskFeed | SalesforceSolutionFeed | SalesforceSiteFeed | SalesforceReportFeed | SalesforceProduct2Feed | SalesforceOrderItemFeed | SalesforceOrderFeed | SalesforceOpportunityFeed | SalesforceLeadFeed | SalesforceFeedItem | SalesforceFeedComment | SalesforceEventFeed | SalesforceDashboardFeed | SalesforceDashboardComponentFeed | SalesforceContractFeed | SalesforceContentDocumentFeed | SalesforceContactFeed | SalesforceCollaborationGroupFeed | SalesforceCaseFeed | SalesforceCampaignFeed | SalesforceAssetRelationshipFeed | SalesforceAssetFeed | SalesforceAccountFeed
-
-"""Feed Attachment"""
-type SalesforceFeedAttachment implements OneGraphNode {
- """Feed Attachment ID"""
- id: String!
-
- """Feed Entity ID"""
- feedEntityId: String!
-
- """Feed Entity ID"""
- feedEntity: SalesforceFeedAttachmentFeedEntityUnion!
-
- """Feed Attachment Type"""
- type: String!
-
- """Attachment Record ID"""
- recordId: String
-
- """Attachment Record ID"""
- record: SalesforceFeedAttachmentRecordUnion
-
- """Feed Attachment Title"""
- title: String
-
- """Feed Attachment Value"""
- value: String
-
- """Deleted"""
- isDeleted: Boolean!
-
- """Collection of Salesforce FlowRecordRelation"""
- flowRecordRelations(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceFlowRecordRelationConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceFlowRecordRelationSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceFlowRecordRelationsConnection
- customFields(
- """
- List of custom fields to return. By default, returns all custom fields.
- """
- fields: [String!]
- ): JSON!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-"""Salesforce Feed Attachments connection, for use in pagination."""
-type SalesforceFeedAttachmentsConnection {
- """The count of all Feed Attachment you could get from the connection."""
- totalCount: Int!
-
- """Pagination Information"""
- pageInfo: PageInfo!
-
- """List of Salesforce Feed Attachments"""
- nodes: [SalesforceFeedAttachment!]!
-
- """List of Feed Attachment edges"""
- edges: [SalesforceFeedAttachmentEdge!]!
-}
-
-"""Campaign Feed"""
-type SalesforceCampaignFeed implements OneGraphNode {
- """Feed Item ID"""
- id: String!
-
- """Parent ID"""
- parentId: String!
-
- """Parent ID"""
- parent: SalesforceCampaign!
-
- """Feed Item Type"""
- type: String
-
- """Created By ID"""
- createdById: String!
-
- """Created By ID"""
- createdBy: SalesforceUser!
-
- """Created Date"""
- createdDate: String!
-
- """Deleted"""
- isDeleted: Boolean!
-
- """Last Modified Date"""
- lastModifiedDate: String!
-
- """System Modstamp"""
- systemModstamp: String!
-
- """Comment Count"""
- commentCount: Int!
-
- """Like Count"""
- likeCount: Int!
-
- """Title"""
- title: String
-
- """Body"""
- body: String
-
- """Link Url"""
- linkUrl: String
-
- """Is Rich Text"""
- isRichText: Boolean!
-
- """Related Record ID"""
- relatedRecordId: String
-
- """Related Record ID"""
- relatedRecord: SalesforceContentVersion
-
- """InsertedBy ID"""
- insertedById: String
-
- """InsertedBy ID"""
- insertedBy: SalesforceUser
-
- """Collection of Salesforce FeedAttachment"""
- feedAttachments(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceFeedAttachmentConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceFeedAttachmentSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceFeedAttachmentSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of FeedAttachments to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceFeedAttachmentsConnection
-
- """Collection of Salesforce FeedComment"""
- feedComments(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceFeedCommentConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceFeedCommentSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceFeedCommentSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of FeedComments to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceFeedCommentsConnection
-
- """Collection of Salesforce FeedPollChoice"""
- feedPollChoices(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceFeedPollChoiceConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceFeedPollChoiceSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceFeedPollChoiceSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of FeedPollChoices to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceFeedPollChoicesConnection
-
- """Collection of Salesforce FeedPollVote"""
- feedPollVotes(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceFeedPollVoteConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceFeedPollVoteSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceFeedPollVoteSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of FeedPollVotes to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceFeedPollVotesConnection
- customFields(
- """
- List of custom fields to return. By default, returns all custom fields.
- """
- fields: [String!]
- ): JSON!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-"""Salesforce Campaign Feeds connection, for use in pagination."""
-type SalesforceCampaignFeedsConnection {
- """The count of all Campaign Feed you could get from the connection."""
- totalCount: Int!
-
- """Pagination Information"""
- pageInfo: PageInfo!
-
- """List of Salesforce Campaign Feeds"""
- nodes: [SalesforceCampaignFeed!]!
-
- """List of Campaign Feed edges"""
- edges: [SalesforceCampaignFeedEdge!]!
-}
-
-"""
-A filter to be used against Campaign object types. All fields are combined with a logical ‘and.’
-"""
-input SalesforceCampaignConnectionFilter {
- """Filter against custom fields."""
- customField: SalesforceCustomFieldFilter
-
- """Filter by the Campaign's campaignMemberRecordType relation."""
- campaignMemberRecordType: SalesforceRecordTypeConnectionFilter
-
- """Filter by the Campaign's lastModifiedBy relation."""
- lastModifiedBy: SalesforceUserConnectionFilter
-
- """Filter by the Campaign's createdBy relation."""
- createdBy: SalesforceUserConnectionFilter
-
- """Filter by the Campaign's owner relation."""
- owner: SalesforceUserConnectionFilter
-
- """Filter by the Campaign's parent relation."""
- parent: SalesforceCampaignConnectionFilter
-
- """Filter by the Campaign's id field"""
- id: SalesforceIdFilter
-
- """Filter by the Campaign's isDeleted field"""
- isDeleted: SalesforceBooleanFilter
-
- """Filter by the Campaign's name field"""
- name: SalesforceStringFilter
-
- """Filter by the Campaign's parentId field"""
- parentId: SalesforceIdFilter
-
- """Filter by the Campaign's type field"""
- type: SalesforceStringFilter
-
- """Filter by the Campaign's status field"""
- status: SalesforceStringFilter
-
- """Filter by the Campaign's startDate field"""
- startDate: SalesforceDateFilter
-
- """Filter by the Campaign's endDate field"""
- endDate: SalesforceDateFilter
-
- """Filter by the Campaign's expectedRevenue field"""
- expectedRevenue: SalesforceFloatFilter
-
- """Filter by the Campaign's budgetedCost field"""
- budgetedCost: SalesforceFloatFilter
-
- """Filter by the Campaign's actualCost field"""
- actualCost: SalesforceFloatFilter
-
- """Filter by the Campaign's expectedResponse field"""
- expectedResponse: SalesforceFloatFilter
-
- """Filter by the Campaign's numberSent field"""
- numberSent: SalesforceFloatFilter
-
- """Filter by the Campaign's isActive field"""
- isActive: SalesforceBooleanFilter
-
- """Filter by the Campaign's numberOfLeads field"""
- numberOfLeads: SalesforceIntFilter
-
- """Filter by the Campaign's numberOfConvertedLeads field"""
- numberOfConvertedLeads: SalesforceIntFilter
-
- """Filter by the Campaign's numberOfContacts field"""
- numberOfContacts: SalesforceIntFilter
-
- """Filter by the Campaign's numberOfResponses field"""
- numberOfResponses: SalesforceIntFilter
-
- """Filter by the Campaign's numberOfOpportunities field"""
- numberOfOpportunities: SalesforceIntFilter
-
- """Filter by the Campaign's numberOfWonOpportunities field"""
- numberOfWonOpportunities: SalesforceIntFilter
-
- """Filter by the Campaign's amountAllOpportunities field"""
- amountAllOpportunities: SalesforceFloatFilter
-
- """Filter by the Campaign's amountWonOpportunities field"""
- amountWonOpportunities: SalesforceFloatFilter
-
- """Filter by the Campaign's ownerId field"""
- ownerId: SalesforceIdFilter
-
- """Filter by the Campaign's createdDate field"""
- createdDate: SalesforceDateTimeFilter
-
- """Filter by the Campaign's createdById field"""
- createdById: SalesforceIdFilter
-
- """Filter by the Campaign's lastModifiedDate field"""
- lastModifiedDate: SalesforceDateTimeFilter
-
- """Filter by the Campaign's lastModifiedById field"""
- lastModifiedById: SalesforceIdFilter
-
- """Filter by the Campaign's systemModstamp field"""
- systemModstamp: SalesforceDateTimeFilter
-
- """Filter by the Campaign's lastActivityDate field"""
- lastActivityDate: SalesforceDateFilter
-
- """Filter by the Campaign's lastViewedDate field"""
- lastViewedDate: SalesforceDateTimeFilter
-
- """Filter by the Campaign's lastReferencedDate field"""
- lastReferencedDate: SalesforceDateTimeFilter
-
- """Filter by the Campaign's campaignMemberRecordTypeId field"""
- campaignMemberRecordTypeId: SalesforceIdFilter
-
- """Checks for any expressions in this list."""
- or: [SalesforceCampaignConnectionFilter!]
-
- """Checks for all expressions in this list."""
- and: [SalesforceCampaignConnectionFilter!]
-}
-
-"""Field that Campaigns can be sorted by"""
-enum SalesforceCampaignSortByFieldEnum {
- ID
- IS_DELETED
- NAME
- PARENT_ID
- TYPE
- STATUS
- START_DATE
- END_DATE
- EXPECTED_REVENUE
- BUDGETED_COST
- ACTUAL_COST
- EXPECTED_RESPONSE
- NUMBER_SENT
- IS_ACTIVE
- NUMBER_OF_LEADS
- NUMBER_OF_CONVERTED_LEADS
- NUMBER_OF_CONTACTS
- NUMBER_OF_RESPONSES
- NUMBER_OF_OPPORTUNITIES
- NUMBER_OF_WON_OPPORTUNITIES
- AMOUNT_ALL_OPPORTUNITIES
- AMOUNT_WON_OPPORTUNITIES
- OWNER_ID
- CREATED_DATE
- CREATED_BY_ID
- LAST_MODIFIED_DATE
- LAST_MODIFIED_BY_ID
- SYSTEM_MODSTAMP
- LAST_ACTIVITY_DATE
- LAST_VIEWED_DATE
- LAST_REFERENCED_DATE
- CAMPAIGN_MEMBER_RECORD_TYPE_ID
-}
-
-"""An edge in a connection."""
-type SalesforceCampaignEdge {
- """The item at the end of the edge."""
- node: SalesforceCampaign!
-
- """A cursor for use in pagination"""
- cursor: String!
-}
-
-"""Salesforce Campaigns connection, for use in pagination."""
-type SalesforceCampaignsConnection {
- """The count of all Campaign you could get from the connection."""
- totalCount: Int!
-
- """Pagination Information"""
- pageInfo: PageInfo!
-
- """List of Salesforce Campaigns"""
- nodes: [SalesforceCampaign!]!
-
- """List of Campaign edges"""
- edges: [SalesforceCampaignEdge!]!
-}
-
-"""
-A filter to be used against Attachment object types. All fields are combined with a logical ‘and.’
-"""
-input SalesforceAttachmentConnectionFilter {
- """Filter against custom fields."""
- customField: SalesforceCustomFieldFilter
-
- """Filter by the Attachment's lastModifiedBy relation."""
- lastModifiedBy: SalesforceUserConnectionFilter
-
- """Filter by the Attachment's createdBy relation."""
- createdBy: SalesforceUserConnectionFilter
-
- """Filter by the Attachment's owner relation."""
- owner: SalesforceUserConnectionFilter
-
- """Filter by the Attachment's id field"""
- id: SalesforceIdFilter
-
- """Filter by the Attachment's isDeleted field"""
- isDeleted: SalesforceBooleanFilter
-
- """Filter by the Attachment's parentId field"""
- parentId: SalesforceIdFilter
-
- """Filter by the Attachment's name field"""
- name: SalesforceStringFilter
-
- """Filter by the Attachment's isPrivate field"""
- isPrivate: SalesforceBooleanFilter
-
- """Filter by the Attachment's contentType field"""
- contentType: SalesforceStringFilter
-
- """Filter by the Attachment's bodyLength field"""
- bodyLength: SalesforceIntFilter
-
- """Filter by the Attachment's ownerId field"""
- ownerId: SalesforceIdFilter
-
- """Filter by the Attachment's createdDate field"""
- createdDate: SalesforceDateTimeFilter
-
- """Filter by the Attachment's createdById field"""
- createdById: SalesforceIdFilter
-
- """Filter by the Attachment's lastModifiedDate field"""
- lastModifiedDate: SalesforceDateTimeFilter
-
- """Filter by the Attachment's lastModifiedById field"""
- lastModifiedById: SalesforceIdFilter
-
- """Filter by the Attachment's systemModstamp field"""
- systemModstamp: SalesforceDateTimeFilter
-
- """Filter by the Attachment's description field"""
- description: SalesforceStringFilter
-
- """Checks for any expressions in this list."""
- or: [SalesforceAttachmentConnectionFilter!]
-
- """Checks for all expressions in this list."""
- and: [SalesforceAttachmentConnectionFilter!]
-}
-
-"""Field that Attachments can be sorted by"""
-enum SalesforceAttachmentSortByFieldEnum {
- ID
- IS_DELETED
- PARENT_ID
- NAME
- IS_PRIVATE
- CONTENT_TYPE
- BODY_LENGTH
- OWNER_ID
- CREATED_DATE
- CREATED_BY_ID
- LAST_MODIFIED_DATE
- LAST_MODIFIED_BY_ID
- SYSTEM_MODSTAMP
- DESCRIPTION
-}
-
-"""Campaign"""
-type SalesforceCampaign implements OneGraphNode {
- """Campaign ID"""
- id: String!
-
- """Deleted"""
- isDeleted: Boolean!
-
- """Name"""
- name: String!
-
- """Parent Campaign ID"""
- parentId: String
-
- """Parent Campaign ID"""
- parent: SalesforceCampaign
-
- """Type"""
- type: String
-
- """Status"""
- status: String
-
- """Start Date"""
- startDate: String
-
- """End Date"""
- endDate: String
-
- """Expected Revenue in Campaign"""
- expectedRevenue: Float
-
- """Budgeted Cost in Campaign"""
- budgetedCost: Float
-
- """Actual Cost in Campaign"""
- actualCost: Float
-
- """Expected Response (%)"""
- expectedResponse: Float
-
- """Num Sent in Campaign"""
- numberSent: Float
-
- """Active"""
- isActive: Boolean!
-
- """Description"""
- description: String
-
- """Leads in Campaign"""
- numberOfLeads: Int!
-
- """Converted Leads in Campaign"""
- numberOfConvertedLeads: Int!
-
- """Contacts in Campaign"""
- numberOfContacts: Int!
-
- """Responses in Campaign"""
- numberOfResponses: Int!
-
- """Opportunities in Campaign"""
- numberOfOpportunities: Int!
-
- """Won Opportunities in Campaign"""
- numberOfWonOpportunities: Int!
-
- """Value Opportunities in Campaign"""
- amountAllOpportunities: Float!
-
- """Value Won Opportunities in Campaign"""
- amountWonOpportunities: Float!
-
- """Owner ID"""
- ownerId: String!
-
- """Owner ID"""
- owner: SalesforceUser!
-
- """Created Date"""
- createdDate: String!
-
- """Created By ID"""
- createdById: String!
-
- """Created By ID"""
- createdBy: SalesforceUser!
-
- """Last Modified Date"""
- lastModifiedDate: String!
-
- """Last Modified By ID"""
- lastModifiedById: String!
-
- """Last Modified By ID"""
- lastModifiedBy: SalesforceUser!
-
- """System Modstamp"""
- systemModstamp: String!
-
- """Last Activity"""
- lastActivityDate: String
-
- """Last Viewed Date"""
- lastViewedDate: String
-
- """Last Referenced Date"""
- lastReferencedDate: String
-
- """Record Type ID"""
- campaignMemberRecordTypeId: String
-
- """Record Type ID"""
- campaignMemberRecordType: SalesforceRecordType
-
- """Collection of Salesforce Attachment"""
- attachments(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceAttachmentConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceAttachmentSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceAttachmentSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of Attachments to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceAttachmentsConnection
-
- """Collection of Salesforce Campaign"""
- childCampaigns(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceCampaignConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceCampaignSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceCampaignSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of Campaigns to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceCampaignsConnection
-
- """Collection of Salesforce CampaignFeed"""
- feeds(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceCampaignFeedConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceCampaignFeedSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceCampaignFeedSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of CampaignFeeds to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceCampaignFeedsConnection
-
- """Collection of Salesforce CampaignHistory"""
- histories(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceCampaignHistoryConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceCampaignHistorySortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceCampaignHistorySortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of CampaignHistories to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceCampaignHistorysConnection
-
- """Collection of Salesforce CampaignMember"""
- campaignMembers(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceCampaignMemberConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceCampaignMemberSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceCampaignMemberSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of CampaignMembers to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceCampaignMembersConnection
-
- """Collection of Salesforce CampaignMemberStatus"""
- campaignMemberStatuses(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceCampaignMemberStatusConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceCampaignMemberStatusSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceCampaignMemberStatusSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """
- Number of CampaignMemberStatuses to fetch. Defaults to 10. Maximum is 60.
- """
- first: Int
- ): SalesforceCampaignMemberStatussConnection
-
- """Collection of Salesforce CampaignShare"""
- shares(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceCampaignShareConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceCampaignShareSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceCampaignShareSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of CampaignShares to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceCampaignSharesConnection
-
- """Collection of Salesforce CollaborationGroupRecord"""
- recordAssociatedGroups(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceCollaborationGroupRecordConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceCollaborationGroupRecordSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceCollaborationGroupRecordSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """
- Number of CollaborationGroupRecords to fetch. Defaults to 10. Maximum is 60.
- """
- first: Int
- ): SalesforceCollaborationGroupRecordsConnection
-
- """Collection of Salesforce ContentDistribution"""
- contentDistributions(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceContentDistributionConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceContentDistributionSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceContentDistributionSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """
- Number of ContentDistributions to fetch. Defaults to 10. Maximum is 60.
- """
- first: Int
- ): SalesforceContentDistributionsConnection
-
- """Collection of Salesforce ContentDocumentLink"""
- contentDocumentLinks(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceContentDocumentLinkConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceContentDocumentLinkSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceContentDocumentLinkSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """
- Number of ContentDocumentLinks to fetch. Defaults to 10. Maximum is 60.
- """
- first: Int
- ): SalesforceContentDocumentLinksConnection
-
- """Collection of Salesforce ContentVersion"""
- contentVersions(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceContentVersionConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceContentVersionSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceContentVersionSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of ContentVersions to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceContentVersionsConnection
-
- """Collection of Salesforce EmailMessage"""
- emails(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceEmailMessageConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceEmailMessageSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceEmailMessageSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of EmailMessages to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceEmailMessagesConnection
-
- """Collection of Salesforce EntitySubscription"""
- feedSubscriptionsForEntity(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceEntitySubscriptionConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceEntitySubscriptionSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceEntitySubscriptionSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of EntitySubscriptions to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceEntitySubscriptionsConnection
-
- """Collection of Salesforce Event"""
- events(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceEventConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceEventSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceEventSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of Events to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceEventsConnection
-
- """Collection of Salesforce FeedComment"""
- feedComments(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceFeedCommentConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceFeedCommentSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceFeedCommentSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of FeedComments to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceFeedCommentsConnection
-
- """Collection of Salesforce FeedItem"""
- feedItems(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceFeedItemConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceFeedItemSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceFeedItemSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of FeedItems to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceFeedItemsConnection
-
- """Collection of Salesforce FlowRecordRelation"""
- flowRecordRelations(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceFlowRecordRelationConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceFlowRecordRelationSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceFlowRecordRelationsConnection
-
- """Collection of Salesforce Opportunity"""
- opportunities(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceOpportunityConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceOpportunitySortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceOpportunitySortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of Opportunities to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceOpportunitysConnection
-
- """Collection of Salesforce ProcessInstance"""
- processInstances(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceProcessInstanceConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceProcessInstanceSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceProcessInstanceSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of ProcessInstances to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceProcessInstancesConnection
-
- """Collection of Salesforce Task"""
- tasks(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceTaskConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceTaskSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceTaskSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of Tasks to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceTasksConnection
-
- """Collection of Salesforce TopicAssignment"""
- topicAssignments(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceTopicAssignmentConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceTopicAssignmentSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceTopicAssignmentSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of TopicAssignments to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceTopicAssignmentsConnection
- customFields(
- """
- List of custom fields to return. By default, returns all custom fields.
- """
- fields: [String!]
- ): JSON!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-"""Opportunity"""
-type SalesforceOpportunity implements OneGraphNode {
- """Opportunity ID"""
- id: String!
-
- """Deleted"""
- isDeleted: Boolean!
-
- """Account ID"""
- accountId: String
-
- """Account ID"""
- account: SalesforceAccount
-
- """Private"""
- isPrivate: Boolean!
-
- """Name"""
- name: String!
-
- """Description"""
- description: String
-
- """Stage"""
- stageName: String!
-
- """Amount"""
- amount: Float
-
- """Probability (%)"""
- probability: Float
-
- """Expected Amount"""
- expectedRevenue: Float
-
- """Quantity"""
- totalOpportunityQuantity: Float
-
- """Close Date"""
- closeDate: String!
-
- """Opportunity Type"""
- type: String
-
- """Next Step"""
- nextStep: String
-
- """Lead Source"""
- leadSource: String
-
- """Closed"""
- isClosed: Boolean!
-
- """Won"""
- isWon: Boolean!
-
- """Forecast Category"""
- forecastCategory: String!
-
- """Forecast Category"""
- forecastCategoryName: String
-
- """Campaign ID"""
- campaignId: String
-
- """Campaign ID"""
- campaign: SalesforceCampaign
-
- """Has Line Item"""
- hasOpportunityLineItem: Boolean!
-
- """Price Book ID"""
- pricebook2Id: String
-
- """Price Book ID"""
- pricebook2: SalesforcePricebook2
-
- """Owner ID"""
- ownerId: String!
-
- """Owner ID"""
- owner: SalesforceUser!
-
- """Created Date"""
- createdDate: String!
-
- """Created By ID"""
- createdById: String!
-
- """Created By ID"""
- createdBy: SalesforceUser!
-
- """Last Modified Date"""
- lastModifiedDate: String!
-
- """Last Modified By ID"""
- lastModifiedById: String!
-
- """Last Modified By ID"""
- lastModifiedBy: SalesforceUser!
-
- """System Modstamp"""
- systemModstamp: String!
-
- """Last Activity"""
- lastActivityDate: String
-
- """Fiscal Quarter"""
- fiscalQuarter: Int
-
- """Fiscal Year"""
- fiscalYear: Int
-
- """Fiscal Period"""
- fiscal: String
-
- """Last Viewed Date"""
- lastViewedDate: String
-
- """Last Referenced Date"""
- lastReferencedDate: String
-
- """Has Open Activity"""
- hasOpenActivity: Boolean!
-
- """Has Overdue Task"""
- hasOverdueTask: Boolean!
-
- """Collection of Salesforce AccountPartner"""
- accountPartners(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceAccountPartnerConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceAccountPartnerSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceAccountPartnerSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of AccountPartners to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceAccountPartnersConnection
-
- """Collection of Salesforce Attachment"""
- attachments(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceAttachmentConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceAttachmentSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceAttachmentSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of Attachments to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceAttachmentsConnection
-
- """Collection of Salesforce CollaborationGroupRecord"""
- recordAssociatedGroups(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceCollaborationGroupRecordConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceCollaborationGroupRecordSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceCollaborationGroupRecordSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """
- Number of CollaborationGroupRecords to fetch. Defaults to 10. Maximum is 60.
- """
- first: Int
- ): SalesforceCollaborationGroupRecordsConnection
-
- """Collection of Salesforce ContentDistribution"""
- contentDistributions(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceContentDistributionConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceContentDistributionSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceContentDistributionSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """
- Number of ContentDistributions to fetch. Defaults to 10. Maximum is 60.
- """
- first: Int
- ): SalesforceContentDistributionsConnection
-
- """Collection of Salesforce ContentDocumentLink"""
- contentDocumentLinks(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceContentDocumentLinkConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceContentDocumentLinkSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceContentDocumentLinkSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """
- Number of ContentDocumentLinks to fetch. Defaults to 10. Maximum is 60.
- """
- first: Int
- ): SalesforceContentDocumentLinksConnection
-
- """Collection of Salesforce ContentVersion"""
- contentVersions(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceContentVersionConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceContentVersionSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceContentVersionSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of ContentVersions to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceContentVersionsConnection
-
- """Collection of Salesforce EmailMessage"""
- emails(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceEmailMessageConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceEmailMessageSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceEmailMessageSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of EmailMessages to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceEmailMessagesConnection
-
- """Collection of Salesforce EntitySubscription"""
- feedSubscriptionsForEntity(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceEntitySubscriptionConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceEntitySubscriptionSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceEntitySubscriptionSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of EntitySubscriptions to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceEntitySubscriptionsConnection
-
- """Collection of Salesforce Event"""
- events(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceEventConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceEventSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceEventSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of Events to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceEventsConnection
-
- """Collection of Salesforce FeedComment"""
- feedComments(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceFeedCommentConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceFeedCommentSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceFeedCommentSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of FeedComments to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceFeedCommentsConnection
-
- """Collection of Salesforce FeedItem"""
- feedItems(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceFeedItemConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceFeedItemSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceFeedItemSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of FeedItems to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceFeedItemsConnection
-
- """Collection of Salesforce FlowRecordRelation"""
- flowRecordRelations(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceFlowRecordRelationConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceFlowRecordRelationSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceFlowRecordRelationsConnection
-
- """Collection of Salesforce Lead"""
- leads(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceLeadConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceLeadSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceLeadSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of Leads to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceLeadsConnection
-
- """Collection of Salesforce Note"""
- notes(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceNoteConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceNoteSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceNoteSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of Notes to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceNotesConnection
-
- """Collection of Salesforce OpportunityCompetitor"""
- opportunityCompetitors(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceOpportunityCompetitorConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceOpportunityCompetitorSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceOpportunityCompetitorSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """
- Number of OpportunityCompetitors to fetch. Defaults to 10. Maximum is 60.
- """
- first: Int
- ): SalesforceOpportunityCompetitorsConnection
-
- """Collection of Salesforce OpportunityContactRole"""
- opportunityContactRoles(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceOpportunityContactRoleConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceOpportunityContactRoleSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceOpportunityContactRoleSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """
- Number of OpportunityContactRoles to fetch. Defaults to 10. Maximum is 60.
- """
- first: Int
- ): SalesforceOpportunityContactRolesConnection
-
- """Collection of Salesforce OpportunityFeed"""
- feeds(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceOpportunityFeedConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceOpportunityFeedSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceOpportunityFeedSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of OpportunityFeeds to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceOpportunityFeedsConnection
-
- """Collection of Salesforce OpportunityFieldHistory"""
- histories(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceOpportunityFieldHistoryConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceOpportunityFieldHistorySortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceOpportunityFieldHistorySortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """
- Number of OpportunityFieldHistories to fetch. Defaults to 10. Maximum is 60.
- """
- first: Int
- ): SalesforceOpportunityFieldHistorysConnection
-
- """Collection of Salesforce OpportunityHistory"""
- opportunityHistories(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceOpportunityHistoryConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceOpportunityHistorySortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceOpportunityHistorySortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """
- Number of OpportunityHistories to fetch. Defaults to 10. Maximum is 60.
- """
- first: Int
- ): SalesforceOpportunityHistorysConnection
-
- """Collection of Salesforce OpportunityLineItem"""
- opportunityLineItems(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceOpportunityLineItemConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceOpportunityLineItemSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceOpportunityLineItemSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """
- Number of OpportunityLineItems to fetch. Defaults to 10. Maximum is 60.
- """
- first: Int
- ): SalesforceOpportunityLineItemsConnection
-
- """Collection of Salesforce OpportunityPartner"""
- opportunityPartnersFrom(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceOpportunityPartnerConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceOpportunityPartnerSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceOpportunityPartnerSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of OpportunityPartners to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceOpportunityPartnersConnection
-
- """Collection of Salesforce OpportunityShare"""
- shares(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceOpportunityShareConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceOpportunityShareSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceOpportunityShareSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of OpportunityShares to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceOpportunitySharesConnection
-
- """Collection of Salesforce Partner"""
- partners(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforcePartnerConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforcePartnerSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforcePartnerSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of Partners to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforcePartnersConnection
-
- """Collection of Salesforce ProcessInstance"""
- processInstances(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceProcessInstanceConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceProcessInstanceSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceProcessInstanceSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of ProcessInstances to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceProcessInstancesConnection
-
- """Collection of Salesforce Task"""
- tasks(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceTaskConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceTaskSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceTaskSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of Tasks to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceTasksConnection
-
- """Collection of Salesforce TopicAssignment"""
- topicAssignments(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceTopicAssignmentConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceTopicAssignmentSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceTopicAssignmentSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of TopicAssignments to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceTopicAssignmentsConnection
- customFields(
- """
- List of custom fields to return. By default, returns all custom fields.
- """
- fields: [String!]
- ): JSON!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-"""Salesforce Opportunities connection, for use in pagination."""
-type SalesforceOpportunitysConnection {
- """The count of all Opportunity you could get from the connection."""
- totalCount: Int!
-
- """Pagination Information"""
- pageInfo: PageInfo!
-
- """List of Salesforce Opportunities"""
- nodes: [SalesforceOpportunity!]!
-
- """List of Opportunity edges"""
- edges: [SalesforceOpportunityEdge!]!
-}
-
-"""
-A filter to be used against Pricebook2 object types. All fields are combined with a logical ‘and.’
-"""
-input SalesforcePricebook2ConnectionFilter {
- """Filter against custom fields."""
- customField: SalesforceCustomFieldFilter
-
- """Filter by the Pricebook2's lastModifiedBy relation."""
- lastModifiedBy: SalesforceUserConnectionFilter
-
- """Filter by the Pricebook2's createdBy relation."""
- createdBy: SalesforceUserConnectionFilter
-
- """Filter by the Pricebook2's id field"""
- id: SalesforceIdFilter
-
- """Filter by the Pricebook2's isDeleted field"""
- isDeleted: SalesforceBooleanFilter
-
- """Filter by the Pricebook2's name field"""
- name: SalesforceStringFilter
-
- """Filter by the Pricebook2's createdDate field"""
- createdDate: SalesforceDateTimeFilter
-
- """Filter by the Pricebook2's createdById field"""
- createdById: SalesforceIdFilter
-
- """Filter by the Pricebook2's lastModifiedDate field"""
- lastModifiedDate: SalesforceDateTimeFilter
-
- """Filter by the Pricebook2's lastModifiedById field"""
- lastModifiedById: SalesforceIdFilter
-
- """Filter by the Pricebook2's systemModstamp field"""
- systemModstamp: SalesforceDateTimeFilter
-
- """Filter by the Pricebook2's lastViewedDate field"""
- lastViewedDate: SalesforceDateTimeFilter
-
- """Filter by the Pricebook2's lastReferencedDate field"""
- lastReferencedDate: SalesforceDateTimeFilter
-
- """Filter by the Pricebook2's isActive field"""
- isActive: SalesforceBooleanFilter
-
- """Filter by the Pricebook2's isArchived field"""
- isArchived: SalesforceBooleanFilter
-
- """Filter by the Pricebook2's description field"""
- description: SalesforceStringFilter
-
- """Filter by the Pricebook2's isStandard field"""
- isStandard: SalesforceBooleanFilter
-
- """Checks for any expressions in this list."""
- or: [SalesforcePricebook2ConnectionFilter!]
-
- """Checks for all expressions in this list."""
- and: [SalesforcePricebook2ConnectionFilter!]
-}
-
-"""
-A filter to be used against Contract object types. All fields are combined with a logical ‘and.’
-"""
-input SalesforceContractConnectionFilter {
- """Filter against custom fields."""
- customField: SalesforceCustomFieldFilter
-
- """Filter by the Contract's lastModifiedBy relation."""
- lastModifiedBy: SalesforceUserConnectionFilter
-
- """Filter by the Contract's createdBy relation."""
- createdBy: SalesforceUserConnectionFilter
-
- """Filter by the Contract's activatedBy relation."""
- activatedBy: SalesforceUserConnectionFilter
-
- """Filter by the Contract's customerSigned relation."""
- customerSigned: SalesforceContactConnectionFilter
-
- """Filter by the Contract's companySigned relation."""
- companySigned: SalesforceUserConnectionFilter
-
- """Filter by the Contract's owner relation."""
- owner: SalesforceUserConnectionFilter
-
- """Filter by the Contract's pricebook2 relation."""
- pricebook2: SalesforcePricebook2ConnectionFilter
-
- """Filter by the Contract's account relation."""
- account: SalesforceAccountConnectionFilter
-
- """Filter by the Contract's id field"""
- id: SalesforceIdFilter
-
- """Filter by the Contract's accountId field"""
- accountId: SalesforceIdFilter
-
- """Filter by the Contract's pricebook2Id field"""
- pricebook2Id: SalesforceIdFilter
-
- """Filter by the Contract's ownerExpirationNotice field"""
- ownerExpirationNotice: SalesforceStringFilter
-
- """Filter by the Contract's startDate field"""
- startDate: SalesforceDateFilter
-
- """Filter by the Contract's endDate field"""
- endDate: SalesforceDateFilter
-
- """Filter by the Contract's billingStreet field"""
- billingStreet: SalesforceStringFilter
-
- """Filter by the Contract's billingCity field"""
- billingCity: SalesforceStringFilter
-
- """Filter by the Contract's billingState field"""
- billingState: SalesforceStringFilter
-
- """Filter by the Contract's billingPostalCode field"""
- billingPostalCode: SalesforceStringFilter
-
- """Filter by the Contract's billingCountry field"""
- billingCountry: SalesforceStringFilter
-
- """Filter by the Contract's billingLatitude field"""
- billingLatitude: SalesforceFloatFilter
-
- """Filter by the Contract's billingLongitude field"""
- billingLongitude: SalesforceFloatFilter
-
- """Filter by the Contract's billingGeocodeAccuracy field"""
- billingGeocodeAccuracy: SalesforceStringFilter
-
- """Filter by the Contract's contractTerm field"""
- contractTerm: SalesforceIntFilter
-
- """Filter by the Contract's ownerId field"""
- ownerId: SalesforceIdFilter
-
- """Filter by the Contract's status field"""
- status: SalesforceStringFilter
-
- """Filter by the Contract's companySignedId field"""
- companySignedId: SalesforceIdFilter
-
- """Filter by the Contract's companySignedDate field"""
- companySignedDate: SalesforceDateFilter
-
- """Filter by the Contract's customerSignedId field"""
- customerSignedId: SalesforceIdFilter
-
- """Filter by the Contract's customerSignedTitle field"""
- customerSignedTitle: SalesforceStringFilter
-
- """Filter by the Contract's customerSignedDate field"""
- customerSignedDate: SalesforceDateFilter
-
- """Filter by the Contract's specialTerms field"""
- specialTerms: SalesforceStringFilter
-
- """Filter by the Contract's activatedById field"""
- activatedById: SalesforceIdFilter
-
- """Filter by the Contract's activatedDate field"""
- activatedDate: SalesforceDateTimeFilter
-
- """Filter by the Contract's statusCode field"""
- statusCode: SalesforceStringFilter
-
- """Filter by the Contract's isDeleted field"""
- isDeleted: SalesforceBooleanFilter
-
- """Filter by the Contract's contractNumber field"""
- contractNumber: SalesforceStringFilter
-
- """Filter by the Contract's lastApprovedDate field"""
- lastApprovedDate: SalesforceDateTimeFilter
-
- """Filter by the Contract's createdDate field"""
- createdDate: SalesforceDateTimeFilter
-
- """Filter by the Contract's createdById field"""
- createdById: SalesforceIdFilter
-
- """Filter by the Contract's lastModifiedDate field"""
- lastModifiedDate: SalesforceDateTimeFilter
-
- """Filter by the Contract's lastModifiedById field"""
- lastModifiedById: SalesforceIdFilter
-
- """Filter by the Contract's systemModstamp field"""
- systemModstamp: SalesforceDateTimeFilter
-
- """Filter by the Contract's lastActivityDate field"""
- lastActivityDate: SalesforceDateFilter
-
- """Filter by the Contract's lastViewedDate field"""
- lastViewedDate: SalesforceDateTimeFilter
-
- """Filter by the Contract's lastReferencedDate field"""
- lastReferencedDate: SalesforceDateTimeFilter
-
- """Checks for any expressions in this list."""
- or: [SalesforceContractConnectionFilter!]
-
- """Checks for all expressions in this list."""
- and: [SalesforceContractConnectionFilter!]
-}
-
-"""Field that Contracts can be sorted by"""
-enum SalesforceContractSortByFieldEnum {
- ID
- ACCOUNT_ID
- PRICEBOOK_2_ID
- OWNER_EXPIRATION_NOTICE
- START_DATE
- END_DATE
- BILLING_STREET
- BILLING_CITY
- BILLING_STATE
- BILLING_POSTAL_CODE
- BILLING_COUNTRY
- BILLING_LATITUDE
- BILLING_LONGITUDE
- BILLING_GEOCODE_ACCURACY
- CONTRACT_TERM
- OWNER_ID
- STATUS
- COMPANY_SIGNED_ID
- COMPANY_SIGNED_DATE
- CUSTOMER_SIGNED_ID
- CUSTOMER_SIGNED_TITLE
- CUSTOMER_SIGNED_DATE
- SPECIAL_TERMS
- ACTIVATED_BY_ID
- ACTIVATED_DATE
- STATUS_CODE
- IS_DELETED
- CONTRACT_NUMBER
- LAST_APPROVED_DATE
- CREATED_DATE
- CREATED_BY_ID
- LAST_MODIFIED_DATE
- LAST_MODIFIED_BY_ID
- SYSTEM_MODSTAMP
- LAST_ACTIVITY_DATE
- LAST_VIEWED_DATE
- LAST_REFERENCED_DATE
-}
-
-"""An edge in a connection."""
-type SalesforceContractEdge {
- """The item at the end of the edge."""
- node: SalesforceContract!
-
- """A cursor for use in pagination"""
- cursor: String!
-}
-
-"""Salesforce Contracts connection, for use in pagination."""
-type SalesforceContractsConnection {
- """The count of all Contract you could get from the connection."""
- totalCount: Int!
-
- """Pagination Information"""
- pageInfo: PageInfo!
-
- """List of Salesforce Contracts"""
- nodes: [SalesforceContract!]!
-
- """List of Contract edges"""
- edges: [SalesforceContractEdge!]!
-}
-
-"""Price Book"""
-type SalesforcePricebook2 implements OneGraphNode {
- """Price Book ID"""
- id: String!
-
- """Deleted"""
- isDeleted: Boolean!
-
- """Price Book Name"""
- name: String!
-
- """Created Date"""
- createdDate: String!
-
- """Created By ID"""
- createdById: String!
-
- """Created By ID"""
- createdBy: SalesforceUser!
-
- """Last Modified Date"""
- lastModifiedDate: String!
-
- """Last Modified By ID"""
- lastModifiedById: String!
-
- """Last Modified By ID"""
- lastModifiedBy: SalesforceUser!
-
- """System Modstamp"""
- systemModstamp: String!
-
- """Last Viewed Date"""
- lastViewedDate: String
-
- """Last Referenced Date"""
- lastReferencedDate: String
-
- """Active"""
- isActive: Boolean!
-
- """Archived"""
- isArchived: Boolean!
-
- """Description"""
- description: String
-
- """Is Standard Price Book"""
- isStandard: Boolean!
-
- """Collection of Salesforce Contract"""
- contracts(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceContractConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceContractSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceContractSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of Contracts to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceContractsConnection
-
- """Collection of Salesforce FlowRecordRelation"""
- flowRecordRelations(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceFlowRecordRelationConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceFlowRecordRelationSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceFlowRecordRelationsConnection
-
- """Collection of Salesforce Opportunity"""
- opportunities(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceOpportunityConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceOpportunitySortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceOpportunitySortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of Opportunities to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceOpportunitysConnection
-
- """Collection of Salesforce Order"""
- orders(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceOrderConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceOrderSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceOrderSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of Orders to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceOrdersConnection
-
- """Collection of Salesforce Pricebook2History"""
- histories(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforcePricebook2HistoryConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforcePricebook2HistorySortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforcePricebook2HistorySortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of Pricebook2Histories to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforcePricebook2HistorysConnection
-
- """Collection of Salesforce PricebookEntry"""
- pricebookEntries(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforcePricebookEntryConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforcePricebookEntrySortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforcePricebookEntrySortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of PricebookEntries to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforcePricebookEntrysConnection
- customFields(
- """
- List of custom fields to return. By default, returns all custom fields.
- """
- fields: [String!]
- ): JSON!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-"""Contract"""
-type SalesforceContract implements OneGraphNode {
- """Contract ID"""
- id: String!
-
- """Account ID"""
- accountId: String!
-
- """Account ID"""
- account: SalesforceAccount!
-
- """Price Book ID"""
- pricebook2Id: String
-
- """Price Book ID"""
- pricebook2: SalesforcePricebook2
-
- """Owner Expiration Notice"""
- ownerExpirationNotice: String
-
- """Contract Start Date"""
- startDate: String
-
- """Contract End Date"""
- endDate: String
-
- """Billing Street"""
- billingStreet: String
-
- """Billing City"""
- billingCity: String
-
- """Billing State/Province"""
- billingState: String
-
- """Billing Zip/Postal Code"""
- billingPostalCode: String
-
- """Billing Country"""
- billingCountry: String
-
- """Billing Latitude"""
- billingLatitude: Float
-
- """Billing Longitude"""
- billingLongitude: Float
-
- """Billing Geocode Accuracy"""
- billingGeocodeAccuracy: String
-
- """Billing Address"""
- billingAddress: SalesforceAddress
-
- """Contract Term"""
- contractTerm: Int
-
- """Owner ID"""
- ownerId: String!
-
- """Owner ID"""
- owner: SalesforceUser!
-
- """Status"""
- status: String!
-
- """Company Signed By ID"""
- companySignedId: String
-
- """Company Signed By ID"""
- companySigned: SalesforceUser
-
- """Company Signed Date"""
- companySignedDate: String
-
- """Customer Signed By ID"""
- customerSignedId: String
-
- """Customer Signed By ID"""
- customerSigned: SalesforceContact
-
- """Customer Signed Title"""
- customerSignedTitle: String
-
- """Customer Signed Date"""
- customerSignedDate: String
-
- """Special Terms"""
- specialTerms: String
-
- """Activated By ID"""
- activatedById: String
-
- """Activated By ID"""
- activatedBy: SalesforceUser
-
- """Activated Date"""
- activatedDate: String
-
- """Status Category"""
- statusCode: String!
-
- """Description"""
- description: String
-
- """Deleted"""
- isDeleted: Boolean!
-
- """Contract Number"""
- contractNumber: String!
-
- """Last Approved Date"""
- lastApprovedDate: String
-
- """Created Date"""
- createdDate: String!
-
- """Created By ID"""
- createdById: String!
-
- """Created By ID"""
- createdBy: SalesforceUser!
-
- """Last Modified Date"""
- lastModifiedDate: String!
-
- """Last Modified By ID"""
- lastModifiedById: String!
-
- """Last Modified By ID"""
- lastModifiedBy: SalesforceUser!
-
- """System Modstamp"""
- systemModstamp: String!
-
- """Last Activity"""
- lastActivityDate: String
-
- """Last Viewed Date"""
- lastViewedDate: String
-
- """Last Referenced Date"""
- lastReferencedDate: String
-
- """Collection of Salesforce Attachment"""
- attachments(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceAttachmentConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceAttachmentSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceAttachmentSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of Attachments to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceAttachmentsConnection
-
- """Collection of Salesforce CollaborationGroupRecord"""
- recordAssociatedGroups(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceCollaborationGroupRecordConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceCollaborationGroupRecordSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceCollaborationGroupRecordSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """
- Number of CollaborationGroupRecords to fetch. Defaults to 10. Maximum is 60.
- """
- first: Int
- ): SalesforceCollaborationGroupRecordsConnection
-
- """Collection of Salesforce ContentDocumentLink"""
- contentDocumentLinks(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceContentDocumentLinkConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceContentDocumentLinkSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceContentDocumentLinkSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """
- Number of ContentDocumentLinks to fetch. Defaults to 10. Maximum is 60.
- """
- first: Int
- ): SalesforceContentDocumentLinksConnection
-
- """Collection of Salesforce ContentVersion"""
- contentVersions(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceContentVersionConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceContentVersionSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceContentVersionSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of ContentVersions to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceContentVersionsConnection
-
- """Collection of Salesforce ContractContactRole"""
- contractContactRoles(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceContractContactRoleConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceContractContactRoleSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceContractContactRoleSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """
- Number of ContractContactRoles to fetch. Defaults to 10. Maximum is 60.
- """
- first: Int
- ): SalesforceContractContactRolesConnection
-
- """Collection of Salesforce ContractFeed"""
- feeds(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceContractFeedConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceContractFeedSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceContractFeedSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of ContractFeeds to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceContractFeedsConnection
-
- """Collection of Salesforce ContractHistory"""
- histories(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceContractHistoryConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceContractHistorySortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceContractHistorySortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of ContractHistories to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceContractHistorysConnection
-
- """Collection of Salesforce EmailMessage"""
- emails(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceEmailMessageConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceEmailMessageSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceEmailMessageSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of EmailMessages to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceEmailMessagesConnection
-
- """Collection of Salesforce EntitySubscription"""
- feedSubscriptionsForEntity(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceEntitySubscriptionConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceEntitySubscriptionSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceEntitySubscriptionSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of EntitySubscriptions to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceEntitySubscriptionsConnection
-
- """Collection of Salesforce Event"""
- events(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceEventConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceEventSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceEventSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of Events to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceEventsConnection
-
- """Collection of Salesforce FeedComment"""
- feedComments(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceFeedCommentConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceFeedCommentSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceFeedCommentSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of FeedComments to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceFeedCommentsConnection
-
- """Collection of Salesforce FeedItem"""
- feedItems(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceFeedItemConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceFeedItemSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceFeedItemSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of FeedItems to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceFeedItemsConnection
-
- """Collection of Salesforce FlowRecordRelation"""
- flowRecordRelations(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceFlowRecordRelationConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceFlowRecordRelationSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceFlowRecordRelationsConnection
-
- """Collection of Salesforce Note"""
- notes(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceNoteConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceNoteSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceNoteSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of Notes to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceNotesConnection
-
- """Collection of Salesforce Order"""
- orders(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceOrderConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceOrderSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceOrderSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of Orders to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceOrdersConnection
-
- """Collection of Salesforce ProcessInstance"""
- processInstances(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceProcessInstanceConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceProcessInstanceSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceProcessInstanceSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of ProcessInstances to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceProcessInstancesConnection
-
- """Collection of Salesforce Task"""
- tasks(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceTaskConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceTaskSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceTaskSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of Tasks to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceTasksConnection
-
- """Collection of Salesforce TopicAssignment"""
- topicAssignments(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceTopicAssignmentConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceTopicAssignmentSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceTopicAssignmentSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of TopicAssignments to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceTopicAssignmentsConnection
- customFields(
- """
- List of custom fields to return. By default, returns all custom fields.
- """
- fields: [String!]
- ): JSON!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-union SalesforceOrderOwnerUnion = SalesforceUser | SalesforceGroup
-
-"""Order"""
-type SalesforceOrder implements OneGraphNode {
- """Order ID"""
- id: String!
-
- """Owner ID"""
- ownerId: String!
-
- """Owner ID"""
- owner: SalesforceOrderOwnerUnion!
-
- """Contract ID"""
- contractId: String
-
- """Contract ID"""
- contract: SalesforceContract
-
- """Account ID"""
- accountId: String
-
- """Account ID"""
- account: SalesforceAccount
-
- """Price Book ID"""
- pricebook2Id: String
-
- """Price Book ID"""
- pricebook2: SalesforcePricebook2
-
- """Order ID"""
- originalOrderId: String
-
- """Order ID"""
- originalOrder: SalesforceOrder
-
- """Order Start Date"""
- effectiveDate: String!
-
- """Order End Date"""
- endDate: String
-
- """Reduction Order"""
- isReductionOrder: Boolean!
-
- """Status"""
- status: String!
-
- """Internal Comments"""
- description: String
-
- """Customer Authorized By ID"""
- customerAuthorizedById: String
-
- """Customer Authorized By ID"""
- customerAuthorizedBy: SalesforceContact
-
- """Customer Authorized Date"""
- customerAuthorizedDate: String
-
- """Company Authorized By ID"""
- companyAuthorizedById: String
-
- """Company Authorized By ID"""
- companyAuthorizedBy: SalesforceUser
-
- """Company Authorized Date"""
- companyAuthorizedDate: String
-
- """Order Type"""
- type: String
-
- """Billing Street"""
- billingStreet: String
-
- """Billing City"""
- billingCity: String
-
- """Billing State/Province"""
- billingState: String
-
- """Billing Zip/Postal Code"""
- billingPostalCode: String
-
- """Billing Country"""
- billingCountry: String
-
- """Billing Latitude"""
- billingLatitude: Float
-
- """Billing Longitude"""
- billingLongitude: Float
-
- """Billing Geocode Accuracy"""
- billingGeocodeAccuracy: String
-
- """Billing Address"""
- billingAddress: SalesforceAddress
-
- """Shipping Street"""
- shippingStreet: String
-
- """Shipping City"""
- shippingCity: String
-
- """Shipping State/Province"""
- shippingState: String
-
- """Shipping Zip/Postal Code"""
- shippingPostalCode: String
-
- """Shipping Country"""
- shippingCountry: String
-
- """Shipping Latitude"""
- shippingLatitude: Float
-
- """Shipping Longitude"""
- shippingLongitude: Float
-
- """Shipping Geocode Accuracy"""
- shippingGeocodeAccuracy: String
-
- """Shipping Address"""
- shippingAddress: SalesforceAddress
-
- """Order Name"""
- name: String
-
- """PO Date"""
- poDate: String
-
- """PO Number"""
- poNumber: String
-
- """Order Reference Number"""
- orderReferenceNumber: String
-
- """Bill To Contact ID"""
- billToContactId: String
-
- """Bill To Contact ID"""
- billToContact: SalesforceContact
-
- """Ship To Contact ID"""
- shipToContactId: String
-
- """Ship To Contact ID"""
- shipToContact: SalesforceContact
-
- """Activated Date"""
- activatedDate: String
-
- """Activated By ID"""
- activatedById: String
-
- """Activated By ID"""
- activatedBy: SalesforceUser
-
- """Status Category"""
- statusCode: String!
-
- """Order Number"""
- orderNumber: String!
-
- """Order Amount"""
- totalAmount: Float!
-
- """Created Date"""
- createdDate: String!
-
- """Created By ID"""
- createdById: String!
-
- """Created By ID"""
- createdBy: SalesforceUser!
-
- """Last Modified Date"""
- lastModifiedDate: String!
-
- """Last Modified By ID"""
- lastModifiedById: String!
-
- """Last Modified By ID"""
- lastModifiedBy: SalesforceUser!
-
- """Deleted"""
- isDeleted: Boolean!
-
- """System Modstamp"""
- systemModstamp: String!
-
- """Last Viewed Date"""
- lastViewedDate: String
-
- """Last Referenced Date"""
- lastReferencedDate: String
-
- """Collection of Salesforce Attachment"""
- attachments(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceAttachmentConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceAttachmentSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceAttachmentSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of Attachments to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceAttachmentsConnection
-
- """Collection of Salesforce ContentDocumentLink"""
- contentDocumentLinks(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceContentDocumentLinkConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceContentDocumentLinkSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceContentDocumentLinkSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """
- Number of ContentDocumentLinks to fetch. Defaults to 10. Maximum is 60.
- """
- first: Int
- ): SalesforceContentDocumentLinksConnection
-
- """Collection of Salesforce ContentVersion"""
- contentVersions(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceContentVersionConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceContentVersionSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceContentVersionSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of ContentVersions to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceContentVersionsConnection
-
- """Collection of Salesforce EmailMessage"""
- emails(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceEmailMessageConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceEmailMessageSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceEmailMessageSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of EmailMessages to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceEmailMessagesConnection
-
- """Collection of Salesforce EntitySubscription"""
- feedSubscriptionsForEntity(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceEntitySubscriptionConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceEntitySubscriptionSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceEntitySubscriptionSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of EntitySubscriptions to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceEntitySubscriptionsConnection
-
- """Collection of Salesforce Event"""
- events(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceEventConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceEventSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceEventSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of Events to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceEventsConnection
-
- """Collection of Salesforce FeedComment"""
- feedComments(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceFeedCommentConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceFeedCommentSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceFeedCommentSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of FeedComments to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceFeedCommentsConnection
-
- """Collection of Salesforce FeedItem"""
- feedItems(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceFeedItemConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceFeedItemSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceFeedItemSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of FeedItems to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceFeedItemsConnection
-
- """Collection of Salesforce FlowRecordRelation"""
- flowRecordRelations(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceFlowRecordRelationConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceFlowRecordRelationSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceFlowRecordRelationsConnection
-
- """Collection of Salesforce Note"""
- notes(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceNoteConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceNoteSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceNoteSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of Notes to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceNotesConnection
-
- """Collection of Salesforce Order"""
- orders(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceOrderConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceOrderSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceOrderSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of Orders to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceOrdersConnection
-
- """Collection of Salesforce OrderFeed"""
- feeds(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceOrderFeedConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceOrderFeedSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceOrderFeedSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of OrderFeeds to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceOrderFeedsConnection
-
- """Collection of Salesforce OrderHistory"""
- histories(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceOrderHistoryConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceOrderHistorySortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceOrderHistorySortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of OrderHistories to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceOrderHistorysConnection
-
- """Collection of Salesforce OrderItem"""
- orderItems(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceOrderItemConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceOrderItemSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceOrderItemSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of OrderItems to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceOrderItemsConnection
-
- """Collection of Salesforce OrderShare"""
- shares(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceOrderShareConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceOrderShareSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceOrderShareSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of OrderShares to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceOrderSharesConnection
-
- """Collection of Salesforce ProcessInstance"""
- processInstances(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceProcessInstanceConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceProcessInstanceSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceProcessInstanceSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of ProcessInstances to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceProcessInstancesConnection
-
- """Collection of Salesforce Task"""
- tasks(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceTaskConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceTaskSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceTaskSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of Tasks to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceTasksConnection
-
- """Collection of Salesforce TopicAssignment"""
- topicAssignments(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceTopicAssignmentConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceTopicAssignmentSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceTopicAssignmentSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of TopicAssignments to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceTopicAssignmentsConnection
- customFields(
- """
- List of custom fields to return. By default, returns all custom fields.
- """
- fields: [String!]
- ): JSON!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-union SalesforceOrgDeleteRequestOwnerUnion = SalesforceUser | SalesforceGroup
-
-"""Org Delete Request"""
-type SalesforceOrgDeleteRequest implements OneGraphNode {
- """Org Delete Request ID"""
- id: String!
-
- """Owner ID"""
- ownerId: String!
-
- """Owner ID"""
- owner: SalesforceOrgDeleteRequestOwnerUnion!
-
- """Deleted"""
- isDeleted: Boolean!
-
- """Name"""
- name: String!
-
- """Created Date"""
- createdDate: String!
-
- """Created By ID"""
- createdById: String!
-
- """Created By ID"""
- createdBy: SalesforceUser!
-
- """Last Modified Date"""
- lastModifiedDate: String!
-
- """Last Modified By ID"""
- lastModifiedById: String!
-
- """Last Modified By ID"""
- lastModifiedBy: SalesforceUser!
-
- """System Modstamp"""
- systemModstamp: String!
-
- """Request Type"""
- requestType: String!
-
- """Collection of Salesforce FlowRecordRelation"""
- flowRecordRelations(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceFlowRecordRelationConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceFlowRecordRelationSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceFlowRecordRelationsConnection
-
- """Collection of Salesforce ProcessInstance"""
- processInstances(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceProcessInstanceConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceProcessInstanceSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceProcessInstanceSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of ProcessInstances to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceProcessInstancesConnection
- customFields(
- """
- List of custom fields to return. By default, returns all custom fields.
- """
- fields: [String!]
- ): JSON!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-union SalesforceProcessInstanceHistoryTargetObjectUnion = SalesforceUserProvisioningRequest | SalesforceStreamingChannel | SalesforceSolution | SalesforceProduct2 | SalesforceOrgDeleteRequest | SalesforceOrder | SalesforceOpportunity | SalesforceLead | SalesforceEmailMessage | SalesforceDuplicateRecordSet | SalesforceDuplicateRecordItem | SalesforceContract | SalesforceContact | SalesforceCase | SalesforceCampaign | SalesforceAssetRelationship | SalesforceAsset | SalesforceAccount
-
-union SalesforceStreamingChannelOwnerUnion = SalesforceUser | SalesforceGroup
-
-"""Streaming Channel"""
-type SalesforceStreamingChannel implements OneGraphNode {
- """Streaming Channel Id"""
- id: String!
-
- """Owner ID"""
- ownerId: String!
-
- """Owner ID"""
- owner: SalesforceStreamingChannelOwnerUnion!
-
- """Is Deleted"""
- isDeleted: Boolean!
-
- """Streaming Channel Name"""
- name: String!
-
- """Created Date"""
- createdDate: String!
-
- """Created By ID"""
- createdById: String!
-
- """Created By ID"""
- createdBy: SalesforceUser!
-
- """Last Modified Date"""
- lastModifiedDate: String!
-
- """Last Modified By ID"""
- lastModifiedById: String!
-
- """Last Modified By ID"""
- lastModifiedBy: SalesforceUser!
-
- """System Modstamp"""
- systemModstamp: String!
-
- """Last Viewed Date"""
- lastViewedDate: String
-
- """Last Referenced Date"""
- lastReferencedDate: String
-
- """Is Dynamically Created"""
- isDynamic: Boolean!
-
- """Description"""
- description: String
-
- """Collection of Salesforce FlowRecordRelation"""
- flowRecordRelations(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceFlowRecordRelationConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceFlowRecordRelationSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceFlowRecordRelationsConnection
-
- """Collection of Salesforce ProcessInstance"""
- processInstances(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceProcessInstanceConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceProcessInstanceSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceProcessInstanceSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of ProcessInstances to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceProcessInstancesConnection
- customFields(
- """
- List of custom fields to return. By default, returns all custom fields.
- """
- fields: [String!]
- ): JSON!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-union SalesforceProcessInstanceTargetObjectUnion = SalesforceUserProvisioningRequest | SalesforceStreamingChannel | SalesforceSolution | SalesforceProduct2 | SalesforceOrgDeleteRequest | SalesforceOrder | SalesforceOpportunity | SalesforceLead | SalesforceEmailMessage | SalesforceDuplicateRecordSet | SalesforceDuplicateRecordItem | SalesforceContract | SalesforceContact | SalesforceCase | SalesforceCampaign | SalesforceAssetRelationship | SalesforceAsset | SalesforceAccount
-
-"""Field that Process Nodes can be sorted by"""
-enum SalesforceProcessNodeSortByFieldEnum {
- ID
- NAME
- DEVELOPER_NAME
- PROCESS_DEFINITION_ID
- DESCRIPTION
- SYSTEM_MODSTAMP
-}
-
-"""An edge in a connection."""
-type SalesforceProcessNodeEdge {
- """The item at the end of the edge."""
- node: SalesforceProcessNode!
-
- """A cursor for use in pagination"""
- cursor: String!
-}
-
-"""
-A filter to be used against ProcessInstanceStep object types. All fields are combined with a logical ‘and.’
-"""
-input SalesforceProcessInstanceStepConnectionFilter {
- """Filter against custom fields."""
- customField: SalesforceCustomFieldFilter
-
- """Filter by the ProcessInstanceStep's createdBy relation."""
- createdBy: SalesforceUserConnectionFilter
-
- """Filter by the ProcessInstanceStep's stepNode relation."""
- stepNode: SalesforceProcessNodeConnectionFilter
-
- """Filter by the ProcessInstanceStep's processInstance relation."""
- processInstance: SalesforceProcessInstanceConnectionFilter
-
- """Filter by the ProcessInstanceStep's id field"""
- id: SalesforceIdFilter
-
- """Filter by the ProcessInstanceStep's processInstanceId field"""
- processInstanceId: SalesforceIdFilter
-
- """Filter by the ProcessInstanceStep's stepStatus field"""
- stepStatus: SalesforceStringFilter
-
- """Filter by the ProcessInstanceStep's originalActorId field"""
- originalActorId: SalesforceIdFilter
-
- """Filter by the ProcessInstanceStep's actorId field"""
- actorId: SalesforceIdFilter
-
- """Filter by the ProcessInstanceStep's comments field"""
- comments: SalesforceStringFilter
-
- """Filter by the ProcessInstanceStep's stepNodeId field"""
- stepNodeId: SalesforceIdFilter
-
- """Filter by the ProcessInstanceStep's elapsedTimeInDays field"""
- elapsedTimeInDays: SalesforceFloatFilter
-
- """Filter by the ProcessInstanceStep's elapsedTimeInHours field"""
- elapsedTimeInHours: SalesforceFloatFilter
-
- """Filter by the ProcessInstanceStep's elapsedTimeInMinutes field"""
- elapsedTimeInMinutes: SalesforceFloatFilter
-
- """Filter by the ProcessInstanceStep's createdDate field"""
- createdDate: SalesforceDateTimeFilter
-
- """Filter by the ProcessInstanceStep's createdById field"""
- createdById: SalesforceIdFilter
-
- """Filter by the ProcessInstanceStep's systemModstamp field"""
- systemModstamp: SalesforceDateTimeFilter
-
- """Checks for any expressions in this list."""
- or: [SalesforceProcessInstanceStepConnectionFilter!]
-
- """Checks for all expressions in this list."""
- and: [SalesforceProcessInstanceStepConnectionFilter!]
-}
-
-"""Field that Process Instance Steps can be sorted by"""
-enum SalesforceProcessInstanceStepSortByFieldEnum {
- ID
- PROCESS_INSTANCE_ID
- STEP_STATUS
- ORIGINAL_ACTOR_ID
- ACTOR_ID
- COMMENTS
- STEP_NODE_ID
- ELAPSED_TIME_IN_DAYS
- ELAPSED_TIME_IN_HOURS
- ELAPSED_TIME_IN_MINUTES
- CREATED_DATE
- CREATED_BY_ID
- SYSTEM_MODSTAMP
-}
-
-"""An edge in a connection."""
-type SalesforceProcessInstanceStepEdge {
- """The item at the end of the edge."""
- node: SalesforceProcessInstanceStep!
-
- """A cursor for use in pagination"""
- cursor: String!
-}
-
-union SalesforceProcessInstanceStepActorUnion = SalesforceUser | SalesforceGroup
-
-union SalesforceProcessInstanceStepOriginalActorUnion = SalesforceUser | SalesforceGroup
-
-"""Process Instance Step"""
-type SalesforceProcessInstanceStep implements OneGraphNode {
- """Process Instance Step ID"""
- id: String!
-
- """Process Instance ID"""
- processInstanceId: String!
-
- """Process Instance ID"""
- processInstance: SalesforceProcessInstance!
-
- """Step Status"""
- stepStatus: String
-
- """Original Actor ID"""
- originalActorId: String!
-
- """Original Actor ID"""
- originalActor: SalesforceProcessInstanceStepOriginalActorUnion!
-
- """Actor ID"""
- actorId: String!
-
- """Actor ID"""
- actor: SalesforceProcessInstanceStepActorUnion!
-
- """Comments"""
- comments: String
-
- """Process Node ID"""
- stepNodeId: String
-
- """Process Node ID"""
- stepNode: SalesforceProcessNode
-
- """Elapsed Time in Days"""
- elapsedTimeInDays: Float
-
- """Elapsed Time in Hours"""
- elapsedTimeInHours: Float
-
- """Elapsed Time in Minutes"""
- elapsedTimeInMinutes: Float
-
- """Created Date"""
- createdDate: String!
-
- """Created By ID"""
- createdById: String!
-
- """Created By ID"""
- createdBy: SalesforceUser!
-
- """System Modstamp"""
- systemModstamp: String!
- customFields(
- """
- List of custom fields to return. By default, returns all custom fields.
- """
- fields: [String!]
- ): JSON!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-"""Salesforce Process Instance Steps connection, for use in pagination."""
-type SalesforceProcessInstanceStepsConnection {
- """
- The count of all Process Instance Step you could get from the connection.
- """
- totalCount: Int!
-
- """Pagination Information"""
- pageInfo: PageInfo!
-
- """List of Salesforce Process Instance Steps"""
- nodes: [SalesforceProcessInstanceStep!]!
-
- """List of Process Instance Step edges"""
- edges: [SalesforceProcessInstanceStepEdge!]!
-}
-
-"""
-A filter to be used against ProcessNode object types. All fields are combined with a logical ‘and.’
-"""
-input SalesforceProcessNodeConnectionFilter {
- """Filter against custom fields."""
- customField: SalesforceCustomFieldFilter
-
- """Filter by the ProcessNode's processDefinition relation."""
- processDefinition: SalesforceProcessDefinitionConnectionFilter
-
- """Filter by the ProcessNode's id field"""
- id: SalesforceIdFilter
-
- """Filter by the ProcessNode's name field"""
- name: SalesforceStringFilter
-
- """Filter by the ProcessNode's developerName field"""
- developerName: SalesforceStringFilter
-
- """Filter by the ProcessNode's processDefinitionId field"""
- processDefinitionId: SalesforceIdFilter
-
- """Filter by the ProcessNode's description field"""
- description: SalesforceStringFilter
-
- """Filter by the ProcessNode's systemModstamp field"""
- systemModstamp: SalesforceDateTimeFilter
-
- """Checks for any expressions in this list."""
- or: [SalesforceProcessNodeConnectionFilter!]
-
- """Checks for all expressions in this list."""
- and: [SalesforceProcessNodeConnectionFilter!]
-}
-
-"""
-A filter to be used against ProcessInstanceNode object types. All fields are combined with a logical ‘and.’
-"""
-input SalesforceProcessInstanceNodeConnectionFilter {
- """Filter against custom fields."""
- customField: SalesforceCustomFieldFilter
-
- """Filter by the ProcessInstanceNode's lastActor relation."""
- lastActor: SalesforceUserConnectionFilter
-
- """Filter by the ProcessInstanceNode's processNode relation."""
- processNode: SalesforceProcessNodeConnectionFilter
-
- """Filter by the ProcessInstanceNode's processInstance relation."""
- processInstance: SalesforceProcessInstanceConnectionFilter
-
- """Filter by the ProcessInstanceNode's lastModifiedBy relation."""
- lastModifiedBy: SalesforceUserConnectionFilter
-
- """Filter by the ProcessInstanceNode's createdBy relation."""
- createdBy: SalesforceUserConnectionFilter
-
- """Filter by the ProcessInstanceNode's id field"""
- id: SalesforceIdFilter
-
- """Filter by the ProcessInstanceNode's isDeleted field"""
- isDeleted: SalesforceBooleanFilter
-
- """Filter by the ProcessInstanceNode's createdDate field"""
- createdDate: SalesforceDateTimeFilter
-
- """Filter by the ProcessInstanceNode's createdById field"""
- createdById: SalesforceIdFilter
-
- """Filter by the ProcessInstanceNode's lastModifiedDate field"""
- lastModifiedDate: SalesforceDateTimeFilter
-
- """Filter by the ProcessInstanceNode's lastModifiedById field"""
- lastModifiedById: SalesforceIdFilter
-
- """Filter by the ProcessInstanceNode's systemModstamp field"""
- systemModstamp: SalesforceDateTimeFilter
-
- """Filter by the ProcessInstanceNode's processInstanceId field"""
- processInstanceId: SalesforceIdFilter
-
- """Filter by the ProcessInstanceNode's processNodeId field"""
- processNodeId: SalesforceIdFilter
-
- """Filter by the ProcessInstanceNode's nodeStatus field"""
- nodeStatus: SalesforceStringFilter
-
- """Filter by the ProcessInstanceNode's completedDate field"""
- completedDate: SalesforceDateTimeFilter
-
- """Filter by the ProcessInstanceNode's lastActorId field"""
- lastActorId: SalesforceIdFilter
-
- """Filter by the ProcessInstanceNode's processNodeName field"""
- processNodeName: SalesforceStringFilter
-
- """Filter by the ProcessInstanceNode's elapsedTimeInDays field"""
- elapsedTimeInDays: SalesforceFloatFilter
-
- """Filter by the ProcessInstanceNode's elapsedTimeInHours field"""
- elapsedTimeInHours: SalesforceFloatFilter
-
- """Filter by the ProcessInstanceNode's elapsedTimeInMinutes field"""
- elapsedTimeInMinutes: SalesforceFloatFilter
-
- """Checks for any expressions in this list."""
- or: [SalesforceProcessInstanceNodeConnectionFilter!]
-
- """Checks for all expressions in this list."""
- and: [SalesforceProcessInstanceNodeConnectionFilter!]
-}
-
-"""Field that Process Instance Nodes can be sorted by"""
-enum SalesforceProcessInstanceNodeSortByFieldEnum {
- ID
- IS_DELETED
- CREATED_DATE
- CREATED_BY_ID
- LAST_MODIFIED_DATE
- LAST_MODIFIED_BY_ID
- SYSTEM_MODSTAMP
- PROCESS_INSTANCE_ID
- PROCESS_NODE_ID
- NODE_STATUS
- COMPLETED_DATE
- LAST_ACTOR_ID
- PROCESS_NODE_NAME
- ELAPSED_TIME_IN_DAYS
- ELAPSED_TIME_IN_HOURS
- ELAPSED_TIME_IN_MINUTES
-}
-
-"""An edge in a connection."""
-type SalesforceProcessInstanceNodeEdge {
- """The item at the end of the edge."""
- node: SalesforceProcessInstanceNode!
-
- """A cursor for use in pagination"""
- cursor: String!
-}
-
-"""Process Instance Node"""
-type SalesforceProcessInstanceNode implements OneGraphNode {
- """Process Instance Node ID"""
- id: String!
-
- """Deleted"""
- isDeleted: Boolean!
-
- """Created Date"""
- createdDate: String!
-
- """Created By ID"""
- createdById: String!
-
- """Created By ID"""
- createdBy: SalesforceUser!
-
- """Last Modified Date"""
- lastModifiedDate: String!
-
- """Last Modified By ID"""
- lastModifiedById: String!
-
- """Last Modified By ID"""
- lastModifiedBy: SalesforceUser!
-
- """System Modstamp"""
- systemModstamp: String!
-
- """Process Instance ID"""
- processInstanceId: String!
-
- """Process Instance ID"""
- processInstance: SalesforceProcessInstance!
-
- """Process Node ID"""
- processNodeId: String!
-
- """Process Node ID"""
- processNode: SalesforceProcessNode!
-
- """Node Status"""
- nodeStatus: String
-
- """Completed Date"""
- completedDate: String
-
- """User ID"""
- lastActorId: String
-
- """User ID"""
- lastActor: SalesforceUser
-
- """Name"""
- processNodeName: String
-
- """Elapsed Time in Days"""
- elapsedTimeInDays: Float
-
- """Elapsed Time in Hours"""
- elapsedTimeInHours: Float
-
- """Elapsed Time in Minutes"""
- elapsedTimeInMinutes: Float
-
- """Collection of Salesforce FlowRecordRelation"""
- flowRecordRelations(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceFlowRecordRelationConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceFlowRecordRelationSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceFlowRecordRelationsConnection
- customFields(
- """
- List of custom fields to return. By default, returns all custom fields.
- """
- fields: [String!]
- ): JSON!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-"""Salesforce Process Instance Nodes connection, for use in pagination."""
-type SalesforceProcessInstanceNodesConnection {
- """
- The count of all Process Instance Node you could get from the connection.
- """
- totalCount: Int!
-
- """Pagination Information"""
- pageInfo: PageInfo!
-
- """List of Salesforce Process Instance Nodes"""
- nodes: [SalesforceProcessInstanceNode!]!
-
- """List of Process Instance Node edges"""
- edges: [SalesforceProcessInstanceNodeEdge!]!
-}
-
-"""Process Node"""
-type SalesforceProcessNode implements OneGraphNode {
- """Process Node ID"""
- id: String!
-
- """Name"""
- name: String!
-
- """Unique Name"""
- developerName: String!
-
- """Approval Process ID"""
- processDefinitionId: String!
-
- """Approval Process ID"""
- processDefinition: SalesforceProcessDefinition!
-
- """Description"""
- description: String
-
- """System Modstamp"""
- systemModstamp: String!
-
- """Collection of Salesforce ProcessInstanceNode"""
- processInstanceNodes(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceProcessInstanceNodeConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceProcessInstanceNodeSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceProcessInstanceNodeSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """
- Number of ProcessInstanceNodes to fetch. Defaults to 10. Maximum is 60.
- """
- first: Int
- ): SalesforceProcessInstanceNodesConnection
-
- """Collection of Salesforce ProcessInstanceStep"""
- processInstanceSteps(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceProcessInstanceStepConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceProcessInstanceStepSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceProcessInstanceStepSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """
- Number of ProcessInstanceSteps to fetch. Defaults to 10. Maximum is 60.
- """
- first: Int
- ): SalesforceProcessInstanceStepsConnection
- customFields(
- """
- List of custom fields to return. By default, returns all custom fields.
- """
- fields: [String!]
- ): JSON!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-"""Salesforce Process Nodes connection, for use in pagination."""
-type SalesforceProcessNodesConnection {
- """The count of all Process Node you could get from the connection."""
- totalCount: Int!
-
- """Pagination Information"""
- pageInfo: PageInfo!
-
- """List of Salesforce Process Nodes"""
- nodes: [SalesforceProcessNode!]!
-
- """List of Process Node edges"""
- edges: [SalesforceProcessNodeEdge!]!
-}
-
-"""
-A filter to be used against ProcessDefinition object types. All fields are combined with a logical ‘and.’
-"""
-input SalesforceProcessDefinitionConnectionFilter {
- """Filter against custom fields."""
- customField: SalesforceCustomFieldFilter
-
- """Filter by the ProcessDefinition's lastModifiedBy relation."""
- lastModifiedBy: SalesforceUserConnectionFilter
-
- """Filter by the ProcessDefinition's createdBy relation."""
- createdBy: SalesforceUserConnectionFilter
-
- """Filter by the ProcessDefinition's id field"""
- id: SalesforceIdFilter
-
- """Filter by the ProcessDefinition's name field"""
- name: SalesforceStringFilter
-
- """Filter by the ProcessDefinition's developerName field"""
- developerName: SalesforceStringFilter
-
- """Filter by the ProcessDefinition's type field"""
- type: SalesforceStringFilter
-
- """Filter by the ProcessDefinition's description field"""
- description: SalesforceStringFilter
-
- """Filter by the ProcessDefinition's tableEnumOrId field"""
- tableEnumOrId: SalesforceStringFilter
-
- """Filter by the ProcessDefinition's lockType field"""
- lockType: SalesforceStringFilter
-
- """Filter by the ProcessDefinition's state field"""
- state: SalesforceStringFilter
-
- """Filter by the ProcessDefinition's createdDate field"""
- createdDate: SalesforceDateTimeFilter
-
- """Filter by the ProcessDefinition's createdById field"""
- createdById: SalesforceIdFilter
-
- """Filter by the ProcessDefinition's lastModifiedDate field"""
- lastModifiedDate: SalesforceDateTimeFilter
-
- """Filter by the ProcessDefinition's lastModifiedById field"""
- lastModifiedById: SalesforceIdFilter
-
- """Filter by the ProcessDefinition's systemModstamp field"""
- systemModstamp: SalesforceDateTimeFilter
-
- """Checks for any expressions in this list."""
- or: [SalesforceProcessDefinitionConnectionFilter!]
-
- """Checks for all expressions in this list."""
- and: [SalesforceProcessDefinitionConnectionFilter!]
-}
-
-"""
-A filter to be used against ProcessInstance object types. All fields are combined with a logical ‘and.’
-"""
-input SalesforceProcessInstanceConnectionFilter {
- """Filter against custom fields."""
- customField: SalesforceCustomFieldFilter
-
- """Filter by the ProcessInstance's lastModifiedBy relation."""
- lastModifiedBy: SalesforceUserConnectionFilter
-
- """Filter by the ProcessInstance's createdBy relation."""
- createdBy: SalesforceUserConnectionFilter
-
- """Filter by the ProcessInstance's submittedBy relation."""
- submittedBy: SalesforceUserConnectionFilter
-
- """Filter by the ProcessInstance's lastActor relation."""
- lastActor: SalesforceUserConnectionFilter
-
- """Filter by the ProcessInstance's processDefinition relation."""
- processDefinition: SalesforceProcessDefinitionConnectionFilter
-
- """Filter by the ProcessInstance's id field"""
- id: SalesforceIdFilter
-
- """Filter by the ProcessInstance's processDefinitionId field"""
- processDefinitionId: SalesforceIdFilter
-
- """Filter by the ProcessInstance's targetObjectId field"""
- targetObjectId: SalesforceIdFilter
-
- """Filter by the ProcessInstance's status field"""
- status: SalesforceStringFilter
-
- """Filter by the ProcessInstance's completedDate field"""
- completedDate: SalesforceDateTimeFilter
-
- """Filter by the ProcessInstance's lastActorId field"""
- lastActorId: SalesforceIdFilter
-
- """Filter by the ProcessInstance's elapsedTimeInDays field"""
- elapsedTimeInDays: SalesforceFloatFilter
-
- """Filter by the ProcessInstance's elapsedTimeInHours field"""
- elapsedTimeInHours: SalesforceFloatFilter
-
- """Filter by the ProcessInstance's elapsedTimeInMinutes field"""
- elapsedTimeInMinutes: SalesforceFloatFilter
-
- """Filter by the ProcessInstance's submittedById field"""
- submittedById: SalesforceIdFilter
-
- """Filter by the ProcessInstance's isDeleted field"""
- isDeleted: SalesforceBooleanFilter
-
- """Filter by the ProcessInstance's createdDate field"""
- createdDate: SalesforceDateTimeFilter
-
- """Filter by the ProcessInstance's createdById field"""
- createdById: SalesforceIdFilter
-
- """Filter by the ProcessInstance's lastModifiedDate field"""
- lastModifiedDate: SalesforceDateTimeFilter
-
- """Filter by the ProcessInstance's lastModifiedById field"""
- lastModifiedById: SalesforceIdFilter
-
- """Filter by the ProcessInstance's systemModstamp field"""
- systemModstamp: SalesforceDateTimeFilter
-
- """Checks for any expressions in this list."""
- or: [SalesforceProcessInstanceConnectionFilter!]
-
- """Checks for all expressions in this list."""
- and: [SalesforceProcessInstanceConnectionFilter!]
-}
-
-"""Field that Process Instances can be sorted by"""
-enum SalesforceProcessInstanceSortByFieldEnum {
- ID
- PROCESS_DEFINITION_ID
- TARGET_OBJECT_ID
- STATUS
- COMPLETED_DATE
- LAST_ACTOR_ID
- ELAPSED_TIME_IN_DAYS
- ELAPSED_TIME_IN_HOURS
- ELAPSED_TIME_IN_MINUTES
- SUBMITTED_BY_ID
- IS_DELETED
- CREATED_DATE
- CREATED_BY_ID
- LAST_MODIFIED_DATE
- LAST_MODIFIED_BY_ID
- SYSTEM_MODSTAMP
-}
-
-"""Process Definition"""
-type SalesforceProcessDefinition implements OneGraphNode {
- """Approval Process ID"""
- id: String!
-
- """Name"""
- name: String!
-
- """Unique Name"""
- developerName: String!
-
- """Process Definition Type"""
- type: String!
-
- """Description"""
- description: String
-
- """Custom Object Definition ID"""
- tableEnumOrId: String!
-
- """Lock Type"""
- lockType: String!
-
- """State"""
- state: String!
-
- """Created Date"""
- createdDate: String!
-
- """Created By ID"""
- createdById: String!
-
- """Created By ID"""
- createdBy: SalesforceUser!
-
- """Last Modified Date"""
- lastModifiedDate: String!
-
- """Last Modified By ID"""
- lastModifiedById: String!
-
- """Last Modified By ID"""
- lastModifiedBy: SalesforceUser!
-
- """System Modstamp"""
- systemModstamp: String!
-
- """Collection of Salesforce ProcessInstance"""
- processInstances(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceProcessInstanceConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceProcessInstanceSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceProcessInstanceSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of ProcessInstances to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceProcessInstancesConnection
-
- """Collection of Salesforce ProcessNode"""
- processNodes(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceProcessNodeConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceProcessNodeSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceProcessNodeSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of ProcessNodes to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceProcessNodesConnection
- customFields(
- """
- List of custom fields to return. By default, returns all custom fields.
- """
- fields: [String!]
- ): JSON!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-"""Process Instance"""
-type SalesforceProcessInstance implements OneGraphNode {
- """Process Instance ID"""
- id: String!
-
- """Approval Process ID"""
- processDefinitionId: String!
-
- """Approval Process ID"""
- processDefinition: SalesforceProcessDefinition!
-
- """Target Object ID"""
- targetObjectId: String!
-
- """Target Object ID"""
- targetObject: SalesforceProcessInstanceTargetObjectUnion!
-
- """Status"""
- status: String!
-
- """Completed Date"""
- completedDate: String
-
- """User ID"""
- lastActorId: String
-
- """User ID"""
- lastActor: SalesforceUser
-
- """Elapsed Time in Days"""
- elapsedTimeInDays: Float
-
- """Elapsed Time in Hours"""
- elapsedTimeInHours: Float
-
- """Elapsed Time in Minutes"""
- elapsedTimeInMinutes: Float
-
- """User ID"""
- submittedById: String
-
- """User ID"""
- submittedBy: SalesforceUser
-
- """Deleted"""
- isDeleted: Boolean!
-
- """Created Date"""
- createdDate: String!
-
- """Created By ID"""
- createdById: String!
-
- """Created By ID"""
- createdBy: SalesforceUser!
-
- """Last Modified Date"""
- lastModifiedDate: String!
-
- """Last Modified By ID"""
- lastModifiedById: String!
-
- """Last Modified By ID"""
- lastModifiedBy: SalesforceUser!
-
- """System Modstamp"""
- systemModstamp: String!
-
- """Collection of Salesforce FlowRecordRelation"""
- flowRecordRelations(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceFlowRecordRelationConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceFlowRecordRelationSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceFlowRecordRelationsConnection
-
- """Collection of Salesforce ProcessInstanceNode"""
- nodes(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceProcessInstanceNodeConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceProcessInstanceNodeSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceProcessInstanceNodeSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """
- Number of ProcessInstanceNodes to fetch. Defaults to 10. Maximum is 60.
- """
- first: Int
- ): SalesforceProcessInstanceNodesConnection
-
- """Collection of Salesforce ProcessInstanceStep"""
- steps(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceProcessInstanceStepConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceProcessInstanceStepSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceProcessInstanceStepSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """
- Number of ProcessInstanceSteps to fetch. Defaults to 10. Maximum is 60.
- """
- first: Int
- ): SalesforceProcessInstanceStepsConnection
-
- """Collection of Salesforce ProcessInstanceWorkitem"""
- workitems(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceProcessInstanceWorkitemConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceProcessInstanceWorkitemSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceProcessInstanceWorkitemSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """
- Number of ProcessInstanceWorkitems to fetch. Defaults to 10. Maximum is 60.
- """
- first: Int
- ): SalesforceProcessInstanceWorkitemsConnection
- customFields(
- """
- List of custom fields to return. By default, returns all custom fields.
- """
- fields: [String!]
- ): JSON!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-"""Salesforce Process Instances connection, for use in pagination."""
-type SalesforceProcessInstancesConnection {
- """The count of all Process Instance you could get from the connection."""
- totalCount: Int!
-
- """Pagination Information"""
- pageInfo: PageInfo!
-
- """List of Salesforce Process Instances"""
- nodes: [SalesforceProcessInstance!]!
-
- """List of Process Instance edges"""
- edges: [SalesforceProcessInstanceEdge!]!
-}
-
-"""
-A filter to be used against UserProvAccountStaging object types. All fields are combined with a logical ‘and.’
-"""
-input SalesforceUserProvAccountStagingConnectionFilter {
- """Filter against custom fields."""
- customField: SalesforceCustomFieldFilter
-
- """Filter by the UserProvAccountStaging's salesforceUser relation."""
- salesforceUser: SalesforceUserConnectionFilter
-
- """Filter by the UserProvAccountStaging's connectedApp relation."""
- connectedApp: SalesforceConnectedApplicationConnectionFilter
-
- """Filter by the UserProvAccountStaging's lastModifiedBy relation."""
- lastModifiedBy: SalesforceUserConnectionFilter
-
- """Filter by the UserProvAccountStaging's createdBy relation."""
- createdBy: SalesforceUserConnectionFilter
-
- """Filter by the UserProvAccountStaging's id field"""
- id: SalesforceIdFilter
-
- """Filter by the UserProvAccountStaging's isDeleted field"""
- isDeleted: SalesforceBooleanFilter
-
- """Filter by the UserProvAccountStaging's name field"""
- name: SalesforceStringFilter
-
- """Filter by the UserProvAccountStaging's createdDate field"""
- createdDate: SalesforceDateTimeFilter
-
- """Filter by the UserProvAccountStaging's createdById field"""
- createdById: SalesforceIdFilter
-
- """Filter by the UserProvAccountStaging's lastModifiedDate field"""
- lastModifiedDate: SalesforceDateTimeFilter
-
- """Filter by the UserProvAccountStaging's lastModifiedById field"""
- lastModifiedById: SalesforceIdFilter
-
- """Filter by the UserProvAccountStaging's systemModstamp field"""
- systemModstamp: SalesforceDateTimeFilter
-
- """Filter by the UserProvAccountStaging's connectedAppId field"""
- connectedAppId: SalesforceIdFilter
-
- """Filter by the UserProvAccountStaging's salesforceUserId field"""
- salesforceUserId: SalesforceIdFilter
-
- """Filter by the UserProvAccountStaging's externalUserId field"""
- externalUserId: SalesforceStringFilter
-
- """Filter by the UserProvAccountStaging's externalUsername field"""
- externalUsername: SalesforceStringFilter
-
- """Filter by the UserProvAccountStaging's externalEmail field"""
- externalEmail: SalesforceStringFilter
-
- """Filter by the UserProvAccountStaging's externalFirstName field"""
- externalFirstName: SalesforceStringFilter
-
- """Filter by the UserProvAccountStaging's externalLastName field"""
- externalLastName: SalesforceStringFilter
-
- """Filter by the UserProvAccountStaging's linkState field"""
- linkState: SalesforceStringFilter
-
- """Filter by the UserProvAccountStaging's status field"""
- status: SalesforceStringFilter
-
- """Checks for any expressions in this list."""
- or: [SalesforceUserProvAccountStagingConnectionFilter!]
-
- """Checks for all expressions in this list."""
- and: [SalesforceUserProvAccountStagingConnectionFilter!]
-}
-
-"""Field that User Provisioning Account Stagings can be sorted by"""
-enum SalesforceUserProvAccountStagingSortByFieldEnum {
- ID
- IS_DELETED
- NAME
- CREATED_DATE
- CREATED_BY_ID
- LAST_MODIFIED_DATE
- LAST_MODIFIED_BY_ID
- SYSTEM_MODSTAMP
- CONNECTED_APP_ID
- SALESFORCE_USER_ID
- EXTERNAL_USER_ID
- EXTERNAL_USERNAME
- EXTERNAL_EMAIL
- EXTERNAL_FIRST_NAME
- EXTERNAL_LAST_NAME
- LINK_STATE
- STATUS
-}
-
-"""An edge in a connection."""
-type SalesforceUserProvAccountStagingEdge {
- """The item at the end of the edge."""
- node: SalesforceUserProvAccountStaging!
-
- """A cursor for use in pagination"""
- cursor: String!
-}
-
-"""User Provisioning Account Staging"""
-type SalesforceUserProvAccountStaging implements OneGraphNode {
- """User Provisioning Account Staging Id"""
- id: String!
-
- """Deleted"""
- isDeleted: Boolean!
-
- """Name"""
- name: String!
-
- """Created Date"""
- createdDate: String!
-
- """Created By ID"""
- createdById: String!
-
- """Created By ID"""
- createdBy: SalesforceUser!
-
- """Last Modified Date"""
- lastModifiedDate: String!
-
- """Last Modified By ID"""
- lastModifiedById: String!
-
- """Last Modified By ID"""
- lastModifiedBy: SalesforceUser!
-
- """System Modstamp"""
- systemModstamp: String!
-
- """Connected App ID"""
- connectedAppId: String
-
- """Connected App ID"""
- connectedApp: SalesforceConnectedApplication
-
- """User ID"""
- salesforceUserId: String
-
- """User ID"""
- salesforceUser: SalesforceUser
-
- """External User Id"""
- externalUserId: String
-
- """External Username"""
- externalUsername: String
-
- """External Email"""
- externalEmail: String
-
- """External First Name"""
- externalFirstName: String
-
- """External Last Name"""
- externalLastName: String
-
- """Link State"""
- linkState: String!
-
- """Status"""
- status: String!
-
- """Collection of Salesforce FlowRecordRelation"""
- flowRecordRelations(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceFlowRecordRelationConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceFlowRecordRelationSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceFlowRecordRelationsConnection
- customFields(
- """
- List of custom fields to return. By default, returns all custom fields.
- """
- fields: [String!]
- ): JSON!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-"""
-Salesforce User Provisioning Account Stagings connection, for use in pagination.
-"""
-type SalesforceUserProvAccountStagingsConnection {
- """
- The count of all User Provisioning Account Staging you could get from the connection.
- """
- totalCount: Int!
-
- """Pagination Information"""
- pageInfo: PageInfo!
-
- """List of Salesforce User Provisioning Account Stagings"""
- nodes: [SalesforceUserProvAccountStaging!]!
-
- """List of User Provisioning Account Staging edges"""
- edges: [SalesforceUserProvAccountStagingEdge!]!
-}
-
-"""Field that User Provisioning Accounts can be sorted by"""
-enum SalesforceUserProvAccountSortByFieldEnum {
- ID
- IS_DELETED
- NAME
- CREATED_DATE
- CREATED_BY_ID
- LAST_MODIFIED_DATE
- LAST_MODIFIED_BY_ID
- SYSTEM_MODSTAMP
- SALESFORCE_USER_ID
- CONNECTED_APP_ID
- EXTERNAL_USER_ID
- EXTERNAL_USERNAME
- EXTERNAL_EMAIL
- EXTERNAL_FIRST_NAME
- EXTERNAL_LAST_NAME
- LINK_STATE
- STATUS
- DELETED_DATE
- IS_KNOWN_LINK
-}
-
-"""An edge in a connection."""
-type SalesforceUserProvAccountEdge {
- """The item at the end of the edge."""
- node: SalesforceUserProvAccount!
-
- """A cursor for use in pagination"""
- cursor: String!
-}
-
-"""User Provisioning Account"""
-type SalesforceUserProvAccount implements OneGraphNode {
- """User Provisioning Account ID"""
- id: String!
-
- """Deleted"""
- isDeleted: Boolean!
-
- """Name"""
- name: String!
-
- """Created Date"""
- createdDate: String!
-
- """Created By ID"""
- createdById: String!
-
- """Created By ID"""
- createdBy: SalesforceUser!
-
- """Last Modified Date"""
- lastModifiedDate: String!
-
- """Last Modified By ID"""
- lastModifiedById: String!
-
- """Last Modified By ID"""
- lastModifiedBy: SalesforceUser!
-
- """System Modstamp"""
- systemModstamp: String!
-
- """User ID"""
- salesforceUserId: String
-
- """User ID"""
- salesforceUser: SalesforceUser
-
- """Connected App ID"""
- connectedAppId: String
-
- """Connected App ID"""
- connectedApp: SalesforceConnectedApplication
-
- """External User Id"""
- externalUserId: String
-
- """External Username"""
- externalUsername: String
-
- """External Email"""
- externalEmail: String
-
- """External First Name"""
- externalFirstName: String
-
- """External Last Name"""
- externalLastName: String
-
- """Link State"""
- linkState: String!
-
- """Status"""
- status: String!
-
- """Deleted Date"""
- deletedDate: String
-
- """Manual Override"""
- isKnownLink: Boolean!
-
- """Collection of Salesforce FlowRecordRelation"""
- flowRecordRelations(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceFlowRecordRelationConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceFlowRecordRelationSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceFlowRecordRelationsConnection
-
- """Collection of Salesforce UserProvisioningRequest"""
- userProvisioningRequests(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceUserProvisioningRequestConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceUserProvisioningRequestSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceUserProvisioningRequestSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """
- Number of UserProvisioningRequests to fetch. Defaults to 10. Maximum is 60.
- """
- first: Int
- ): SalesforceUserProvisioningRequestsConnection
- customFields(
- """
- List of custom fields to return. By default, returns all custom fields.
- """
- fields: [String!]
- ): JSON!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-"""
-Salesforce User Provisioning Accounts connection, for use in pagination.
-"""
-type SalesforceUserProvAccountsConnection {
- """
- The count of all User Provisioning Account you could get from the connection.
- """
- totalCount: Int!
-
- """Pagination Information"""
- pageInfo: PageInfo!
-
- """List of Salesforce User Provisioning Accounts"""
- nodes: [SalesforceUserProvAccount!]!
-
- """List of User Provisioning Account edges"""
- edges: [SalesforceUserProvAccountEdge!]!
-}
-
-"""
-A filter to be used against UserAppMenuCustomization object types. All fields are combined with a logical ‘and.’
-"""
-input SalesforceUserAppMenuCustomizationConnectionFilter {
- """Filter against custom fields."""
- customField: SalesforceCustomFieldFilter
-
- """Filter by the UserAppMenuCustomization's application relation."""
- application: SalesforceConnectedApplicationConnectionFilter
-
- """Filter by the UserAppMenuCustomization's lastModifiedBy relation."""
- lastModifiedBy: SalesforceUserConnectionFilter
-
- """Filter by the UserAppMenuCustomization's createdBy relation."""
- createdBy: SalesforceUserConnectionFilter
-
- """Filter by the UserAppMenuCustomization's id field"""
- id: SalesforceIdFilter
-
- """Filter by the UserAppMenuCustomization's ownerId field"""
- ownerId: SalesforceIdFilter
-
- """Filter by the UserAppMenuCustomization's isDeleted field"""
- isDeleted: SalesforceBooleanFilter
-
- """Filter by the UserAppMenuCustomization's createdDate field"""
- createdDate: SalesforceDateTimeFilter
-
- """Filter by the UserAppMenuCustomization's createdById field"""
- createdById: SalesforceIdFilter
-
- """Filter by the UserAppMenuCustomization's lastModifiedDate field"""
- lastModifiedDate: SalesforceDateTimeFilter
-
- """Filter by the UserAppMenuCustomization's lastModifiedById field"""
- lastModifiedById: SalesforceIdFilter
-
- """Filter by the UserAppMenuCustomization's systemModstamp field"""
- systemModstamp: SalesforceDateTimeFilter
-
- """Filter by the UserAppMenuCustomization's applicationId field"""
- applicationId: SalesforceIdFilter
-
- """Filter by the UserAppMenuCustomization's sortOrder field"""
- sortOrder: SalesforceIntFilter
-
- """Checks for any expressions in this list."""
- or: [SalesforceUserAppMenuCustomizationConnectionFilter!]
-
- """Checks for all expressions in this list."""
- and: [SalesforceUserAppMenuCustomizationConnectionFilter!]
-}
-
-"""Field that UserAppMenuCustomizations can be sorted by"""
-enum SalesforceUserAppMenuCustomizationSortByFieldEnum {
- ID
- OWNER_ID
- IS_DELETED
- CREATED_DATE
- CREATED_BY_ID
- LAST_MODIFIED_DATE
- LAST_MODIFIED_BY_ID
- SYSTEM_MODSTAMP
- APPLICATION_ID
- SORT_ORDER
-}
-
-"""An edge in a connection."""
-type SalesforceUserAppMenuCustomizationEdge {
- """The item at the end of the edge."""
- node: SalesforceUserAppMenuCustomization!
-
- """A cursor for use in pagination"""
- cursor: String!
-}
-
-union SalesforceUserAppMenuCustomizationOwnerUnion = SalesforceUser | SalesforceGroup
-
-"""UserAppMenuCustomization"""
-type SalesforceUserAppMenuCustomization implements OneGraphNode {
- """UserAppMenuCustomization ID"""
- id: String!
-
- """Owner ID"""
- ownerId: String!
-
- """Owner ID"""
- owner: SalesforceUserAppMenuCustomizationOwnerUnion!
-
- """Deleted"""
- isDeleted: Boolean!
-
- """Created Date"""
- createdDate: String!
-
- """Created By ID"""
- createdById: String!
-
- """Created By ID"""
- createdBy: SalesforceUser!
-
- """Last Modified Date"""
- lastModifiedDate: String!
-
- """Last Modified By ID"""
- lastModifiedById: String!
-
- """Last Modified By ID"""
- lastModifiedBy: SalesforceUser!
-
- """System Modstamp"""
- systemModstamp: String!
-
- """Application ID"""
- applicationId: String
-
- """Application ID"""
- application: SalesforceConnectedApplication
-
- """Sort Order"""
- sortOrder: Int
-
- """Collection of Salesforce FlowRecordRelation"""
- flowRecordRelations(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceFlowRecordRelationConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceFlowRecordRelationSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceFlowRecordRelationsConnection
- customFields(
- """
- List of custom fields to return. By default, returns all custom fields.
- """
- fields: [String!]
- ): JSON!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-"""
-Salesforce UserAppMenuCustomizations connection, for use in pagination.
-"""
-type SalesforceUserAppMenuCustomizationsConnection {
- """
- The count of all UserAppMenuCustomization you could get from the connection.
- """
- totalCount: Int!
-
- """Pagination Information"""
- pageInfo: PageInfo!
-
- """List of Salesforce UserAppMenuCustomizations"""
- nodes: [SalesforceUserAppMenuCustomization!]!
-
- """List of UserAppMenuCustomization edges"""
- edges: [SalesforceUserAppMenuCustomizationEdge!]!
-}
-
-"""
-A filter to be used against InstalledMobileApp object types. All fields are combined with a logical ‘and.’
-"""
-input SalesforceInstalledMobileAppConnectionFilter {
- """Filter against custom fields."""
- customField: SalesforceCustomFieldFilter
-
- """Filter by the InstalledMobileApp's connectedApplication relation."""
- connectedApplication: SalesforceConnectedApplicationConnectionFilter
-
- """Filter by the InstalledMobileApp's user relation."""
- user: SalesforceUserConnectionFilter
-
- """Filter by the InstalledMobileApp's lastModifiedBy relation."""
- lastModifiedBy: SalesforceUserConnectionFilter
-
- """Filter by the InstalledMobileApp's createdBy relation."""
- createdBy: SalesforceUserConnectionFilter
-
- """Filter by the InstalledMobileApp's id field"""
- id: SalesforceIdFilter
-
- """Filter by the InstalledMobileApp's isDeleted field"""
- isDeleted: SalesforceBooleanFilter
-
- """Filter by the InstalledMobileApp's name field"""
- name: SalesforceStringFilter
-
- """Filter by the InstalledMobileApp's createdDate field"""
- createdDate: SalesforceDateTimeFilter
-
- """Filter by the InstalledMobileApp's createdById field"""
- createdById: SalesforceIdFilter
-
- """Filter by the InstalledMobileApp's lastModifiedDate field"""
- lastModifiedDate: SalesforceDateTimeFilter
-
- """Filter by the InstalledMobileApp's lastModifiedById field"""
- lastModifiedById: SalesforceIdFilter
-
- """Filter by the InstalledMobileApp's systemModstamp field"""
- systemModstamp: SalesforceDateTimeFilter
-
- """Filter by the InstalledMobileApp's status field"""
- status: SalesforceStringFilter
-
- """Filter by the InstalledMobileApp's userId field"""
- userId: SalesforceIdFilter
-
- """Filter by the InstalledMobileApp's connectedApplicationId field"""
- connectedApplicationId: SalesforceIdFilter
-
- """Filter by the InstalledMobileApp's version field"""
- version: SalesforceStringFilter
-
- """Checks for any expressions in this list."""
- or: [SalesforceInstalledMobileAppConnectionFilter!]
-
- """Checks for all expressions in this list."""
- and: [SalesforceInstalledMobileAppConnectionFilter!]
-}
-
-"""Field that Installed Mobile Apps can be sorted by"""
-enum SalesforceInstalledMobileAppSortByFieldEnum {
- ID
- IS_DELETED
- NAME
- CREATED_DATE
- CREATED_BY_ID
- LAST_MODIFIED_DATE
- LAST_MODIFIED_BY_ID
- SYSTEM_MODSTAMP
- STATUS
- USER_ID
- CONNECTED_APPLICATION_ID
- VERSION
-}
-
-"""An edge in a connection."""
-type SalesforceInstalledMobileAppEdge {
- """The item at the end of the edge."""
- node: SalesforceInstalledMobileApp!
-
- """A cursor for use in pagination"""
- cursor: String!
-}
-
-"""Installed Mobile App"""
-type SalesforceInstalledMobileApp implements OneGraphNode {
- """Installed Mobile App Id"""
- id: String!
-
- """Deleted"""
- isDeleted: Boolean!
-
- """Installed Mobile App Name"""
- name: String!
-
- """Created Date"""
- createdDate: String!
-
- """Created By ID"""
- createdById: String!
-
- """Created By ID"""
- createdBy: SalesforceUser!
-
- """Last Modified Date"""
- lastModifiedDate: String!
-
- """Last Modified By ID"""
- lastModifiedById: String!
-
- """Last Modified By ID"""
- lastModifiedBy: SalesforceUser!
-
- """System Modstamp"""
- systemModstamp: String!
-
- """Status"""
- status: String!
-
- """User ID"""
- userId: String!
-
- """User ID"""
- user: SalesforceUser!
-
- """Connected Application ID"""
- connectedApplicationId: String!
-
- """Connected Application ID"""
- connectedApplication: SalesforceConnectedApplication!
-
- """Version"""
- version: String
-
- """Collection of Salesforce FlowRecordRelation"""
- flowRecordRelations(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceFlowRecordRelationConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceFlowRecordRelationSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceFlowRecordRelationsConnection
- customFields(
- """
- List of custom fields to return. By default, returns all custom fields.
- """
- fields: [String!]
- ): JSON!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-"""Salesforce Installed Mobile Apps connection, for use in pagination."""
-type SalesforceInstalledMobileAppsConnection {
- """
- The count of all Installed Mobile App you could get from the connection.
- """
- totalCount: Int!
-
- """Pagination Information"""
- pageInfo: PageInfo!
-
- """List of Salesforce Installed Mobile Apps"""
- nodes: [SalesforceInstalledMobileApp!]!
-
- """List of Installed Mobile App edges"""
- edges: [SalesforceInstalledMobileAppEdge!]!
-}
-
-"""An edge in a connection."""
-type SalesforceIdpEventLogEdge {
- """The item at the end of the edge."""
- node: SalesforceIdpEventLog!
-
- """A cursor for use in pagination"""
- cursor: String!
-}
-
-"""An edge in a connection."""
-type SalesforceSessionPermSetActivationEdge {
- """The item at the end of the edge."""
- node: SalesforceSessionPermSetActivation!
-
- """A cursor for use in pagination"""
- cursor: String!
-}
-
-"""
-A filter to be used against SessionPermSetActivation object types. All fields are combined with a logical ‘and.’
-"""
-input SalesforceSessionPermSetActivationConnectionFilter {
- """Filter against custom fields."""
- customField: SalesforceCustomFieldFilter
-
- """Filter by the SessionPermSetActivation's user relation."""
- user: SalesforceUserConnectionFilter
-
- """Filter by the SessionPermSetActivation's permissionSet relation."""
- permissionSet: SalesforcePermissionSetConnectionFilter
-
- """Filter by the SessionPermSetActivation's authSession relation."""
- authSession: SalesforceAuthSessionConnectionFilter
-
- """Filter by the SessionPermSetActivation's lastModifiedBy relation."""
- lastModifiedBy: SalesforceUserConnectionFilter
-
- """Filter by the SessionPermSetActivation's createdBy relation."""
- createdBy: SalesforceUserConnectionFilter
-
- """Filter by the SessionPermSetActivation's id field"""
- id: SalesforceIdFilter
-
- """Filter by the SessionPermSetActivation's isDeleted field"""
- isDeleted: SalesforceBooleanFilter
-
- """Filter by the SessionPermSetActivation's createdDate field"""
- createdDate: SalesforceDateTimeFilter
-
- """Filter by the SessionPermSetActivation's createdById field"""
- createdById: SalesforceIdFilter
-
- """Filter by the SessionPermSetActivation's lastModifiedDate field"""
- lastModifiedDate: SalesforceDateTimeFilter
-
- """Filter by the SessionPermSetActivation's lastModifiedById field"""
- lastModifiedById: SalesforceIdFilter
-
- """Filter by the SessionPermSetActivation's systemModstamp field"""
- systemModstamp: SalesforceDateTimeFilter
-
- """Filter by the SessionPermSetActivation's authSessionId field"""
- authSessionId: SalesforceIdFilter
-
- """Filter by the SessionPermSetActivation's permissionSetId field"""
- permissionSetId: SalesforceIdFilter
-
- """Filter by the SessionPermSetActivation's userId field"""
- userId: SalesforceIdFilter
-
- """Filter by the SessionPermSetActivation's description field"""
- description: SalesforceStringFilter
-
- """Checks for any expressions in this list."""
- or: [SalesforceSessionPermSetActivationConnectionFilter!]
-
- """Checks for all expressions in this list."""
- and: [SalesforceSessionPermSetActivationConnectionFilter!]
-}
-
-"""Field that Session Permission Set Activations can be sorted by"""
-enum SalesforceSessionPermSetActivationSortByFieldEnum {
- ID
- IS_DELETED
- CREATED_DATE
- CREATED_BY_ID
- LAST_MODIFIED_DATE
- LAST_MODIFIED_BY_ID
- SYSTEM_MODSTAMP
- AUTH_SESSION_ID
- PERMISSION_SET_ID
- USER_ID
- DESCRIPTION
-}
-
-"""
-A filter to be used against PermissionSetAssignment object types. All fields are combined with a logical ‘and.’
-"""
-input SalesforcePermissionSetAssignmentConnectionFilter {
- """Filter against custom fields."""
- customField: SalesforceCustomFieldFilter
-
- """Filter by the PermissionSetAssignment's assignee relation."""
- assignee: SalesforceUserConnectionFilter
-
- """Filter by the PermissionSetAssignment's permissionSet relation."""
- permissionSet: SalesforcePermissionSetConnectionFilter
-
- """Filter by the PermissionSetAssignment's id field"""
- id: SalesforceIdFilter
-
- """Filter by the PermissionSetAssignment's permissionSetId field"""
- permissionSetId: SalesforceIdFilter
-
- """Filter by the PermissionSetAssignment's assigneeId field"""
- assigneeId: SalesforceIdFilter
-
- """Filter by the PermissionSetAssignment's systemModstamp field"""
- systemModstamp: SalesforceDateTimeFilter
-
- """Checks for any expressions in this list."""
- or: [SalesforcePermissionSetAssignmentConnectionFilter!]
-
- """Checks for all expressions in this list."""
- and: [SalesforcePermissionSetAssignmentConnectionFilter!]
-}
-
-"""Field that Permission Set Assignments can be sorted by"""
-enum SalesforcePermissionSetAssignmentSortByFieldEnum {
- ID
- PERMISSION_SET_ID
- ASSIGNEE_ID
- SYSTEM_MODSTAMP
-}
-
-"""An edge in a connection."""
-type SalesforcePermissionSetAssignmentEdge {
- """The item at the end of the edge."""
- node: SalesforcePermissionSetAssignment!
-
- """A cursor for use in pagination"""
- cursor: String!
-}
-
-"""Permission Set Assignment"""
-type SalesforcePermissionSetAssignment implements OneGraphNode {
- """PermissionSetAssignment ID"""
- id: String!
-
- """PermissionSet ID"""
- permissionSetId: String
-
- """PermissionSet ID"""
- permissionSet: SalesforcePermissionSet
-
- """Assignee ID"""
- assigneeId: String!
-
- """Assignee ID"""
- assignee: SalesforceUser!
-
- """Date Assigned"""
- systemModstamp: String!
- customFields(
- """
- List of custom fields to return. By default, returns all custom fields.
- """
- fields: [String!]
- ): JSON!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-"""
-Salesforce Permission Set Assignments connection, for use in pagination.
-"""
-type SalesforcePermissionSetAssignmentsConnection {
- """
- The count of all Permission Set Assignment you could get from the connection.
- """
- totalCount: Int!
-
- """Pagination Information"""
- pageInfo: PageInfo!
-
- """List of Salesforce Permission Set Assignments"""
- nodes: [SalesforcePermissionSetAssignment!]!
-
- """List of Permission Set Assignment edges"""
- edges: [SalesforcePermissionSetAssignmentEdge!]!
-}
-
-"""
-A filter to be used against ObjectPermissions object types. All fields are combined with a logical ‘and.’
-"""
-input SalesforceObjectPermissionsConnectionFilter {
- """Filter against custom fields."""
- customField: SalesforceCustomFieldFilter
-
- """Filter by the ObjectPermissions's lastModifiedBy relation."""
- lastModifiedBy: SalesforceUserConnectionFilter
-
- """Filter by the ObjectPermissions's createdBy relation."""
- createdBy: SalesforceUserConnectionFilter
-
- """Filter by the ObjectPermissions's parent relation."""
- parent: SalesforcePermissionSetConnectionFilter
-
- """Filter by the ObjectPermissions's id field"""
- id: SalesforceIdFilter
-
- """Filter by the ObjectPermissions's parentId field"""
- parentId: SalesforceIdFilter
-
- """Filter by the ObjectPermissions's sobjectType field"""
- sobjectType: SalesforceStringFilter
-
- """Filter by the ObjectPermissions's permissionsCreate field"""
- permissionsCreate: SalesforceBooleanFilter
-
- """Filter by the ObjectPermissions's permissionsRead field"""
- permissionsRead: SalesforceBooleanFilter
-
- """Filter by the ObjectPermissions's permissionsEdit field"""
- permissionsEdit: SalesforceBooleanFilter
-
- """Filter by the ObjectPermissions's permissionsDelete field"""
- permissionsDelete: SalesforceBooleanFilter
-
- """Filter by the ObjectPermissions's permissionsViewAllRecords field"""
- permissionsViewAllRecords: SalesforceBooleanFilter
-
- """Filter by the ObjectPermissions's permissionsModifyAllRecords field"""
- permissionsModifyAllRecords: SalesforceBooleanFilter
-
- """Filter by the ObjectPermissions's createdDate field"""
- createdDate: SalesforceDateTimeFilter
-
- """Filter by the ObjectPermissions's createdById field"""
- createdById: SalesforceIdFilter
-
- """Filter by the ObjectPermissions's lastModifiedDate field"""
- lastModifiedDate: SalesforceDateTimeFilter
-
- """Filter by the ObjectPermissions's lastModifiedById field"""
- lastModifiedById: SalesforceIdFilter
-
- """Filter by the ObjectPermissions's systemModstamp field"""
- systemModstamp: SalesforceDateTimeFilter
-
- """Checks for any expressions in this list."""
- or: [SalesforceObjectPermissionsConnectionFilter!]
-
- """Checks for all expressions in this list."""
- and: [SalesforceObjectPermissionsConnectionFilter!]
-}
-
-"""Field that Object Permissions can be sorted by"""
-enum SalesforceObjectPermissionsSortByFieldEnum {
- ID
- PARENT_ID
- SOBJECT_TYPE
- CREATED_DATE
- CREATED_BY_ID
- LAST_MODIFIED_DATE
- LAST_MODIFIED_BY_ID
- SYSTEM_MODSTAMP
-}
-
-"""An edge in a connection."""
-type SalesforceObjectPermissionsEdge {
- """The item at the end of the edge."""
- node: SalesforceObjectPermissions!
-
- """A cursor for use in pagination"""
- cursor: String!
-}
-
-"""Object Permissions"""
-type SalesforceObjectPermissions implements OneGraphNode {
- """ObjectPermissions ID"""
- id: String!
-
- """Parent ID"""
- parentId: String!
-
- """Parent ID"""
- parent: SalesforcePermissionSet!
-
- """Sobject Type Name"""
- sobjectType: String!
-
- """Create Records"""
- permissionsCreate: Boolean!
-
- """Read Records"""
- permissionsRead: Boolean!
-
- """Edit Records"""
- permissionsEdit: Boolean!
-
- """Delete Records"""
- permissionsDelete: Boolean!
-
- """Read All Records"""
- permissionsViewAllRecords: Boolean!
-
- """Edit All Records"""
- permissionsModifyAllRecords: Boolean!
-
- """Created Date"""
- createdDate: String!
-
- """Created By ID"""
- createdById: String!
-
- """Created By ID"""
- createdBy: SalesforceUser!
-
- """Last Modified Date"""
- lastModifiedDate: String!
-
- """Last Modified By ID"""
- lastModifiedById: String!
-
- """Last Modified By ID"""
- lastModifiedBy: SalesforceUser!
-
- """System Modstamp"""
- systemModstamp: String!
- customFields(
- """
- List of custom fields to return. By default, returns all custom fields.
- """
- fields: [String!]
- ): JSON!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-"""Salesforce Object Permissions connection, for use in pagination."""
-type SalesforceObjectPermissionssConnection {
- """The count of all Object Permissions you could get from the connection."""
- totalCount: Int!
-
- """Pagination Information"""
- pageInfo: PageInfo!
-
- """List of Salesforce Object Permissions"""
- nodes: [SalesforceObjectPermissions!]!
-
- """List of Object Permissions edges"""
- edges: [SalesforceObjectPermissionsEdge!]!
-}
-
-"""
-A filter to be used against FieldPermissions object types. All fields are combined with a logical ‘and.’
-"""
-input SalesforceFieldPermissionsConnectionFilter {
- """Filter against custom fields."""
- customField: SalesforceCustomFieldFilter
-
- """Filter by the FieldPermissions's parent relation."""
- parent: SalesforcePermissionSetConnectionFilter
-
- """Filter by the FieldPermissions's id field"""
- id: SalesforceIdFilter
-
- """Filter by the FieldPermissions's parentId field"""
- parentId: SalesforceIdFilter
-
- """Filter by the FieldPermissions's sobjectType field"""
- sobjectType: SalesforceStringFilter
-
- """Filter by the FieldPermissions's field field"""
- field: SalesforceStringFilter
-
- """Filter by the FieldPermissions's permissionsEdit field"""
- permissionsEdit: SalesforceBooleanFilter
-
- """Filter by the FieldPermissions's permissionsRead field"""
- permissionsRead: SalesforceBooleanFilter
-
- """Filter by the FieldPermissions's systemModstamp field"""
- systemModstamp: SalesforceDateTimeFilter
-
- """Checks for any expressions in this list."""
- or: [SalesforceFieldPermissionsConnectionFilter!]
-
- """Checks for all expressions in this list."""
- and: [SalesforceFieldPermissionsConnectionFilter!]
-}
-
-"""Field that Field Permissions can be sorted by"""
-enum SalesforceFieldPermissionsSortByFieldEnum {
- ID
- PARENT_ID
- SOBJECT_TYPE
- FIELD
- PERMISSIONS_EDIT
- PERMISSIONS_READ
- SYSTEM_MODSTAMP
-}
-
-"""An edge in a connection."""
-type SalesforceFieldPermissionsEdge {
- """The item at the end of the edge."""
- node: SalesforceFieldPermissions!
-
- """A cursor for use in pagination"""
- cursor: String!
-}
-
-"""Field Permissions"""
-type SalesforceFieldPermissions implements OneGraphNode {
- """Field Permissions ID"""
- id: String!
-
- """Parent ID"""
- parentId: String!
-
- """Parent ID"""
- parent: SalesforcePermissionSet!
-
- """Sobject Type Name"""
- sobjectType: String!
-
- """Field Name"""
- field: String!
-
- """Edit Field"""
- permissionsEdit: Boolean!
-
- """Read Field"""
- permissionsRead: Boolean!
-
- """System Modstamp"""
- systemModstamp: String!
- customFields(
- """
- List of custom fields to return. By default, returns all custom fields.
- """
- fields: [String!]
- ): JSON!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-"""Salesforce Field Permissions connection, for use in pagination."""
-type SalesforceFieldPermissionssConnection {
- """The count of all Field Permissions you could get from the connection."""
- totalCount: Int!
-
- """Pagination Information"""
- pageInfo: PageInfo!
-
- """List of Salesforce Field Permissions"""
- nodes: [SalesforceFieldPermissions!]!
-
- """List of Field Permissions edges"""
- edges: [SalesforceFieldPermissionsEdge!]!
-}
-
-"""
-A filter to be used against PermissionSetLicenseAssign object types. All fields are combined with a logical ‘and.’
-"""
-input SalesforcePermissionSetLicenseAssignConnectionFilter {
- """Filter against custom fields."""
- customField: SalesforceCustomFieldFilter
-
- """Filter by the PermissionSetLicenseAssign's assignee relation."""
- assignee: SalesforceUserConnectionFilter
-
- """
- Filter by the PermissionSetLicenseAssign's permissionSetLicense relation.
- """
- permissionSetLicense: SalesforcePermissionSetLicenseConnectionFilter
-
- """Filter by the PermissionSetLicenseAssign's lastModifiedBy relation."""
- lastModifiedBy: SalesforceUserConnectionFilter
-
- """Filter by the PermissionSetLicenseAssign's createdBy relation."""
- createdBy: SalesforceUserConnectionFilter
-
- """Filter by the PermissionSetLicenseAssign's id field"""
- id: SalesforceIdFilter
-
- """Filter by the PermissionSetLicenseAssign's isDeleted field"""
- isDeleted: SalesforceBooleanFilter
-
- """Filter by the PermissionSetLicenseAssign's createdDate field"""
- createdDate: SalesforceDateTimeFilter
-
- """Filter by the PermissionSetLicenseAssign's createdById field"""
- createdById: SalesforceIdFilter
-
- """Filter by the PermissionSetLicenseAssign's lastModifiedDate field"""
- lastModifiedDate: SalesforceDateTimeFilter
-
- """Filter by the PermissionSetLicenseAssign's lastModifiedById field"""
- lastModifiedById: SalesforceIdFilter
-
- """Filter by the PermissionSetLicenseAssign's systemModstamp field"""
- systemModstamp: SalesforceDateTimeFilter
-
- """
- Filter by the PermissionSetLicenseAssign's permissionSetLicenseId field
- """
- permissionSetLicenseId: SalesforceIdFilter
-
- """Filter by the PermissionSetLicenseAssign's assigneeId field"""
- assigneeId: SalesforceIdFilter
-
- """Checks for any expressions in this list."""
- or: [SalesforcePermissionSetLicenseAssignConnectionFilter!]
-
- """Checks for all expressions in this list."""
- and: [SalesforcePermissionSetLicenseAssignConnectionFilter!]
-}
-
-"""Field that Permission Set License Assignments can be sorted by"""
-enum SalesforcePermissionSetLicenseAssignSortByFieldEnum {
- ID
- IS_DELETED
- CREATED_DATE
- CREATED_BY_ID
- LAST_MODIFIED_DATE
- LAST_MODIFIED_BY_ID
- SYSTEM_MODSTAMP
- PERMISSION_SET_LICENSE_ID
- ASSIGNEE_ID
-}
-
-"""An edge in a connection."""
-type SalesforcePermissionSetLicenseAssignEdge {
- """The item at the end of the edge."""
- node: SalesforcePermissionSetLicenseAssign!
-
- """A cursor for use in pagination"""
- cursor: String!
-}
-
-"""Permission Set License Assignment"""
-type SalesforcePermissionSetLicenseAssign implements OneGraphNode {
- """Permission Set License Assignment ID"""
- id: String!
-
- """Deleted"""
- isDeleted: Boolean!
-
- """Created Date"""
- createdDate: String!
-
- """Created By ID"""
- createdById: String!
-
- """Created By ID"""
- createdBy: SalesforceUser!
-
- """Last Modified Date"""
- lastModifiedDate: String!
-
- """Last Modified By ID"""
- lastModifiedById: String!
-
- """Last Modified By ID"""
- lastModifiedBy: SalesforceUser!
-
- """Date Assigned"""
- systemModstamp: String!
-
- """Permission Set License ID"""
- permissionSetLicenseId: String!
-
- """Permission Set License ID"""
- permissionSetLicense: SalesforcePermissionSetLicense!
-
- """User ID"""
- assigneeId: String!
-
- """User ID"""
- assignee: SalesforceUser!
- customFields(
- """
- List of custom fields to return. By default, returns all custom fields.
- """
- fields: [String!]
- ): JSON!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-"""
-Salesforce Permission Set License Assignments connection, for use in pagination.
-"""
-type SalesforcePermissionSetLicenseAssignsConnection {
- """
- The count of all Permission Set License Assignment you could get from the connection.
- """
- totalCount: Int!
-
- """Pagination Information"""
- pageInfo: PageInfo!
-
- """List of Salesforce Permission Set License Assignments"""
- nodes: [SalesforcePermissionSetLicenseAssign!]!
-
- """List of Permission Set License Assignment edges"""
- edges: [SalesforcePermissionSetLicenseAssignEdge!]!
-}
-
-"""An edge in a connection."""
-type SalesforceGrantedByLicenseEdge {
- """The item at the end of the edge."""
- node: SalesforceGrantedByLicense!
-
- """A cursor for use in pagination"""
- cursor: String!
-}
-
-"""An edge in a connection."""
-type SalesforceSetupEntityAccessEdge {
- """The item at the end of the edge."""
- node: SalesforceSetupEntityAccess!
-
- """A cursor for use in pagination"""
- cursor: String!
-}
-
-"""An edge in a connection."""
-type SalesforceWebLinkEdge {
- """The item at the end of the edge."""
- node: SalesforceWebLink!
-
- """A cursor for use in pagination"""
- cursor: String!
-}
-
-"""
-A filter to be used against WebLink object types. All fields are combined with a logical ‘and.’
-"""
-input SalesforceWebLinkConnectionFilter {
- """Filter against custom fields."""
- customField: SalesforceCustomFieldFilter
-
- """Filter by the WebLink's lastModifiedBy relation."""
- lastModifiedBy: SalesforceUserConnectionFilter
-
- """Filter by the WebLink's createdBy relation."""
- createdBy: SalesforceUserConnectionFilter
-
- """Filter by the WebLink's id field"""
- id: SalesforceIdFilter
-
- """Filter by the WebLink's pageOrSobjectType field"""
- pageOrSobjectType: SalesforceStringFilter
-
- """Filter by the WebLink's name field"""
- name: SalesforceStringFilter
-
- """Filter by the WebLink's isProtected field"""
- isProtected: SalesforceBooleanFilter
-
- """Filter by the WebLink's encodingKey field"""
- encodingKey: SalesforceStringFilter
-
- """Filter by the WebLink's linkType field"""
- linkType: SalesforceStringFilter
-
- """Filter by the WebLink's openType field"""
- openType: SalesforceStringFilter
-
- """Filter by the WebLink's height field"""
- height: SalesforceIntFilter
-
- """Filter by the WebLink's width field"""
- width: SalesforceIntFilter
-
- """Filter by the WebLink's showsLocation field"""
- showsLocation: SalesforceBooleanFilter
-
- """Filter by the WebLink's hasScrollbars field"""
- hasScrollbars: SalesforceBooleanFilter
-
- """Filter by the WebLink's hasToolbar field"""
- hasToolbar: SalesforceBooleanFilter
-
- """Filter by the WebLink's hasMenubar field"""
- hasMenubar: SalesforceBooleanFilter
-
- """Filter by the WebLink's showsStatus field"""
- showsStatus: SalesforceBooleanFilter
-
- """Filter by the WebLink's isResizable field"""
- isResizable: SalesforceBooleanFilter
-
- """Filter by the WebLink's position field"""
- position: SalesforceStringFilter
-
- """Filter by the WebLink's scontrolId field"""
- scontrolId: SalesforceIdFilter
-
- """Filter by the WebLink's masterLabel field"""
- masterLabel: SalesforceStringFilter
-
- """Filter by the WebLink's description field"""
- description: SalesforceStringFilter
-
- """Filter by the WebLink's displayType field"""
- displayType: SalesforceStringFilter
-
- """Filter by the WebLink's requireRowSelection field"""
- requireRowSelection: SalesforceBooleanFilter
-
- """Filter by the WebLink's namespacePrefix field"""
- namespacePrefix: SalesforceStringFilter
-
- """Filter by the WebLink's createdDate field"""
- createdDate: SalesforceDateTimeFilter
-
- """Filter by the WebLink's createdById field"""
- createdById: SalesforceIdFilter
-
- """Filter by the WebLink's lastModifiedDate field"""
- lastModifiedDate: SalesforceDateTimeFilter
-
- """Filter by the WebLink's lastModifiedById field"""
- lastModifiedById: SalesforceIdFilter
-
- """Filter by the WebLink's systemModstamp field"""
- systemModstamp: SalesforceDateTimeFilter
-
- """Checks for any expressions in this list."""
- or: [SalesforceWebLinkConnectionFilter!]
-
- """Checks for all expressions in this list."""
- and: [SalesforceWebLinkConnectionFilter!]
-}
-
-"""Field that Custom Button or Links can be sorted by"""
-enum SalesforceWebLinkSortByFieldEnum {
- ID
- PAGE_OR_SOBJECT_TYPE
- NAME
- IS_PROTECTED
- ENCODING_KEY
- LINK_TYPE
- OPEN_TYPE
- HEIGHT
- WIDTH
- SHOWS_LOCATION
- HAS_SCROLLBARS
- HAS_TOOLBAR
- HAS_MENUBAR
- SHOWS_STATUS
- IS_RESIZABLE
- POSITION
- SCONTROL_ID
- MASTER_LABEL
- DESCRIPTION
- DISPLAY_TYPE
- REQUIRE_ROW_SELECTION
- NAMESPACE_PREFIX
- CREATED_DATE
- CREATED_BY_ID
- LAST_MODIFIED_DATE
- LAST_MODIFIED_BY_ID
- SYSTEM_MODSTAMP
-}
-
-"""Custom S-Control"""
-type SalesforceScontrol implements OneGraphNode {
- """Custom S-Control ID"""
- id: String!
-
- """Label"""
- name: String!
-
- """S-Control Name"""
- developerName: String!
-
- """Description"""
- description: String
-
- """Encoding"""
- encodingKey: String!
-
- """HTML Body"""
- htmlWrapper: String!
-
- """Filename"""
- filename: String
-
- """Binary Length"""
- bodyLength: Int!
-
- """Binary"""
- binary: String
-
- """Type"""
- contentSource: String
-
- """Prebuild In Page"""
- supportsCaching: Boolean!
-
- """Namespace Prefix"""
- namespacePrefix: String
-
- """Created Date"""
- createdDate: String!
-
- """Created By ID"""
- createdById: String!
-
- """Created By ID"""
- createdBy: SalesforceUser!
-
- """Last Modified Date"""
- lastModifiedDate: String!
-
- """Last Modified By ID"""
- lastModifiedById: String!
-
- """Last Modified By ID"""
- lastModifiedBy: SalesforceUser!
-
- """System Modstamp"""
- systemModstamp: String!
-
- """Deleted"""
- isDeleted: Boolean!
-
- """Collection of Salesforce WebLink"""
- webLinks(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceWebLinkConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceWebLinkSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceWebLinkSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of WebLinks to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceWebLinksConnection
- customFields(
- """
- List of custom fields to return. By default, returns all custom fields.
- """
- fields: [String!]
- ): JSON!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-union SalesforceWebLinkScontrolUnion = SalesforceScontrol | SalesforceApexPage
-
-"""Custom Button or Link"""
-type SalesforceWebLink implements OneGraphNode {
- """Custom Link ID"""
- id: String!
-
- """Page Or sObject Type Name"""
- pageOrSobjectType: String!
-
- """Name"""
- name: String!
-
- """Protected Component"""
- isProtected: Boolean!
-
- """URL"""
- url: String
-
- """Link Encoding"""
- encodingKey: String!
-
- """Content Source"""
- linkType: String!
-
- """Behavior"""
- openType: String!
-
- """Height (in pixels)"""
- height: Int
-
- """Width (in pixels)"""
- width: Int
-
- """Show Address Bar"""
- showsLocation: Boolean!
-
- """Show Scrollbars"""
- hasScrollbars: Boolean!
-
- """Show Toolbars"""
- hasToolbar: Boolean!
-
- """Show Menu Bar"""
- hasMenubar: Boolean!
-
- """Show Status Bar"""
- showsStatus: Boolean!
-
- """Resizeable"""
- isResizable: Boolean!
-
- """Window Position"""
- position: String
-
- """Custom S-Control ID"""
- scontrolId: String
-
- """Custom S-Control ID"""
- scontrol: SalesforceWebLinkScontrolUnion
-
- """Label"""
- masterLabel: String
-
- """Description"""
- description: String
-
- """Display Type"""
- displayType: String!
-
- """Require Row Selection"""
- requireRowSelection: Boolean!
-
- """Namespace Prefix"""
- namespacePrefix: String
-
- """Created Date"""
- createdDate: String!
-
- """Created By ID"""
- createdById: String!
-
- """Created By ID"""
- createdBy: SalesforceUser!
-
- """Last Modified Date"""
- lastModifiedDate: String!
-
- """Last Modified By ID"""
- lastModifiedById: String!
-
- """Last Modified By ID"""
- lastModifiedBy: SalesforceUser!
-
- """System Modstamp"""
- systemModstamp: String!
- customFields(
- """
- List of custom fields to return. By default, returns all custom fields.
- """
- fields: [String!]
- ): JSON!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-"""Salesforce Custom Button or Links connection, for use in pagination."""
-type SalesforceWebLinksConnection {
- """
- The count of all Custom Button or Link you could get from the connection.
- """
- totalCount: Int!
-
- """Pagination Information"""
- pageInfo: PageInfo!
-
- """List of Salesforce Custom Button or Links"""
- nodes: [SalesforceWebLink!]!
-
- """List of Custom Button or Link edges"""
- edges: [SalesforceWebLinkEdge!]!
-}
-
-"""
-A filter to be used against ApexPage object types. All fields are combined with a logical ‘and.’
-"""
-input SalesforceApexPageConnectionFilter {
- """Filter against custom fields."""
- customField: SalesforceCustomFieldFilter
-
- """Filter by the ApexPage's lastModifiedBy relation."""
- lastModifiedBy: SalesforceUserConnectionFilter
-
- """Filter by the ApexPage's createdBy relation."""
- createdBy: SalesforceUserConnectionFilter
-
- """Filter by the ApexPage's id field"""
- id: SalesforceIdFilter
-
- """Filter by the ApexPage's namespacePrefix field"""
- namespacePrefix: SalesforceStringFilter
-
- """Filter by the ApexPage's name field"""
- name: SalesforceStringFilter
-
- """Filter by the ApexPage's apiVersion field"""
- apiVersion: SalesforceFloatFilter
-
- """Filter by the ApexPage's masterLabel field"""
- masterLabel: SalesforceStringFilter
-
- """Filter by the ApexPage's description field"""
- description: SalesforceStringFilter
-
- """Filter by the ApexPage's controllerType field"""
- controllerType: SalesforceStringFilter
-
- """Filter by the ApexPage's controllerKey field"""
- controllerKey: SalesforceStringFilter
-
- """Filter by the ApexPage's isAvailableInTouch field"""
- isAvailableInTouch: SalesforceBooleanFilter
-
- """Filter by the ApexPage's isConfirmationTokenRequired field"""
- isConfirmationTokenRequired: SalesforceBooleanFilter
-
- """Filter by the ApexPage's createdDate field"""
- createdDate: SalesforceDateTimeFilter
-
- """Filter by the ApexPage's createdById field"""
- createdById: SalesforceIdFilter
-
- """Filter by the ApexPage's lastModifiedDate field"""
- lastModifiedDate: SalesforceDateTimeFilter
-
- """Filter by the ApexPage's lastModifiedById field"""
- lastModifiedById: SalesforceIdFilter
-
- """Filter by the ApexPage's systemModstamp field"""
- systemModstamp: SalesforceDateTimeFilter
-
- """Checks for any expressions in this list."""
- or: [SalesforceApexPageConnectionFilter!]
-
- """Checks for all expressions in this list."""
- and: [SalesforceApexPageConnectionFilter!]
-}
-
-"""
-A filter to be used against VisualforceAccessMetrics object types. All fields are combined with a logical ‘and.’
-"""
-input SalesforceVisualforceAccessMetricsConnectionFilter {
- """Filter against custom fields."""
- customField: SalesforceCustomFieldFilter
-
- """Filter by the VisualforceAccessMetrics's apexPage relation."""
- apexPage: SalesforceApexPageConnectionFilter
-
- """Filter by the VisualforceAccessMetrics's id field"""
- id: SalesforceIdFilter
-
- """Filter by the VisualforceAccessMetrics's metricsDate field"""
- metricsDate: SalesforceDateFilter
-
- """Filter by the VisualforceAccessMetrics's apexPageId field"""
- apexPageId: SalesforceIdFilter
-
- """Filter by the VisualforceAccessMetrics's systemModstamp field"""
- systemModstamp: SalesforceDateTimeFilter
-
- """Filter by the VisualforceAccessMetrics's dailyPageViewCount field"""
- dailyPageViewCount: SalesforceIntFilter
-
- """Checks for any expressions in this list."""
- or: [SalesforceVisualforceAccessMetricsConnectionFilter!]
-
- """Checks for all expressions in this list."""
- and: [SalesforceVisualforceAccessMetricsConnectionFilter!]
-}
-
-"""Field that Visualforce Access Metrics can be sorted by"""
-enum SalesforceVisualforceAccessMetricsSortByFieldEnum {
- ID
- METRICS_DATE
- APEX_PAGE_ID
- SYSTEM_MODSTAMP
- DAILY_PAGE_VIEW_COUNT
-}
-
-"""An edge in a connection."""
-type SalesforceVisualforceAccessMetricsEdge {
- """The item at the end of the edge."""
- node: SalesforceVisualforceAccessMetrics!
-
- """A cursor for use in pagination"""
- cursor: String!
-}
-
-"""Visualforce Access Metric"""
-type SalesforceVisualforceAccessMetrics implements OneGraphNode {
- """Visualforce Access Metric Id"""
- id: String!
-
- """Metrics Date"""
- metricsDate: String!
-
- """Page ID"""
- apexPageId: String!
-
- """Page ID"""
- apexPage: SalesforceApexPage!
-
- """System Modstamp"""
- systemModstamp: String!
-
- """Daily Page View Count"""
- dailyPageViewCount: Int
- customFields(
- """
- List of custom fields to return. By default, returns all custom fields.
- """
- fields: [String!]
- ): JSON!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-"""
-Salesforce Visualforce Access Metrics connection, for use in pagination.
-"""
-type SalesforceVisualforceAccessMetricssConnection {
- """
- The count of all Visualforce Access Metric you could get from the connection.
- """
- totalCount: Int!
-
- """Pagination Information"""
- pageInfo: PageInfo!
-
- """List of Salesforce Visualforce Access Metrics"""
- nodes: [SalesforceVisualforceAccessMetrics!]!
-
- """List of Visualforce Access Metric edges"""
- edges: [SalesforceVisualforceAccessMetricsEdge!]!
-}
-
-"""Visualforce Page"""
-type SalesforceApexPage implements OneGraphNode {
- """Page ID"""
- id: String!
-
- """Namespace Prefix"""
- namespacePrefix: String
-
- """Name"""
- name: String!
-
- """Api Version"""
- apiVersion: Float!
-
- """Label"""
- masterLabel: String!
-
- """Description"""
- description: String
-
- """Controller Type"""
- controllerType: String!
-
- """Controller Key"""
- controllerKey: String
-
- """
- Available for Lightning Experience, Lightning Communities, and the mobile app
- """
- isAvailableInTouch: Boolean!
-
- """Require CSRF protection on GET requests"""
- isConfirmationTokenRequired: Boolean!
-
- """Markup"""
- markup: String!
-
- """Created Date"""
- createdDate: String!
-
- """Created By ID"""
- createdById: String!
-
- """Created By ID"""
- createdBy: SalesforceUser!
-
- """Last Modified Date"""
- lastModifiedDate: String!
-
- """Last Modified By ID"""
- lastModifiedById: String!
-
- """Last Modified By ID"""
- lastModifiedBy: SalesforceUser!
-
- """System Modstamp"""
- systemModstamp: String!
-
- """Collection of Salesforce SetupEntityAccess"""
- setupEntityAccessItems(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceSetupEntityAccessConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceSetupEntityAccessSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceSetupEntityAccessSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of SetupEntityAccesses to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceSetupEntityAccesssConnection
-
- """Collection of Salesforce VisualforceAccessMetrics"""
- visualforceAccessMetricsPlural(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceVisualforceAccessMetricsConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceVisualforceAccessMetricsSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceVisualforceAccessMetricsSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """
- Number of VisualforceAccessMetrics to fetch. Defaults to 10. Maximum is 60.
- """
- first: Int
- ): SalesforceVisualforceAccessMetricssConnection
-
- """Collection of Salesforce WebLink"""
- webLinks(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceWebLinkConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceWebLinkSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceWebLinkSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of WebLinks to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceWebLinksConnection
- customFields(
- """
- List of custom fields to return. By default, returns all custom fields.
- """
- fields: [String!]
- ): JSON!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-"""Field that User Provisioning Configs can be sorted by"""
-enum SalesforceUserProvisioningConfigSortByFieldEnum {
- ID
- IS_DELETED
- DEVELOPER_NAME
- LANGUAGE
- MASTER_LABEL
- NAMESPACE_PREFIX
- CREATED_DATE
- CREATED_BY_ID
- LAST_MODIFIED_DATE
- LAST_MODIFIED_BY_ID
- SYSTEM_MODSTAMP
- CONNECTED_APP_ID
- ENABLED
- LAST_RECON_DATE_TIME
- NAMED_CREDENTIAL_ID
- RECON_FILTER
-}
-
-"""An edge in a connection."""
-type SalesforceUserProvisioningConfigEdge {
- """The item at the end of the edge."""
- node: SalesforceUserProvisioningConfig!
-
- """A cursor for use in pagination"""
- cursor: String!
-}
-
-"""
-A filter to be used against UserProvAccount object types. All fields are combined with a logical ‘and.’
-"""
-input SalesforceUserProvAccountConnectionFilter {
- """Filter against custom fields."""
- customField: SalesforceCustomFieldFilter
-
- """Filter by the UserProvAccount's connectedApp relation."""
- connectedApp: SalesforceConnectedApplicationConnectionFilter
-
- """Filter by the UserProvAccount's salesforceUser relation."""
- salesforceUser: SalesforceUserConnectionFilter
-
- """Filter by the UserProvAccount's lastModifiedBy relation."""
- lastModifiedBy: SalesforceUserConnectionFilter
-
- """Filter by the UserProvAccount's createdBy relation."""
- createdBy: SalesforceUserConnectionFilter
-
- """Filter by the UserProvAccount's id field"""
- id: SalesforceIdFilter
-
- """Filter by the UserProvAccount's isDeleted field"""
- isDeleted: SalesforceBooleanFilter
-
- """Filter by the UserProvAccount's name field"""
- name: SalesforceStringFilter
-
- """Filter by the UserProvAccount's createdDate field"""
- createdDate: SalesforceDateTimeFilter
-
- """Filter by the UserProvAccount's createdById field"""
- createdById: SalesforceIdFilter
-
- """Filter by the UserProvAccount's lastModifiedDate field"""
- lastModifiedDate: SalesforceDateTimeFilter
-
- """Filter by the UserProvAccount's lastModifiedById field"""
- lastModifiedById: SalesforceIdFilter
-
- """Filter by the UserProvAccount's systemModstamp field"""
- systemModstamp: SalesforceDateTimeFilter
-
- """Filter by the UserProvAccount's salesforceUserId field"""
- salesforceUserId: SalesforceIdFilter
-
- """Filter by the UserProvAccount's connectedAppId field"""
- connectedAppId: SalesforceIdFilter
-
- """Filter by the UserProvAccount's externalUserId field"""
- externalUserId: SalesforceStringFilter
-
- """Filter by the UserProvAccount's externalUsername field"""
- externalUsername: SalesforceStringFilter
-
- """Filter by the UserProvAccount's externalEmail field"""
- externalEmail: SalesforceStringFilter
-
- """Filter by the UserProvAccount's externalFirstName field"""
- externalFirstName: SalesforceStringFilter
-
- """Filter by the UserProvAccount's externalLastName field"""
- externalLastName: SalesforceStringFilter
-
- """Filter by the UserProvAccount's linkState field"""
- linkState: SalesforceStringFilter
-
- """Filter by the UserProvAccount's status field"""
- status: SalesforceStringFilter
-
- """Filter by the UserProvAccount's deletedDate field"""
- deletedDate: SalesforceDateTimeFilter
-
- """Filter by the UserProvAccount's isKnownLink field"""
- isKnownLink: SalesforceBooleanFilter
-
- """Checks for any expressions in this list."""
- or: [SalesforceUserProvAccountConnectionFilter!]
-
- """Checks for all expressions in this list."""
- and: [SalesforceUserProvAccountConnectionFilter!]
-}
-
-"""
-A filter to be used against NamedCredential object types. All fields are combined with a logical ‘and.’
-"""
-input SalesforceNamedCredentialConnectionFilter {
- """Filter against custom fields."""
- customField: SalesforceCustomFieldFilter
-
- """Filter by the NamedCredential's authProvider relation."""
- authProvider: SalesforceAuthProviderConnectionFilter
-
- """Filter by the NamedCredential's lastModifiedBy relation."""
- lastModifiedBy: SalesforceUserConnectionFilter
-
- """Filter by the NamedCredential's createdBy relation."""
- createdBy: SalesforceUserConnectionFilter
-
- """Filter by the NamedCredential's id field"""
- id: SalesforceIdFilter
-
- """Filter by the NamedCredential's isDeleted field"""
- isDeleted: SalesforceBooleanFilter
-
- """Filter by the NamedCredential's developerName field"""
- developerName: SalesforceStringFilter
-
- """Filter by the NamedCredential's language field"""
- language: SalesforceStringFilter
-
- """Filter by the NamedCredential's masterLabel field"""
- masterLabel: SalesforceStringFilter
-
- """Filter by the NamedCredential's namespacePrefix field"""
- namespacePrefix: SalesforceStringFilter
-
- """Filter by the NamedCredential's createdDate field"""
- createdDate: SalesforceDateTimeFilter
-
- """Filter by the NamedCredential's createdById field"""
- createdById: SalesforceIdFilter
-
- """Filter by the NamedCredential's lastModifiedDate field"""
- lastModifiedDate: SalesforceDateTimeFilter
-
- """Filter by the NamedCredential's lastModifiedById field"""
- lastModifiedById: SalesforceIdFilter
-
- """Filter by the NamedCredential's systemModstamp field"""
- systemModstamp: SalesforceDateTimeFilter
-
- """Filter by the NamedCredential's principalType field"""
- principalType: SalesforceStringFilter
-
- """
- Filter by the NamedCredential's calloutOptionsGenerateAuthorizationHeader field
- """
- calloutOptionsGenerateAuthorizationHeader: SalesforceBooleanFilter
-
- """
- Filter by the NamedCredential's calloutOptionsAllowMergeFieldsInHeader field
- """
- calloutOptionsAllowMergeFieldsInHeader: SalesforceBooleanFilter
-
- """
- Filter by the NamedCredential's calloutOptionsAllowMergeFieldsInBody field
- """
- calloutOptionsAllowMergeFieldsInBody: SalesforceBooleanFilter
-
- """Filter by the NamedCredential's authProviderId field"""
- authProviderId: SalesforceIdFilter
-
- """Checks for any expressions in this list."""
- or: [SalesforceNamedCredentialConnectionFilter!]
-
- """Checks for all expressions in this list."""
- and: [SalesforceNamedCredentialConnectionFilter!]
-}
-
-"""
-A filter to be used against UserProvisioningConfig object types. All fields are combined with a logical ‘and.’
-"""
-input SalesforceUserProvisioningConfigConnectionFilter {
- """Filter against custom fields."""
- customField: SalesforceCustomFieldFilter
-
- """Filter by the UserProvisioningConfig's namedCredential relation."""
- namedCredential: SalesforceNamedCredentialConnectionFilter
-
- """Filter by the UserProvisioningConfig's connectedApp relation."""
- connectedApp: SalesforceConnectedApplicationConnectionFilter
-
- """Filter by the UserProvisioningConfig's lastModifiedBy relation."""
- lastModifiedBy: SalesforceUserConnectionFilter
-
- """Filter by the UserProvisioningConfig's createdBy relation."""
- createdBy: SalesforceUserConnectionFilter
-
- """Filter by the UserProvisioningConfig's id field"""
- id: SalesforceIdFilter
-
- """Filter by the UserProvisioningConfig's isDeleted field"""
- isDeleted: SalesforceBooleanFilter
-
- """Filter by the UserProvisioningConfig's developerName field"""
- developerName: SalesforceStringFilter
-
- """Filter by the UserProvisioningConfig's language field"""
- language: SalesforceStringFilter
-
- """Filter by the UserProvisioningConfig's masterLabel field"""
- masterLabel: SalesforceStringFilter
-
- """Filter by the UserProvisioningConfig's namespacePrefix field"""
- namespacePrefix: SalesforceStringFilter
-
- """Filter by the UserProvisioningConfig's createdDate field"""
- createdDate: SalesforceDateTimeFilter
-
- """Filter by the UserProvisioningConfig's createdById field"""
- createdById: SalesforceIdFilter
-
- """Filter by the UserProvisioningConfig's lastModifiedDate field"""
- lastModifiedDate: SalesforceDateTimeFilter
-
- """Filter by the UserProvisioningConfig's lastModifiedById field"""
- lastModifiedById: SalesforceIdFilter
-
- """Filter by the UserProvisioningConfig's systemModstamp field"""
- systemModstamp: SalesforceDateTimeFilter
-
- """Filter by the UserProvisioningConfig's connectedAppId field"""
- connectedAppId: SalesforceIdFilter
-
- """Filter by the UserProvisioningConfig's enabled field"""
- enabled: SalesforceBooleanFilter
-
- """Filter by the UserProvisioningConfig's lastReconDateTime field"""
- lastReconDateTime: SalesforceDateTimeFilter
-
- """Filter by the UserProvisioningConfig's namedCredentialId field"""
- namedCredentialId: SalesforceIdFilter
-
- """Filter by the UserProvisioningConfig's reconFilter field"""
- reconFilter: SalesforceStringFilter
-
- """Checks for any expressions in this list."""
- or: [SalesforceUserProvisioningConfigConnectionFilter!]
-
- """Checks for all expressions in this list."""
- and: [SalesforceUserProvisioningConfigConnectionFilter!]
-}
-
-"""
-A filter to be used against UserProvisioningRequest object types. All fields are combined with a logical ‘and.’
-"""
-input SalesforceUserProvisioningRequestConnectionFilter {
- """Filter against custom fields."""
- customField: SalesforceCustomFieldFilter
-
- """Filter by the UserProvisioningRequest's parent relation."""
- parent: SalesforceUserProvisioningRequestConnectionFilter
-
- """Filter by the UserProvisioningRequest's manager relation."""
- manager: SalesforceUserConnectionFilter
-
- """Filter by the UserProvisioningRequest's userProvAccount relation."""
- userProvAccount: SalesforceUserProvAccountConnectionFilter
-
- """Filter by the UserProvisioningRequest's userProvConfig relation."""
- userProvConfig: SalesforceUserProvisioningConfigConnectionFilter
-
- """Filter by the UserProvisioningRequest's connectedApp relation."""
- connectedApp: SalesforceConnectedApplicationConnectionFilter
-
- """Filter by the UserProvisioningRequest's salesforceUser relation."""
- salesforceUser: SalesforceUserConnectionFilter
-
- """Filter by the UserProvisioningRequest's lastModifiedBy relation."""
- lastModifiedBy: SalesforceUserConnectionFilter
-
- """Filter by the UserProvisioningRequest's createdBy relation."""
- createdBy: SalesforceUserConnectionFilter
-
- """Filter by the UserProvisioningRequest's id field"""
- id: SalesforceIdFilter
-
- """Filter by the UserProvisioningRequest's ownerId field"""
- ownerId: SalesforceIdFilter
-
- """Filter by the UserProvisioningRequest's isDeleted field"""
- isDeleted: SalesforceBooleanFilter
-
- """Filter by the UserProvisioningRequest's name field"""
- name: SalesforceStringFilter
-
- """Filter by the UserProvisioningRequest's createdDate field"""
- createdDate: SalesforceDateTimeFilter
-
- """Filter by the UserProvisioningRequest's createdById field"""
- createdById: SalesforceIdFilter
-
- """Filter by the UserProvisioningRequest's lastModifiedDate field"""
- lastModifiedDate: SalesforceDateTimeFilter
-
- """Filter by the UserProvisioningRequest's lastModifiedById field"""
- lastModifiedById: SalesforceIdFilter
-
- """Filter by the UserProvisioningRequest's systemModstamp field"""
- systemModstamp: SalesforceDateTimeFilter
-
- """Filter by the UserProvisioningRequest's salesforceUserId field"""
- salesforceUserId: SalesforceIdFilter
-
- """Filter by the UserProvisioningRequest's externalUserId field"""
- externalUserId: SalesforceStringFilter
-
- """Filter by the UserProvisioningRequest's appName field"""
- appName: SalesforceStringFilter
-
- """Filter by the UserProvisioningRequest's state field"""
- state: SalesforceStringFilter
-
- """Filter by the UserProvisioningRequest's operation field"""
- operation: SalesforceStringFilter
-
- """Filter by the UserProvisioningRequest's scheduleDate field"""
- scheduleDate: SalesforceDateTimeFilter
-
- """Filter by the UserProvisioningRequest's connectedAppId field"""
- connectedAppId: SalesforceIdFilter
-
- """Filter by the UserProvisioningRequest's userProvConfigId field"""
- userProvConfigId: SalesforceIdFilter
-
- """Filter by the UserProvisioningRequest's userProvAccountId field"""
- userProvAccountId: SalesforceIdFilter
-
- """Filter by the UserProvisioningRequest's approvalStatus field"""
- approvalStatus: SalesforceStringFilter
-
- """Filter by the UserProvisioningRequest's managerId field"""
- managerId: SalesforceIdFilter
-
- """Filter by the UserProvisioningRequest's retryCount field"""
- retryCount: SalesforceIntFilter
-
- """Filter by the UserProvisioningRequest's parentId field"""
- parentId: SalesforceIdFilter
-
- """Checks for any expressions in this list."""
- or: [SalesforceUserProvisioningRequestConnectionFilter!]
-
- """Checks for all expressions in this list."""
- and: [SalesforceUserProvisioningRequestConnectionFilter!]
-}
-
-"""Field that User Provisioning Requests can be sorted by"""
-enum SalesforceUserProvisioningRequestSortByFieldEnum {
- ID
- OWNER_ID
- IS_DELETED
- NAME
- CREATED_DATE
- CREATED_BY_ID
- LAST_MODIFIED_DATE
- LAST_MODIFIED_BY_ID
- SYSTEM_MODSTAMP
- SALESFORCE_USER_ID
- EXTERNAL_USER_ID
- APP_NAME
- STATE
- OPERATION
- SCHEDULE_DATE
- CONNECTED_APP_ID
- USER_PROV_CONFIG_ID
- USER_PROV_ACCOUNT_ID
- APPROVAL_STATUS
- MANAGER_ID
- RETRY_COUNT
- PARENT_ID
-}
-
-"""An edge in a connection."""
-type SalesforceUserProvisioningRequestEdge {
- """The item at the end of the edge."""
- node: SalesforceUserProvisioningRequest!
-
- """A cursor for use in pagination"""
- cursor: String!
-}
-
-"""
-Salesforce User Provisioning Requests connection, for use in pagination.
-"""
-type SalesforceUserProvisioningRequestsConnection {
- """
- The count of all User Provisioning Request you could get from the connection.
- """
- totalCount: Int!
-
- """Pagination Information"""
- pageInfo: PageInfo!
-
- """List of Salesforce User Provisioning Requests"""
- nodes: [SalesforceUserProvisioningRequest!]!
-
- """List of User Provisioning Request edges"""
- edges: [SalesforceUserProvisioningRequestEdge!]!
-}
-
-"""User Provisioning Config"""
-type SalesforceUserProvisioningConfig implements OneGraphNode {
- """UserProvisioningConfig ID"""
- id: String!
-
- """Deleted"""
- isDeleted: Boolean!
-
- """Name"""
- developerName: String!
-
- """Master Language"""
- language: String
-
- """Label"""
- masterLabel: String!
-
- """Namespace Prefix"""
- namespacePrefix: String
-
- """Created Date"""
- createdDate: String!
-
- """Created By ID"""
- createdById: String!
-
- """Created By ID"""
- createdBy: SalesforceUser!
-
- """Last Modified Date"""
- lastModifiedDate: String!
-
- """Last Modified By ID"""
- lastModifiedById: String!
-
- """Last Modified By ID"""
- lastModifiedBy: SalesforceUser!
-
- """System Modstamp"""
- systemModstamp: String!
-
- """Connected App ID"""
- connectedAppId: String
-
- """Connected App ID"""
- connectedApp: SalesforceConnectedApplication
-
- """Notes"""
- notes: String
-
- """Enabled"""
- enabled: Boolean!
-
- """Approval Required"""
- approvalRequired: String
-
- """User Account Mapping"""
- userAccountMapping: String
-
- """Enabled Operations"""
- enabledOperations: String
-
- """On Update Attributes"""
- onUpdateAttributes: String
-
- """Last Recon Date"""
- lastReconDateTime: String
-
- """Named Credential ID"""
- namedCredentialId: String
-
- """Named Credential ID"""
- namedCredential: SalesforceNamedCredential
-
- """Recon Filter"""
- reconFilter: String
-
- """Collection of Salesforce UserProvisioningRequest"""
- userProvisioningRequests(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceUserProvisioningRequestConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceUserProvisioningRequestSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceUserProvisioningRequestSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """
- Number of UserProvisioningRequests to fetch. Defaults to 10. Maximum is 60.
- """
- first: Int
- ): SalesforceUserProvisioningRequestsConnection
- customFields(
- """
- List of custom fields to return. By default, returns all custom fields.
- """
- fields: [String!]
- ): JSON!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-"""
-Salesforce User Provisioning Configs connection, for use in pagination.
-"""
-type SalesforceUserProvisioningConfigsConnection {
- """
- The count of all User Provisioning Config you could get from the connection.
- """
- totalCount: Int!
-
- """Pagination Information"""
- pageInfo: PageInfo!
-
- """List of Salesforce User Provisioning Configs"""
- nodes: [SalesforceUserProvisioningConfig!]!
-
- """List of User Provisioning Config edges"""
- edges: [SalesforceUserProvisioningConfigEdge!]!
-}
-
-"""
-A filter to be used against SetupEntityAccess object types. All fields are combined with a logical ‘and.’
-"""
-input SalesforceSetupEntityAccessConnectionFilter {
- """Filter against custom fields."""
- customField: SalesforceCustomFieldFilter
-
- """Filter by the SetupEntityAccess's parent relation."""
- parent: SalesforcePermissionSetConnectionFilter
-
- """Filter by the SetupEntityAccess's id field"""
- id: SalesforceIdFilter
-
- """Filter by the SetupEntityAccess's parentId field"""
- parentId: SalesforceIdFilter
-
- """Filter by the SetupEntityAccess's setupEntityId field"""
- setupEntityId: SalesforceIdFilter
-
- """Filter by the SetupEntityAccess's setupEntityType field"""
- setupEntityType: SalesforceStringFilter
-
- """Filter by the SetupEntityAccess's systemModstamp field"""
- systemModstamp: SalesforceDateTimeFilter
-
- """Checks for any expressions in this list."""
- or: [SalesforceSetupEntityAccessConnectionFilter!]
-
- """Checks for all expressions in this list."""
- and: [SalesforceSetupEntityAccessConnectionFilter!]
-}
-
-"""Field that Setup Entity Accesses can be sorted by"""
-enum SalesforceSetupEntityAccessSortByFieldEnum {
- ID
- PARENT_ID
- SETUP_ENTITY_ID
- SETUP_ENTITY_TYPE
- SYSTEM_MODSTAMP
-}
-
-"""
-A filter to be used against ExternalDataUserAuth object types. All fields are combined with a logical ‘and.’
-"""
-input SalesforceExternalDataUserAuthConnectionFilter {
- """Filter against custom fields."""
- customField: SalesforceCustomFieldFilter
-
- """Filter by the ExternalDataUserAuth's authProvider relation."""
- authProvider: SalesforceAuthProviderConnectionFilter
-
- """Filter by the ExternalDataUserAuth's user relation."""
- user: SalesforceUserConnectionFilter
-
- """Filter by the ExternalDataUserAuth's lastModifiedBy relation."""
- lastModifiedBy: SalesforceUserConnectionFilter
-
- """Filter by the ExternalDataUserAuth's createdBy relation."""
- createdBy: SalesforceUserConnectionFilter
-
- """Filter by the ExternalDataUserAuth's id field"""
- id: SalesforceIdFilter
-
- """Filter by the ExternalDataUserAuth's isDeleted field"""
- isDeleted: SalesforceBooleanFilter
-
- """Filter by the ExternalDataUserAuth's createdDate field"""
- createdDate: SalesforceDateTimeFilter
-
- """Filter by the ExternalDataUserAuth's createdById field"""
- createdById: SalesforceIdFilter
-
- """Filter by the ExternalDataUserAuth's lastModifiedDate field"""
- lastModifiedDate: SalesforceDateTimeFilter
-
- """Filter by the ExternalDataUserAuth's lastModifiedById field"""
- lastModifiedById: SalesforceIdFilter
-
- """Filter by the ExternalDataUserAuth's systemModstamp field"""
- systemModstamp: SalesforceDateTimeFilter
-
- """Filter by the ExternalDataUserAuth's externalDataSourceId field"""
- externalDataSourceId: SalesforceIdFilter
-
- """Filter by the ExternalDataUserAuth's userId field"""
- userId: SalesforceIdFilter
-
- """Filter by the ExternalDataUserAuth's protocol field"""
- protocol: SalesforceStringFilter
-
- """Filter by the ExternalDataUserAuth's username field"""
- username: SalesforceStringFilter
-
- """Filter by the ExternalDataUserAuth's authProviderId field"""
- authProviderId: SalesforceIdFilter
-
- """Checks for any expressions in this list."""
- or: [SalesforceExternalDataUserAuthConnectionFilter!]
-
- """Checks for all expressions in this list."""
- and: [SalesforceExternalDataUserAuthConnectionFilter!]
-}
-
-"""Field that External Data User Authentications can be sorted by"""
-enum SalesforceExternalDataUserAuthSortByFieldEnum {
- ID
- IS_DELETED
- CREATED_DATE
- CREATED_BY_ID
- LAST_MODIFIED_DATE
- LAST_MODIFIED_BY_ID
- SYSTEM_MODSTAMP
- EXTERNAL_DATA_SOURCE_ID
- USER_ID
- PROTOCOL
- USERNAME
- AUTH_PROVIDER_ID
-}
-
-"""An edge in a connection."""
-type SalesforceExternalDataUserAuthEdge {
- """The item at the end of the edge."""
- node: SalesforceExternalDataUserAuth!
-
- """A cursor for use in pagination"""
- cursor: String!
-}
-
-union SalesforceExternalDataUserAuthExternalDataSourceUnion = SalesforceNamedCredential | SalesforceExternalDataSource
-
-"""External Data User Authentication"""
-type SalesforceExternalDataUserAuth implements OneGraphNode {
- """External Data User Authentication ID"""
- id: String!
-
- """Deleted"""
- isDeleted: Boolean!
-
- """Created Date"""
- createdDate: String!
-
- """Created By ID"""
- createdById: String!
-
- """Created By ID"""
- createdBy: SalesforceUser!
-
- """Last Modified Date"""
- lastModifiedDate: String!
-
- """Last Modified By ID"""
- lastModifiedById: String!
-
- """Last Modified By ID"""
- lastModifiedBy: SalesforceUser!
-
- """System Modstamp"""
- systemModstamp: String!
-
- """External Data Source ID"""
- externalDataSourceId: String!
-
- """External Data Source ID"""
- externalDataSource: SalesforceExternalDataUserAuthExternalDataSourceUnion!
-
- """User ID"""
- userId: String
-
- """User ID"""
- user: SalesforceUser
-
- """Authentication Protocol"""
- protocol: String
-
- """Username"""
- username: String
-
- """Password"""
- password: String
-
- """Auth. Provider ID"""
- authProviderId: String
-
- """Auth. Provider ID"""
- authProvider: SalesforceAuthProvider
- customFields(
- """
- List of custom fields to return. By default, returns all custom fields.
- """
- fields: [String!]
- ): JSON!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-"""
-Salesforce External Data User Authentications connection, for use in pagination.
-"""
-type SalesforceExternalDataUserAuthsConnection {
- """
- The count of all External Data User Authentication you could get from the connection.
- """
- totalCount: Int!
-
- """Pagination Information"""
- pageInfo: PageInfo!
-
- """List of Salesforce External Data User Authentications"""
- nodes: [SalesforceExternalDataUserAuth!]!
-
- """List of External Data User Authentication edges"""
- edges: [SalesforceExternalDataUserAuthEdge!]!
-}
-
-"""Named Credential"""
-type SalesforceNamedCredential implements OneGraphNode {
- """Named Credential ID"""
- id: String!
-
- """Deleted"""
- isDeleted: Boolean!
-
- """Name"""
- developerName: String!
-
- """Master Language"""
- language: String!
-
- """Label"""
- masterLabel: String!
-
- """Namespace Prefix"""
- namespacePrefix: String
-
- """Created Date"""
- createdDate: String!
-
- """Created By ID"""
- createdById: String!
-
- """Created By ID"""
- createdBy: SalesforceUser!
-
- """Last Modified Date"""
- lastModifiedDate: String!
-
- """Last Modified By ID"""
- lastModifiedById: String!
-
- """Last Modified By ID"""
- lastModifiedBy: SalesforceUser!
-
- """System Modstamp"""
- systemModstamp: String!
-
- """URL"""
- endpoint: String
-
- """Identity Type"""
- principalType: String!
-
- """GenerateAuthorizationHeader"""
- calloutOptionsGenerateAuthorizationHeader: Boolean!
-
- """AllowMergeFieldsInHeader"""
- calloutOptionsAllowMergeFieldsInHeader: Boolean!
-
- """AllowMergeFieldsInBody"""
- calloutOptionsAllowMergeFieldsInBody: Boolean!
-
- """Auth. Provider ID"""
- authProviderId: String
-
- """Auth. Provider ID"""
- authProvider: SalesforceAuthProvider
-
- """Collection of Salesforce ExternalDataUserAuth"""
- userAuths(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceExternalDataUserAuthConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceExternalDataUserAuthSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceExternalDataUserAuthSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """
- Number of ExternalDataUserAuths to fetch. Defaults to 10. Maximum is 60.
- """
- first: Int
- ): SalesforceExternalDataUserAuthsConnection
-
- """Collection of Salesforce SetupEntityAccess"""
- setupEntityAccessItems(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceSetupEntityAccessConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceSetupEntityAccessSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceSetupEntityAccessSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of SetupEntityAccesses to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceSetupEntityAccesssConnection
-
- """Collection of Salesforce UserProvisioningConfig"""
- userProvisioningConfigs(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceUserProvisioningConfigConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceUserProvisioningConfigSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceUserProvisioningConfigSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """
- Number of UserProvisioningConfigs to fetch. Defaults to 10. Maximum is 60.
- """
- first: Int
- ): SalesforceUserProvisioningConfigsConnection
- customFields(
- """
- List of custom fields to return. By default, returns all custom fields.
- """
- fields: [String!]
- ): JSON!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-union SalesforceSetupEntityAccessSetupEntityUnion = SalesforceNamedCredential | SalesforceExternalDataSource | SalesforceCustomPermission | SalesforceConnectedApplication | SalesforceApexPage | SalesforceApexClass
-
-"""Setup Entity Access"""
-type SalesforceSetupEntityAccess implements OneGraphNode {
- """SetupEntityAccess ID"""
- id: String!
-
- """Parent ID"""
- parentId: String!
-
- """Parent ID"""
- parent: SalesforcePermissionSet!
-
- """Setup Entity ID"""
- setupEntityId: String!
-
- """Setup Entity ID"""
- setupEntity: SalesforceSetupEntityAccessSetupEntityUnion!
-
- """Setup Entity Type"""
- setupEntityType: String
-
- """System Modstamp"""
- systemModstamp: String!
- customFields(
- """
- List of custom fields to return. By default, returns all custom fields.
- """
- fields: [String!]
- ): JSON!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-"""Salesforce Setup Entity Accesses connection, for use in pagination."""
-type SalesforceSetupEntityAccesssConnection {
- """
- The count of all Setup Entity Access you could get from the connection.
- """
- totalCount: Int!
-
- """Pagination Information"""
- pageInfo: PageInfo!
-
- """List of Salesforce Setup Entity Accesses"""
- nodes: [SalesforceSetupEntityAccess!]!
-
- """List of Setup Entity Access edges"""
- edges: [SalesforceSetupEntityAccessEdge!]!
-}
-
-"""
-A filter to be used against PermissionSetLicense object types. All fields are combined with a logical ‘and.’
-"""
-input SalesforcePermissionSetLicenseConnectionFilter {
- """Filter against custom fields."""
- customField: SalesforceCustomFieldFilter
-
- """Filter by the PermissionSetLicense's lastModifiedBy relation."""
- lastModifiedBy: SalesforceUserConnectionFilter
-
- """Filter by the PermissionSetLicense's createdBy relation."""
- createdBy: SalesforceUserConnectionFilter
-
- """Filter by the PermissionSetLicense's id field"""
- id: SalesforceIdFilter
-
- """Filter by the PermissionSetLicense's isDeleted field"""
- isDeleted: SalesforceBooleanFilter
-
- """Filter by the PermissionSetLicense's developerName field"""
- developerName: SalesforceStringFilter
-
- """Filter by the PermissionSetLicense's language field"""
- language: SalesforceStringFilter
-
- """Filter by the PermissionSetLicense's masterLabel field"""
- masterLabel: SalesforceStringFilter
-
- """Filter by the PermissionSetLicense's createdDate field"""
- createdDate: SalesforceDateTimeFilter
-
- """Filter by the PermissionSetLicense's createdById field"""
- createdById: SalesforceIdFilter
-
- """Filter by the PermissionSetLicense's lastModifiedDate field"""
- lastModifiedDate: SalesforceDateTimeFilter
-
- """Filter by the PermissionSetLicense's lastModifiedById field"""
- lastModifiedById: SalesforceIdFilter
-
- """Filter by the PermissionSetLicense's systemModstamp field"""
- systemModstamp: SalesforceDateTimeFilter
-
- """Filter by the PermissionSetLicense's permissionSetLicenseKey field"""
- permissionSetLicenseKey: SalesforceStringFilter
-
- """Filter by the PermissionSetLicense's totalLicenses field"""
- totalLicenses: SalesforceIntFilter
-
- """Filter by the PermissionSetLicense's status field"""
- status: SalesforceStringFilter
-
- """Filter by the PermissionSetLicense's expirationDate field"""
- expirationDate: SalesforceDateFilter
-
- """
- Filter by the PermissionSetLicense's maximumPermissionsEmailSingle field
- """
- maximumPermissionsEmailSingle: SalesforceBooleanFilter
-
- """Filter by the PermissionSetLicense's maximumPermissionsEmailMass field"""
- maximumPermissionsEmailMass: SalesforceBooleanFilter
-
- """Filter by the PermissionSetLicense's maximumPermissionsEditTask field"""
- maximumPermissionsEditTask: SalesforceBooleanFilter
-
- """Filter by the PermissionSetLicense's maximumPermissionsEditEvent field"""
- maximumPermissionsEditEvent: SalesforceBooleanFilter
-
- """
- Filter by the PermissionSetLicense's maximumPermissionsExportReport field
- """
- maximumPermissionsExportReport: SalesforceBooleanFilter
-
- """
- Filter by the PermissionSetLicense's maximumPermissionsImportPersonal field
- """
- maximumPermissionsImportPersonal: SalesforceBooleanFilter
-
- """
- Filter by the PermissionSetLicense's maximumPermissionsDataExport field
- """
- maximumPermissionsDataExport: SalesforceBooleanFilter
-
- """
- Filter by the PermissionSetLicense's maximumPermissionsManageUsers field
- """
- maximumPermissionsManageUsers: SalesforceBooleanFilter
-
- """
- Filter by the PermissionSetLicense's maximumPermissionsEditPublicFilters field
- """
- maximumPermissionsEditPublicFilters: SalesforceBooleanFilter
-
- """
- Filter by the PermissionSetLicense's maximumPermissionsEditPublicTemplates field
- """
- maximumPermissionsEditPublicTemplates: SalesforceBooleanFilter
-
- """
- Filter by the PermissionSetLicense's maximumPermissionsModifyAllData field
- """
- maximumPermissionsModifyAllData: SalesforceBooleanFilter
-
- """
- Filter by the PermissionSetLicense's maximumPermissionsManageCases field
- """
- maximumPermissionsManageCases: SalesforceBooleanFilter
-
- """
- Filter by the PermissionSetLicense's maximumPermissionsMassInlineEdit field
- """
- maximumPermissionsMassInlineEdit: SalesforceBooleanFilter
-
- """
- Filter by the PermissionSetLicense's maximumPermissionsEditKnowledge field
- """
- maximumPermissionsEditKnowledge: SalesforceBooleanFilter
-
- """
- Filter by the PermissionSetLicense's maximumPermissionsManageKnowledge field
- """
- maximumPermissionsManageKnowledge: SalesforceBooleanFilter
-
- """
- Filter by the PermissionSetLicense's maximumPermissionsManageSolutions field
- """
- maximumPermissionsManageSolutions: SalesforceBooleanFilter
-
- """
- Filter by the PermissionSetLicense's maximumPermissionsCustomizeApplication field
- """
- maximumPermissionsCustomizeApplication: SalesforceBooleanFilter
-
- """
- Filter by the PermissionSetLicense's maximumPermissionsEditReadonlyFields field
- """
- maximumPermissionsEditReadonlyFields: SalesforceBooleanFilter
-
- """
- Filter by the PermissionSetLicense's maximumPermissionsRunReports field
- """
- maximumPermissionsRunReports: SalesforceBooleanFilter
-
- """Filter by the PermissionSetLicense's maximumPermissionsViewSetup field"""
- maximumPermissionsViewSetup: SalesforceBooleanFilter
-
- """
- Filter by the PermissionSetLicense's maximumPermissionsTransferAnyEntity field
- """
- maximumPermissionsTransferAnyEntity: SalesforceBooleanFilter
-
- """
- Filter by the PermissionSetLicense's maximumPermissionsNewReportBuilder field
- """
- maximumPermissionsNewReportBuilder: SalesforceBooleanFilter
-
- """
- Filter by the PermissionSetLicense's maximumPermissionsActivateContract field
- """
- maximumPermissionsActivateContract: SalesforceBooleanFilter
-
- """
- Filter by the PermissionSetLicense's maximumPermissionsActivateOrder field
- """
- maximumPermissionsActivateOrder: SalesforceBooleanFilter
-
- """
- Filter by the PermissionSetLicense's maximumPermissionsImportLeads field
- """
- maximumPermissionsImportLeads: SalesforceBooleanFilter
-
- """
- Filter by the PermissionSetLicense's maximumPermissionsManageLeads field
- """
- maximumPermissionsManageLeads: SalesforceBooleanFilter
-
- """
- Filter by the PermissionSetLicense's maximumPermissionsTransferAnyLead field
- """
- maximumPermissionsTransferAnyLead: SalesforceBooleanFilter
-
- """
- Filter by the PermissionSetLicense's maximumPermissionsViewAllData field
- """
- maximumPermissionsViewAllData: SalesforceBooleanFilter
-
- """
- Filter by the PermissionSetLicense's maximumPermissionsEditPublicDocuments field
- """
- maximumPermissionsEditPublicDocuments: SalesforceBooleanFilter
-
- """
- Filter by the PermissionSetLicense's maximumPermissionsViewEncryptedData field
- """
- maximumPermissionsViewEncryptedData: SalesforceBooleanFilter
-
- """
- Filter by the PermissionSetLicense's maximumPermissionsEditBrandTemplates field
- """
- maximumPermissionsEditBrandTemplates: SalesforceBooleanFilter
-
- """
- Filter by the PermissionSetLicense's maximumPermissionsEditHtmlTemplates field
- """
- maximumPermissionsEditHtmlTemplates: SalesforceBooleanFilter
-
- """
- Filter by the PermissionSetLicense's maximumPermissionsChatterInternalUser field
- """
- maximumPermissionsChatterInternalUser: SalesforceBooleanFilter
-
- """
- Filter by the PermissionSetLicense's maximumPermissionsManageEncryptionKeys field
- """
- maximumPermissionsManageEncryptionKeys: SalesforceBooleanFilter
-
- """
- Filter by the PermissionSetLicense's maximumPermissionsDeleteActivatedContract field
- """
- maximumPermissionsDeleteActivatedContract: SalesforceBooleanFilter
-
- """
- Filter by the PermissionSetLicense's maximumPermissionsChatterInviteExternalUsers field
- """
- maximumPermissionsChatterInviteExternalUsers: SalesforceBooleanFilter
-
- """
- Filter by the PermissionSetLicense's maximumPermissionsSendSitRequests field
- """
- maximumPermissionsSendSitRequests: SalesforceBooleanFilter
-
- """
- Filter by the PermissionSetLicense's maximumPermissionsManageRemoteAccess field
- """
- maximumPermissionsManageRemoteAccess: SalesforceBooleanFilter
-
- """
- Filter by the PermissionSetLicense's maximumPermissionsCanUseNewDashboardBuilder field
- """
- maximumPermissionsCanUseNewDashboardBuilder: SalesforceBooleanFilter
-
- """
- Filter by the PermissionSetLicense's maximumPermissionsManageCategories field
- """
- maximumPermissionsManageCategories: SalesforceBooleanFilter
-
- """
- Filter by the PermissionSetLicense's maximumPermissionsConvertLeads field
- """
- maximumPermissionsConvertLeads: SalesforceBooleanFilter
-
- """
- Filter by the PermissionSetLicense's maximumPermissionsPasswordNeverExpires field
- """
- maximumPermissionsPasswordNeverExpires: SalesforceBooleanFilter
-
- """
- Filter by the PermissionSetLicense's maximumPermissionsUseTeamReassignWizards field
- """
- maximumPermissionsUseTeamReassignWizards: SalesforceBooleanFilter
-
- """
- Filter by the PermissionSetLicense's maximumPermissionsEditActivatedOrders field
- """
- maximumPermissionsEditActivatedOrders: SalesforceBooleanFilter
-
- """
- Filter by the PermissionSetLicense's maximumPermissionsInstallPackaging field
- """
- maximumPermissionsInstallPackaging: SalesforceBooleanFilter
-
- """
- Filter by the PermissionSetLicense's maximumPermissionsPublishPackaging field
- """
- maximumPermissionsPublishPackaging: SalesforceBooleanFilter
-
- """
- Filter by the PermissionSetLicense's maximumPermissionsChatterOwnGroups field
- """
- maximumPermissionsChatterOwnGroups: SalesforceBooleanFilter
-
- """
- Filter by the PermissionSetLicense's maximumPermissionsEditOppLineItemUnitPrice field
- """
- maximumPermissionsEditOppLineItemUnitPrice: SalesforceBooleanFilter
-
- """
- Filter by the PermissionSetLicense's maximumPermissionsCreatePackaging field
- """
- maximumPermissionsCreatePackaging: SalesforceBooleanFilter
-
- """
- Filter by the PermissionSetLicense's maximumPermissionsBulkApiHardDelete field
- """
- maximumPermissionsBulkApiHardDelete: SalesforceBooleanFilter
-
- """
- Filter by the PermissionSetLicense's maximumPermissionsSolutionImport field
- """
- maximumPermissionsSolutionImport: SalesforceBooleanFilter
-
- """
- Filter by the PermissionSetLicense's maximumPermissionsManageCallCenters field
- """
- maximumPermissionsManageCallCenters: SalesforceBooleanFilter
-
- """
- Filter by the PermissionSetLicense's maximumPermissionsManageSynonyms field
- """
- maximumPermissionsManageSynonyms: SalesforceBooleanFilter
-
- """
- Filter by the PermissionSetLicense's maximumPermissionsViewContent field
- """
- maximumPermissionsViewContent: SalesforceBooleanFilter
-
- """
- Filter by the PermissionSetLicense's maximumPermissionsManageEmailClientConfig field
- """
- maximumPermissionsManageEmailClientConfig: SalesforceBooleanFilter
-
- """
- Filter by the PermissionSetLicense's maximumPermissionsEnableNotifications field
- """
- maximumPermissionsEnableNotifications: SalesforceBooleanFilter
-
- """
- Filter by the PermissionSetLicense's maximumPermissionsManageDataIntegrations field
- """
- maximumPermissionsManageDataIntegrations: SalesforceBooleanFilter
-
- """
- Filter by the PermissionSetLicense's maximumPermissionsDistributeFromPersWksp field
- """
- maximumPermissionsDistributeFromPersWksp: SalesforceBooleanFilter
-
- """
- Filter by the PermissionSetLicense's maximumPermissionsViewDataCategories field
- """
- maximumPermissionsViewDataCategories: SalesforceBooleanFilter
-
- """
- Filter by the PermissionSetLicense's maximumPermissionsManageDataCategories field
- """
- maximumPermissionsManageDataCategories: SalesforceBooleanFilter
-
- """
- Filter by the PermissionSetLicense's maximumPermissionsAuthorApex field
- """
- maximumPermissionsAuthorApex: SalesforceBooleanFilter
-
- """
- Filter by the PermissionSetLicense's maximumPermissionsManageMobile field
- """
- maximumPermissionsManageMobile: SalesforceBooleanFilter
-
- """
- Filter by the PermissionSetLicense's maximumPermissionsApiEnabled field
- """
- maximumPermissionsApiEnabled: SalesforceBooleanFilter
-
- """
- Filter by the PermissionSetLicense's maximumPermissionsManageCustomReportTypes field
- """
- maximumPermissionsManageCustomReportTypes: SalesforceBooleanFilter
-
- """
- Filter by the PermissionSetLicense's maximumPermissionsEditCaseComments field
- """
- maximumPermissionsEditCaseComments: SalesforceBooleanFilter
-
- """
- Filter by the PermissionSetLicense's maximumPermissionsTransferAnyCase field
- """
- maximumPermissionsTransferAnyCase: SalesforceBooleanFilter
-
- """
- Filter by the PermissionSetLicense's maximumPermissionsContentAdministrator field
- """
- maximumPermissionsContentAdministrator: SalesforceBooleanFilter
-
- """
- Filter by the PermissionSetLicense's maximumPermissionsCreateWorkspaces field
- """
- maximumPermissionsCreateWorkspaces: SalesforceBooleanFilter
-
- """
- Filter by the PermissionSetLicense's maximumPermissionsManageContentPermissions field
- """
- maximumPermissionsManageContentPermissions: SalesforceBooleanFilter
-
- """
- Filter by the PermissionSetLicense's maximumPermissionsManageContentProperties field
- """
- maximumPermissionsManageContentProperties: SalesforceBooleanFilter
-
- """
- Filter by the PermissionSetLicense's maximumPermissionsManageContentTypes field
- """
- maximumPermissionsManageContentTypes: SalesforceBooleanFilter
-
- """
- Filter by the PermissionSetLicense's maximumPermissionsManageExchangeConfig field
- """
- maximumPermissionsManageExchangeConfig: SalesforceBooleanFilter
-
- """
- Filter by the PermissionSetLicense's maximumPermissionsManageAnalyticSnapshots field
- """
- maximumPermissionsManageAnalyticSnapshots: SalesforceBooleanFilter
-
- """
- Filter by the PermissionSetLicense's maximumPermissionsScheduleReports field
- """
- maximumPermissionsScheduleReports: SalesforceBooleanFilter
-
- """
- Filter by the PermissionSetLicense's maximumPermissionsManageBusinessHourHolidays field
- """
- maximumPermissionsManageBusinessHourHolidays: SalesforceBooleanFilter
-
- """
- Filter by the PermissionSetLicense's maximumPermissionsManageDynamicDashboards field
- """
- maximumPermissionsManageDynamicDashboards: SalesforceBooleanFilter
-
- """
- Filter by the PermissionSetLicense's maximumPermissionsCustomSidebarOnAllPages field
- """
- maximumPermissionsCustomSidebarOnAllPages: SalesforceBooleanFilter
-
- """
- Filter by the PermissionSetLicense's maximumPermissionsManageInteraction field
- """
- maximumPermissionsManageInteraction: SalesforceBooleanFilter
-
- """
- Filter by the PermissionSetLicense's maximumPermissionsViewMyTeamsDashboards field
- """
- maximumPermissionsViewMyTeamsDashboards: SalesforceBooleanFilter
-
- """
- Filter by the PermissionSetLicense's maximumPermissionsModerateChatter field
- """
- maximumPermissionsModerateChatter: SalesforceBooleanFilter
-
- """
- Filter by the PermissionSetLicense's maximumPermissionsResetPasswords field
- """
- maximumPermissionsResetPasswords: SalesforceBooleanFilter
-
- """
- Filter by the PermissionSetLicense's maximumPermissionsFlowUflRequired field
- """
- maximumPermissionsFlowUflRequired: SalesforceBooleanFilter
-
- """
- Filter by the PermissionSetLicense's maximumPermissionsCanInsertFeedSystemFields field
- """
- maximumPermissionsCanInsertFeedSystemFields: SalesforceBooleanFilter
-
- """
- Filter by the PermissionSetLicense's maximumPermissionsManageKnowledgeImportExport field
- """
- maximumPermissionsManageKnowledgeImportExport: SalesforceBooleanFilter
-
- """
- Filter by the PermissionSetLicense's maximumPermissionsEmailTemplateManagement field
- """
- maximumPermissionsEmailTemplateManagement: SalesforceBooleanFilter
-
- """
- Filter by the PermissionSetLicense's maximumPermissionsEmailAdministration field
- """
- maximumPermissionsEmailAdministration: SalesforceBooleanFilter
-
- """
- Filter by the PermissionSetLicense's maximumPermissionsManageChatterMessages field
- """
- maximumPermissionsManageChatterMessages: SalesforceBooleanFilter
-
- """
- Filter by the PermissionSetLicense's maximumPermissionsAllowEmailIc field
- """
- maximumPermissionsAllowEmailIc: SalesforceBooleanFilter
-
- """
- Filter by the PermissionSetLicense's maximumPermissionsChatterFileLink field
- """
- maximumPermissionsChatterFileLink: SalesforceBooleanFilter
-
- """
- Filter by the PermissionSetLicense's maximumPermissionsForceTwoFactor field
- """
- maximumPermissionsForceTwoFactor: SalesforceBooleanFilter
-
- """
- Filter by the PermissionSetLicense's maximumPermissionsViewEventLogFiles field
- """
- maximumPermissionsViewEventLogFiles: SalesforceBooleanFilter
-
- """
- Filter by the PermissionSetLicense's maximumPermissionsManageNetworks field
- """
- maximumPermissionsManageNetworks: SalesforceBooleanFilter
-
- """
- Filter by the PermissionSetLicense's maximumPermissionsManageAuthProviders field
- """
- maximumPermissionsManageAuthProviders: SalesforceBooleanFilter
-
- """Filter by the PermissionSetLicense's maximumPermissionsRunFlow field"""
- maximumPermissionsRunFlow: SalesforceBooleanFilter
-
- """
- Filter by the PermissionSetLicense's maximumPermissionsCreateCustomizeDashboards field
- """
- maximumPermissionsCreateCustomizeDashboards: SalesforceBooleanFilter
-
- """
- Filter by the PermissionSetLicense's maximumPermissionsCreateDashboardFolders field
- """
- maximumPermissionsCreateDashboardFolders: SalesforceBooleanFilter
-
- """
- Filter by the PermissionSetLicense's maximumPermissionsViewPublicDashboards field
- """
- maximumPermissionsViewPublicDashboards: SalesforceBooleanFilter
-
- """
- Filter by the PermissionSetLicense's maximumPermissionsManageDashbdsInPubFolders field
- """
- maximumPermissionsManageDashbdsInPubFolders: SalesforceBooleanFilter
-
- """
- Filter by the PermissionSetLicense's maximumPermissionsCreateCustomizeReports field
- """
- maximumPermissionsCreateCustomizeReports: SalesforceBooleanFilter
-
- """
- Filter by the PermissionSetLicense's maximumPermissionsCreateReportFolders field
- """
- maximumPermissionsCreateReportFolders: SalesforceBooleanFilter
-
- """
- Filter by the PermissionSetLicense's maximumPermissionsViewPublicReports field
- """
- maximumPermissionsViewPublicReports: SalesforceBooleanFilter
-
- """
- Filter by the PermissionSetLicense's maximumPermissionsManageReportsInPubFolders field
- """
- maximumPermissionsManageReportsInPubFolders: SalesforceBooleanFilter
-
- """
- Filter by the PermissionSetLicense's maximumPermissionsEditMyDashboards field
- """
- maximumPermissionsEditMyDashboards: SalesforceBooleanFilter
-
- """
- Filter by the PermissionSetLicense's maximumPermissionsEditMyReports field
- """
- maximumPermissionsEditMyReports: SalesforceBooleanFilter
-
- """
- Filter by the PermissionSetLicense's maximumPermissionsViewAllUsers field
- """
- maximumPermissionsViewAllUsers: SalesforceBooleanFilter
-
- """
- Filter by the PermissionSetLicense's maximumPermissionsAllowUniversalSearch field
- """
- maximumPermissionsAllowUniversalSearch: SalesforceBooleanFilter
-
- """
- Filter by the PermissionSetLicense's maximumPermissionsConnectOrgToEnvironmentHub field
- """
- maximumPermissionsConnectOrgToEnvironmentHub: SalesforceBooleanFilter
-
- """
- Filter by the PermissionSetLicense's maximumPermissionsWorkCalibrationUser field
- """
- maximumPermissionsWorkCalibrationUser: SalesforceBooleanFilter
-
- """
- Filter by the PermissionSetLicense's maximumPermissionsCreateCustomizeFilters field
- """
- maximumPermissionsCreateCustomizeFilters: SalesforceBooleanFilter
-
- """
- Filter by the PermissionSetLicense's maximumPermissionsWorkDotComUserPerm field
- """
- maximumPermissionsWorkDotComUserPerm: SalesforceBooleanFilter
-
- """
- Filter by the PermissionSetLicense's maximumPermissionsGovernNetworks field
- """
- maximumPermissionsGovernNetworks: SalesforceBooleanFilter
-
- """
- Filter by the PermissionSetLicense's maximumPermissionsSalesConsole field
- """
- maximumPermissionsSalesConsole: SalesforceBooleanFilter
-
- """
- Filter by the PermissionSetLicense's maximumPermissionsTwoFactorApi field
- """
- maximumPermissionsTwoFactorApi: SalesforceBooleanFilter
-
- """
- Filter by the PermissionSetLicense's maximumPermissionsDeleteTopics field
- """
- maximumPermissionsDeleteTopics: SalesforceBooleanFilter
-
- """
- Filter by the PermissionSetLicense's maximumPermissionsEditTopics field
- """
- maximumPermissionsEditTopics: SalesforceBooleanFilter
-
- """
- Filter by the PermissionSetLicense's maximumPermissionsCreateTopics field
- """
- maximumPermissionsCreateTopics: SalesforceBooleanFilter
-
- """
- Filter by the PermissionSetLicense's maximumPermissionsAssignTopics field
- """
- maximumPermissionsAssignTopics: SalesforceBooleanFilter
-
- """
- Filter by the PermissionSetLicense's maximumPermissionsIdentityEnabled field
- """
- maximumPermissionsIdentityEnabled: SalesforceBooleanFilter
-
- """
- Filter by the PermissionSetLicense's maximumPermissionsIdentityConnect field
- """
- maximumPermissionsIdentityConnect: SalesforceBooleanFilter
-
- """
- Filter by the PermissionSetLicense's maximumPermissionsAllowViewKnowledge field
- """
- maximumPermissionsAllowViewKnowledge: SalesforceBooleanFilter
-
- """
- Filter by the PermissionSetLicense's maximumPermissionsContentWorkspaces field
- """
- maximumPermissionsContentWorkspaces: SalesforceBooleanFilter
-
- """
- Filter by the PermissionSetLicense's maximumPermissionsManageSearchPromotionRules field
- """
- maximumPermissionsManageSearchPromotionRules: SalesforceBooleanFilter
-
- """
- Filter by the PermissionSetLicense's maximumPermissionsCustomMobileAppsAccess field
- """
- maximumPermissionsCustomMobileAppsAccess: SalesforceBooleanFilter
-
- """
- Filter by the PermissionSetLicense's maximumPermissionsViewHelpLink field
- """
- maximumPermissionsViewHelpLink: SalesforceBooleanFilter
-
- """
- Filter by the PermissionSetLicense's maximumPermissionsManageProfilesPermissionsets field
- """
- maximumPermissionsManageProfilesPermissionsets: SalesforceBooleanFilter
-
- """
- Filter by the PermissionSetLicense's maximumPermissionsAssignPermissionSets field
- """
- maximumPermissionsAssignPermissionSets: SalesforceBooleanFilter
-
- """
- Filter by the PermissionSetLicense's maximumPermissionsManageRoles field
- """
- maximumPermissionsManageRoles: SalesforceBooleanFilter
-
- """
- Filter by the PermissionSetLicense's maximumPermissionsManageIpAddresses field
- """
- maximumPermissionsManageIpAddresses: SalesforceBooleanFilter
-
- """
- Filter by the PermissionSetLicense's maximumPermissionsManageSharing field
- """
- maximumPermissionsManageSharing: SalesforceBooleanFilter
-
- """
- Filter by the PermissionSetLicense's maximumPermissionsManageInternalUsers field
- """
- maximumPermissionsManageInternalUsers: SalesforceBooleanFilter
-
- """
- Filter by the PermissionSetLicense's maximumPermissionsManagePasswordPolicies field
- """
- maximumPermissionsManagePasswordPolicies: SalesforceBooleanFilter
-
- """
- Filter by the PermissionSetLicense's maximumPermissionsManageLoginAccessPolicies field
- """
- maximumPermissionsManageLoginAccessPolicies: SalesforceBooleanFilter
-
- """
- Filter by the PermissionSetLicense's maximumPermissionsManageCustomPermissions field
- """
- maximumPermissionsManageCustomPermissions: SalesforceBooleanFilter
-
- """
- Filter by the PermissionSetLicense's maximumPermissionsCanVerifyComment field
- """
- maximumPermissionsCanVerifyComment: SalesforceBooleanFilter
-
- """
- Filter by the PermissionSetLicense's maximumPermissionsManageUnlistedGroups field
- """
- maximumPermissionsManageUnlistedGroups: SalesforceBooleanFilter
-
- """
- Filter by the PermissionSetLicense's maximumPermissionsModifySecureAgents field
- """
- maximumPermissionsModifySecureAgents: SalesforceBooleanFilter
-
- """
- Filter by the PermissionSetLicense's maximumPermissionsManageTwoFactor field
- """
- maximumPermissionsManageTwoFactor: SalesforceBooleanFilter
-
- """
- Filter by the PermissionSetLicense's maximumPermissionsChatterForSharePoint field
- """
- maximumPermissionsChatterForSharePoint: SalesforceBooleanFilter
-
- """
- Filter by the PermissionSetLicense's maximumPermissionsLightningExperienceUser field
- """
- maximumPermissionsLightningExperienceUser: SalesforceBooleanFilter
-
- """
- Filter by the PermissionSetLicense's maximumPermissionsConfigCustomRecs field
- """
- maximumPermissionsConfigCustomRecs: SalesforceBooleanFilter
-
- """
- Filter by the PermissionSetLicense's maximumPermissionsSubmitMacrosAllowed field
- """
- maximumPermissionsSubmitMacrosAllowed: SalesforceBooleanFilter
-
- """
- Filter by the PermissionSetLicense's maximumPermissionsBulkMacrosAllowed field
- """
- maximumPermissionsBulkMacrosAllowed: SalesforceBooleanFilter
-
- """
- Filter by the PermissionSetLicense's maximumPermissionsShareInternalArticles field
- """
- maximumPermissionsShareInternalArticles: SalesforceBooleanFilter
-
- """
- Filter by the PermissionSetLicense's maximumPermissionsManageSessionPermissionSets field
- """
- maximumPermissionsManageSessionPermissionSets: SalesforceBooleanFilter
-
- """
- Filter by the PermissionSetLicense's maximumPermissionsSendAnnouncementEmails field
- """
- maximumPermissionsSendAnnouncementEmails: SalesforceBooleanFilter
-
- """
- Filter by the PermissionSetLicense's maximumPermissionsChatterEditOwnPost field
- """
- maximumPermissionsChatterEditOwnPost: SalesforceBooleanFilter
-
- """
- Filter by the PermissionSetLicense's maximumPermissionsChatterEditOwnRecordPost field
- """
- maximumPermissionsChatterEditOwnRecordPost: SalesforceBooleanFilter
-
- """
- Filter by the PermissionSetLicense's maximumPermissionsImportCustomObjects field
- """
- maximumPermissionsImportCustomObjects: SalesforceBooleanFilter
-
- """
- Filter by the PermissionSetLicense's maximumPermissionsDelegatedTwoFactor field
- """
- maximumPermissionsDelegatedTwoFactor: SalesforceBooleanFilter
-
- """
- Filter by the PermissionSetLicense's maximumPermissionsChatterComposeUiCodesnippet field
- """
- maximumPermissionsChatterComposeUiCodesnippet: SalesforceBooleanFilter
-
- """
- Filter by the PermissionSetLicense's maximumPermissionsSelectFilesFromSalesforce field
- """
- maximumPermissionsSelectFilesFromSalesforce: SalesforceBooleanFilter
-
- """
- Filter by the PermissionSetLicense's maximumPermissionsModerateNetworkUsers field
- """
- maximumPermissionsModerateNetworkUsers: SalesforceBooleanFilter
-
- """
- Filter by the PermissionSetLicense's maximumPermissionsMergeTopics field
- """
- maximumPermissionsMergeTopics: SalesforceBooleanFilter
-
- """
- Filter by the PermissionSetLicense's maximumPermissionsSubscribeToLightningReports field
- """
- maximumPermissionsSubscribeToLightningReports: SalesforceBooleanFilter
-
- """
- Filter by the PermissionSetLicense's maximumPermissionsManagePvtRptsAndDashbds field
- """
- maximumPermissionsManagePvtRptsAndDashbds: SalesforceBooleanFilter
-
- """
- Filter by the PermissionSetLicense's maximumPermissionsAllowLightningLogin field
- """
- maximumPermissionsAllowLightningLogin: SalesforceBooleanFilter
-
- """
- Filter by the PermissionSetLicense's maximumPermissionsCampaignInfluence2 field
- """
- maximumPermissionsCampaignInfluence2: SalesforceBooleanFilter
-
- """
- Filter by the PermissionSetLicense's maximumPermissionsViewDataAssessment field
- """
- maximumPermissionsViewDataAssessment: SalesforceBooleanFilter
-
- """
- Filter by the PermissionSetLicense's maximumPermissionsRemoveDirectMessageMembers field
- """
- maximumPermissionsRemoveDirectMessageMembers: SalesforceBooleanFilter
-
- """
- Filter by the PermissionSetLicense's maximumPermissionsCanApproveFeedPost field
- """
- maximumPermissionsCanApproveFeedPost: SalesforceBooleanFilter
-
- """
- Filter by the PermissionSetLicense's maximumPermissionsAddDirectMessageMembers field
- """
- maximumPermissionsAddDirectMessageMembers: SalesforceBooleanFilter
-
- """
- Filter by the PermissionSetLicense's maximumPermissionsAllowViewEditConvertedLeads field
- """
- maximumPermissionsAllowViewEditConvertedLeads: SalesforceBooleanFilter
-
- """
- Filter by the PermissionSetLicense's maximumPermissionsShowCompanyNameAsUserBadge field
- """
- maximumPermissionsShowCompanyNameAsUserBadge: SalesforceBooleanFilter
-
- """Filter by the PermissionSetLicense's maximumPermissionsAccessCmc field"""
- maximumPermissionsAccessCmc: SalesforceBooleanFilter
-
- """
- Filter by the PermissionSetLicense's maximumPermissionsViewHealthCheck field
- """
- maximumPermissionsViewHealthCheck: SalesforceBooleanFilter
-
- """
- Filter by the PermissionSetLicense's maximumPermissionsManageHealthCheck field
- """
- maximumPermissionsManageHealthCheck: SalesforceBooleanFilter
-
- """
- Filter by the PermissionSetLicense's maximumPermissionsPackaging2 field
- """
- maximumPermissionsPackaging2: SalesforceBooleanFilter
-
- """
- Filter by the PermissionSetLicense's maximumPermissionsManageCertificates field
- """
- maximumPermissionsManageCertificates: SalesforceBooleanFilter
-
- """
- Filter by the PermissionSetLicense's maximumPermissionsCreateReportInLightning field
- """
- maximumPermissionsCreateReportInLightning: SalesforceBooleanFilter
-
- """
- Filter by the PermissionSetLicense's maximumPermissionsPreventClassicExperience field
- """
- maximumPermissionsPreventClassicExperience: SalesforceBooleanFilter
-
- """
- Filter by the PermissionSetLicense's maximumPermissionsHideReadByList field
- """
- maximumPermissionsHideReadByList: SalesforceBooleanFilter
-
- """
- Filter by the PermissionSetLicense's maximumPermissionsListEmailSend field
- """
- maximumPermissionsListEmailSend: SalesforceBooleanFilter
-
- """
- Filter by the PermissionSetLicense's maximumPermissionsFeedPinning field
- """
- maximumPermissionsFeedPinning: SalesforceBooleanFilter
-
- """
- Filter by the PermissionSetLicense's maximumPermissionsChangeDashboardColors field
- """
- maximumPermissionsChangeDashboardColors: SalesforceBooleanFilter
-
- """Filter by the PermissionSetLicense's maximumPermissionsIotUser field"""
- maximumPermissionsIotUser: SalesforceBooleanFilter
-
- """
- Filter by the PermissionSetLicense's maximumPermissionsUseWebLink field
- """
- maximumPermissionsUseWebLink: SalesforceBooleanFilter
-
- """
- Filter by the PermissionSetLicense's maximumPermissionsViewAllActivities field
- """
- maximumPermissionsViewAllActivities: SalesforceBooleanFilter
-
- """
- Filter by the PermissionSetLicense's maximumPermissionsSubscribeReportToOtherUsers field
- """
- maximumPermissionsSubscribeReportToOtherUsers: SalesforceBooleanFilter
-
- """
- Filter by the PermissionSetLicense's maximumPermissionsLightningConsoleAllowedForUser field
- """
- maximumPermissionsLightningConsoleAllowedForUser: SalesforceBooleanFilter
-
- """
- Filter by the PermissionSetLicense's maximumPermissionsSubscribeReportsRunAsUser field
- """
- maximumPermissionsSubscribeReportsRunAsUser: SalesforceBooleanFilter
-
- """
- Filter by the PermissionSetLicense's maximumPermissionsSubscribeToLightningDashboards field
- """
- maximumPermissionsSubscribeToLightningDashboards: SalesforceBooleanFilter
-
- """
- Filter by the PermissionSetLicense's maximumPermissionsApexRestServices field
- """
- maximumPermissionsApexRestServices: SalesforceBooleanFilter
-
- """
- Filter by the PermissionSetLicense's maximumPermissionsEnableCommunityAppLauncher field
- """
- maximumPermissionsEnableCommunityAppLauncher: SalesforceBooleanFilter
-
- """
- Filter by the PermissionSetLicense's maximumPermissionsManageSurveys field
- """
- maximumPermissionsManageSurveys: SalesforceBooleanFilter
-
- """Filter by the PermissionSetLicense's maximumPermissionsViewRoles field"""
- maximumPermissionsViewRoles: SalesforceBooleanFilter
-
- """Filter by the PermissionSetLicense's usedLicenses field"""
- usedLicenses: SalesforceIntFilter
-
- """Checks for any expressions in this list."""
- or: [SalesforcePermissionSetLicenseConnectionFilter!]
-
- """Checks for all expressions in this list."""
- and: [SalesforcePermissionSetLicenseConnectionFilter!]
-}
-
-"""
-A filter to be used against GrantedByLicense object types. All fields are combined with a logical ‘and.’
-"""
-input SalesforceGrantedByLicenseConnectionFilter {
- """Filter against custom fields."""
- customField: SalesforceCustomFieldFilter
-
- """Filter by the GrantedByLicense's customPermission relation."""
- customPermission: SalesforceCustomPermissionConnectionFilter
-
- """Filter by the GrantedByLicense's permissionSetLicense relation."""
- permissionSetLicense: SalesforcePermissionSetLicenseConnectionFilter
-
- """Filter by the GrantedByLicense's lastModifiedBy relation."""
- lastModifiedBy: SalesforceUserConnectionFilter
-
- """Filter by the GrantedByLicense's createdBy relation."""
- createdBy: SalesforceUserConnectionFilter
-
- """Filter by the GrantedByLicense's id field"""
- id: SalesforceIdFilter
-
- """Filter by the GrantedByLicense's isDeleted field"""
- isDeleted: SalesforceBooleanFilter
-
- """Filter by the GrantedByLicense's createdDate field"""
- createdDate: SalesforceDateTimeFilter
-
- """Filter by the GrantedByLicense's createdById field"""
- createdById: SalesforceIdFilter
-
- """Filter by the GrantedByLicense's lastModifiedDate field"""
- lastModifiedDate: SalesforceDateTimeFilter
-
- """Filter by the GrantedByLicense's lastModifiedById field"""
- lastModifiedById: SalesforceIdFilter
-
- """Filter by the GrantedByLicense's systemModstamp field"""
- systemModstamp: SalesforceDateTimeFilter
-
- """Filter by the GrantedByLicense's permissionSetLicenseId field"""
- permissionSetLicenseId: SalesforceIdFilter
-
- """Filter by the GrantedByLicense's customPermissionId field"""
- customPermissionId: SalesforceIdFilter
-
- """Checks for any expressions in this list."""
- or: [SalesforceGrantedByLicenseConnectionFilter!]
-
- """Checks for all expressions in this list."""
- and: [SalesforceGrantedByLicenseConnectionFilter!]
-}
-
-"""Field that Setting Granted By Licenses can be sorted by"""
-enum SalesforceGrantedByLicenseSortByFieldEnum {
- ID
- IS_DELETED
- CREATED_DATE
- CREATED_BY_ID
- LAST_MODIFIED_DATE
- LAST_MODIFIED_BY_ID
- SYSTEM_MODSTAMP
- PERMISSION_SET_LICENSE_ID
- CUSTOM_PERMISSION_ID
-}
-
-"""
-A filter to be used against CustomPermission object types. All fields are combined with a logical ‘and.’
-"""
-input SalesforceCustomPermissionConnectionFilter {
- """Filter against custom fields."""
- customField: SalesforceCustomFieldFilter
-
- """Filter by the CustomPermission's lastModifiedBy relation."""
- lastModifiedBy: SalesforceUserConnectionFilter
-
- """Filter by the CustomPermission's createdBy relation."""
- createdBy: SalesforceUserConnectionFilter
-
- """Filter by the CustomPermission's id field"""
- id: SalesforceIdFilter
-
- """Filter by the CustomPermission's isDeleted field"""
- isDeleted: SalesforceBooleanFilter
-
- """Filter by the CustomPermission's developerName field"""
- developerName: SalesforceStringFilter
-
- """Filter by the CustomPermission's language field"""
- language: SalesforceStringFilter
-
- """Filter by the CustomPermission's masterLabel field"""
- masterLabel: SalesforceStringFilter
-
- """Filter by the CustomPermission's namespacePrefix field"""
- namespacePrefix: SalesforceStringFilter
-
- """Filter by the CustomPermission's isProtected field"""
- isProtected: SalesforceBooleanFilter
-
- """Filter by the CustomPermission's createdDate field"""
- createdDate: SalesforceDateTimeFilter
-
- """Filter by the CustomPermission's createdById field"""
- createdById: SalesforceIdFilter
-
- """Filter by the CustomPermission's lastModifiedDate field"""
- lastModifiedDate: SalesforceDateTimeFilter
-
- """Filter by the CustomPermission's lastModifiedById field"""
- lastModifiedById: SalesforceIdFilter
-
- """Filter by the CustomPermission's systemModstamp field"""
- systemModstamp: SalesforceDateTimeFilter
-
- """Filter by the CustomPermission's description field"""
- description: SalesforceStringFilter
-
- """Checks for any expressions in this list."""
- or: [SalesforceCustomPermissionConnectionFilter!]
-
- """Checks for all expressions in this list."""
- and: [SalesforceCustomPermissionConnectionFilter!]
-}
-
-"""
-A filter to be used against CustomPermissionDependency object types. All fields are combined with a logical ‘and.’
-"""
-input SalesforceCustomPermissionDependencyConnectionFilter {
- """Filter against custom fields."""
- customField: SalesforceCustomFieldFilter
-
- """
- Filter by the CustomPermissionDependency's requiredCustomPermission relation.
- """
- requiredCustomPermission: SalesforceCustomPermissionConnectionFilter
-
- """Filter by the CustomPermissionDependency's customPermission relation."""
- customPermission: SalesforceCustomPermissionConnectionFilter
-
- """Filter by the CustomPermissionDependency's lastModifiedBy relation."""
- lastModifiedBy: SalesforceUserConnectionFilter
-
- """Filter by the CustomPermissionDependency's createdBy relation."""
- createdBy: SalesforceUserConnectionFilter
-
- """Filter by the CustomPermissionDependency's id field"""
- id: SalesforceIdFilter
-
- """Filter by the CustomPermissionDependency's isDeleted field"""
- isDeleted: SalesforceBooleanFilter
-
- """Filter by the CustomPermissionDependency's createdDate field"""
- createdDate: SalesforceDateTimeFilter
-
- """Filter by the CustomPermissionDependency's createdById field"""
- createdById: SalesforceIdFilter
-
- """Filter by the CustomPermissionDependency's lastModifiedDate field"""
- lastModifiedDate: SalesforceDateTimeFilter
-
- """Filter by the CustomPermissionDependency's lastModifiedById field"""
- lastModifiedById: SalesforceIdFilter
-
- """Filter by the CustomPermissionDependency's systemModstamp field"""
- systemModstamp: SalesforceDateTimeFilter
-
- """Filter by the CustomPermissionDependency's customPermissionId field"""
- customPermissionId: SalesforceIdFilter
-
- """
- Filter by the CustomPermissionDependency's requiredCustomPermissionId field
- """
- requiredCustomPermissionId: SalesforceIdFilter
-
- """Checks for any expressions in this list."""
- or: [SalesforceCustomPermissionDependencyConnectionFilter!]
-
- """Checks for all expressions in this list."""
- and: [SalesforceCustomPermissionDependencyConnectionFilter!]
-}
-
-"""Field that Custom Permission Dependencies can be sorted by"""
-enum SalesforceCustomPermissionDependencySortByFieldEnum {
- ID
- IS_DELETED
- CREATED_DATE
- CREATED_BY_ID
- LAST_MODIFIED_DATE
- LAST_MODIFIED_BY_ID
- SYSTEM_MODSTAMP
- CUSTOM_PERMISSION_ID
- REQUIRED_CUSTOM_PERMISSION_ID
-}
-
-"""An edge in a connection."""
-type SalesforceCustomPermissionDependencyEdge {
- """The item at the end of the edge."""
- node: SalesforceCustomPermissionDependency!
-
- """A cursor for use in pagination"""
- cursor: String!
-}
-
-"""Custom Permission Dependency"""
-type SalesforceCustomPermissionDependency implements OneGraphNode {
- """Custom Permission Dependency ID"""
- id: String!
-
- """Deleted"""
- isDeleted: Boolean!
-
- """Created Date"""
- createdDate: String!
-
- """Created By ID"""
- createdById: String!
-
- """Created By ID"""
- createdBy: SalesforceUser!
-
- """Last Modified Date"""
- lastModifiedDate: String!
-
- """Last Modified By ID"""
- lastModifiedById: String!
-
- """Last Modified By ID"""
- lastModifiedBy: SalesforceUser!
-
- """System Modstamp"""
- systemModstamp: String!
-
- """Custom Permission ID"""
- customPermissionId: String!
-
- """Custom Permission ID"""
- customPermission: SalesforceCustomPermission!
-
- """Custom Permission ID"""
- requiredCustomPermissionId: String!
-
- """Custom Permission ID"""
- requiredCustomPermission: SalesforceCustomPermission!
- customFields(
- """
- List of custom fields to return. By default, returns all custom fields.
- """
- fields: [String!]
- ): JSON!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-"""
-Salesforce Custom Permission Dependencies connection, for use in pagination.
-"""
-type SalesforceCustomPermissionDependencysConnection {
- """
- The count of all Custom Permission Dependency you could get from the connection.
- """
- totalCount: Int!
-
- """Pagination Information"""
- pageInfo: PageInfo!
-
- """List of Salesforce Custom Permission Dependencies"""
- nodes: [SalesforceCustomPermissionDependency!]!
-
- """List of Custom Permission Dependency edges"""
- edges: [SalesforceCustomPermissionDependencyEdge!]!
-}
-
-"""Custom Permission"""
-type SalesforceCustomPermission implements OneGraphNode {
- """Custom Permission ID"""
- id: String!
-
- """Deleted"""
- isDeleted: Boolean!
-
- """Name"""
- developerName: String!
-
- """Master Language"""
- language: String!
-
- """Label"""
- masterLabel: String!
-
- """Namespace Prefix"""
- namespacePrefix: String
-
- """Protected Component"""
- isProtected: Boolean!
-
- """Created Date"""
- createdDate: String!
-
- """Created By ID"""
- createdById: String!
-
- """Created By ID"""
- createdBy: SalesforceUser!
-
- """Last Modified Date"""
- lastModifiedDate: String!
-
- """Last Modified By ID"""
- lastModifiedById: String!
-
- """Last Modified By ID"""
- lastModifiedBy: SalesforceUser!
-
- """System Modstamp"""
- systemModstamp: String!
-
- """Description"""
- description: String
-
- """Collection of Salesforce CustomPermissionDependency"""
- customPermissionItem(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceCustomPermissionDependencyConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceCustomPermissionDependencySortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceCustomPermissionDependencySortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """
- Number of CustomPermissionDependencies to fetch. Defaults to 10. Maximum is 60.
- """
- first: Int
- ): SalesforceCustomPermissionDependencysConnection
-
- """Collection of Salesforce CustomPermissionDependency"""
- customPermissionDependencyItem(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceCustomPermissionDependencyConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceCustomPermissionDependencySortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceCustomPermissionDependencySortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """
- Number of CustomPermissionDependencies to fetch. Defaults to 10. Maximum is 60.
- """
- first: Int
- ): SalesforceCustomPermissionDependencysConnection
-
- """Collection of Salesforce GrantedByLicense"""
- grantedByLicenses(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceGrantedByLicenseConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceGrantedByLicenseSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceGrantedByLicenseSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of GrantedByLicenses to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceGrantedByLicensesConnection
-
- """Collection of Salesforce SetupEntityAccess"""
- setupEntityAccessItems(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceSetupEntityAccessConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceSetupEntityAccessSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceSetupEntityAccessSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of SetupEntityAccesses to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceSetupEntityAccesssConnection
- customFields(
- """
- List of custom fields to return. By default, returns all custom fields.
- """
- fields: [String!]
- ): JSON!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-"""Setting Granted By License"""
-type SalesforceGrantedByLicense implements OneGraphNode {
- """Setting Granted By License ID"""
- id: String!
-
- """Deleted"""
- isDeleted: Boolean!
-
- """Created Date"""
- createdDate: String!
-
- """Created By ID"""
- createdById: String!
-
- """Created By ID"""
- createdBy: SalesforceUser!
-
- """Last Modified Date"""
- lastModifiedDate: String!
-
- """Last Modified By ID"""
- lastModifiedById: String!
-
- """Last Modified By ID"""
- lastModifiedBy: SalesforceUser!
-
- """System Modstamp"""
- systemModstamp: String!
-
- """Permission Set License ID"""
- permissionSetLicenseId: String!
-
- """Permission Set License ID"""
- permissionSetLicense: SalesforcePermissionSetLicense!
-
- """Custom Permission ID"""
- customPermissionId: String!
-
- """Custom Permission ID"""
- customPermission: SalesforceCustomPermission!
- customFields(
- """
- List of custom fields to return. By default, returns all custom fields.
- """
- fields: [String!]
- ): JSON!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-"""
-Salesforce Setting Granted By Licenses connection, for use in pagination.
-"""
-type SalesforceGrantedByLicensesConnection {
- """
- The count of all Setting Granted By License you could get from the connection.
- """
- totalCount: Int!
-
- """Pagination Information"""
- pageInfo: PageInfo!
-
- """List of Salesforce Setting Granted By Licenses"""
- nodes: [SalesforceGrantedByLicense!]!
-
- """List of Setting Granted By License edges"""
- edges: [SalesforceGrantedByLicenseEdge!]!
-}
-
-"""Permission Set License"""
-type SalesforcePermissionSetLicense implements OneGraphNode {
- """Permission Set License ID"""
- id: String!
-
- """Deleted"""
- isDeleted: Boolean!
-
- """Developer Name"""
- developerName: String!
-
- """Master Language"""
- language: String!
-
- """Permission Set License Label"""
- masterLabel: String!
-
- """Created Date"""
- createdDate: String!
-
- """Created By ID"""
- createdById: String!
-
- """Created By ID"""
- createdBy: SalesforceUser!
-
- """Last Modified Date"""
- lastModifiedDate: String!
-
- """Last Modified By ID"""
- lastModifiedById: String!
-
- """Last Modified By ID"""
- lastModifiedBy: SalesforceUser!
-
- """System Modstamp"""
- systemModstamp: String!
-
- """Permission Set License Key"""
- permissionSetLicenseKey: String!
-
- """Total Licenses"""
- totalLicenses: Int!
-
- """Status"""
- status: String!
-
- """Expiration Date"""
- expirationDate: String
-
- """Send Email"""
- maximumPermissionsEmailSingle: Boolean!
-
- """Mass Email"""
- maximumPermissionsEmailMass: Boolean!
-
- """Edit Tasks"""
- maximumPermissionsEditTask: Boolean!
-
- """Edit Events"""
- maximumPermissionsEditEvent: Boolean!
-
- """Export Reports"""
- maximumPermissionsExportReport: Boolean!
-
- """Import Personal Contacts"""
- maximumPermissionsImportPersonal: Boolean!
-
- """Weekly Data Export"""
- maximumPermissionsDataExport: Boolean!
-
- """Manage Users"""
- maximumPermissionsManageUsers: Boolean!
-
- """Manage Public List Views"""
- maximumPermissionsEditPublicFilters: Boolean!
-
- """Manage Public Templates"""
- maximumPermissionsEditPublicTemplates: Boolean!
-
- """Modify All Data"""
- maximumPermissionsModifyAllData: Boolean!
-
- """Manage Cases"""
- maximumPermissionsManageCases: Boolean!
-
- """Mass Edits from Lists"""
- maximumPermissionsMassInlineEdit: Boolean!
-
- """Manage Articles"""
- maximumPermissionsEditKnowledge: Boolean!
-
- """Manage Salesforce Knowledge"""
- maximumPermissionsManageKnowledge: Boolean!
-
- """Manage Published Solutions"""
- maximumPermissionsManageSolutions: Boolean!
-
- """Customize Application"""
- maximumPermissionsCustomizeApplication: Boolean!
-
- """Edit Read Only Fields"""
- maximumPermissionsEditReadonlyFields: Boolean!
-
- """Run Reports"""
- maximumPermissionsRunReports: Boolean!
-
- """View Setup and Configuration"""
- maximumPermissionsViewSetup: Boolean!
-
- """Transfer Record"""
- maximumPermissionsTransferAnyEntity: Boolean!
-
- """Report Builder"""
- maximumPermissionsNewReportBuilder: Boolean!
-
- """Activate Contracts"""
- maximumPermissionsActivateContract: Boolean!
-
- """Activate Orders"""
- maximumPermissionsActivateOrder: Boolean!
-
- """Import Leads"""
- maximumPermissionsImportLeads: Boolean!
-
- """Manage Leads"""
- maximumPermissionsManageLeads: Boolean!
-
- """Transfer Leads"""
- maximumPermissionsTransferAnyLead: Boolean!
-
- """View All Data"""
- maximumPermissionsViewAllData: Boolean!
-
- """Manage Public Documents"""
- maximumPermissionsEditPublicDocuments: Boolean!
-
- """View Encrypted Data"""
- maximumPermissionsViewEncryptedData: Boolean!
-
- """Manage Letterheads"""
- maximumPermissionsEditBrandTemplates: Boolean!
-
- """Edit HTML Templates"""
- maximumPermissionsEditHtmlTemplates: Boolean!
-
- """Chatter Internal User"""
- maximumPermissionsChatterInternalUser: Boolean!
-
- """Manage Encryption Keys"""
- maximumPermissionsManageEncryptionKeys: Boolean!
-
- """Delete Activated Contracts"""
- maximumPermissionsDeleteActivatedContract: Boolean!
-
- """Invite Customers To Chatter"""
- maximumPermissionsChatterInviteExternalUsers: Boolean!
-
- """Send Stay-in-Touch Requests"""
- maximumPermissionsSendSitRequests: Boolean!
-
- """Manage Connected Apps"""
- maximumPermissionsManageRemoteAccess: Boolean!
-
- """Drag-and-Drop Dashboard Builder"""
- maximumPermissionsCanUseNewDashboardBuilder: Boolean!
-
- """Manage Categories"""
- maximumPermissionsManageCategories: Boolean!
-
- """Convert Leads"""
- maximumPermissionsConvertLeads: Boolean!
-
- """Password Never Expires"""
- maximumPermissionsPasswordNeverExpires: Boolean!
-
- """Use Team Reassignment Wizards"""
- maximumPermissionsUseTeamReassignWizards: Boolean!
-
- """Edit Activated Orders"""
- maximumPermissionsEditActivatedOrders: Boolean!
-
- """Download AppExchange Packages"""
- maximumPermissionsInstallPackaging: Boolean!
-
- """Upload AppExchange Packages"""
- maximumPermissionsPublishPackaging: Boolean!
-
- """Create and Own New Chatter Groups"""
- maximumPermissionsChatterOwnGroups: Boolean!
-
- """Edit Opportunity Product Sales Price"""
- maximumPermissionsEditOppLineItemUnitPrice: Boolean!
-
- """Create AppExchange Packages"""
- maximumPermissionsCreatePackaging: Boolean!
-
- """Bulk API Hard Delete"""
- maximumPermissionsBulkApiHardDelete: Boolean!
-
- """Import Solutions"""
- maximumPermissionsSolutionImport: Boolean!
-
- """Manage Call Centers"""
- maximumPermissionsManageCallCenters: Boolean!
-
- """Manage Synonyms"""
- maximumPermissionsManageSynonyms: Boolean!
-
- """View Content in Portals"""
- maximumPermissionsViewContent: Boolean!
-
- """Manage Email Client Configurations"""
- maximumPermissionsManageEmailClientConfig: Boolean!
-
- """Send Outbound Messages"""
- maximumPermissionsEnableNotifications: Boolean!
-
- """Manage Data Integrations"""
- maximumPermissionsManageDataIntegrations: Boolean!
-
- """Create Content Deliveries"""
- maximumPermissionsDistributeFromPersWksp: Boolean!
-
- """View Data Categories"""
- maximumPermissionsViewDataCategories: Boolean!
-
- """Manage Data Categories"""
- maximumPermissionsManageDataCategories: Boolean!
-
- """Author Apex"""
- maximumPermissionsAuthorApex: Boolean!
-
- """Manage Mobile Configurations"""
- maximumPermissionsManageMobile: Boolean!
-
- """API Enabled"""
- maximumPermissionsApiEnabled: Boolean!
-
- """Manage Custom Report Types"""
- maximumPermissionsManageCustomReportTypes: Boolean!
-
- """Edit Case Comments"""
- maximumPermissionsEditCaseComments: Boolean!
-
- """Transfer Cases"""
- maximumPermissionsTransferAnyCase: Boolean!
-
- """Manage Salesforce CRM Content"""
- maximumPermissionsContentAdministrator: Boolean!
-
- """Create Libraries"""
- maximumPermissionsCreateWorkspaces: Boolean!
-
- """Manage Content Permissions"""
- maximumPermissionsManageContentPermissions: Boolean!
-
- """Manage Content Properties"""
- maximumPermissionsManageContentProperties: Boolean!
-
- """Manage record types and layouts for Files"""
- maximumPermissionsManageContentTypes: Boolean!
-
- """Manage Lightning Sync"""
- maximumPermissionsManageExchangeConfig: Boolean!
-
- """Manage Reporting Snapshots"""
- maximumPermissionsManageAnalyticSnapshots: Boolean!
-
- """Schedule Reports"""
- maximumPermissionsScheduleReports: Boolean!
-
- """Manage Business Hours Holidays"""
- maximumPermissionsManageBusinessHourHolidays: Boolean!
-
- """Manage Dynamic Dashboards"""
- maximumPermissionsManageDynamicDashboards: Boolean!
-
- """Show Custom Sidebar On All Pages"""
- maximumPermissionsCustomSidebarOnAllPages: Boolean!
-
- """Manage Flow"""
- maximumPermissionsManageInteraction: Boolean!
-
- """View My Team's Dashboards"""
- maximumPermissionsViewMyTeamsDashboards: Boolean!
-
- """Moderate Chatter"""
- maximumPermissionsModerateChatter: Boolean!
-
- """Reset User Passwords and Unlock Users"""
- maximumPermissionsResetPasswords: Boolean!
-
- """Require Flow User Feature License"""
- maximumPermissionsFlowUflRequired: Boolean!
-
- """Insert System Field Values for Chatter Feeds"""
- maximumPermissionsCanInsertFeedSystemFields: Boolean!
-
- """Manage Knowledge Article Import/Export"""
- maximumPermissionsManageKnowledgeImportExport: Boolean!
-
- """Manage Email Templates"""
- maximumPermissionsEmailTemplateManagement: Boolean!
-
- """Email Administration"""
- maximumPermissionsEmailAdministration: Boolean!
-
- """Manage Chatter Messages and Direct Messages"""
- maximumPermissionsManageChatterMessages: Boolean!
-
- """Email-Based Identity Verification Option"""
- maximumPermissionsAllowEmailIc: Boolean!
-
- """Create Public Links"""
- maximumPermissionsChatterFileLink: Boolean!
-
- """Two-Factor Authentication for User Interface Logins"""
- maximumPermissionsForceTwoFactor: Boolean!
-
- """View Event Log Files"""
- maximumPermissionsViewEventLogFiles: Boolean!
-
- """Create and Set Up Communities"""
- maximumPermissionsManageNetworks: Boolean!
-
- """Manage Auth. Providers"""
- maximumPermissionsManageAuthProviders: Boolean!
-
- """Run Flows"""
- maximumPermissionsRunFlow: Boolean!
-
- """Create and Customize Dashboards"""
- maximumPermissionsCreateCustomizeDashboards: Boolean!
-
- """Create Dashboard Folders"""
- maximumPermissionsCreateDashboardFolders: Boolean!
-
- """View Dashboards in Public Folders"""
- maximumPermissionsViewPublicDashboards: Boolean!
-
- """Manage Dashboards in Public Folders"""
- maximumPermissionsManageDashbdsInPubFolders: Boolean!
-
- """Create and Customize Reports"""
- maximumPermissionsCreateCustomizeReports: Boolean!
-
- """Create Report Folders"""
- maximumPermissionsCreateReportFolders: Boolean!
-
- """View Reports in Public Folders"""
- maximumPermissionsViewPublicReports: Boolean!
-
- """Manage Reports in Public Folders"""
- maximumPermissionsManageReportsInPubFolders: Boolean!
-
- """Edit My Dashboards"""
- maximumPermissionsEditMyDashboards: Boolean!
-
- """Edit My Reports"""
- maximumPermissionsEditMyReports: Boolean!
-
- """View All Users"""
- maximumPermissionsViewAllUsers: Boolean!
-
- """Knowledge One"""
- maximumPermissionsAllowUniversalSearch: Boolean!
-
- """Connect Organization to Environment Hub"""
- maximumPermissionsConnectOrgToEnvironmentHub: Boolean!
-
- """Enable Work.com Calibration"""
- maximumPermissionsWorkCalibrationUser: Boolean!
-
- """Create and Customize List Views"""
- maximumPermissionsCreateCustomizeFilters: Boolean!
-
- """Enable Work.com"""
- maximumPermissionsWorkDotComUserPerm: Boolean!
-
- """Manage Communities"""
- maximumPermissionsGovernNetworks: Boolean!
-
- """Sales Console"""
- maximumPermissionsSalesConsole: Boolean!
-
- """Two-Factor Authentication for API Logins"""
- maximumPermissionsTwoFactorApi: Boolean!
-
- """Delete Topics"""
- maximumPermissionsDeleteTopics: Boolean!
-
- """Edit Topics"""
- maximumPermissionsEditTopics: Boolean!
-
- """Create Topics"""
- maximumPermissionsCreateTopics: Boolean!
-
- """Assign Topics"""
- maximumPermissionsAssignTopics: Boolean!
-
- """Use Identity Features"""
- maximumPermissionsIdentityEnabled: Boolean!
-
- """Use Identity Connect"""
- maximumPermissionsIdentityConnect: Boolean!
-
- """Allow View Knowledge"""
- maximumPermissionsAllowViewKnowledge: Boolean!
-
- """Access Libraries"""
- maximumPermissionsContentWorkspaces: Boolean!
-
- """Manage Promoted Search Terms"""
- maximumPermissionsManageSearchPromotionRules: Boolean!
-
- """Access Custom Mobile Apps"""
- maximumPermissionsCustomMobileAppsAccess: Boolean!
-
- """View Help Link"""
- maximumPermissionsViewHelpLink: Boolean!
-
- """Manage Profiles and Permission Sets"""
- maximumPermissionsManageProfilesPermissionsets: Boolean!
-
- """Assign Permission Sets"""
- maximumPermissionsAssignPermissionSets: Boolean!
-
- """Manage Roles"""
- maximumPermissionsManageRoles: Boolean!
-
- """Manage IP Addresses"""
- maximumPermissionsManageIpAddresses: Boolean!
-
- """Manage Sharing"""
- maximumPermissionsManageSharing: Boolean!
-
- """Manage Internal Users"""
- maximumPermissionsManageInternalUsers: Boolean!
-
- """Manage Password Policies"""
- maximumPermissionsManagePasswordPolicies: Boolean!
-
- """Manage Login Access Policies"""
- maximumPermissionsManageLoginAccessPolicies: Boolean!
-
- """Manage Custom Permissions"""
- maximumPermissionsManageCustomPermissions: Boolean!
-
- """Verify Answers to Chatter Questions"""
- maximumPermissionsCanVerifyComment: Boolean!
-
- """Manage Unlisted Groups"""
- maximumPermissionsManageUnlistedGroups: Boolean!
-
- """Modify Secure Agents"""
- maximumPermissionsModifySecureAgents: Boolean!
-
- """Manage Two-Factor Authentication in API"""
- maximumPermissionsManageTwoFactor: Boolean!
-
- """Access Chatter For SharePoint"""
- maximumPermissionsChatterForSharePoint: Boolean!
-
- """Lightning Experience User"""
- maximumPermissionsLightningExperienceUser: Boolean!
-
- """Configure Custom Recommendations"""
- maximumPermissionsConfigCustomRecs: Boolean!
-
- """Manage Macros Users Can't Undo"""
- maximumPermissionsSubmitMacrosAllowed: Boolean!
-
- """Run Macros on Multiple Records"""
- maximumPermissionsBulkMacrosAllowed: Boolean!
-
- """Share internal Knowledge articles externally"""
- maximumPermissionsShareInternalArticles: Boolean!
-
- """Manage Session Permission Set Activations"""
- maximumPermissionsManageSessionPermissionSets: Boolean!
-
- """Send announcement emails"""
- maximumPermissionsSendAnnouncementEmails: Boolean!
-
- """Edit My Own Posts"""
- maximumPermissionsChatterEditOwnPost: Boolean!
-
- """Edit Posts on Records I Own"""
- maximumPermissionsChatterEditOwnRecordPost: Boolean!
-
- """Import Custom Objects"""
- maximumPermissionsImportCustomObjects: Boolean!
-
- """Manage Two-Factor Authentication in User Interface"""
- maximumPermissionsDelegatedTwoFactor: Boolean!
-
- """Allow Inclusion of Code Snippets from UI"""
- maximumPermissionsChatterComposeUiCodesnippet: Boolean!
-
- """Select Files from Salesforce"""
- maximumPermissionsSelectFilesFromSalesforce: Boolean!
-
- """Moderate Community Users"""
- maximumPermissionsModerateNetworkUsers: Boolean!
-
- """Merge Topics"""
- maximumPermissionsMergeTopics: Boolean!
-
- """Subscribe to Reports"""
- maximumPermissionsSubscribeToLightningReports: Boolean!
-
- """Manage All Private Reports and Dashboards"""
- maximumPermissionsManagePvtRptsAndDashbds: Boolean!
-
- """Lightning Login User"""
- maximumPermissionsAllowLightningLogin: Boolean!
-
- """Campaign Influence"""
- maximumPermissionsCampaignInfluence2: Boolean!
-
- """Access to view Data Assessment"""
- maximumPermissionsViewDataAssessment: Boolean!
-
- """Remove People from Direct Messages"""
- maximumPermissionsRemoveDirectMessageMembers: Boolean!
-
- """Can Approve Feed Post and Comment"""
- maximumPermissionsCanApproveFeedPost: Boolean!
-
- """Add People to Direct Messages"""
- maximumPermissionsAddDirectMessageMembers: Boolean!
-
- """View and Edit Converted Leads"""
- maximumPermissionsAllowViewEditConvertedLeads: Boolean!
-
- """Show Company Name as Community Role"""
- maximumPermissionsShowCompanyNameAsUserBadge: Boolean!
-
- """Access Community Management"""
- maximumPermissionsAccessCmc: Boolean!
-
- """View Health Check"""
- maximumPermissionsViewHealthCheck: Boolean!
-
- """Manage Health Check"""
- maximumPermissionsManageHealthCheck: Boolean!
-
- """Create and Update Second-Generation Packages"""
- maximumPermissionsPackaging2: Boolean!
-
- """Manage Certificates"""
- maximumPermissionsManageCertificates: Boolean!
-
- """Report Builder (Lightning Experience)"""
- maximumPermissionsCreateReportInLightning: Boolean!
-
- """Hide Option to Switch to Salesforce Classic"""
- maximumPermissionsPreventClassicExperience: Boolean!
-
- """Hide the Seen By List"""
- maximumPermissionsHideReadByList: Boolean!
-
- """Allow sending of List Emails"""
- maximumPermissionsListEmailSend: Boolean!
-
- """Pin Posts in Feeds"""
- maximumPermissionsFeedPinning: Boolean!
-
- """Change Dashboard Colors"""
- maximumPermissionsChangeDashboardColors: Boolean!
-
- """IoT User"""
- maximumPermissionsIotUser: Boolean!
-
- """Allow Access to Customized Actions"""
- maximumPermissionsUseWebLink: Boolean!
-
- """View All Activities"""
- maximumPermissionsViewAllActivities: Boolean!
-
- """Subscribe to Reports: Add Recipients"""
- maximumPermissionsSubscribeReportToOtherUsers: Boolean!
-
- """Lightning Console User"""
- maximumPermissionsLightningConsoleAllowedForUser: Boolean!
-
- """Subscribe to Reports: Set Running User"""
- maximumPermissionsSubscribeReportsRunAsUser: Boolean!
-
- """Subscribe to Dashboards"""
- maximumPermissionsSubscribeToLightningDashboards: Boolean!
-
- """Apex REST Services"""
- maximumPermissionsApexRestServices: Boolean!
-
- """Show App Launcher in Communities"""
- maximumPermissionsEnableCommunityAppLauncher: Boolean!
-
- """Manage Surveys"""
- maximumPermissionsManageSurveys: Boolean!
-
- """View Roles and Role Hierarchy"""
- maximumPermissionsViewRoles: Boolean!
-
- """Used Licenses"""
- usedLicenses: Int!
-
- """Collection of Salesforce GrantedByLicense"""
- grantedByLicenses(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceGrantedByLicenseConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceGrantedByLicenseSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceGrantedByLicenseSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of GrantedByLicenses to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceGrantedByLicensesConnection
-
- """Collection of Salesforce PermissionSet"""
- permissionSets(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforcePermissionSetConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforcePermissionSetSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforcePermissionSetSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of PermissionSets to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforcePermissionSetsConnection
-
- """Collection of Salesforce PermissionSetLicenseAssign"""
- permissionSetLicenseAssignments(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforcePermissionSetLicenseAssignConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforcePermissionSetLicenseAssignSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforcePermissionSetLicenseAssignSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """
- Number of PermissionSetLicenseAssigns to fetch. Defaults to 10. Maximum is 60.
- """
- first: Int
- ): SalesforcePermissionSetLicenseAssignsConnection
- customFields(
- """
- List of custom fields to return. By default, returns all custom fields.
- """
- fields: [String!]
- ): JSON!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-"""Field that Profiles can be sorted by"""
-enum SalesforceProfileSortByFieldEnum {
- ID
- NAME
- USER_LICENSE_ID
- USER_TYPE
- CREATED_DATE
- CREATED_BY_ID
- LAST_MODIFIED_DATE
- LAST_MODIFIED_BY_ID
- SYSTEM_MODSTAMP
- DESCRIPTION
- LAST_VIEWED_DATE
- LAST_REFERENCED_DATE
-}
-
-"""An edge in a connection."""
-type SalesforceProfileEdge {
- """The item at the end of the edge."""
- node: SalesforceProfile!
-
- """A cursor for use in pagination"""
- cursor: String!
-}
-
-"""Field that Users can be sorted by"""
-enum SalesforceUserSortByFieldEnum {
- ID
- USERNAME
- LAST_NAME
- FIRST_NAME
- NAME
- COMPANY_NAME
- DIVISION
- DEPARTMENT
- TITLE
- STREET
- CITY
- STATE
- POSTAL_CODE
- COUNTRY
- LATITUDE
- LONGITUDE
- GEOCODE_ACCURACY
- EMAIL
- SENDER_EMAIL
- SENDER_NAME
- SIGNATURE
- STAY_IN_TOUCH_SUBJECT
- STAY_IN_TOUCH_SIGNATURE
- STAY_IN_TOUCH_NOTE
- PHONE
- FAX
- MOBILE_PHONE
- ALIAS
- COMMUNITY_NICKNAME
- BADGE_TEXT
- IS_ACTIVE
- TIME_ZONE_SID_KEY
- USER_ROLE_ID
- LOCALE_SID_KEY
- RECEIVES_INFO_EMAILS
- RECEIVES_ADMIN_INFO_EMAILS
- EMAIL_ENCODING_KEY
- PROFILE_ID
- USER_TYPE
- LANGUAGE_LOCALE_KEY
- EMPLOYEE_NUMBER
- DELEGATED_APPROVER_ID
- MANAGER_ID
- LAST_LOGIN_DATE
- LAST_PASSWORD_CHANGE_DATE
- CREATED_DATE
- CREATED_BY_ID
- LAST_MODIFIED_DATE
- LAST_MODIFIED_BY_ID
- SYSTEM_MODSTAMP
- OFFLINE_TRIAL_EXPIRATION_DATE
- OFFLINE_PDA_TRIAL_EXPIRATION_DATE
- FORECAST_ENABLED
- CONTACT_ID
- ACCOUNT_ID
- CALL_CENTER_ID
- EXTENSION
- FEDERATION_IDENTIFIER
- ABOUT_ME
- FULL_PHOTO_URL
- SMALL_PHOTO_URL
- IS_EXT_INDICATOR_VISIBLE
- OUT_OF_OFFICE_MESSAGE
- MEDIUM_PHOTO_URL
- DIGEST_FREQUENCY
- DEFAULT_GROUP_NOTIFICATION_FREQUENCY
- JIGSAW_IMPORT_LIMIT_OVERRIDE
- LAST_VIEWED_DATE
- LAST_REFERENCED_DATE
- BANNER_PHOTO_URL
- SMALL_BANNER_PHOTO_URL
- MEDIUM_BANNER_PHOTO_URL
- IS_PROFILE_PHOTO_ACTIVE
-}
-
-"""An edge in a connection."""
-type SalesforceUserEdge {
- """The item at the end of the edge."""
- node: SalesforceUser!
-
- """A cursor for use in pagination"""
- cursor: String!
-}
-
-"""Salesforce Users connection, for use in pagination."""
-type SalesforceUsersConnection {
- """The count of all User you could get from the connection."""
- totalCount: Int!
-
- """Pagination Information"""
- pageInfo: PageInfo!
-
- """List of Salesforce Users"""
- nodes: [SalesforceUser!]!
-
- """List of User edges"""
- edges: [SalesforceUserEdge!]!
-}
-
-"""Profile"""
-type SalesforceProfile implements OneGraphNode {
- """Profile ID"""
- id: String!
-
- """Name"""
- name: String!
-
- """Send Email"""
- permissionsEmailSingle: Boolean!
-
- """Mass Email"""
- permissionsEmailMass: Boolean!
-
- """Edit Tasks"""
- permissionsEditTask: Boolean!
-
- """Edit Events"""
- permissionsEditEvent: Boolean!
-
- """Export Reports"""
- permissionsExportReport: Boolean!
-
- """Import Personal Contacts"""
- permissionsImportPersonal: Boolean!
-
- """Weekly Data Export"""
- permissionsDataExport: Boolean!
-
- """Manage Users"""
- permissionsManageUsers: Boolean!
-
- """Manage Public List Views"""
- permissionsEditPublicFilters: Boolean!
-
- """Manage Public Templates"""
- permissionsEditPublicTemplates: Boolean!
-
- """Modify All Data"""
- permissionsModifyAllData: Boolean!
-
- """Manage Cases"""
- permissionsManageCases: Boolean!
-
- """Mass Edits from Lists"""
- permissionsMassInlineEdit: Boolean!
-
- """Manage Articles"""
- permissionsEditKnowledge: Boolean!
-
- """Manage Salesforce Knowledge"""
- permissionsManageKnowledge: Boolean!
-
- """Manage Published Solutions"""
- permissionsManageSolutions: Boolean!
-
- """Customize Application"""
- permissionsCustomizeApplication: Boolean!
-
- """Edit Read Only Fields"""
- permissionsEditReadonlyFields: Boolean!
-
- """Run Reports"""
- permissionsRunReports: Boolean!
-
- """View Setup and Configuration"""
- permissionsViewSetup: Boolean!
-
- """Transfer Record"""
- permissionsTransferAnyEntity: Boolean!
-
- """Report Builder"""
- permissionsNewReportBuilder: Boolean!
-
- """Activate Contracts"""
- permissionsActivateContract: Boolean!
-
- """Activate Orders"""
- permissionsActivateOrder: Boolean!
-
- """Import Leads"""
- permissionsImportLeads: Boolean!
-
- """Manage Leads"""
- permissionsManageLeads: Boolean!
-
- """Transfer Leads"""
- permissionsTransferAnyLead: Boolean!
-
- """View All Data"""
- permissionsViewAllData: Boolean!
-
- """Manage Public Documents"""
- permissionsEditPublicDocuments: Boolean!
-
- """View Encrypted Data"""
- permissionsViewEncryptedData: Boolean!
-
- """Manage Letterheads"""
- permissionsEditBrandTemplates: Boolean!
-
- """Edit HTML Templates"""
- permissionsEditHtmlTemplates: Boolean!
-
- """Chatter Internal User"""
- permissionsChatterInternalUser: Boolean!
-
- """Manage Encryption Keys"""
- permissionsManageEncryptionKeys: Boolean!
-
- """Delete Activated Contracts"""
- permissionsDeleteActivatedContract: Boolean!
-
- """Invite Customers To Chatter"""
- permissionsChatterInviteExternalUsers: Boolean!
-
- """Send Stay-in-Touch Requests"""
- permissionsSendSitRequests: Boolean!
-
- """Manage Connected Apps"""
- permissionsManageRemoteAccess: Boolean!
-
- """Drag-and-Drop Dashboard Builder"""
- permissionsCanUseNewDashboardBuilder: Boolean!
-
- """Manage Categories"""
- permissionsManageCategories: Boolean!
-
- """Convert Leads"""
- permissionsConvertLeads: Boolean!
-
- """Password Never Expires"""
- permissionsPasswordNeverExpires: Boolean!
-
- """Use Team Reassignment Wizards"""
- permissionsUseTeamReassignWizards: Boolean!
-
- """Edit Activated Orders"""
- permissionsEditActivatedOrders: Boolean!
-
- """Download AppExchange Packages"""
- permissionsInstallMultiforce: Boolean!
-
- """Upload AppExchange Packages"""
- permissionsPublishMultiforce: Boolean!
-
- """Create and Own New Chatter Groups"""
- permissionsChatterOwnGroups: Boolean!
-
- """Edit Opportunity Product Sales Price"""
- permissionsEditOppLineItemUnitPrice: Boolean!
-
- """Create AppExchange Packages"""
- permissionsCreateMultiforce: Boolean!
-
- """Bulk API Hard Delete"""
- permissionsBulkApiHardDelete: Boolean!
-
- """Import Solutions"""
- permissionsSolutionImport: Boolean!
-
- """Manage Call Centers"""
- permissionsManageCallCenters: Boolean!
-
- """Manage Synonyms"""
- permissionsManageSynonyms: Boolean!
-
- """View Content in Portals"""
- permissionsViewContent: Boolean!
-
- """Manage Email Client Configurations"""
- permissionsManageEmailClientConfig: Boolean!
-
- """Send Outbound Messages"""
- permissionsEnableNotifications: Boolean!
-
- """Manage Data Integrations"""
- permissionsManageDataIntegrations: Boolean!
-
- """Create Content Deliveries"""
- permissionsDistributeFromPersWksp: Boolean!
-
- """View Data Categories"""
- permissionsViewDataCategories: Boolean!
-
- """Manage Data Categories"""
- permissionsManageDataCategories: Boolean!
-
- """Author Apex"""
- permissionsAuthorApex: Boolean!
-
- """Manage Mobile Configurations"""
- permissionsManageMobile: Boolean!
-
- """API Enabled"""
- permissionsApiEnabled: Boolean!
-
- """Manage Custom Report Types"""
- permissionsManageCustomReportTypes: Boolean!
-
- """Edit Case Comments"""
- permissionsEditCaseComments: Boolean!
-
- """Transfer Cases"""
- permissionsTransferAnyCase: Boolean!
-
- """Manage Salesforce CRM Content"""
- permissionsContentAdministrator: Boolean!
-
- """Create Libraries"""
- permissionsCreateWorkspaces: Boolean!
-
- """Manage Content Permissions"""
- permissionsManageContentPermissions: Boolean!
-
- """Manage Content Properties"""
- permissionsManageContentProperties: Boolean!
-
- """Manage record types and layouts for Files"""
- permissionsManageContentTypes: Boolean!
-
- """Manage Lightning Sync"""
- permissionsManageExchangeConfig: Boolean!
-
- """Manage Reporting Snapshots"""
- permissionsManageAnalyticSnapshots: Boolean!
-
- """Schedule Reports"""
- permissionsScheduleReports: Boolean!
-
- """Manage Business Hours Holidays"""
- permissionsManageBusinessHourHolidays: Boolean!
-
- """Manage Dynamic Dashboards"""
- permissionsManageDynamicDashboards: Boolean!
-
- """Show Custom Sidebar On All Pages"""
- permissionsCustomSidebarOnAllPages: Boolean!
-
- """Manage Flow"""
- permissionsManageInteraction: Boolean!
-
- """View My Team's Dashboards"""
- permissionsViewMyTeamsDashboards: Boolean!
-
- """Moderate Chatter"""
- permissionsModerateChatter: Boolean!
-
- """Reset User Passwords and Unlock Users"""
- permissionsResetPasswords: Boolean!
-
- """Require Flow User Feature License"""
- permissionsFlowUflRequired: Boolean!
-
- """Insert System Field Values for Chatter Feeds"""
- permissionsCanInsertFeedSystemFields: Boolean!
-
- """Manage Knowledge Article Import/Export"""
- permissionsManageKnowledgeImportExport: Boolean!
-
- """Manage Email Templates"""
- permissionsEmailTemplateManagement: Boolean!
-
- """Email Administration"""
- permissionsEmailAdministration: Boolean!
-
- """Manage Chatter Messages and Direct Messages"""
- permissionsManageChatterMessages: Boolean!
-
- """Email-Based Identity Verification Option"""
- permissionsAllowEmailIc: Boolean!
-
- """Create Public Links"""
- permissionsChatterFileLink: Boolean!
-
- """Two-Factor Authentication for User Interface Logins"""
- permissionsForceTwoFactor: Boolean!
-
- """View Event Log Files"""
- permissionsViewEventLogFiles: Boolean!
-
- """Create and Set Up Communities"""
- permissionsManageNetworks: Boolean!
-
- """Manage Auth. Providers"""
- permissionsManageAuthProviders: Boolean!
-
- """Run Flows"""
- permissionsRunFlow: Boolean!
-
- """Create and Customize Dashboards"""
- permissionsCreateCustomizeDashboards: Boolean!
-
- """Create Dashboard Folders"""
- permissionsCreateDashboardFolders: Boolean!
-
- """View Dashboards in Public Folders"""
- permissionsViewPublicDashboards: Boolean!
-
- """Manage Dashboards in Public Folders"""
- permissionsManageDashbdsInPubFolders: Boolean!
-
- """Create and Customize Reports"""
- permissionsCreateCustomizeReports: Boolean!
-
- """Create Report Folders"""
- permissionsCreateReportFolders: Boolean!
-
- """View Reports in Public Folders"""
- permissionsViewPublicReports: Boolean!
-
- """Manage Reports in Public Folders"""
- permissionsManageReportsInPubFolders: Boolean!
-
- """Edit My Dashboards"""
- permissionsEditMyDashboards: Boolean!
-
- """Edit My Reports"""
- permissionsEditMyReports: Boolean!
-
- """View All Users"""
- permissionsViewAllUsers: Boolean!
-
- """Knowledge One"""
- permissionsAllowUniversalSearch: Boolean!
-
- """Connect Organization to Environment Hub"""
- permissionsConnectOrgToEnvironmentHub: Boolean!
-
- """Enable Work.com Calibration"""
- permissionsWorkCalibrationUser: Boolean!
-
- """Create and Customize List Views"""
- permissionsCreateCustomizeFilters: Boolean!
-
- """Enable Work.com"""
- permissionsWorkDotComUserPerm: Boolean!
-
- """Manage Communities"""
- permissionsGovernNetworks: Boolean!
-
- """Sales Console"""
- permissionsSalesConsole: Boolean!
-
- """Two-Factor Authentication for API Logins"""
- permissionsTwoFactorApi: Boolean!
-
- """Delete Topics"""
- permissionsDeleteTopics: Boolean!
-
- """Edit Topics"""
- permissionsEditTopics: Boolean!
-
- """Create Topics"""
- permissionsCreateTopics: Boolean!
-
- """Assign Topics"""
- permissionsAssignTopics: Boolean!
-
- """Use Identity Features"""
- permissionsIdentityEnabled: Boolean!
-
- """Use Identity Connect"""
- permissionsIdentityConnect: Boolean!
-
- """Allow View Knowledge"""
- permissionsAllowViewKnowledge: Boolean!
-
- """Access Libraries"""
- permissionsContentWorkspaces: Boolean!
-
- """Manage Promoted Search Terms"""
- permissionsManageSearchPromotionRules: Boolean!
-
- """Access Custom Mobile Apps"""
- permissionsCustomMobileAppsAccess: Boolean!
-
- """View Help Link"""
- permissionsViewHelpLink: Boolean!
-
- """Manage Profiles and Permission Sets"""
- permissionsManageProfilesPermissionsets: Boolean!
-
- """Assign Permission Sets"""
- permissionsAssignPermissionSets: Boolean!
-
- """Manage Roles"""
- permissionsManageRoles: Boolean!
-
- """Manage IP Addresses"""
- permissionsManageIpAddresses: Boolean!
-
- """Manage Sharing"""
- permissionsManageSharing: Boolean!
-
- """Manage Internal Users"""
- permissionsManageInternalUsers: Boolean!
-
- """Manage Password Policies"""
- permissionsManagePasswordPolicies: Boolean!
-
- """Manage Login Access Policies"""
- permissionsManageLoginAccessPolicies: Boolean!
-
- """Manage Custom Permissions"""
- permissionsManageCustomPermissions: Boolean!
-
- """Verify Answers to Chatter Questions"""
- permissionsCanVerifyComment: Boolean!
-
- """Manage Unlisted Groups"""
- permissionsManageUnlistedGroups: Boolean!
-
- """Modify Secure Agents"""
- permissionsModifySecureAgents: Boolean!
-
- """Manage Two-Factor Authentication in API"""
- permissionsManageTwoFactor: Boolean!
-
- """Access Chatter For SharePoint"""
- permissionsChatterForSharePoint: Boolean!
-
- """Lightning Experience User"""
- permissionsLightningExperienceUser: Boolean!
-
- """Configure Custom Recommendations"""
- permissionsConfigCustomRecs: Boolean!
-
- """Manage Macros Users Can't Undo"""
- permissionsSubmitMacrosAllowed: Boolean!
-
- """Run Macros on Multiple Records"""
- permissionsBulkMacrosAllowed: Boolean!
-
- """Share internal Knowledge articles externally"""
- permissionsShareInternalArticles: Boolean!
-
- """Manage Session Permission Set Activations"""
- permissionsManageSessionPermissionSets: Boolean!
-
- """Send announcement emails"""
- permissionsSendAnnouncementEmails: Boolean!
-
- """Edit My Own Posts"""
- permissionsChatterEditOwnPost: Boolean!
-
- """Edit Posts on Records I Own"""
- permissionsChatterEditOwnRecordPost: Boolean!
-
- """Import Custom Objects"""
- permissionsImportCustomObjects: Boolean!
-
- """Manage Two-Factor Authentication in User Interface"""
- permissionsDelegatedTwoFactor: Boolean!
-
- """Allow Inclusion of Code Snippets from UI"""
- permissionsChatterComposeUiCodesnippet: Boolean!
-
- """Select Files from Salesforce"""
- permissionsSelectFilesFromSalesforce: Boolean!
-
- """Moderate Community Users"""
- permissionsModerateNetworkUsers: Boolean!
-
- """Merge Topics"""
- permissionsMergeTopics: Boolean!
-
- """Subscribe to Reports"""
- permissionsSubscribeToLightningReports: Boolean!
-
- """Manage All Private Reports and Dashboards"""
- permissionsManagePvtRptsAndDashbds: Boolean!
-
- """Lightning Login User"""
- permissionsAllowLightningLogin: Boolean!
-
- """Campaign Influence"""
- permissionsCampaignInfluence2: Boolean!
-
- """Access to view Data Assessment"""
- permissionsViewDataAssessment: Boolean!
-
- """Remove People from Direct Messages"""
- permissionsRemoveDirectMessageMembers: Boolean!
-
- """Can Approve Feed Post and Comment"""
- permissionsCanApproveFeedPost: Boolean!
-
- """Add People to Direct Messages"""
- permissionsAddDirectMessageMembers: Boolean!
-
- """View and Edit Converted Leads"""
- permissionsAllowViewEditConvertedLeads: Boolean!
-
- """Show Company Name as Community Role"""
- permissionsShowCompanyNameAsUserBadge: Boolean!
-
- """Access Community Management"""
- permissionsAccessCmc: Boolean!
-
- """View Health Check"""
- permissionsViewHealthCheck: Boolean!
-
- """Manage Health Check"""
- permissionsManageHealthCheck: Boolean!
-
- """Create and Update Second-Generation Packages"""
- permissionsPackaging2: Boolean!
-
- """Manage Certificates"""
- permissionsManageCertificates: Boolean!
-
- """Report Builder (Lightning Experience)"""
- permissionsCreateReportInLightning: Boolean!
-
- """Hide Option to Switch to Salesforce Classic"""
- permissionsPreventClassicExperience: Boolean!
-
- """Hide the Seen By List"""
- permissionsHideReadByList: Boolean!
-
- """Allow sending of List Emails"""
- permissionsListEmailSend: Boolean!
-
- """Pin Posts in Feeds"""
- permissionsFeedPinning: Boolean!
-
- """Change Dashboard Colors"""
- permissionsChangeDashboardColors: Boolean!
-
- """IoT User"""
- permissionsIotUser: Boolean!
-
- """Allow Access to Customized Actions"""
- permissionsUseWebLink: Boolean!
-
- """View All Activities"""
- permissionsViewAllActivities: Boolean!
-
- """Subscribe to Reports: Add Recipients"""
- permissionsSubscribeReportToOtherUsers: Boolean!
-
- """Lightning Console User"""
- permissionsLightningConsoleAllowedForUser: Boolean!
-
- """Subscribe to Reports: Set Running User"""
- permissionsSubscribeReportsRunAsUser: Boolean!
-
- """Subscribe to Dashboards"""
- permissionsSubscribeToLightningDashboards: Boolean!
-
- """Apex REST Services"""
- permissionsApexRestServices: Boolean!
-
- """Show App Launcher in Communities"""
- permissionsEnableCommunityAppLauncher: Boolean!
-
- """Manage Surveys"""
- permissionsManageSurveys: Boolean!
-
- """View Roles and Role Hierarchy"""
- permissionsViewRoles: Boolean!
-
- """User License ID"""
- userLicenseId: String!
-
- """User License ID"""
- userLicense: SalesforceUserLicense!
-
- """User Type"""
- userType: String
-
- """Created Date"""
- createdDate: String!
-
- """Created By ID"""
- createdById: String!
-
- """Created By ID"""
- createdBy: SalesforceUser!
-
- """Last Modified Date"""
- lastModifiedDate: String!
-
- """Last Modified By ID"""
- lastModifiedById: String!
-
- """Last Modified By ID"""
- lastModifiedBy: SalesforceUser!
-
- """System Modstamp"""
- systemModstamp: String!
-
- """Description"""
- description: String
-
- """Last Viewed Date"""
- lastViewedDate: String
-
- """Last Referenced Date"""
- lastReferencedDate: String
-
- """Collection of Salesforce PermissionSet"""
- permissionSets(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforcePermissionSetConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforcePermissionSetSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforcePermissionSetSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of PermissionSets to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforcePermissionSetsConnection
-
- """Collection of Salesforce User"""
- users(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceUserConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceUserSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceUserSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of Users to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceUsersConnection
- customFields(
- """
- List of custom fields to return. By default, returns all custom fields.
- """
- fields: [String!]
- ): JSON!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-"""Salesforce Profiles connection, for use in pagination."""
-type SalesforceProfilesConnection {
- """The count of all Profile you could get from the connection."""
- totalCount: Int!
-
- """Pagination Information"""
- pageInfo: PageInfo!
-
- """List of Salesforce Profiles"""
- nodes: [SalesforceProfile!]!
-
- """List of Profile edges"""
- edges: [SalesforceProfileEdge!]!
-}
-
-"""
-A filter to be used against PermissionSet object types. All fields are combined with a logical ‘and.’
-"""
-input SalesforcePermissionSetConnectionFilter {
- """Filter against custom fields."""
- customField: SalesforceCustomFieldFilter
-
- """Filter by the PermissionSet's lastModifiedBy relation."""
- lastModifiedBy: SalesforceUserConnectionFilter
-
- """Filter by the PermissionSet's createdBy relation."""
- createdBy: SalesforceUserConnectionFilter
-
- """Filter by the PermissionSet's profile relation."""
- profile: SalesforceProfileConnectionFilter
-
- """Filter by the PermissionSet's id field"""
- id: SalesforceIdFilter
-
- """Filter by the PermissionSet's name field"""
- name: SalesforceStringFilter
-
- """Filter by the PermissionSet's label field"""
- label: SalesforceStringFilter
-
- """Filter by the PermissionSet's licenseId field"""
- licenseId: SalesforceIdFilter
-
- """Filter by the PermissionSet's profileId field"""
- profileId: SalesforceIdFilter
-
- """Filter by the PermissionSet's isOwnedByProfile field"""
- isOwnedByProfile: SalesforceBooleanFilter
-
- """Filter by the PermissionSet's isCustom field"""
- isCustom: SalesforceBooleanFilter
-
- """Filter by the PermissionSet's permissionsEmailSingle field"""
- permissionsEmailSingle: SalesforceBooleanFilter
-
- """Filter by the PermissionSet's permissionsEmailMass field"""
- permissionsEmailMass: SalesforceBooleanFilter
-
- """Filter by the PermissionSet's permissionsEditTask field"""
- permissionsEditTask: SalesforceBooleanFilter
-
- """Filter by the PermissionSet's permissionsEditEvent field"""
- permissionsEditEvent: SalesforceBooleanFilter
-
- """Filter by the PermissionSet's permissionsExportReport field"""
- permissionsExportReport: SalesforceBooleanFilter
-
- """Filter by the PermissionSet's permissionsImportPersonal field"""
- permissionsImportPersonal: SalesforceBooleanFilter
-
- """Filter by the PermissionSet's permissionsDataExport field"""
- permissionsDataExport: SalesforceBooleanFilter
-
- """Filter by the PermissionSet's permissionsManageUsers field"""
- permissionsManageUsers: SalesforceBooleanFilter
-
- """Filter by the PermissionSet's permissionsEditPublicFilters field"""
- permissionsEditPublicFilters: SalesforceBooleanFilter
-
- """Filter by the PermissionSet's permissionsEditPublicTemplates field"""
- permissionsEditPublicTemplates: SalesforceBooleanFilter
-
- """Filter by the PermissionSet's permissionsModifyAllData field"""
- permissionsModifyAllData: SalesforceBooleanFilter
-
- """Filter by the PermissionSet's permissionsManageCases field"""
- permissionsManageCases: SalesforceBooleanFilter
-
- """Filter by the PermissionSet's permissionsMassInlineEdit field"""
- permissionsMassInlineEdit: SalesforceBooleanFilter
-
- """Filter by the PermissionSet's permissionsEditKnowledge field"""
- permissionsEditKnowledge: SalesforceBooleanFilter
-
- """Filter by the PermissionSet's permissionsManageKnowledge field"""
- permissionsManageKnowledge: SalesforceBooleanFilter
-
- """Filter by the PermissionSet's permissionsManageSolutions field"""
- permissionsManageSolutions: SalesforceBooleanFilter
-
- """Filter by the PermissionSet's permissionsCustomizeApplication field"""
- permissionsCustomizeApplication: SalesforceBooleanFilter
-
- """Filter by the PermissionSet's permissionsEditReadonlyFields field"""
- permissionsEditReadonlyFields: SalesforceBooleanFilter
-
- """Filter by the PermissionSet's permissionsRunReports field"""
- permissionsRunReports: SalesforceBooleanFilter
-
- """Filter by the PermissionSet's permissionsViewSetup field"""
- permissionsViewSetup: SalesforceBooleanFilter
-
- """Filter by the PermissionSet's permissionsTransferAnyEntity field"""
- permissionsTransferAnyEntity: SalesforceBooleanFilter
-
- """Filter by the PermissionSet's permissionsNewReportBuilder field"""
- permissionsNewReportBuilder: SalesforceBooleanFilter
-
- """Filter by the PermissionSet's permissionsActivateContract field"""
- permissionsActivateContract: SalesforceBooleanFilter
-
- """Filter by the PermissionSet's permissionsActivateOrder field"""
- permissionsActivateOrder: SalesforceBooleanFilter
-
- """Filter by the PermissionSet's permissionsImportLeads field"""
- permissionsImportLeads: SalesforceBooleanFilter
-
- """Filter by the PermissionSet's permissionsManageLeads field"""
- permissionsManageLeads: SalesforceBooleanFilter
-
- """Filter by the PermissionSet's permissionsTransferAnyLead field"""
- permissionsTransferAnyLead: SalesforceBooleanFilter
-
- """Filter by the PermissionSet's permissionsViewAllData field"""
- permissionsViewAllData: SalesforceBooleanFilter
-
- """Filter by the PermissionSet's permissionsEditPublicDocuments field"""
- permissionsEditPublicDocuments: SalesforceBooleanFilter
-
- """Filter by the PermissionSet's permissionsViewEncryptedData field"""
- permissionsViewEncryptedData: SalesforceBooleanFilter
-
- """Filter by the PermissionSet's permissionsEditBrandTemplates field"""
- permissionsEditBrandTemplates: SalesforceBooleanFilter
-
- """Filter by the PermissionSet's permissionsEditHtmlTemplates field"""
- permissionsEditHtmlTemplates: SalesforceBooleanFilter
-
- """Filter by the PermissionSet's permissionsChatterInternalUser field"""
- permissionsChatterInternalUser: SalesforceBooleanFilter
-
- """Filter by the PermissionSet's permissionsManageEncryptionKeys field"""
- permissionsManageEncryptionKeys: SalesforceBooleanFilter
-
- """Filter by the PermissionSet's permissionsDeleteActivatedContract field"""
- permissionsDeleteActivatedContract: SalesforceBooleanFilter
-
- """
- Filter by the PermissionSet's permissionsChatterInviteExternalUsers field
- """
- permissionsChatterInviteExternalUsers: SalesforceBooleanFilter
-
- """Filter by the PermissionSet's permissionsSendSitRequests field"""
- permissionsSendSitRequests: SalesforceBooleanFilter
-
- """Filter by the PermissionSet's permissionsManageRemoteAccess field"""
- permissionsManageRemoteAccess: SalesforceBooleanFilter
-
- """
- Filter by the PermissionSet's permissionsCanUseNewDashboardBuilder field
- """
- permissionsCanUseNewDashboardBuilder: SalesforceBooleanFilter
-
- """Filter by the PermissionSet's permissionsManageCategories field"""
- permissionsManageCategories: SalesforceBooleanFilter
-
- """Filter by the PermissionSet's permissionsConvertLeads field"""
- permissionsConvertLeads: SalesforceBooleanFilter
-
- """Filter by the PermissionSet's permissionsPasswordNeverExpires field"""
- permissionsPasswordNeverExpires: SalesforceBooleanFilter
-
- """Filter by the PermissionSet's permissionsUseTeamReassignWizards field"""
- permissionsUseTeamReassignWizards: SalesforceBooleanFilter
-
- """Filter by the PermissionSet's permissionsEditActivatedOrders field"""
- permissionsEditActivatedOrders: SalesforceBooleanFilter
-
- """Filter by the PermissionSet's permissionsInstallPackaging field"""
- permissionsInstallPackaging: SalesforceBooleanFilter
-
- """Filter by the PermissionSet's permissionsPublishPackaging field"""
- permissionsPublishPackaging: SalesforceBooleanFilter
-
- """Filter by the PermissionSet's permissionsChatterOwnGroups field"""
- permissionsChatterOwnGroups: SalesforceBooleanFilter
-
- """
- Filter by the PermissionSet's permissionsEditOppLineItemUnitPrice field
- """
- permissionsEditOppLineItemUnitPrice: SalesforceBooleanFilter
-
- """Filter by the PermissionSet's permissionsCreatePackaging field"""
- permissionsCreatePackaging: SalesforceBooleanFilter
-
- """Filter by the PermissionSet's permissionsBulkApiHardDelete field"""
- permissionsBulkApiHardDelete: SalesforceBooleanFilter
-
- """Filter by the PermissionSet's permissionsSolutionImport field"""
- permissionsSolutionImport: SalesforceBooleanFilter
-
- """Filter by the PermissionSet's permissionsManageCallCenters field"""
- permissionsManageCallCenters: SalesforceBooleanFilter
-
- """Filter by the PermissionSet's permissionsManageSynonyms field"""
- permissionsManageSynonyms: SalesforceBooleanFilter
-
- """Filter by the PermissionSet's permissionsViewContent field"""
- permissionsViewContent: SalesforceBooleanFilter
-
- """Filter by the PermissionSet's permissionsManageEmailClientConfig field"""
- permissionsManageEmailClientConfig: SalesforceBooleanFilter
-
- """Filter by the PermissionSet's permissionsEnableNotifications field"""
- permissionsEnableNotifications: SalesforceBooleanFilter
-
- """Filter by the PermissionSet's permissionsManageDataIntegrations field"""
- permissionsManageDataIntegrations: SalesforceBooleanFilter
-
- """Filter by the PermissionSet's permissionsDistributeFromPersWksp field"""
- permissionsDistributeFromPersWksp: SalesforceBooleanFilter
-
- """Filter by the PermissionSet's permissionsViewDataCategories field"""
- permissionsViewDataCategories: SalesforceBooleanFilter
-
- """Filter by the PermissionSet's permissionsManageDataCategories field"""
- permissionsManageDataCategories: SalesforceBooleanFilter
-
- """Filter by the PermissionSet's permissionsAuthorApex field"""
- permissionsAuthorApex: SalesforceBooleanFilter
-
- """Filter by the PermissionSet's permissionsManageMobile field"""
- permissionsManageMobile: SalesforceBooleanFilter
-
- """Filter by the PermissionSet's permissionsApiEnabled field"""
- permissionsApiEnabled: SalesforceBooleanFilter
-
- """Filter by the PermissionSet's permissionsManageCustomReportTypes field"""
- permissionsManageCustomReportTypes: SalesforceBooleanFilter
-
- """Filter by the PermissionSet's permissionsEditCaseComments field"""
- permissionsEditCaseComments: SalesforceBooleanFilter
-
- """Filter by the PermissionSet's permissionsTransferAnyCase field"""
- permissionsTransferAnyCase: SalesforceBooleanFilter
-
- """Filter by the PermissionSet's permissionsContentAdministrator field"""
- permissionsContentAdministrator: SalesforceBooleanFilter
-
- """Filter by the PermissionSet's permissionsCreateWorkspaces field"""
- permissionsCreateWorkspaces: SalesforceBooleanFilter
-
- """
- Filter by the PermissionSet's permissionsManageContentPermissions field
- """
- permissionsManageContentPermissions: SalesforceBooleanFilter
-
- """Filter by the PermissionSet's permissionsManageContentProperties field"""
- permissionsManageContentProperties: SalesforceBooleanFilter
-
- """Filter by the PermissionSet's permissionsManageContentTypes field"""
- permissionsManageContentTypes: SalesforceBooleanFilter
-
- """Filter by the PermissionSet's permissionsManageExchangeConfig field"""
- permissionsManageExchangeConfig: SalesforceBooleanFilter
-
- """Filter by the PermissionSet's permissionsManageAnalyticSnapshots field"""
- permissionsManageAnalyticSnapshots: SalesforceBooleanFilter
-
- """Filter by the PermissionSet's permissionsScheduleReports field"""
- permissionsScheduleReports: SalesforceBooleanFilter
-
- """
- Filter by the PermissionSet's permissionsManageBusinessHourHolidays field
- """
- permissionsManageBusinessHourHolidays: SalesforceBooleanFilter
-
- """Filter by the PermissionSet's permissionsManageDynamicDashboards field"""
- permissionsManageDynamicDashboards: SalesforceBooleanFilter
-
- """Filter by the PermissionSet's permissionsCustomSidebarOnAllPages field"""
- permissionsCustomSidebarOnAllPages: SalesforceBooleanFilter
-
- """Filter by the PermissionSet's permissionsManageInteraction field"""
- permissionsManageInteraction: SalesforceBooleanFilter
-
- """Filter by the PermissionSet's permissionsViewMyTeamsDashboards field"""
- permissionsViewMyTeamsDashboards: SalesforceBooleanFilter
-
- """Filter by the PermissionSet's permissionsModerateChatter field"""
- permissionsModerateChatter: SalesforceBooleanFilter
-
- """Filter by the PermissionSet's permissionsResetPasswords field"""
- permissionsResetPasswords: SalesforceBooleanFilter
-
- """Filter by the PermissionSet's permissionsFlowUflRequired field"""
- permissionsFlowUflRequired: SalesforceBooleanFilter
-
- """
- Filter by the PermissionSet's permissionsCanInsertFeedSystemFields field
- """
- permissionsCanInsertFeedSystemFields: SalesforceBooleanFilter
-
- """
- Filter by the PermissionSet's permissionsManageKnowledgeImportExport field
- """
- permissionsManageKnowledgeImportExport: SalesforceBooleanFilter
-
- """Filter by the PermissionSet's permissionsEmailTemplateManagement field"""
- permissionsEmailTemplateManagement: SalesforceBooleanFilter
-
- """Filter by the PermissionSet's permissionsEmailAdministration field"""
- permissionsEmailAdministration: SalesforceBooleanFilter
-
- """Filter by the PermissionSet's permissionsManageChatterMessages field"""
- permissionsManageChatterMessages: SalesforceBooleanFilter
-
- """Filter by the PermissionSet's permissionsAllowEmailIc field"""
- permissionsAllowEmailIc: SalesforceBooleanFilter
-
- """Filter by the PermissionSet's permissionsChatterFileLink field"""
- permissionsChatterFileLink: SalesforceBooleanFilter
-
- """Filter by the PermissionSet's permissionsForceTwoFactor field"""
- permissionsForceTwoFactor: SalesforceBooleanFilter
-
- """Filter by the PermissionSet's permissionsViewEventLogFiles field"""
- permissionsViewEventLogFiles: SalesforceBooleanFilter
-
- """Filter by the PermissionSet's permissionsManageNetworks field"""
- permissionsManageNetworks: SalesforceBooleanFilter
-
- """Filter by the PermissionSet's permissionsManageAuthProviders field"""
- permissionsManageAuthProviders: SalesforceBooleanFilter
-
- """Filter by the PermissionSet's permissionsRunFlow field"""
- permissionsRunFlow: SalesforceBooleanFilter
-
- """
- Filter by the PermissionSet's permissionsCreateCustomizeDashboards field
- """
- permissionsCreateCustomizeDashboards: SalesforceBooleanFilter
-
- """Filter by the PermissionSet's permissionsCreateDashboardFolders field"""
- permissionsCreateDashboardFolders: SalesforceBooleanFilter
-
- """Filter by the PermissionSet's permissionsViewPublicDashboards field"""
- permissionsViewPublicDashboards: SalesforceBooleanFilter
-
- """
- Filter by the PermissionSet's permissionsManageDashbdsInPubFolders field
- """
- permissionsManageDashbdsInPubFolders: SalesforceBooleanFilter
-
- """Filter by the PermissionSet's permissionsCreateCustomizeReports field"""
- permissionsCreateCustomizeReports: SalesforceBooleanFilter
-
- """Filter by the PermissionSet's permissionsCreateReportFolders field"""
- permissionsCreateReportFolders: SalesforceBooleanFilter
-
- """Filter by the PermissionSet's permissionsViewPublicReports field"""
- permissionsViewPublicReports: SalesforceBooleanFilter
-
- """
- Filter by the PermissionSet's permissionsManageReportsInPubFolders field
- """
- permissionsManageReportsInPubFolders: SalesforceBooleanFilter
-
- """Filter by the PermissionSet's permissionsEditMyDashboards field"""
- permissionsEditMyDashboards: SalesforceBooleanFilter
-
- """Filter by the PermissionSet's permissionsEditMyReports field"""
- permissionsEditMyReports: SalesforceBooleanFilter
-
- """Filter by the PermissionSet's permissionsViewAllUsers field"""
- permissionsViewAllUsers: SalesforceBooleanFilter
-
- """Filter by the PermissionSet's permissionsAllowUniversalSearch field"""
- permissionsAllowUniversalSearch: SalesforceBooleanFilter
-
- """
- Filter by the PermissionSet's permissionsConnectOrgToEnvironmentHub field
- """
- permissionsConnectOrgToEnvironmentHub: SalesforceBooleanFilter
-
- """Filter by the PermissionSet's permissionsWorkCalibrationUser field"""
- permissionsWorkCalibrationUser: SalesforceBooleanFilter
-
- """Filter by the PermissionSet's permissionsCreateCustomizeFilters field"""
- permissionsCreateCustomizeFilters: SalesforceBooleanFilter
-
- """Filter by the PermissionSet's permissionsWorkDotComUserPerm field"""
- permissionsWorkDotComUserPerm: SalesforceBooleanFilter
-
- """Filter by the PermissionSet's permissionsGovernNetworks field"""
- permissionsGovernNetworks: SalesforceBooleanFilter
-
- """Filter by the PermissionSet's permissionsSalesConsole field"""
- permissionsSalesConsole: SalesforceBooleanFilter
-
- """Filter by the PermissionSet's permissionsTwoFactorApi field"""
- permissionsTwoFactorApi: SalesforceBooleanFilter
-
- """Filter by the PermissionSet's permissionsDeleteTopics field"""
- permissionsDeleteTopics: SalesforceBooleanFilter
-
- """Filter by the PermissionSet's permissionsEditTopics field"""
- permissionsEditTopics: SalesforceBooleanFilter
-
- """Filter by the PermissionSet's permissionsCreateTopics field"""
- permissionsCreateTopics: SalesforceBooleanFilter
-
- """Filter by the PermissionSet's permissionsAssignTopics field"""
- permissionsAssignTopics: SalesforceBooleanFilter
-
- """Filter by the PermissionSet's permissionsIdentityEnabled field"""
- permissionsIdentityEnabled: SalesforceBooleanFilter
-
- """Filter by the PermissionSet's permissionsIdentityConnect field"""
- permissionsIdentityConnect: SalesforceBooleanFilter
-
- """Filter by the PermissionSet's permissionsAllowViewKnowledge field"""
- permissionsAllowViewKnowledge: SalesforceBooleanFilter
-
- """Filter by the PermissionSet's permissionsContentWorkspaces field"""
- permissionsContentWorkspaces: SalesforceBooleanFilter
-
- """
- Filter by the PermissionSet's permissionsManageSearchPromotionRules field
- """
- permissionsManageSearchPromotionRules: SalesforceBooleanFilter
-
- """Filter by the PermissionSet's permissionsCustomMobileAppsAccess field"""
- permissionsCustomMobileAppsAccess: SalesforceBooleanFilter
-
- """Filter by the PermissionSet's permissionsViewHelpLink field"""
- permissionsViewHelpLink: SalesforceBooleanFilter
-
- """
- Filter by the PermissionSet's permissionsManageProfilesPermissionsets field
- """
- permissionsManageProfilesPermissionsets: SalesforceBooleanFilter
-
- """Filter by the PermissionSet's permissionsAssignPermissionSets field"""
- permissionsAssignPermissionSets: SalesforceBooleanFilter
-
- """Filter by the PermissionSet's permissionsManageRoles field"""
- permissionsManageRoles: SalesforceBooleanFilter
-
- """Filter by the PermissionSet's permissionsManageIpAddresses field"""
- permissionsManageIpAddresses: SalesforceBooleanFilter
-
- """Filter by the PermissionSet's permissionsManageSharing field"""
- permissionsManageSharing: SalesforceBooleanFilter
-
- """Filter by the PermissionSet's permissionsManageInternalUsers field"""
- permissionsManageInternalUsers: SalesforceBooleanFilter
-
- """Filter by the PermissionSet's permissionsManagePasswordPolicies field"""
- permissionsManagePasswordPolicies: SalesforceBooleanFilter
-
- """
- Filter by the PermissionSet's permissionsManageLoginAccessPolicies field
- """
- permissionsManageLoginAccessPolicies: SalesforceBooleanFilter
-
- """Filter by the PermissionSet's permissionsManageCustomPermissions field"""
- permissionsManageCustomPermissions: SalesforceBooleanFilter
-
- """Filter by the PermissionSet's permissionsCanVerifyComment field"""
- permissionsCanVerifyComment: SalesforceBooleanFilter
-
- """Filter by the PermissionSet's permissionsManageUnlistedGroups field"""
- permissionsManageUnlistedGroups: SalesforceBooleanFilter
-
- """Filter by the PermissionSet's permissionsModifySecureAgents field"""
- permissionsModifySecureAgents: SalesforceBooleanFilter
-
- """Filter by the PermissionSet's permissionsManageTwoFactor field"""
- permissionsManageTwoFactor: SalesforceBooleanFilter
-
- """Filter by the PermissionSet's permissionsChatterForSharePoint field"""
- permissionsChatterForSharePoint: SalesforceBooleanFilter
-
- """Filter by the PermissionSet's permissionsLightningExperienceUser field"""
- permissionsLightningExperienceUser: SalesforceBooleanFilter
-
- """Filter by the PermissionSet's permissionsConfigCustomRecs field"""
- permissionsConfigCustomRecs: SalesforceBooleanFilter
-
- """Filter by the PermissionSet's permissionsSubmitMacrosAllowed field"""
- permissionsSubmitMacrosAllowed: SalesforceBooleanFilter
-
- """Filter by the PermissionSet's permissionsBulkMacrosAllowed field"""
- permissionsBulkMacrosAllowed: SalesforceBooleanFilter
-
- """Filter by the PermissionSet's permissionsShareInternalArticles field"""
- permissionsShareInternalArticles: SalesforceBooleanFilter
-
- """
- Filter by the PermissionSet's permissionsManageSessionPermissionSets field
- """
- permissionsManageSessionPermissionSets: SalesforceBooleanFilter
-
- """Filter by the PermissionSet's permissionsSendAnnouncementEmails field"""
- permissionsSendAnnouncementEmails: SalesforceBooleanFilter
-
- """Filter by the PermissionSet's permissionsChatterEditOwnPost field"""
- permissionsChatterEditOwnPost: SalesforceBooleanFilter
-
- """
- Filter by the PermissionSet's permissionsChatterEditOwnRecordPost field
- """
- permissionsChatterEditOwnRecordPost: SalesforceBooleanFilter
-
- """Filter by the PermissionSet's permissionsImportCustomObjects field"""
- permissionsImportCustomObjects: SalesforceBooleanFilter
-
- """Filter by the PermissionSet's permissionsDelegatedTwoFactor field"""
- permissionsDelegatedTwoFactor: SalesforceBooleanFilter
-
- """
- Filter by the PermissionSet's permissionsChatterComposeUiCodesnippet field
- """
- permissionsChatterComposeUiCodesnippet: SalesforceBooleanFilter
-
- """
- Filter by the PermissionSet's permissionsSelectFilesFromSalesforce field
- """
- permissionsSelectFilesFromSalesforce: SalesforceBooleanFilter
-
- """Filter by the PermissionSet's permissionsModerateNetworkUsers field"""
- permissionsModerateNetworkUsers: SalesforceBooleanFilter
-
- """Filter by the PermissionSet's permissionsMergeTopics field"""
- permissionsMergeTopics: SalesforceBooleanFilter
-
- """
- Filter by the PermissionSet's permissionsSubscribeToLightningReports field
- """
- permissionsSubscribeToLightningReports: SalesforceBooleanFilter
-
- """Filter by the PermissionSet's permissionsManagePvtRptsAndDashbds field"""
- permissionsManagePvtRptsAndDashbds: SalesforceBooleanFilter
-
- """Filter by the PermissionSet's permissionsAllowLightningLogin field"""
- permissionsAllowLightningLogin: SalesforceBooleanFilter
-
- """Filter by the PermissionSet's permissionsCampaignInfluence2 field"""
- permissionsCampaignInfluence2: SalesforceBooleanFilter
-
- """Filter by the PermissionSet's permissionsViewDataAssessment field"""
- permissionsViewDataAssessment: SalesforceBooleanFilter
-
- """
- Filter by the PermissionSet's permissionsRemoveDirectMessageMembers field
- """
- permissionsRemoveDirectMessageMembers: SalesforceBooleanFilter
-
- """Filter by the PermissionSet's permissionsCanApproveFeedPost field"""
- permissionsCanApproveFeedPost: SalesforceBooleanFilter
-
- """Filter by the PermissionSet's permissionsAddDirectMessageMembers field"""
- permissionsAddDirectMessageMembers: SalesforceBooleanFilter
-
- """
- Filter by the PermissionSet's permissionsAllowViewEditConvertedLeads field
- """
- permissionsAllowViewEditConvertedLeads: SalesforceBooleanFilter
-
- """
- Filter by the PermissionSet's permissionsShowCompanyNameAsUserBadge field
- """
- permissionsShowCompanyNameAsUserBadge: SalesforceBooleanFilter
-
- """Filter by the PermissionSet's permissionsAccessCmc field"""
- permissionsAccessCmc: SalesforceBooleanFilter
-
- """Filter by the PermissionSet's permissionsViewHealthCheck field"""
- permissionsViewHealthCheck: SalesforceBooleanFilter
-
- """Filter by the PermissionSet's permissionsManageHealthCheck field"""
- permissionsManageHealthCheck: SalesforceBooleanFilter
-
- """Filter by the PermissionSet's permissionsPackaging2 field"""
- permissionsPackaging2: SalesforceBooleanFilter
-
- """Filter by the PermissionSet's permissionsManageCertificates field"""
- permissionsManageCertificates: SalesforceBooleanFilter
-
- """Filter by the PermissionSet's permissionsCreateReportInLightning field"""
- permissionsCreateReportInLightning: SalesforceBooleanFilter
-
- """
- Filter by the PermissionSet's permissionsPreventClassicExperience field
- """
- permissionsPreventClassicExperience: SalesforceBooleanFilter
-
- """Filter by the PermissionSet's permissionsHideReadByList field"""
- permissionsHideReadByList: SalesforceBooleanFilter
-
- """Filter by the PermissionSet's permissionsListEmailSend field"""
- permissionsListEmailSend: SalesforceBooleanFilter
-
- """Filter by the PermissionSet's permissionsFeedPinning field"""
- permissionsFeedPinning: SalesforceBooleanFilter
-
- """Filter by the PermissionSet's permissionsChangeDashboardColors field"""
- permissionsChangeDashboardColors: SalesforceBooleanFilter
-
- """Filter by the PermissionSet's permissionsIotUser field"""
- permissionsIotUser: SalesforceBooleanFilter
-
- """Filter by the PermissionSet's permissionsUseWebLink field"""
- permissionsUseWebLink: SalesforceBooleanFilter
-
- """Filter by the PermissionSet's permissionsViewAllActivities field"""
- permissionsViewAllActivities: SalesforceBooleanFilter
-
- """
- Filter by the PermissionSet's permissionsSubscribeReportToOtherUsers field
- """
- permissionsSubscribeReportToOtherUsers: SalesforceBooleanFilter
-
- """
- Filter by the PermissionSet's permissionsLightningConsoleAllowedForUser field
- """
- permissionsLightningConsoleAllowedForUser: SalesforceBooleanFilter
-
- """
- Filter by the PermissionSet's permissionsSubscribeReportsRunAsUser field
- """
- permissionsSubscribeReportsRunAsUser: SalesforceBooleanFilter
-
- """
- Filter by the PermissionSet's permissionsSubscribeToLightningDashboards field
- """
- permissionsSubscribeToLightningDashboards: SalesforceBooleanFilter
-
- """Filter by the PermissionSet's permissionsApexRestServices field"""
- permissionsApexRestServices: SalesforceBooleanFilter
-
- """
- Filter by the PermissionSet's permissionsEnableCommunityAppLauncher field
- """
- permissionsEnableCommunityAppLauncher: SalesforceBooleanFilter
-
- """Filter by the PermissionSet's permissionsManageSurveys field"""
- permissionsManageSurveys: SalesforceBooleanFilter
-
- """Filter by the PermissionSet's permissionsViewRoles field"""
- permissionsViewRoles: SalesforceBooleanFilter
-
- """Filter by the PermissionSet's description field"""
- description: SalesforceStringFilter
-
- """Filter by the PermissionSet's createdDate field"""
- createdDate: SalesforceDateTimeFilter
-
- """Filter by the PermissionSet's createdById field"""
- createdById: SalesforceIdFilter
-
- """Filter by the PermissionSet's lastModifiedDate field"""
- lastModifiedDate: SalesforceDateTimeFilter
-
- """Filter by the PermissionSet's lastModifiedById field"""
- lastModifiedById: SalesforceIdFilter
-
- """Filter by the PermissionSet's systemModstamp field"""
- systemModstamp: SalesforceDateTimeFilter
-
- """Filter by the PermissionSet's namespacePrefix field"""
- namespacePrefix: SalesforceStringFilter
-
- """Filter by the PermissionSet's hasActivationRequired field"""
- hasActivationRequired: SalesforceBooleanFilter
-
- """Checks for any expressions in this list."""
- or: [SalesforcePermissionSetConnectionFilter!]
-
- """Checks for all expressions in this list."""
- and: [SalesforcePermissionSetConnectionFilter!]
-}
-
-"""Field that Permission Sets can be sorted by"""
-enum SalesforcePermissionSetSortByFieldEnum {
- ID
- NAME
- LABEL
- LICENSE_ID
- PROFILE_ID
- IS_OWNED_BY_PROFILE
- IS_CUSTOM
- DESCRIPTION
- CREATED_DATE
- CREATED_BY_ID
- LAST_MODIFIED_DATE
- LAST_MODIFIED_BY_ID
- SYSTEM_MODSTAMP
- NAMESPACE_PREFIX
- HAS_ACTIVATION_REQUIRED
-}
-
-"""An edge in a connection."""
-type SalesforcePermissionSetEdge {
- """The item at the end of the edge."""
- node: SalesforcePermissionSet!
-
- """A cursor for use in pagination"""
- cursor: String!
-}
-
-"""Salesforce Permission Sets connection, for use in pagination."""
-type SalesforcePermissionSetsConnection {
- """The count of all Permission Set you could get from the connection."""
- totalCount: Int!
-
- """Pagination Information"""
- pageInfo: PageInfo!
-
- """List of Salesforce Permission Sets"""
- nodes: [SalesforcePermissionSet!]!
-
- """List of Permission Set edges"""
- edges: [SalesforcePermissionSetEdge!]!
-}
-
-"""
-A filter to be used against CustomObjectUserLicenseMetrics object types. All fields are combined with a logical ‘and.’
-"""
-input SalesforceCustomObjectUserLicenseMetricsConnectionFilter {
- """Filter against custom fields."""
- customField: SalesforceCustomFieldFilter
-
- """Filter by the CustomObjectUserLicenseMetrics's userLicense relation."""
- userLicense: SalesforceUserLicenseConnectionFilter
-
- """Filter by the CustomObjectUserLicenseMetrics's id field"""
- id: SalesforceIdFilter
-
- """Filter by the CustomObjectUserLicenseMetrics's metricsDate field"""
- metricsDate: SalesforceDateFilter
-
- """Filter by the CustomObjectUserLicenseMetrics's userLicenseId field"""
- userLicenseId: SalesforceIdFilter
-
- """Filter by the CustomObjectUserLicenseMetrics's customObjectId field"""
- customObjectId: SalesforceStringFilter
-
- """Filter by the CustomObjectUserLicenseMetrics's systemModstamp field"""
- systemModstamp: SalesforceDateTimeFilter
-
- """Filter by the CustomObjectUserLicenseMetrics's customObjectType field"""
- customObjectType: SalesforceStringFilter
-
- """Filter by the CustomObjectUserLicenseMetrics's customObjectName field"""
- customObjectName: SalesforceStringFilter
-
- """Filter by the CustomObjectUserLicenseMetrics's objectCount field"""
- objectCount: SalesforceIntFilter
-
- """Checks for any expressions in this list."""
- or: [SalesforceCustomObjectUserLicenseMetricsConnectionFilter!]
-
- """Checks for all expressions in this list."""
- and: [SalesforceCustomObjectUserLicenseMetricsConnectionFilter!]
-}
-
-"""
-Field that Custom Object Usage By User License Metrics can be sorted by
-"""
-enum SalesforceCustomObjectUserLicenseMetricsSortByFieldEnum {
- ID
- METRICS_DATE
- USER_LICENSE_ID
- CUSTOM_OBJECT_ID
- SYSTEM_MODSTAMP
- CUSTOM_OBJECT_TYPE
- CUSTOM_OBJECT_NAME
- OBJECT_COUNT
-}
-
-"""An edge in a connection."""
-type SalesforceCustomObjectUserLicenseMetricsEdge {
- """The item at the end of the edge."""
- node: SalesforceCustomObjectUserLicenseMetrics!
-
- """A cursor for use in pagination"""
- cursor: String!
-}
-
-"""Custom Object Usage By User License Metric"""
-type SalesforceCustomObjectUserLicenseMetrics implements OneGraphNode {
- """Custom Object Usage By User License Metrics Id"""
- id: String!
-
- """Metrics Date"""
- metricsDate: String!
-
- """User License ID"""
- userLicenseId: String!
-
- """User License ID"""
- userLicense: SalesforceUserLicense!
-
- """Custom Object Id"""
- customObjectId: String
-
- """System Modstamp"""
- systemModstamp: String!
-
- """Custom Object Type"""
- customObjectType: String
-
- """Custom Object Name"""
- customObjectName: String
-
- """Count of Objects assigned"""
- objectCount: Int
- customFields(
- """
- List of custom fields to return. By default, returns all custom fields.
- """
- fields: [String!]
- ): JSON!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-"""
-Salesforce Custom Object Usage By User License Metrics connection, for use in pagination.
-"""
-type SalesforceCustomObjectUserLicenseMetricssConnection {
- """
- The count of all Custom Object Usage By User License Metric you could get from the connection.
- """
- totalCount: Int!
-
- """Pagination Information"""
- pageInfo: PageInfo!
-
- """List of Salesforce Custom Object Usage By User License Metrics"""
- nodes: [SalesforceCustomObjectUserLicenseMetrics!]!
-
- """List of Custom Object Usage By User License Metric edges"""
- edges: [SalesforceCustomObjectUserLicenseMetricsEdge!]!
-}
-
-"""User License"""
-type SalesforceUserLicense implements OneGraphNode {
- """User License ID"""
- id: String!
-
- """License Def. ID"""
- licenseDefinitionKey: String!
-
- """Total Licenses"""
- totalLicenses: Int!
-
- """Status"""
- status: String!
-
- """Used Licenses"""
- usedLicenses: Int!
-
- """Used Licenses Last Updated"""
- usedLicensesLastUpdated: String!
-
- """Name"""
- name: String!
-
- """Master Label"""
- masterLabel: String!
-
- """Created Date"""
- createdDate: String!
-
- """Last Modified Date"""
- lastModifiedDate: String!
-
- """System Modstamp"""
- systemModstamp: String!
-
- """Collection of Salesforce CustomObjectUserLicenseMetrics"""
- customObjectUserLicenseMetricsPlural(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceCustomObjectUserLicenseMetricsConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceCustomObjectUserLicenseMetricsSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceCustomObjectUserLicenseMetricsSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """
- Number of CustomObjectUserLicenseMetrics to fetch. Defaults to 10. Maximum is 60.
- """
- first: Int
- ): SalesforceCustomObjectUserLicenseMetricssConnection
-
- """Collection of Salesforce PermissionSet"""
- permissionSets(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforcePermissionSetConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforcePermissionSetSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforcePermissionSetSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of PermissionSets to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforcePermissionSetsConnection
-
- """Collection of Salesforce Profile"""
- profiles(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceProfileConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceProfileSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceProfileSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of Profiles to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceProfilesConnection
- customFields(
- """
- List of custom fields to return. By default, returns all custom fields.
- """
- fields: [String!]
- ): JSON!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-union SalesforcePermissionSetLicenseUnion = SalesforceUserLicense | SalesforcePermissionSetLicense
-
-"""Permission Set"""
-type SalesforcePermissionSet implements OneGraphNode {
- """PermissionSet ID"""
- id: String!
-
- """Permission Set Name"""
- name: String!
-
- """Permission Set Label"""
- label: String!
-
- """License ID"""
- licenseId: String
-
- """License ID"""
- license: SalesforcePermissionSetLicenseUnion
-
- """Profile ID"""
- profileId: String
-
- """Profile ID"""
- profile: SalesforceProfile
-
- """Is Owned By Profile"""
- isOwnedByProfile: Boolean!
-
- """Is Custom"""
- isCustom: Boolean!
-
- """Send Email"""
- permissionsEmailSingle: Boolean!
-
- """Mass Email"""
- permissionsEmailMass: Boolean!
-
- """Edit Tasks"""
- permissionsEditTask: Boolean!
-
- """Edit Events"""
- permissionsEditEvent: Boolean!
-
- """Export Reports"""
- permissionsExportReport: Boolean!
-
- """Import Personal Contacts"""
- permissionsImportPersonal: Boolean!
-
- """Weekly Data Export"""
- permissionsDataExport: Boolean!
-
- """Manage Users"""
- permissionsManageUsers: Boolean!
-
- """Manage Public List Views"""
- permissionsEditPublicFilters: Boolean!
-
- """Manage Public Templates"""
- permissionsEditPublicTemplates: Boolean!
-
- """Modify All Data"""
- permissionsModifyAllData: Boolean!
-
- """Manage Cases"""
- permissionsManageCases: Boolean!
-
- """Mass Edits from Lists"""
- permissionsMassInlineEdit: Boolean!
-
- """Manage Articles"""
- permissionsEditKnowledge: Boolean!
-
- """Manage Salesforce Knowledge"""
- permissionsManageKnowledge: Boolean!
-
- """Manage Published Solutions"""
- permissionsManageSolutions: Boolean!
-
- """Customize Application"""
- permissionsCustomizeApplication: Boolean!
-
- """Edit Read Only Fields"""
- permissionsEditReadonlyFields: Boolean!
-
- """Run Reports"""
- permissionsRunReports: Boolean!
-
- """View Setup and Configuration"""
- permissionsViewSetup: Boolean!
-
- """Transfer Record"""
- permissionsTransferAnyEntity: Boolean!
-
- """Report Builder"""
- permissionsNewReportBuilder: Boolean!
-
- """Activate Contracts"""
- permissionsActivateContract: Boolean!
-
- """Activate Orders"""
- permissionsActivateOrder: Boolean!
-
- """Import Leads"""
- permissionsImportLeads: Boolean!
-
- """Manage Leads"""
- permissionsManageLeads: Boolean!
-
- """Transfer Leads"""
- permissionsTransferAnyLead: Boolean!
-
- """View All Data"""
- permissionsViewAllData: Boolean!
-
- """Manage Public Documents"""
- permissionsEditPublicDocuments: Boolean!
-
- """View Encrypted Data"""
- permissionsViewEncryptedData: Boolean!
-
- """Manage Letterheads"""
- permissionsEditBrandTemplates: Boolean!
-
- """Edit HTML Templates"""
- permissionsEditHtmlTemplates: Boolean!
-
- """Chatter Internal User"""
- permissionsChatterInternalUser: Boolean!
-
- """Manage Encryption Keys"""
- permissionsManageEncryptionKeys: Boolean!
-
- """Delete Activated Contracts"""
- permissionsDeleteActivatedContract: Boolean!
-
- """Invite Customers To Chatter"""
- permissionsChatterInviteExternalUsers: Boolean!
-
- """Send Stay-in-Touch Requests"""
- permissionsSendSitRequests: Boolean!
-
- """Manage Connected Apps"""
- permissionsManageRemoteAccess: Boolean!
-
- """Drag-and-Drop Dashboard Builder"""
- permissionsCanUseNewDashboardBuilder: Boolean!
-
- """Manage Categories"""
- permissionsManageCategories: Boolean!
-
- """Convert Leads"""
- permissionsConvertLeads: Boolean!
-
- """Password Never Expires"""
- permissionsPasswordNeverExpires: Boolean!
-
- """Use Team Reassignment Wizards"""
- permissionsUseTeamReassignWizards: Boolean!
-
- """Edit Activated Orders"""
- permissionsEditActivatedOrders: Boolean!
-
- """Download AppExchange Packages"""
- permissionsInstallPackaging: Boolean!
-
- """Upload AppExchange Packages"""
- permissionsPublishPackaging: Boolean!
-
- """Create and Own New Chatter Groups"""
- permissionsChatterOwnGroups: Boolean!
-
- """Edit Opportunity Product Sales Price"""
- permissionsEditOppLineItemUnitPrice: Boolean!
-
- """Create AppExchange Packages"""
- permissionsCreatePackaging: Boolean!
-
- """Bulk API Hard Delete"""
- permissionsBulkApiHardDelete: Boolean!
-
- """Import Solutions"""
- permissionsSolutionImport: Boolean!
-
- """Manage Call Centers"""
- permissionsManageCallCenters: Boolean!
-
- """Manage Synonyms"""
- permissionsManageSynonyms: Boolean!
-
- """View Content in Portals"""
- permissionsViewContent: Boolean!
-
- """Manage Email Client Configurations"""
- permissionsManageEmailClientConfig: Boolean!
-
- """Send Outbound Messages"""
- permissionsEnableNotifications: Boolean!
-
- """Manage Data Integrations"""
- permissionsManageDataIntegrations: Boolean!
-
- """Create Content Deliveries"""
- permissionsDistributeFromPersWksp: Boolean!
-
- """View Data Categories"""
- permissionsViewDataCategories: Boolean!
-
- """Manage Data Categories"""
- permissionsManageDataCategories: Boolean!
-
- """Author Apex"""
- permissionsAuthorApex: Boolean!
-
- """Manage Mobile Configurations"""
- permissionsManageMobile: Boolean!
-
- """API Enabled"""
- permissionsApiEnabled: Boolean!
-
- """Manage Custom Report Types"""
- permissionsManageCustomReportTypes: Boolean!
-
- """Edit Case Comments"""
- permissionsEditCaseComments: Boolean!
-
- """Transfer Cases"""
- permissionsTransferAnyCase: Boolean!
-
- """Manage Salesforce CRM Content"""
- permissionsContentAdministrator: Boolean!
-
- """Create Libraries"""
- permissionsCreateWorkspaces: Boolean!
-
- """Manage Content Permissions"""
- permissionsManageContentPermissions: Boolean!
-
- """Manage Content Properties"""
- permissionsManageContentProperties: Boolean!
-
- """Manage record types and layouts for Files"""
- permissionsManageContentTypes: Boolean!
-
- """Manage Lightning Sync"""
- permissionsManageExchangeConfig: Boolean!
-
- """Manage Reporting Snapshots"""
- permissionsManageAnalyticSnapshots: Boolean!
-
- """Schedule Reports"""
- permissionsScheduleReports: Boolean!
-
- """Manage Business Hours Holidays"""
- permissionsManageBusinessHourHolidays: Boolean!
-
- """Manage Dynamic Dashboards"""
- permissionsManageDynamicDashboards: Boolean!
-
- """Show Custom Sidebar On All Pages"""
- permissionsCustomSidebarOnAllPages: Boolean!
-
- """Manage Flow"""
- permissionsManageInteraction: Boolean!
-
- """View My Team's Dashboards"""
- permissionsViewMyTeamsDashboards: Boolean!
-
- """Moderate Chatter"""
- permissionsModerateChatter: Boolean!
-
- """Reset User Passwords and Unlock Users"""
- permissionsResetPasswords: Boolean!
-
- """Require Flow User Feature License"""
- permissionsFlowUflRequired: Boolean!
-
- """Insert System Field Values for Chatter Feeds"""
- permissionsCanInsertFeedSystemFields: Boolean!
-
- """Manage Knowledge Article Import/Export"""
- permissionsManageKnowledgeImportExport: Boolean!
-
- """Manage Email Templates"""
- permissionsEmailTemplateManagement: Boolean!
-
- """Email Administration"""
- permissionsEmailAdministration: Boolean!
-
- """Manage Chatter Messages and Direct Messages"""
- permissionsManageChatterMessages: Boolean!
-
- """Email-Based Identity Verification Option"""
- permissionsAllowEmailIc: Boolean!
-
- """Create Public Links"""
- permissionsChatterFileLink: Boolean!
-
- """Two-Factor Authentication for User Interface Logins"""
- permissionsForceTwoFactor: Boolean!
-
- """View Event Log Files"""
- permissionsViewEventLogFiles: Boolean!
-
- """Create and Set Up Communities"""
- permissionsManageNetworks: Boolean!
-
- """Manage Auth. Providers"""
- permissionsManageAuthProviders: Boolean!
-
- """Run Flows"""
- permissionsRunFlow: Boolean!
-
- """Create and Customize Dashboards"""
- permissionsCreateCustomizeDashboards: Boolean!
-
- """Create Dashboard Folders"""
- permissionsCreateDashboardFolders: Boolean!
-
- """View Dashboards in Public Folders"""
- permissionsViewPublicDashboards: Boolean!
-
- """Manage Dashboards in Public Folders"""
- permissionsManageDashbdsInPubFolders: Boolean!
-
- """Create and Customize Reports"""
- permissionsCreateCustomizeReports: Boolean!
-
- """Create Report Folders"""
- permissionsCreateReportFolders: Boolean!
-
- """View Reports in Public Folders"""
- permissionsViewPublicReports: Boolean!
-
- """Manage Reports in Public Folders"""
- permissionsManageReportsInPubFolders: Boolean!
-
- """Edit My Dashboards"""
- permissionsEditMyDashboards: Boolean!
-
- """Edit My Reports"""
- permissionsEditMyReports: Boolean!
-
- """View All Users"""
- permissionsViewAllUsers: Boolean!
-
- """Knowledge One"""
- permissionsAllowUniversalSearch: Boolean!
-
- """Connect Organization to Environment Hub"""
- permissionsConnectOrgToEnvironmentHub: Boolean!
-
- """Enable Work.com Calibration"""
- permissionsWorkCalibrationUser: Boolean!
-
- """Create and Customize List Views"""
- permissionsCreateCustomizeFilters: Boolean!
-
- """Enable Work.com"""
- permissionsWorkDotComUserPerm: Boolean!
-
- """Manage Communities"""
- permissionsGovernNetworks: Boolean!
-
- """Sales Console"""
- permissionsSalesConsole: Boolean!
-
- """Two-Factor Authentication for API Logins"""
- permissionsTwoFactorApi: Boolean!
-
- """Delete Topics"""
- permissionsDeleteTopics: Boolean!
-
- """Edit Topics"""
- permissionsEditTopics: Boolean!
-
- """Create Topics"""
- permissionsCreateTopics: Boolean!
-
- """Assign Topics"""
- permissionsAssignTopics: Boolean!
-
- """Use Identity Features"""
- permissionsIdentityEnabled: Boolean!
-
- """Use Identity Connect"""
- permissionsIdentityConnect: Boolean!
-
- """Allow View Knowledge"""
- permissionsAllowViewKnowledge: Boolean!
-
- """Access Libraries"""
- permissionsContentWorkspaces: Boolean!
-
- """Manage Promoted Search Terms"""
- permissionsManageSearchPromotionRules: Boolean!
-
- """Access Custom Mobile Apps"""
- permissionsCustomMobileAppsAccess: Boolean!
-
- """View Help Link"""
- permissionsViewHelpLink: Boolean!
-
- """Manage Profiles and Permission Sets"""
- permissionsManageProfilesPermissionsets: Boolean!
-
- """Assign Permission Sets"""
- permissionsAssignPermissionSets: Boolean!
-
- """Manage Roles"""
- permissionsManageRoles: Boolean!
-
- """Manage IP Addresses"""
- permissionsManageIpAddresses: Boolean!
-
- """Manage Sharing"""
- permissionsManageSharing: Boolean!
-
- """Manage Internal Users"""
- permissionsManageInternalUsers: Boolean!
-
- """Manage Password Policies"""
- permissionsManagePasswordPolicies: Boolean!
-
- """Manage Login Access Policies"""
- permissionsManageLoginAccessPolicies: Boolean!
-
- """Manage Custom Permissions"""
- permissionsManageCustomPermissions: Boolean!
-
- """Verify Answers to Chatter Questions"""
- permissionsCanVerifyComment: Boolean!
-
- """Manage Unlisted Groups"""
- permissionsManageUnlistedGroups: Boolean!
-
- """Modify Secure Agents"""
- permissionsModifySecureAgents: Boolean!
-
- """Manage Two-Factor Authentication in API"""
- permissionsManageTwoFactor: Boolean!
-
- """Access Chatter For SharePoint"""
- permissionsChatterForSharePoint: Boolean!
-
- """Lightning Experience User"""
- permissionsLightningExperienceUser: Boolean!
-
- """Configure Custom Recommendations"""
- permissionsConfigCustomRecs: Boolean!
-
- """Manage Macros Users Can't Undo"""
- permissionsSubmitMacrosAllowed: Boolean!
-
- """Run Macros on Multiple Records"""
- permissionsBulkMacrosAllowed: Boolean!
-
- """Share internal Knowledge articles externally"""
- permissionsShareInternalArticles: Boolean!
-
- """Manage Session Permission Set Activations"""
- permissionsManageSessionPermissionSets: Boolean!
-
- """Send announcement emails"""
- permissionsSendAnnouncementEmails: Boolean!
-
- """Edit My Own Posts"""
- permissionsChatterEditOwnPost: Boolean!
-
- """Edit Posts on Records I Own"""
- permissionsChatterEditOwnRecordPost: Boolean!
-
- """Import Custom Objects"""
- permissionsImportCustomObjects: Boolean!
-
- """Manage Two-Factor Authentication in User Interface"""
- permissionsDelegatedTwoFactor: Boolean!
-
- """Allow Inclusion of Code Snippets from UI"""
- permissionsChatterComposeUiCodesnippet: Boolean!
-
- """Select Files from Salesforce"""
- permissionsSelectFilesFromSalesforce: Boolean!
-
- """Moderate Community Users"""
- permissionsModerateNetworkUsers: Boolean!
-
- """Merge Topics"""
- permissionsMergeTopics: Boolean!
-
- """Subscribe to Reports"""
- permissionsSubscribeToLightningReports: Boolean!
-
- """Manage All Private Reports and Dashboards"""
- permissionsManagePvtRptsAndDashbds: Boolean!
-
- """Lightning Login User"""
- permissionsAllowLightningLogin: Boolean!
-
- """Campaign Influence"""
- permissionsCampaignInfluence2: Boolean!
-
- """Access to view Data Assessment"""
- permissionsViewDataAssessment: Boolean!
-
- """Remove People from Direct Messages"""
- permissionsRemoveDirectMessageMembers: Boolean!
-
- """Can Approve Feed Post and Comment"""
- permissionsCanApproveFeedPost: Boolean!
-
- """Add People to Direct Messages"""
- permissionsAddDirectMessageMembers: Boolean!
-
- """View and Edit Converted Leads"""
- permissionsAllowViewEditConvertedLeads: Boolean!
-
- """Show Company Name as Community Role"""
- permissionsShowCompanyNameAsUserBadge: Boolean!
-
- """Access Community Management"""
- permissionsAccessCmc: Boolean!
-
- """View Health Check"""
- permissionsViewHealthCheck: Boolean!
-
- """Manage Health Check"""
- permissionsManageHealthCheck: Boolean!
-
- """Create and Update Second-Generation Packages"""
- permissionsPackaging2: Boolean!
-
- """Manage Certificates"""
- permissionsManageCertificates: Boolean!
-
- """Report Builder (Lightning Experience)"""
- permissionsCreateReportInLightning: Boolean!
-
- """Hide Option to Switch to Salesforce Classic"""
- permissionsPreventClassicExperience: Boolean!
-
- """Hide the Seen By List"""
- permissionsHideReadByList: Boolean!
-
- """Allow sending of List Emails"""
- permissionsListEmailSend: Boolean!
-
- """Pin Posts in Feeds"""
- permissionsFeedPinning: Boolean!
-
- """Change Dashboard Colors"""
- permissionsChangeDashboardColors: Boolean!
-
- """IoT User"""
- permissionsIotUser: Boolean!
-
- """Allow Access to Customized Actions"""
- permissionsUseWebLink: Boolean!
-
- """View All Activities"""
- permissionsViewAllActivities: Boolean!
-
- """Subscribe to Reports: Add Recipients"""
- permissionsSubscribeReportToOtherUsers: Boolean!
-
- """Lightning Console User"""
- permissionsLightningConsoleAllowedForUser: Boolean!
-
- """Subscribe to Reports: Set Running User"""
- permissionsSubscribeReportsRunAsUser: Boolean!
-
- """Subscribe to Dashboards"""
- permissionsSubscribeToLightningDashboards: Boolean!
-
- """Apex REST Services"""
- permissionsApexRestServices: Boolean!
-
- """Show App Launcher in Communities"""
- permissionsEnableCommunityAppLauncher: Boolean!
-
- """Manage Surveys"""
- permissionsManageSurveys: Boolean!
-
- """View Roles and Role Hierarchy"""
- permissionsViewRoles: Boolean!
-
- """Description"""
- description: String
-
- """Created Date"""
- createdDate: String!
-
- """Created By ID"""
- createdById: String!
-
- """Created By ID"""
- createdBy: SalesforceUser!
-
- """Last Modified Date"""
- lastModifiedDate: String!
-
- """Last Modified By ID"""
- lastModifiedById: String!
-
- """Last Modified By ID"""
- lastModifiedBy: SalesforceUser!
-
- """System Modstamp"""
- systemModstamp: String!
-
- """Namespace Prefix"""
- namespacePrefix: String
-
- """Session Activation Required"""
- hasActivationRequired: Boolean!
-
- """Collection of Salesforce FieldPermissions"""
- fieldPerms(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceFieldPermissionsConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceFieldPermissionsSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceFieldPermissionsSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of FieldPermissions to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceFieldPermissionssConnection
-
- """Collection of Salesforce ObjectPermissions"""
- objectPerms(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceObjectPermissionsConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceObjectPermissionsSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceObjectPermissionsSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of ObjectPermissions to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceObjectPermissionssConnection
-
- """Collection of Salesforce PermissionSetAssignment"""
- assignments(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforcePermissionSetAssignmentConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforcePermissionSetAssignmentSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforcePermissionSetAssignmentSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """
- Number of PermissionSetAssignments to fetch. Defaults to 10. Maximum is 60.
- """
- first: Int
- ): SalesforcePermissionSetAssignmentsConnection
-
- """Collection of Salesforce SessionPermSetActivation"""
- sessionActivations(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceSessionPermSetActivationConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceSessionPermSetActivationSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceSessionPermSetActivationSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """
- Number of SessionPermSetActivations to fetch. Defaults to 10. Maximum is 60.
- """
- first: Int
- ): SalesforceSessionPermSetActivationsConnection
-
- """Collection of Salesforce SetupEntityAccess"""
- setupEntityAccessItems(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceSetupEntityAccessConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceSetupEntityAccessSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceSetupEntityAccessSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of SetupEntityAccesses to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceSetupEntityAccesssConnection
- customFields(
- """
- List of custom fields to return. By default, returns all custom fields.
- """
- fields: [String!]
- ): JSON!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-"""Session Permission Set Activation"""
-type SalesforceSessionPermSetActivation implements OneGraphNode {
- """SessionPermSetActivation ID"""
- id: String!
-
- """Deleted"""
- isDeleted: Boolean!
-
- """Created Date"""
- createdDate: String!
-
- """Created By ID"""
- createdById: String!
-
- """Created By ID"""
- createdBy: SalesforceUser!
-
- """Last Modified Date"""
- lastModifiedDate: String!
-
- """Last Modified By ID"""
- lastModifiedById: String!
-
- """Last Modified By ID"""
- lastModifiedBy: SalesforceUser!
-
- """System Modstamp"""
- systemModstamp: String!
-
- """Auth Session ID"""
- authSessionId: String!
-
- """Auth Session ID"""
- authSession: SalesforceAuthSession!
-
- """PermissionSet ID"""
- permissionSetId: String!
-
- """PermissionSet ID"""
- permissionSet: SalesforcePermissionSet!
-
- """User ID"""
- userId: String!
-
- """User ID"""
- user: SalesforceUser!
-
- """Description"""
- description: String
- customFields(
- """
- List of custom fields to return. By default, returns all custom fields.
- """
- fields: [String!]
- ): JSON!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-"""
-Salesforce Session Permission Set Activations connection, for use in pagination.
-"""
-type SalesforceSessionPermSetActivationsConnection {
- """
- The count of all Session Permission Set Activation you could get from the connection.
- """
- totalCount: Int!
-
- """Pagination Information"""
- pageInfo: PageInfo!
-
- """List of Salesforce Session Permission Set Activations"""
- nodes: [SalesforceSessionPermSetActivation!]!
-
- """List of Session Permission Set Activation edges"""
- edges: [SalesforceSessionPermSetActivationEdge!]!
-}
-
-"""
-A filter to be used against IdpEventLog object types. All fields are combined with a logical ‘and.’
-"""
-input SalesforceIdpEventLogConnectionFilter {
- """Filter against custom fields."""
- customField: SalesforceCustomFieldFilter
-
- """Filter by the IdpEventLog's app relation."""
- app: SalesforceConnectedApplicationConnectionFilter
-
- """Filter by the IdpEventLog's authSession relation."""
- authSession: SalesforceAuthSessionConnectionFilter
-
- """Filter by the IdpEventLog's user relation."""
- user: SalesforceUserConnectionFilter
-
- """Filter by the IdpEventLog's id field"""
- id: SalesforceIdFilter
-
- """Filter by the IdpEventLog's initiatedBy field"""
- initiatedBy: SalesforceStringFilter
-
- """Filter by the IdpEventLog's timestamp field"""
- timestamp: SalesforceDateTimeFilter
-
- """Filter by the IdpEventLog's errorCode field"""
- errorCode: SalesforceStringFilter
-
- """Filter by the IdpEventLog's samlEntityUrl field"""
- samlEntityUrl: SalesforceStringFilter
-
- """Filter by the IdpEventLog's userId field"""
- userId: SalesforceIdFilter
-
- """Filter by the IdpEventLog's authSessionId field"""
- authSessionId: SalesforceIdFilter
-
- """Filter by the IdpEventLog's ssoType field"""
- ssoType: SalesforceStringFilter
-
- """Filter by the IdpEventLog's appId field"""
- appId: SalesforceIdFilter
-
- """Filter by the IdpEventLog's identityUsed field"""
- identityUsed: SalesforceStringFilter
-
- """Filter by the IdpEventLog's optionsHasLogoutUrl field"""
- optionsHasLogoutUrl: SalesforceBooleanFilter
-
- """Checks for any expressions in this list."""
- or: [SalesforceIdpEventLogConnectionFilter!]
-
- """Checks for all expressions in this list."""
- and: [SalesforceIdpEventLogConnectionFilter!]
-}
-
-"""Field that Identity Provider Event Logs can be sorted by"""
-enum SalesforceIdpEventLogSortByFieldEnum {
- ID
- INITIATED_BY
- TIMESTAMP
- ERROR_CODE
- SAML_ENTITY_URL
- USER_ID
- AUTH_SESSION_ID
- SSO_TYPE
- APP_ID
- IDENTITY_USED
-}
-
-"""
-A filter to be used against ConnectedApplication object types. All fields are combined with a logical ‘and.’
-"""
-input SalesforceConnectedApplicationConnectionFilter {
- """Filter against custom fields."""
- customField: SalesforceCustomFieldFilter
-
- """Filter by the ConnectedApplication's lastModifiedBy relation."""
- lastModifiedBy: SalesforceUserConnectionFilter
-
- """Filter by the ConnectedApplication's createdBy relation."""
- createdBy: SalesforceUserConnectionFilter
-
- """Filter by the ConnectedApplication's id field"""
- id: SalesforceIdFilter
-
- """Filter by the ConnectedApplication's name field"""
- name: SalesforceStringFilter
-
- """Filter by the ConnectedApplication's createdDate field"""
- createdDate: SalesforceDateTimeFilter
-
- """Filter by the ConnectedApplication's createdById field"""
- createdById: SalesforceIdFilter
-
- """Filter by the ConnectedApplication's lastModifiedDate field"""
- lastModifiedDate: SalesforceDateTimeFilter
-
- """Filter by the ConnectedApplication's lastModifiedById field"""
- lastModifiedById: SalesforceIdFilter
-
- """Filter by the ConnectedApplication's systemModstamp field"""
- systemModstamp: SalesforceDateTimeFilter
-
- """
- Filter by the ConnectedApplication's optionsAllowAdminApprovedUsersOnly field
- """
- optionsAllowAdminApprovedUsersOnly: SalesforceBooleanFilter
-
- """
- Filter by the ConnectedApplication's optionsRefreshTokenValidityMetric field
- """
- optionsRefreshTokenValidityMetric: SalesforceBooleanFilter
-
- """
- Filter by the ConnectedApplication's optionsHasSessionLevelPolicy field
- """
- optionsHasSessionLevelPolicy: SalesforceBooleanFilter
-
- """Filter by the ConnectedApplication's optionsIsInternal field"""
- optionsIsInternal: SalesforceBooleanFilter
-
- """Filter by the ConnectedApplication's mobileSessionTimeout field"""
- mobileSessionTimeout: SalesforceStringFilter
-
- """Filter by the ConnectedApplication's pinLength field"""
- pinLength: SalesforceStringFilter
-
- """Filter by the ConnectedApplication's startUrl field"""
- startUrl: SalesforceStringFilter
-
- """Filter by the ConnectedApplication's mobileStartUrl field"""
- mobileStartUrl: SalesforceStringFilter
-
- """Filter by the ConnectedApplication's refreshTokenValidityPeriod field"""
- refreshTokenValidityPeriod: SalesforceIntFilter
-
- """Checks for any expressions in this list."""
- or: [SalesforceConnectedApplicationConnectionFilter!]
-
- """Checks for all expressions in this list."""
- and: [SalesforceConnectedApplicationConnectionFilter!]
-}
-
-"""
-A filter to be used against VerificationHistory object types. All fields are combined with a logical ‘and.’
-"""
-input SalesforceVerificationHistoryConnectionFilter {
- """Filter against custom fields."""
- customField: SalesforceCustomFieldFilter
-
- """Filter by the VerificationHistory's lastModifiedBy relation."""
- lastModifiedBy: SalesforceUserConnectionFilter
-
- """Filter by the VerificationHistory's createdBy relation."""
- createdBy: SalesforceUserConnectionFilter
-
- """Filter by the VerificationHistory's resource relation."""
- resource: SalesforceConnectedApplicationConnectionFilter
-
- """Filter by the VerificationHistory's loginGeo relation."""
- loginGeo: SalesforceLoginGeoConnectionFilter
-
- """Filter by the VerificationHistory's loginHistory relation."""
- loginHistory: SalesforceLoginHistoryConnectionFilter
-
- """Filter by the VerificationHistory's user relation."""
- user: SalesforceUserConnectionFilter
-
- """Filter by the VerificationHistory's id field"""
- id: SalesforceIdFilter
-
- """Filter by the VerificationHistory's eventGroup field"""
- eventGroup: SalesforceIntFilter
-
- """Filter by the VerificationHistory's verificationTime field"""
- verificationTime: SalesforceDateTimeFilter
-
- """Filter by the VerificationHistory's verificationMethod field"""
- verificationMethod: SalesforceStringFilter
-
- """Filter by the VerificationHistory's userId field"""
- userId: SalesforceIdFilter
-
- """Filter by the VerificationHistory's activity field"""
- activity: SalesforceStringFilter
-
- """Filter by the VerificationHistory's status field"""
- status: SalesforceStringFilter
-
- """Filter by the VerificationHistory's loginHistoryId field"""
- loginHistoryId: SalesforceIdFilter
-
- """Filter by the VerificationHistory's sourceIp field"""
- sourceIp: SalesforceStringFilter
-
- """Filter by the VerificationHistory's loginGeoId field"""
- loginGeoId: SalesforceIdFilter
-
- """Filter by the VerificationHistory's remarks field"""
- remarks: SalesforceStringFilter
-
- """Filter by the VerificationHistory's resourceId field"""
- resourceId: SalesforceIdFilter
-
- """Filter by the VerificationHistory's policy field"""
- policy: SalesforceStringFilter
-
- """Filter by the VerificationHistory's createdDate field"""
- createdDate: SalesforceDateTimeFilter
-
- """Filter by the VerificationHistory's createdById field"""
- createdById: SalesforceIdFilter
-
- """Filter by the VerificationHistory's lastModifiedById field"""
- lastModifiedById: SalesforceIdFilter
-
- """Filter by the VerificationHistory's lastModifiedDate field"""
- lastModifiedDate: SalesforceDateTimeFilter
-
- """Filter by the VerificationHistory's isDeleted field"""
- isDeleted: SalesforceBooleanFilter
-
- """Filter by the VerificationHistory's systemModstamp field"""
- systemModstamp: SalesforceDateTimeFilter
-
- """Checks for any expressions in this list."""
- or: [SalesforceVerificationHistoryConnectionFilter!]
-
- """Checks for all expressions in this list."""
- and: [SalesforceVerificationHistoryConnectionFilter!]
-}
-
-"""Field that Identity Verification Histories can be sorted by"""
-enum SalesforceVerificationHistorySortByFieldEnum {
- ID
- EVENT_GROUP
- VERIFICATION_TIME
- VERIFICATION_METHOD
- USER_ID
- ACTIVITY
- STATUS
- LOGIN_HISTORY_ID
- SOURCE_IP
- LOGIN_GEO_ID
- REMARKS
- RESOURCE_ID
- POLICY
- CREATED_DATE
- CREATED_BY_ID
- LAST_MODIFIED_BY_ID
- LAST_MODIFIED_DATE
- IS_DELETED
- SYSTEM_MODSTAMP
-}
-
-"""An edge in a connection."""
-type SalesforceVerificationHistoryEdge {
- """The item at the end of the edge."""
- node: SalesforceVerificationHistory!
-
- """A cursor for use in pagination"""
- cursor: String!
-}
-
-"""Identity Verification History"""
-type SalesforceVerificationHistory implements OneGraphNode {
- """Identity Verification ID"""
- id: String!
-
- """Verification Attempt"""
- eventGroup: Int!
-
- """Time"""
- verificationTime: String!
-
- """Method"""
- verificationMethod: String
-
- """User ID"""
- userId: String!
-
- """User ID"""
- user: SalesforceUser!
-
- """User Activity"""
- activity: String!
-
- """Status"""
- status: String!
-
- """Login History ID"""
- loginHistoryId: String!
-
- """Login History ID"""
- loginHistory: SalesforceLoginHistory!
-
- """Source IP"""
- sourceIp: String!
-
- """Login Geo Data ID"""
- loginGeoId: String
-
- """Login Geo Data ID"""
- loginGeo: SalesforceLoginGeo
-
- """Activity Message"""
- remarks: String
-
- """Connected App ID"""
- resourceId: String
-
- """Connected App ID"""
- resource: SalesforceConnectedApplication
-
- """Triggered By"""
- policy: String!
-
- """Created Date"""
- createdDate: String!
-
- """Created By ID"""
- createdById: String!
-
- """Created By ID"""
- createdBy: SalesforceUser!
-
- """Last Modified By ID"""
- lastModifiedById: String!
-
- """Last Modified By ID"""
- lastModifiedBy: SalesforceUser!
-
- """Last Modified Date"""
- lastModifiedDate: String!
-
- """Deleted"""
- isDeleted: Boolean!
-
- """System Modstamp"""
- systemModstamp: String!
- customFields(
- """
- List of custom fields to return. By default, returns all custom fields.
- """
- fields: [String!]
- ): JSON!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-"""
-Salesforce Identity Verification Histories connection, for use in pagination.
-"""
-type SalesforceVerificationHistorysConnection {
- """
- The count of all Identity Verification History you could get from the connection.
- """
- totalCount: Int!
-
- """Pagination Information"""
- pageInfo: PageInfo!
-
- """List of Salesforce Identity Verification Histories"""
- nodes: [SalesforceVerificationHistory!]!
-
- """List of Identity Verification History edges"""
- edges: [SalesforceVerificationHistoryEdge!]!
-}
-
-"""
-A filter to be used against AuthSession object types. All fields are combined with a logical ‘and.’
-"""
-input SalesforceAuthSessionConnectionFilter {
- """Filter against custom fields."""
- customField: SalesforceCustomFieldFilter
-
- """Filter by the AuthSession's loginGeo relation."""
- loginGeo: SalesforceLoginGeoConnectionFilter
-
- """Filter by the AuthSession's loginHistory relation."""
- loginHistory: SalesforceLoginHistoryConnectionFilter
-
- """Filter by the AuthSession's parent relation."""
- parent: SalesforceAuthSessionConnectionFilter
-
- """Filter by the AuthSession's users relation."""
- users: SalesforceUserConnectionFilter
-
- """Filter by the AuthSession's id field"""
- id: SalesforceIdFilter
-
- """Filter by the AuthSession's usersId field"""
- usersId: SalesforceIdFilter
-
- """Filter by the AuthSession's createdDate field"""
- createdDate: SalesforceDateTimeFilter
-
- """Filter by the AuthSession's lastModifiedDate field"""
- lastModifiedDate: SalesforceDateTimeFilter
-
- """Filter by the AuthSession's numSecondsValid field"""
- numSecondsValid: SalesforceIntFilter
-
- """Filter by the AuthSession's userType field"""
- userType: SalesforceStringFilter
-
- """Filter by the AuthSession's sourceIp field"""
- sourceIp: SalesforceStringFilter
-
- """Filter by the AuthSession's loginType field"""
- loginType: SalesforceStringFilter
-
- """Filter by the AuthSession's sessionType field"""
- sessionType: SalesforceStringFilter
-
- """Filter by the AuthSession's sessionSecurityLevel field"""
- sessionSecurityLevel: SalesforceStringFilter
-
- """Filter by the AuthSession's logoutUrl field"""
- logoutUrl: SalesforceStringFilter
-
- """Filter by the AuthSession's parentId field"""
- parentId: SalesforceIdFilter
-
- """Filter by the AuthSession's loginHistoryId field"""
- loginHistoryId: SalesforceIdFilter
-
- """Filter by the AuthSession's loginGeoId field"""
- loginGeoId: SalesforceIdFilter
-
- """Filter by the AuthSession's isCurrent field"""
- isCurrent: SalesforceBooleanFilter
-
- """Checks for any expressions in this list."""
- or: [SalesforceAuthSessionConnectionFilter!]
-
- """Checks for all expressions in this list."""
- and: [SalesforceAuthSessionConnectionFilter!]
-}
-
-"""Field that Auth Sessions can be sorted by"""
-enum SalesforceAuthSessionSortByFieldEnum {
- ID
- USERS_ID
- CREATED_DATE
- LAST_MODIFIED_DATE
- NUM_SECONDS_VALID
- USER_TYPE
- SOURCE_IP
- LOGIN_TYPE
- SESSION_TYPE
- SESSION_SECURITY_LEVEL
- LOGOUT_URL
- PARENT_ID
- LOGIN_HISTORY_ID
- LOGIN_GEO_ID
- IS_CURRENT
-}
-
-"""An edge in a connection."""
-type SalesforceAuthSessionEdge {
- """The item at the end of the edge."""
- node: SalesforceAuthSession!
-
- """A cursor for use in pagination"""
- cursor: String!
-}
-
-"""Salesforce Auth Sessions connection, for use in pagination."""
-type SalesforceAuthSessionsConnection {
- """The count of all Auth Session you could get from the connection."""
- totalCount: Int!
-
- """Pagination Information"""
- pageInfo: PageInfo!
-
- """List of Salesforce Auth Sessions"""
- nodes: [SalesforceAuthSession!]!
-
- """List of Auth Session edges"""
- edges: [SalesforceAuthSessionEdge!]!
-}
-
-"""Login Geo Data"""
-type SalesforceLoginGeo implements OneGraphNode {
- """Login Geo Data ID"""
- id: String!
-
- """Created Date"""
- createdDate: String!
-
- """Created By ID"""
- createdById: String!
-
- """Created By ID"""
- createdBy: SalesforceUser!
-
- """Last Modified By ID"""
- lastModifiedById: String!
-
- """Last Modified By ID"""
- lastModifiedBy: SalesforceUser!
-
- """Last Modified Date"""
- lastModifiedDate: String!
-
- """Deleted"""
- isDeleted: Boolean!
-
- """System Modstamp"""
- systemModstamp: String!
-
- """Login Time"""
- loginTime: String!
-
- """Country Code"""
- countryIso: String
-
- """Country"""
- country: String
-
- """Latitude"""
- latitude: Float
-
- """Longitude"""
- longitude: Float
-
- """City"""
- city: String
-
- """PostalCode"""
- postalCode: String
-
- """Subdivision"""
- subdivision: String
-
- """Collection of Salesforce AuthSession"""
- authSessions(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceAuthSessionConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceAuthSessionSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceAuthSessionSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of AuthSessions to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceAuthSessionsConnection
-
- """Collection of Salesforce LoginHistory"""
- loginHistories(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceLoginHistoryConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceLoginHistorySortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceLoginHistorySortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of LoginHistories to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceLoginHistorysConnection
-
- """Collection of Salesforce VerificationHistory"""
- verificationHistories(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceVerificationHistoryConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceVerificationHistorySortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceVerificationHistorySortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """
- Number of VerificationHistories to fetch. Defaults to 10. Maximum is 60.
- """
- first: Int
- ): SalesforceVerificationHistorysConnection
- customFields(
- """
- List of custom fields to return. By default, returns all custom fields.
- """
- fields: [String!]
- ): JSON!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-"""
-A filter to be used against LoginGeo object types. All fields are combined with a logical ‘and.’
-"""
-input SalesforceLoginGeoConnectionFilter {
- """Filter against custom fields."""
- customField: SalesforceCustomFieldFilter
-
- """Filter by the LoginGeo's lastModifiedBy relation."""
- lastModifiedBy: SalesforceUserConnectionFilter
-
- """Filter by the LoginGeo's createdBy relation."""
- createdBy: SalesforceUserConnectionFilter
-
- """Filter by the LoginGeo's id field"""
- id: SalesforceIdFilter
-
- """Filter by the LoginGeo's createdDate field"""
- createdDate: SalesforceDateTimeFilter
-
- """Filter by the LoginGeo's createdById field"""
- createdById: SalesforceIdFilter
-
- """Filter by the LoginGeo's lastModifiedById field"""
- lastModifiedById: SalesforceIdFilter
-
- """Filter by the LoginGeo's lastModifiedDate field"""
- lastModifiedDate: SalesforceDateTimeFilter
-
- """Filter by the LoginGeo's isDeleted field"""
- isDeleted: SalesforceBooleanFilter
-
- """Filter by the LoginGeo's systemModstamp field"""
- systemModstamp: SalesforceDateTimeFilter
-
- """Filter by the LoginGeo's loginTime field"""
- loginTime: SalesforceDateTimeFilter
-
- """Filter by the LoginGeo's countryIso field"""
- countryIso: SalesforceStringFilter
-
- """Filter by the LoginGeo's country field"""
- country: SalesforceStringFilter
-
- """Filter by the LoginGeo's latitude field"""
- latitude: SalesforceFloatFilter
-
- """Filter by the LoginGeo's longitude field"""
- longitude: SalesforceFloatFilter
-
- """Filter by the LoginGeo's city field"""
- city: SalesforceStringFilter
-
- """Filter by the LoginGeo's postalCode field"""
- postalCode: SalesforceStringFilter
-
- """Filter by the LoginGeo's subdivision field"""
- subdivision: SalesforceStringFilter
-
- """Checks for any expressions in this list."""
- or: [SalesforceLoginGeoConnectionFilter!]
-
- """Checks for all expressions in this list."""
- and: [SalesforceLoginGeoConnectionFilter!]
-}
-
-"""
-A filter to be used against LoginHistory object types. All fields are combined with a logical ‘and.’
-"""
-input SalesforceLoginHistoryConnectionFilter {
- """Filter against custom fields."""
- customField: SalesforceCustomFieldFilter
-
- """Filter by the LoginHistory's loginGeo relation."""
- loginGeo: SalesforceLoginGeoConnectionFilter
-
- """Filter by the LoginHistory's user relation."""
- user: SalesforceUserConnectionFilter
-
- """Filter by the LoginHistory's id field"""
- id: SalesforceIdFilter
-
- """Filter by the LoginHistory's userId field"""
- userId: SalesforceIdFilter
-
- """Filter by the LoginHistory's loginTime field"""
- loginTime: SalesforceDateTimeFilter
-
- """Filter by the LoginHistory's loginType field"""
- loginType: SalesforceStringFilter
-
- """Filter by the LoginHistory's sourceIp field"""
- sourceIp: SalesforceStringFilter
-
- """Filter by the LoginHistory's loginUrl field"""
- loginUrl: SalesforceStringFilter
-
- """Filter by the LoginHistory's authenticationServiceId field"""
- authenticationServiceId: SalesforceIdFilter
-
- """Filter by the LoginHistory's loginGeoId field"""
- loginGeoId: SalesforceIdFilter
-
- """Filter by the LoginHistory's tlsProtocol field"""
- tlsProtocol: SalesforceStringFilter
-
- """Filter by the LoginHistory's cipherSuite field"""
- cipherSuite: SalesforceStringFilter
-
- """Filter by the LoginHistory's countryIso field"""
- countryIso: SalesforceStringFilter
-
- """Checks for any expressions in this list."""
- or: [SalesforceLoginHistoryConnectionFilter!]
-
- """Checks for all expressions in this list."""
- and: [SalesforceLoginHistoryConnectionFilter!]
-}
-
-"""Field that Login Histories can be sorted by"""
-enum SalesforceLoginHistorySortByFieldEnum {
- ID
- USER_ID
- LOGIN_TIME
- LOGIN_TYPE
- SOURCE_IP
- LOGIN_URL
- AUTHENTICATION_SERVICE_ID
- LOGIN_GEO_ID
- TLS_PROTOCOL
- CIPHER_SUITE
- BROWSER
- PLATFORM
- STATUS
- APPLICATION
- CLIENT_VERSION
- API_TYPE
- API_VERSION
- COUNTRY_ISO
-}
-
-"""An edge in a connection."""
-type SalesforceLoginHistoryEdge {
- """The item at the end of the edge."""
- node: SalesforceLoginHistory!
-
- """A cursor for use in pagination"""
- cursor: String!
-}
-
-"""Salesforce Login Histories connection, for use in pagination."""
-type SalesforceLoginHistorysConnection {
- """The count of all Login History you could get from the connection."""
- totalCount: Int!
-
- """Pagination Information"""
- pageInfo: PageInfo!
-
- """List of Salesforce Login Histories"""
- nodes: [SalesforceLoginHistory!]!
-
- """List of Login History edges"""
- edges: [SalesforceLoginHistoryEdge!]!
-}
-
-"""An edge in a connection."""
-type SalesforceAuthConfigProvidersEdge {
- """The item at the end of the edge."""
- node: SalesforceAuthConfigProviders!
-
- """A cursor for use in pagination"""
- cursor: String!
-}
-
-union SalesforceAuthConfigProvidersAuthProviderUnion = SalesforceSamlSsoConfig | SalesforceAuthProvider
-
-"""
-A filter to be used against AuthConfig object types. All fields are combined with a logical ‘and.’
-"""
-input SalesforceAuthConfigConnectionFilter {
- """Filter against custom fields."""
- customField: SalesforceCustomFieldFilter
-
- """Filter by the AuthConfig's lastModifiedBy relation."""
- lastModifiedBy: SalesforceUserConnectionFilter
-
- """Filter by the AuthConfig's createdBy relation."""
- createdBy: SalesforceUserConnectionFilter
-
- """Filter by the AuthConfig's id field"""
- id: SalesforceIdFilter
-
- """Filter by the AuthConfig's isDeleted field"""
- isDeleted: SalesforceBooleanFilter
-
- """Filter by the AuthConfig's developerName field"""
- developerName: SalesforceStringFilter
-
- """Filter by the AuthConfig's language field"""
- language: SalesforceStringFilter
-
- """Filter by the AuthConfig's masterLabel field"""
- masterLabel: SalesforceStringFilter
-
- """Filter by the AuthConfig's namespacePrefix field"""
- namespacePrefix: SalesforceStringFilter
-
- """Filter by the AuthConfig's createdDate field"""
- createdDate: SalesforceDateTimeFilter
-
- """Filter by the AuthConfig's createdById field"""
- createdById: SalesforceIdFilter
-
- """Filter by the AuthConfig's lastModifiedDate field"""
- lastModifiedDate: SalesforceDateTimeFilter
-
- """Filter by the AuthConfig's lastModifiedById field"""
- lastModifiedById: SalesforceIdFilter
-
- """Filter by the AuthConfig's systemModstamp field"""
- systemModstamp: SalesforceDateTimeFilter
-
- """Filter by the AuthConfig's url field"""
- url: SalesforceStringFilter
-
- """Filter by the AuthConfig's authOptionsUsernamePassword field"""
- authOptionsUsernamePassword: SalesforceBooleanFilter
-
- """Filter by the AuthConfig's authOptionsSaml field"""
- authOptionsSaml: SalesforceBooleanFilter
-
- """Filter by the AuthConfig's authOptionsAuthProvider field"""
- authOptionsAuthProvider: SalesforceBooleanFilter
-
- """Filter by the AuthConfig's isActive field"""
- isActive: SalesforceBooleanFilter
-
- """Filter by the AuthConfig's type field"""
- type: SalesforceStringFilter
-
- """Checks for any expressions in this list."""
- or: [SalesforceAuthConfigConnectionFilter!]
-
- """Checks for all expressions in this list."""
- and: [SalesforceAuthConfigConnectionFilter!]
-}
-
-"""
-A filter to be used against AuthConfigProviders object types. All fields are combined with a logical ‘and.’
-"""
-input SalesforceAuthConfigProvidersConnectionFilter {
- """Filter against custom fields."""
- customField: SalesforceCustomFieldFilter
-
- """Filter by the AuthConfigProviders's authConfig relation."""
- authConfig: SalesforceAuthConfigConnectionFilter
-
- """Filter by the AuthConfigProviders's lastModifiedBy relation."""
- lastModifiedBy: SalesforceUserConnectionFilter
-
- """Filter by the AuthConfigProviders's createdBy relation."""
- createdBy: SalesforceUserConnectionFilter
-
- """Filter by the AuthConfigProviders's id field"""
- id: SalesforceIdFilter
-
- """Filter by the AuthConfigProviders's isDeleted field"""
- isDeleted: SalesforceBooleanFilter
-
- """Filter by the AuthConfigProviders's createdDate field"""
- createdDate: SalesforceDateTimeFilter
-
- """Filter by the AuthConfigProviders's createdById field"""
- createdById: SalesforceIdFilter
-
- """Filter by the AuthConfigProviders's lastModifiedDate field"""
- lastModifiedDate: SalesforceDateTimeFilter
-
- """Filter by the AuthConfigProviders's lastModifiedById field"""
- lastModifiedById: SalesforceIdFilter
-
- """Filter by the AuthConfigProviders's systemModstamp field"""
- systemModstamp: SalesforceDateTimeFilter
-
- """Filter by the AuthConfigProviders's authConfigId field"""
- authConfigId: SalesforceIdFilter
-
- """Filter by the AuthConfigProviders's authProviderId field"""
- authProviderId: SalesforceIdFilter
-
- """Checks for any expressions in this list."""
- or: [SalesforceAuthConfigProvidersConnectionFilter!]
-
- """Checks for all expressions in this list."""
- and: [SalesforceAuthConfigProvidersConnectionFilter!]
-}
-
-"""
-Field that Authentication Configuration Auth. Providers can be sorted by
-"""
-enum SalesforceAuthConfigProvidersSortByFieldEnum {
- ID
- IS_DELETED
- CREATED_DATE
- CREATED_BY_ID
- LAST_MODIFIED_DATE
- LAST_MODIFIED_BY_ID
- SYSTEM_MODSTAMP
- AUTH_CONFIG_ID
- AUTH_PROVIDER_ID
-}
-
-"""Authentication Configuration"""
-type SalesforceAuthConfig implements OneGraphNode {
- """Authentication Configuration ID"""
- id: String!
-
- """Deleted"""
- isDeleted: Boolean!
-
- """Name"""
- developerName: String!
-
- """Master Language"""
- language: String!
-
- """Label"""
- masterLabel: String!
-
- """Namespace Prefix"""
- namespacePrefix: String
-
- """Created Date"""
- createdDate: String!
-
- """Created By ID"""
- createdById: String!
-
- """Created By ID"""
- createdBy: SalesforceUser!
-
- """Last Modified Date"""
- lastModifiedDate: String!
-
- """Last Modified By ID"""
- lastModifiedById: String!
-
- """Last Modified By ID"""
- lastModifiedBy: SalesforceUser!
-
- """System Modstamp"""
- systemModstamp: String!
-
- """URL"""
- url: String!
-
- """UsernamePassword"""
- authOptionsUsernamePassword: Boolean!
-
- """Saml"""
- authOptionsSaml: Boolean!
-
- """AuthProvider"""
- authOptionsAuthProvider: Boolean!
-
- """Is Active"""
- isActive: Boolean!
-
- """Authentication Configuration Type"""
- type: String!
-
- """Collection of Salesforce AuthConfigProviders"""
- authProvidersForConfig(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceAuthConfigProvidersConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceAuthConfigProvidersSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceAuthConfigProvidersSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of AuthConfigProviders to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceAuthConfigProviderssConnection
- customFields(
- """
- List of custom fields to return. By default, returns all custom fields.
- """
- fields: [String!]
- ): JSON!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-"""Authentication Configuration Auth. Provider"""
-type SalesforceAuthConfigProviders implements OneGraphNode {
- """Auth Config Provider ID"""
- id: String!
-
- """Deleted"""
- isDeleted: Boolean!
-
- """Created Date"""
- createdDate: String!
-
- """Created By ID"""
- createdById: String!
-
- """Created By ID"""
- createdBy: SalesforceUser!
-
- """Last Modified Date"""
- lastModifiedDate: String!
-
- """Last Modified By ID"""
- lastModifiedById: String!
-
- """Last Modified By ID"""
- lastModifiedBy: SalesforceUser!
-
- """System Modstamp"""
- systemModstamp: String!
-
- """Authentication Configuration ID"""
- authConfigId: String!
-
- """Authentication Configuration ID"""
- authConfig: SalesforceAuthConfig!
-
- """Authentication Provider ID"""
- authProviderId: String!
-
- """Authentication Provider ID"""
- authProvider: SalesforceAuthConfigProvidersAuthProviderUnion!
- customFields(
- """
- List of custom fields to return. By default, returns all custom fields.
- """
- fields: [String!]
- ): JSON!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-"""
-Salesforce Authentication Configuration Auth. Providers connection, for use in pagination.
-"""
-type SalesforceAuthConfigProviderssConnection {
- """
- The count of all Authentication Configuration Auth. Provider you could get from the connection.
- """
- totalCount: Int!
-
- """Pagination Information"""
- pageInfo: PageInfo!
-
- """List of Salesforce Authentication Configuration Auth. Providers"""
- nodes: [SalesforceAuthConfigProviders!]!
-
- """List of Authentication Configuration Auth. Provider edges"""
- edges: [SalesforceAuthConfigProvidersEdge!]!
-}
-
-"""SAML Single Sign-On Setting"""
-type SalesforceSamlSsoConfig implements OneGraphNode {
- """SAML Single Sign-On Setting ID"""
- id: String!
-
- """Deleted"""
- isDeleted: Boolean!
-
- """Name"""
- developerName: String!
-
- """Master Language"""
- language: String!
-
- """Label"""
- masterLabel: String!
-
- """Namespace Prefix"""
- namespacePrefix: String
-
- """Created Date"""
- createdDate: String!
-
- """Created By ID"""
- createdById: String!
-
- """Created By ID"""
- createdBy: SalesforceUser!
-
- """Last Modified Date"""
- lastModifiedDate: String!
-
- """Last Modified By ID"""
- lastModifiedById: String!
-
- """Last Modified By ID"""
- lastModifiedBy: SalesforceUser!
-
- """System Modstamp"""
- systemModstamp: String!
-
- """SAML Version"""
- version: String!
-
- """Issuer"""
- issuer: String!
-
- """SpInitBinding"""
- optionsSpInitBinding: Boolean!
-
- """UserProvisioning"""
- optionsUserProvisioning: Boolean!
-
- """Name ID Format"""
- attributeFormat: String
-
- """Attribute Name"""
- attributeName: String
-
- """Entity ID"""
- audience: String!
-
- """SAML Identity Type"""
- identityMapping: String!
-
- """SAML Identity Location"""
- identityLocation: String!
-
- """Class ID"""
- samlJitHandlerId: String
-
- """Class ID"""
- samlJitHandler: SalesforceApexClass
-
- """User ID"""
- executionUserId: String
-
- """User ID"""
- executionUser: SalesforceUser
-
- """Identity Provider Login URL"""
- loginUrl: String
-
- """Identity Provider Logout URL"""
- logoutUrl: String
-
- """Custom Error URL"""
- errorUrl: String
-
- """Identity Provider Certificate"""
- validationCert: String!
-
- """Request Signature Method"""
- requestSignatureMethod: String
-
- """Identity Provider Single Logout URL"""
- singleLogoutUrl: String
-
- """Single Logout Request Binding"""
- singleLogoutBinding: String
-
- """Collection of Salesforce AuthConfigProviders"""
- authConfigProvidersPlural(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceAuthConfigProvidersConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceAuthConfigProvidersSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceAuthConfigProvidersSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of AuthConfigProviders to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceAuthConfigProviderssConnection
-
- """Collection of Salesforce LoginHistory"""
- loginHistories(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceLoginHistoryConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceLoginHistorySortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceLoginHistorySortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of LoginHistories to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceLoginHistorysConnection
- customFields(
- """
- List of custom fields to return. By default, returns all custom fields.
- """
- fields: [String!]
- ): JSON!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-union SalesforceLoginHistoryAuthenticationServiceUnion = SalesforceSamlSsoConfig | SalesforceAuthProvider
-
-"""Login History"""
-type SalesforceLoginHistory implements OneGraphNode {
- """Login History Id"""
- id: String!
-
- """User ID"""
- userId: String
-
- """User ID"""
- user: SalesforceUser
-
- """Login Time"""
- loginTime: String!
-
- """Login Type"""
- loginType: String!
-
- """Source IP"""
- sourceIp: String
-
- """Login URL"""
- loginUrl: String
-
- """Authentication Service ID"""
- authenticationServiceId: String
-
- """Authentication Service ID"""
- authenticationService: SalesforceLoginHistoryAuthenticationServiceUnion
-
- """Login Geo Data ID"""
- loginGeoId: String
-
- """Login Geo Data ID"""
- loginGeo: SalesforceLoginGeo
-
- """TLS Protocol"""
- tlsProtocol: String
-
- """TLS Cipher Suite"""
- cipherSuite: String
-
- """Browser"""
- browser: String
-
- """Platform"""
- platform: String
-
- """Status"""
- status: String
-
- """Application"""
- application: String
-
- """Client Version"""
- clientVersion: String
-
- """API Type"""
- apiType: String
-
- """API Version"""
- apiVersion: String
-
- """Country Code"""
- countryIso: String
-
- """Collection of Salesforce AuthSession"""
- authSessions(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceAuthSessionConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceAuthSessionSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceAuthSessionSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of AuthSessions to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceAuthSessionsConnection
-
- """Collection of Salesforce VerificationHistory"""
- verificationHistories(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceVerificationHistoryConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceVerificationHistorySortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceVerificationHistorySortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """
- Number of VerificationHistories to fetch. Defaults to 10. Maximum is 60.
- """
- first: Int
- ): SalesforceVerificationHistorysConnection
- customFields(
- """
- List of custom fields to return. By default, returns all custom fields.
- """
- fields: [String!]
- ): JSON!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-"""Auth Session"""
-type SalesforceAuthSession implements OneGraphNode {
- """Auth Session ID"""
- id: String!
-
- """User ID"""
- usersId: String
-
- """User ID"""
- users: SalesforceUser
-
- """Created"""
- createdDate: String!
-
- """Updated"""
- lastModifiedDate: String!
-
- """Valid For"""
- numSecondsValid: Int!
-
- """User Type"""
- userType: String!
-
- """Source IP"""
- sourceIp: String!
-
- """Login"""
- loginType: String
-
- """Session Type"""
- sessionType: String
-
- """Session Security Level"""
- sessionSecurityLevel: String
-
- """Logout URL"""
- logoutUrl: String
-
- """Auth Session ID"""
- parentId: String
-
- """Auth Session ID"""
- parent: SalesforceAuthSession
-
- """Login History ID"""
- loginHistoryId: String
-
- """Login History ID"""
- loginHistory: SalesforceLoginHistory
-
- """Login Geo Data ID"""
- loginGeoId: String
-
- """Login Geo Data ID"""
- loginGeo: SalesforceLoginGeo
-
- """Current Session"""
- isCurrent: Boolean!
-
- """Collection of Salesforce AuthSession"""
- authSessions(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceAuthSessionConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceAuthSessionSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceAuthSessionSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of AuthSessions to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceAuthSessionsConnection
-
- """Collection of Salesforce IdpEventLog"""
- idpEventLogs(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceIdpEventLogConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceIdpEventLogSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceIdpEventLogSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of IdpEventLogs to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceIdpEventLogsConnection
-
- """Collection of Salesforce SessionPermSetActivation"""
- sessionPermSetActivations(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceSessionPermSetActivationConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceSessionPermSetActivationSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceSessionPermSetActivationSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """
- Number of SessionPermSetActivations to fetch. Defaults to 10. Maximum is 60.
- """
- first: Int
- ): SalesforceSessionPermSetActivationsConnection
- customFields(
- """
- List of custom fields to return. By default, returns all custom fields.
- """
- fields: [String!]
- ): JSON!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-"""Identity Provider Event Log"""
-type SalesforceIdpEventLog implements OneGraphNode {
- """Event Log Entry ID"""
- id: String!
-
- """Usage Type"""
- initiatedBy: String!
-
- """Timestamp"""
- timestamp: String
-
- """Status"""
- errorCode: String!
-
- """Entity ID"""
- samlEntityUrl: String!
-
- """User ID"""
- userId: String
-
- """User ID"""
- user: SalesforceUser
-
- """Auth Session ID"""
- authSessionId: String
-
- """Auth Session ID"""
- authSession: SalesforceAuthSession
-
- """SSO Type"""
- ssoType: String
-
- """Connected App ID"""
- appId: String
-
- """Connected App ID"""
- app: SalesforceConnectedApplication
-
- """Identity Used"""
- identityUsed: String
-
- """Has Logout URL"""
- optionsHasLogoutUrl: Boolean!
- customFields(
- """
- List of custom fields to return. By default, returns all custom fields.
- """
- fields: [String!]
- ): JSON!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-"""
-Salesforce Identity Provider Event Logs connection, for use in pagination.
-"""
-type SalesforceIdpEventLogsConnection {
- """
- The count of all Identity Provider Event Log you could get from the connection.
- """
- totalCount: Int!
-
- """Pagination Information"""
- pageInfo: PageInfo!
-
- """List of Salesforce Identity Provider Event Logs"""
- nodes: [SalesforceIdpEventLog!]!
-
- """List of Identity Provider Event Log edges"""
- edges: [SalesforceIdpEventLogEdge!]!
-}
-
-"""Connected App"""
-type SalesforceConnectedApplication implements OneGraphNode {
- """Connected App ID"""
- id: String!
-
- """Connected App Name"""
- name: String!
-
- """Created Date"""
- createdDate: String!
-
- """Created By ID"""
- createdById: String!
-
- """Created By ID"""
- createdBy: SalesforceUser!
-
- """Last Modified Date"""
- lastModifiedDate: String!
-
- """Last Modified By ID"""
- lastModifiedById: String!
-
- """Last Modified By ID"""
- lastModifiedBy: SalesforceUser!
-
- """System Modstamp"""
- systemModstamp: String!
-
- """AllowAdminApprovedUsersOnly"""
- optionsAllowAdminApprovedUsersOnly: Boolean!
-
- """RefreshTokenValidityMetric"""
- optionsRefreshTokenValidityMetric: Boolean!
-
- """HasSessionLevelPolicy"""
- optionsHasSessionLevelPolicy: Boolean!
-
- """isInternal"""
- optionsIsInternal: Boolean!
-
- """Require PIN after:"""
- mobileSessionTimeout: String
-
- """Pin Length"""
- pinLength: String
-
- """Start URL"""
- startUrl: String
-
- """Mobile Start URL"""
- mobileStartUrl: String
-
- """Refresh Token Policy:"""
- refreshTokenValidityPeriod: Int
-
- """Collection of Salesforce IdpEventLog"""
- idpEventLogs(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceIdpEventLogConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceIdpEventLogSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceIdpEventLogSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of IdpEventLogs to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceIdpEventLogsConnection
-
- """Collection of Salesforce InstalledMobileApp"""
- installedMobileApps(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceInstalledMobileAppConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceInstalledMobileAppSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceInstalledMobileAppSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of InstalledMobileApps to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceInstalledMobileAppsConnection
-
- """Collection of Salesforce SetupEntityAccess"""
- setupEntityAccessItems(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceSetupEntityAccessConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceSetupEntityAccessSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceSetupEntityAccessSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of SetupEntityAccesses to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceSetupEntityAccesssConnection
-
- """Collection of Salesforce UserAppMenuCustomization"""
- userAppMenuCustomizations(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceUserAppMenuCustomizationConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceUserAppMenuCustomizationSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceUserAppMenuCustomizationSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """
- Number of UserAppMenuCustomizations to fetch. Defaults to 10. Maximum is 60.
- """
- first: Int
- ): SalesforceUserAppMenuCustomizationsConnection
-
- """Collection of Salesforce UserProvAccount"""
- userProvAccounts(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceUserProvAccountConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceUserProvAccountSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceUserProvAccountSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of UserProvAccounts to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceUserProvAccountsConnection
-
- """Collection of Salesforce UserProvAccountStaging"""
- userProvAccountStagings(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceUserProvAccountStagingConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceUserProvAccountStagingSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceUserProvAccountStagingSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """
- Number of UserProvAccountStagings to fetch. Defaults to 10. Maximum is 60.
- """
- first: Int
- ): SalesforceUserProvAccountStagingsConnection
-
- """Collection of Salesforce UserProvisioningConfig"""
- userProvisioningConfigs(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceUserProvisioningConfigConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceUserProvisioningConfigSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceUserProvisioningConfigSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """
- Number of UserProvisioningConfigs to fetch. Defaults to 10. Maximum is 60.
- """
- first: Int
- ): SalesforceUserProvisioningConfigsConnection
-
- """Collection of Salesforce UserProvisioningRequest"""
- userProvisioningRequests(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceUserProvisioningRequestConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceUserProvisioningRequestSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceUserProvisioningRequestSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """
- Number of UserProvisioningRequests to fetch. Defaults to 10. Maximum is 60.
- """
- first: Int
- ): SalesforceUserProvisioningRequestsConnection
-
- """Collection of Salesforce VerificationHistory"""
- verificationHistories(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceVerificationHistoryConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceVerificationHistorySortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceVerificationHistorySortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """
- Number of VerificationHistories to fetch. Defaults to 10. Maximum is 60.
- """
- first: Int
- ): SalesforceVerificationHistorysConnection
- customFields(
- """
- List of custom fields to return. By default, returns all custom fields.
- """
- fields: [String!]
- ): JSON!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-union SalesforceUserProvisioningRequestOwnerUnion = SalesforceUser | SalesforceGroup
-
-"""User Provisioning Request"""
-type SalesforceUserProvisioningRequest implements OneGraphNode {
- """UserProvisioningRequest ID"""
- id: String!
-
- """Owner ID"""
- ownerId: String!
-
- """Owner ID"""
- owner: SalesforceUserProvisioningRequestOwnerUnion!
-
- """Deleted"""
- isDeleted: Boolean!
-
- """Name"""
- name: String!
-
- """Created Date"""
- createdDate: String!
-
- """Created By ID"""
- createdById: String!
-
- """Created By ID"""
- createdBy: SalesforceUser!
-
- """Last Modified Date"""
- lastModifiedDate: String!
-
- """Last Modified By ID"""
- lastModifiedById: String!
-
- """Last Modified By ID"""
- lastModifiedBy: SalesforceUser!
-
- """System Modstamp"""
- systemModstamp: String!
-
- """User ID"""
- salesforceUserId: String
-
- """User ID"""
- salesforceUser: SalesforceUser
-
- """External User Id"""
- externalUserId: String
-
- """App Name"""
- appName: String
-
- """State"""
- state: String!
-
- """Operation"""
- operation: String!
-
- """Scheduled Provisioning Time"""
- scheduleDate: String
-
- """Connected App ID"""
- connectedAppId: String
-
- """Connected App ID"""
- connectedApp: SalesforceConnectedApplication
-
- """UserProvisioningConfig ID"""
- userProvConfigId: String
-
- """UserProvisioningConfig ID"""
- userProvConfig: SalesforceUserProvisioningConfig
-
- """User Provisioning Account ID"""
- userProvAccountId: String
-
- """User Provisioning Account ID"""
- userProvAccount: SalesforceUserProvAccount
-
- """Approval Status"""
- approvalStatus: String!
-
- """User ID"""
- managerId: String
-
- """User ID"""
- manager: SalesforceUser
-
- """Retry Count"""
- retryCount: Int
-
- """UserProvisioningRequest ID"""
- parentId: String
-
- """UserProvisioningRequest ID"""
- parent: SalesforceUserProvisioningRequest
-
- """Collection of Salesforce FlowRecordRelation"""
- flowRecordRelations(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceFlowRecordRelationConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceFlowRecordRelationSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceFlowRecordRelationsConnection
-
- """Collection of Salesforce ProcessInstance"""
- processInstances(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceProcessInstanceConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceProcessInstanceSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceProcessInstanceSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of ProcessInstances to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceProcessInstancesConnection
-
- """Collection of Salesforce UserProvisioningLog"""
- userProvisioningLogs(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceUserProvisioningLogConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceUserProvisioningLogSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceUserProvisioningLogSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """
- Number of UserProvisioningLogs to fetch. Defaults to 10. Maximum is 60.
- """
- first: Int
- ): SalesforceUserProvisioningLogsConnection
-
- """Collection of Salesforce UserProvisioningRequest"""
- userProvisioningRequests(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceUserProvisioningRequestConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceUserProvisioningRequestSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceUserProvisioningRequestSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """
- Number of UserProvisioningRequests to fetch. Defaults to 10. Maximum is 60.
- """
- first: Int
- ): SalesforceUserProvisioningRequestsConnection
- customFields(
- """
- List of custom fields to return. By default, returns all custom fields.
- """
- fields: [String!]
- ): JSON!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-"""Wave Compatibility Check Item"""
-type SalesforceWaveCompatibilityCheckItem implements OneGraphNode {
- """Checklist Item Id"""
- id: String!
-
- """Deleted"""
- isDeleted: Boolean!
-
- """Checklist Item Name"""
- name: String!
-
- """Created Date"""
- createdDate: String!
-
- """Created By ID"""
- createdById: String!
-
- """Created By ID"""
- createdBy: SalesforceUser!
-
- """Last Modified Date"""
- lastModifiedDate: String!
-
- """Last Modified By ID"""
- lastModifiedById: String!
-
- """Last Modified By ID"""
- lastModifiedBy: SalesforceUser!
-
- """System Modstamp"""
- systemModstamp: String!
-
- """Checklist Item Task Name"""
- taskName: String!
-
- """Checklist Item Result"""
- taskResult: String!
-
- """Wave Template Api Name"""
- templateApiName: String!
-
- """Wave Template Version"""
- templateVersion: String
-
- """Checklist Task Payload"""
- payload: String
-
- """Collection of Salesforce FlowRecordRelation"""
- flowRecordRelations(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceFlowRecordRelationConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceFlowRecordRelationSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceFlowRecordRelationsConnection
- customFields(
- """
- List of custom fields to return. By default, returns all custom fields.
- """
- fields: [String!]
- ): JSON!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-union SalesforceFlowRecordRelationRelatedRecordUnion = SalesforceWaveCompatibilityCheckItem | SalesforceUserProvisioningRequest | SalesforceUserProvisioningLog | SalesforceUserProvMockTarget | SalesforceUserProvAccountStaging | SalesforceUserProvAccount | SalesforceUserAppMenuCustomization | SalesforceUserAppInfo | SalesforceTopicAssignment | SalesforceTopic | SalesforceTodayGoal | SalesforceTask | SalesforceStreamingChannel | SalesforceSolution | SalesforceSearchPromotionRule | SalesforceSearchActivity | SalesforceReport | SalesforceQuickText | SalesforcePushTopic | SalesforceProduct2 | SalesforceProcessInstanceNode | SalesforceProcessInstance | SalesforcePricebookEntry | SalesforcePricebook2 | SalesforcePartner | SalesforceOrgDeleteRequest | SalesforceOrderItem | SalesforceOrder | SalesforceOpportunityLineItem | SalesforceOpportunityContactRole | SalesforceOpportunity | SalesforceNote | SalesforceMacroInstruction | SalesforceMacro | SalesforceListEmailRecipientSource | SalesforceListEmail | SalesforceLeadCleanInfo | SalesforceLead | SalesforceInstalledMobileApp | SalesforceIdea | SalesforceForecastShare | SalesforceFileSearchActivity | SalesforceFeedRevision | SalesforceFeedPollVote | SalesforceFeedPollChoice | SalesforceFeedItem | SalesforceFeedComment | SalesforceFeedAttachment | SalesforceEventRelation | SalesforceEvent | SalesforceEntitySubscription | SalesforceEmailMessageRelation | SalesforceEmailMessage | SalesforceDuplicateRecordSet | SalesforceDuplicateRecordItem | SalesforceDocument | SalesforceDatacloudPurchaseUsage | SalesforceDatacloudOwnedEntity | SalesforceDataAssessmentValueMetric | SalesforceDataAssessmentMetric | SalesforceDataAssessmentFieldMetric | SalesforceDashboardComponent | SalesforceDashboard | SalesforceDandBCompany | SalesforceContractContactRole | SalesforceContract | SalesforceContentWorkspaceDoc | SalesforceContentVersionRating | SalesforceContentVersionComment | SalesforceContentVersion | SalesforceContentNotification | SalesforceContentFolderMember | SalesforceContentFolderLink | SalesforceContentFolder | SalesforceContentDocumentSubscription | SalesforceContentDocumentLink | SalesforceContentDocument | SalesforceContentDistribution | SalesforceContactCleanInfo | SalesforceContact | SalesforceCollaborationInvitation | SalesforceCollaborationGroupRecord | SalesforceCollaborationGroupMemberRequest | SalesforceCollaborationGroupMember | SalesforceCollaborationGroup | SalesforceCaseSolution | SalesforceCaseContactRole | SalesforceCase | SalesforceCampaignMember | SalesforceCampaign | SalesforceBackgroundOperation | SalesforceAttachment | SalesforceAsyncApexJob | SalesforceAssetRelationship | SalesforceAsset | SalesforceApexTestQueueItem | SalesforceAnnouncement | SalesforceAccountContactRole | SalesforceAccountCleanInfo | SalesforceAccount
-
-"""
-A filter to be used against FlowInterview object types. All fields are combined with a logical ‘and.’
-"""
-input SalesforceFlowInterviewConnectionFilter {
- """Filter against custom fields."""
- customField: SalesforceCustomFieldFilter
-
- """Filter by the FlowInterview's lastModifiedBy relation."""
- lastModifiedBy: SalesforceUserConnectionFilter
-
- """Filter by the FlowInterview's createdBy relation."""
- createdBy: SalesforceUserConnectionFilter
-
- """Filter by the FlowInterview's id field"""
- id: SalesforceIdFilter
-
- """Filter by the FlowInterview's ownerId field"""
- ownerId: SalesforceIdFilter
-
- """Filter by the FlowInterview's isDeleted field"""
- isDeleted: SalesforceBooleanFilter
-
- """Filter by the FlowInterview's name field"""
- name: SalesforceStringFilter
-
- """Filter by the FlowInterview's createdDate field"""
- createdDate: SalesforceDateTimeFilter
-
- """Filter by the FlowInterview's createdById field"""
- createdById: SalesforceIdFilter
-
- """Filter by the FlowInterview's lastModifiedDate field"""
- lastModifiedDate: SalesforceDateTimeFilter
-
- """Filter by the FlowInterview's lastModifiedById field"""
- lastModifiedById: SalesforceIdFilter
-
- """Filter by the FlowInterview's systemModstamp field"""
- systemModstamp: SalesforceDateTimeFilter
-
- """Filter by the FlowInterview's currentElement field"""
- currentElement: SalesforceStringFilter
-
- """Filter by the FlowInterview's interviewLabel field"""
- interviewLabel: SalesforceStringFilter
-
- """Filter by the FlowInterview's pauseLabel field"""
- pauseLabel: SalesforceStringFilter
-
- """Filter by the FlowInterview's guid field"""
- guid: SalesforceStringFilter
-
- """Checks for any expressions in this list."""
- or: [SalesforceFlowInterviewConnectionFilter!]
-
- """Checks for all expressions in this list."""
- and: [SalesforceFlowInterviewConnectionFilter!]
-}
-
-"""
-A filter to be used against FlowRecordRelation object types. All fields are combined with a logical ‘and.’
-"""
-input SalesforceFlowRecordRelationConnectionFilter {
- """Filter against custom fields."""
- customField: SalesforceCustomFieldFilter
-
- """Filter by the FlowRecordRelation's parent relation."""
- parent: SalesforceFlowInterviewConnectionFilter
-
- """Filter by the FlowRecordRelation's lastModifiedBy relation."""
- lastModifiedBy: SalesforceUserConnectionFilter
-
- """Filter by the FlowRecordRelation's createdBy relation."""
- createdBy: SalesforceUserConnectionFilter
-
- """Filter by the FlowRecordRelation's id field"""
- id: SalesforceIdFilter
-
- """Filter by the FlowRecordRelation's isDeleted field"""
- isDeleted: SalesforceBooleanFilter
-
- """Filter by the FlowRecordRelation's name field"""
- name: SalesforceStringFilter
-
- """Filter by the FlowRecordRelation's createdDate field"""
- createdDate: SalesforceDateTimeFilter
-
- """Filter by the FlowRecordRelation's createdById field"""
- createdById: SalesforceIdFilter
-
- """Filter by the FlowRecordRelation's lastModifiedDate field"""
- lastModifiedDate: SalesforceDateTimeFilter
-
- """Filter by the FlowRecordRelation's lastModifiedById field"""
- lastModifiedById: SalesforceIdFilter
-
- """Filter by the FlowRecordRelation's systemModstamp field"""
- systemModstamp: SalesforceDateTimeFilter
-
- """Filter by the FlowRecordRelation's parentId field"""
- parentId: SalesforceIdFilter
-
- """Filter by the FlowRecordRelation's relatedRecordId field"""
- relatedRecordId: SalesforceIdFilter
-
- """Checks for any expressions in this list."""
- or: [SalesforceFlowRecordRelationConnectionFilter!]
-
- """Checks for all expressions in this list."""
- and: [SalesforceFlowRecordRelationConnectionFilter!]
-}
-
-"""Field that Flow Record Relations can be sorted by"""
-enum SalesforceFlowRecordRelationSortByFieldEnum {
- ID
- IS_DELETED
- NAME
- CREATED_DATE
- CREATED_BY_ID
- LAST_MODIFIED_DATE
- LAST_MODIFIED_BY_ID
- SYSTEM_MODSTAMP
- PARENT_ID
- RELATED_RECORD_ID
-}
-
-union SalesforceFlowInterviewOwnerUnion = SalesforceUser | SalesforceGroup
-
-"""Flow Interview"""
-type SalesforceFlowInterview implements OneGraphNode {
- """Flow Interview Id"""
- id: String!
-
- """Owner ID"""
- ownerId: String!
-
- """Owner ID"""
- owner: SalesforceFlowInterviewOwnerUnion!
-
- """Deleted"""
- isDeleted: Boolean!
-
- """Name"""
- name: String!
-
- """Created Date"""
- createdDate: String!
-
- """Created By ID"""
- createdById: String!
-
- """Created By ID"""
- createdBy: SalesforceUser!
-
- """Last Modified Date"""
- lastModifiedDate: String!
-
- """Last Modified By ID"""
- lastModifiedById: String!
-
- """Last Modified By ID"""
- lastModifiedBy: SalesforceUser!
-
- """System Modstamp"""
- systemModstamp: String!
-
- """Current Element"""
- currentElement: String
-
- """Interview Label"""
- interviewLabel: String
-
- """Pause Reason"""
- pauseLabel: String
-
- """Flow Interview Guid"""
- guid: String
-
- """Collection of Salesforce FlowRecordRelation"""
- recordRelations(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceFlowRecordRelationConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceFlowRecordRelationSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceFlowRecordRelationsConnection
- customFields(
- """
- List of custom fields to return. By default, returns all custom fields.
- """
- fields: [String!]
- ): JSON!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-"""Flow Record Relation"""
-type SalesforceFlowRecordRelation implements OneGraphNode {
- """Flow Record Relation ID"""
- id: String!
-
- """Deleted"""
- isDeleted: Boolean!
-
- """Name"""
- name: String!
-
- """Created Date"""
- createdDate: String!
-
- """Created By ID"""
- createdById: String!
-
- """Created By ID"""
- createdBy: SalesforceUser!
-
- """Last Modified Date"""
- lastModifiedDate: String!
-
- """Last Modified By ID"""
- lastModifiedById: String!
-
- """Last Modified By ID"""
- lastModifiedBy: SalesforceUser!
-
- """System Modstamp"""
- systemModstamp: String!
-
- """Flow Interview ID"""
- parentId: String!
-
- """Flow Interview ID"""
- parent: SalesforceFlowInterview!
-
- """Record ID"""
- relatedRecordId: String!
-
- """Record ID"""
- relatedRecord: SalesforceFlowRecordRelationRelatedRecordUnion!
- customFields(
- """
- List of custom fields to return. By default, returns all custom fields.
- """
- fields: [String!]
- ): JSON!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-"""Salesforce Flow Record Relations connection, for use in pagination."""
-type SalesforceFlowRecordRelationsConnection {
- """
- The count of all Flow Record Relation you could get from the connection.
- """
- totalCount: Int!
-
- """Pagination Information"""
- pageInfo: PageInfo!
-
- """List of Salesforce Flow Record Relations"""
- nodes: [SalesforceFlowRecordRelation!]!
-
- """List of Flow Record Relation edges"""
- edges: [SalesforceFlowRecordRelationEdge!]!
-}
-
-"""Field that Apex Jobs can be sorted by"""
-enum SalesforceAsyncApexJobSortByFieldEnum {
- ID
- CREATED_DATE
- CREATED_BY_ID
- JOB_TYPE
- APEX_CLASS_ID
- STATUS
- JOB_ITEMS_PROCESSED
- TOTAL_JOB_ITEMS
- NUMBER_OF_ERRORS
- COMPLETED_DATE
- METHOD_NAME
- EXTENDED_STATUS
- PARENT_JOB_ID
- LAST_PROCESSED
- LAST_PROCESSED_OFFSET
-}
-
-"""An edge in a connection."""
-type SalesforceAsyncApexJobEdge {
- """The item at the end of the edge."""
- node: SalesforceAsyncApexJob!
-
- """A cursor for use in pagination"""
- cursor: String!
-}
-
-"""Salesforce Apex Jobs connection, for use in pagination."""
-type SalesforceAsyncApexJobsConnection {
- """The count of all Apex Job you could get from the connection."""
- totalCount: Int!
-
- """Pagination Information"""
- pageInfo: PageInfo!
-
- """List of Salesforce Apex Jobs"""
- nodes: [SalesforceAsyncApexJob!]!
-
- """List of Apex Job edges"""
- edges: [SalesforceAsyncApexJobEdge!]!
-}
-
-"""Field that Apex Test Run Results can be sorted by"""
-enum SalesforceApexTestRunResultSortByFieldEnum {
- ID
- IS_DELETED
- CREATED_DATE
- CREATED_BY_ID
- LAST_MODIFIED_DATE
- LAST_MODIFIED_BY_ID
- SYSTEM_MODSTAMP
- ASYNC_APEX_JOB_ID
- USER_ID
- JOB_NAME
- IS_ALL_TESTS
- SOURCE
- START_TIME
- END_TIME
- TEST_TIME
- STATUS
- CLASSES_ENQUEUED
- CLASSES_COMPLETED
- METHODS_ENQUEUED
- METHODS_COMPLETED
- METHODS_FAILED
-}
-
-"""An edge in a connection."""
-type SalesforceApexTestRunResultEdge {
- """The item at the end of the edge."""
- node: SalesforceApexTestRunResult!
-
- """A cursor for use in pagination"""
- cursor: String!
-}
-
-"""Salesforce Apex Test Run Results connection, for use in pagination."""
-type SalesforceApexTestRunResultsConnection {
- """
- The count of all Apex Test Run Result you could get from the connection.
- """
- totalCount: Int!
-
- """Pagination Information"""
- pageInfo: PageInfo!
-
- """List of Salesforce Apex Test Run Results"""
- nodes: [SalesforceApexTestRunResult!]!
-
- """List of Apex Test Run Result edges"""
- edges: [SalesforceApexTestRunResultEdge!]!
-}
-
-"""An edge in a connection."""
-type SalesforceApexTestResultEdge {
- """The item at the end of the edge."""
- node: SalesforceApexTestResult!
-
- """A cursor for use in pagination"""
- cursor: String!
-}
-
-"""
-A filter to be used against ApexTestResultLimits object types. All fields are combined with a logical ‘and.’
-"""
-input SalesforceApexTestResultLimitsConnectionFilter {
- """Filter against custom fields."""
- customField: SalesforceCustomFieldFilter
-
- """Filter by the ApexTestResultLimits's apexTestResult relation."""
- apexTestResult: SalesforceApexTestResultConnectionFilter
-
- """Filter by the ApexTestResultLimits's lastModifiedBy relation."""
- lastModifiedBy: SalesforceUserConnectionFilter
-
- """Filter by the ApexTestResultLimits's createdBy relation."""
- createdBy: SalesforceUserConnectionFilter
-
- """Filter by the ApexTestResultLimits's id field"""
- id: SalesforceIdFilter
-
- """Filter by the ApexTestResultLimits's isDeleted field"""
- isDeleted: SalesforceBooleanFilter
-
- """Filter by the ApexTestResultLimits's createdDate field"""
- createdDate: SalesforceDateTimeFilter
-
- """Filter by the ApexTestResultLimits's createdById field"""
- createdById: SalesforceIdFilter
-
- """Filter by the ApexTestResultLimits's lastModifiedDate field"""
- lastModifiedDate: SalesforceDateTimeFilter
-
- """Filter by the ApexTestResultLimits's lastModifiedById field"""
- lastModifiedById: SalesforceIdFilter
-
- """Filter by the ApexTestResultLimits's systemModstamp field"""
- systemModstamp: SalesforceDateTimeFilter
-
- """Filter by the ApexTestResultLimits's apexTestResultId field"""
- apexTestResultId: SalesforceIdFilter
-
- """Filter by the ApexTestResultLimits's soql field"""
- soql: SalesforceIntFilter
-
- """Filter by the ApexTestResultLimits's queryRows field"""
- queryRows: SalesforceIntFilter
-
- """Filter by the ApexTestResultLimits's sosl field"""
- sosl: SalesforceIntFilter
-
- """Filter by the ApexTestResultLimits's dml field"""
- dml: SalesforceIntFilter
-
- """Filter by the ApexTestResultLimits's dmlRows field"""
- dmlRows: SalesforceIntFilter
-
- """Filter by the ApexTestResultLimits's cpu field"""
- cpu: SalesforceIntFilter
-
- """Filter by the ApexTestResultLimits's callouts field"""
- callouts: SalesforceIntFilter
-
- """Filter by the ApexTestResultLimits's email field"""
- email: SalesforceIntFilter
-
- """Filter by the ApexTestResultLimits's asyncCalls field"""
- asyncCalls: SalesforceIntFilter
-
- """Filter by the ApexTestResultLimits's mobilePush field"""
- mobilePush: SalesforceIntFilter
-
- """Filter by the ApexTestResultLimits's limitContext field"""
- limitContext: SalesforceStringFilter
-
- """Filter by the ApexTestResultLimits's limitExceptions field"""
- limitExceptions: SalesforceStringFilter
-
- """Checks for any expressions in this list."""
- or: [SalesforceApexTestResultLimitsConnectionFilter!]
-
- """Checks for all expressions in this list."""
- and: [SalesforceApexTestResultLimitsConnectionFilter!]
-}
-
-"""Field that Apex Test Result Limits can be sorted by"""
-enum SalesforceApexTestResultLimitsSortByFieldEnum {
- ID
- IS_DELETED
- CREATED_DATE
- CREATED_BY_ID
- LAST_MODIFIED_DATE
- LAST_MODIFIED_BY_ID
- SYSTEM_MODSTAMP
- APEX_TEST_RESULT_ID
- SOQL
- QUERY_ROWS
- SOSL
- DML
- DML_ROWS
- CPU
- CALLOUTS
- EMAIL
- ASYNC_CALLS
- MOBILE_PUSH
- LIMIT_CONTEXT
- LIMIT_EXCEPTIONS
-}
-
-"""An edge in a connection."""
-type SalesforceApexTestResultLimitsEdge {
- """The item at the end of the edge."""
- node: SalesforceApexTestResultLimits!
-
- """A cursor for use in pagination"""
- cursor: String!
-}
-
-"""Apex Test Result Limit"""
-type SalesforceApexTestResultLimits implements OneGraphNode {
- """ApexTestResultLimits ID"""
- id: String!
-
- """Deleted"""
- isDeleted: Boolean!
-
- """Created Date"""
- createdDate: String!
-
- """Created By ID"""
- createdById: String!
-
- """Created By ID"""
- createdBy: SalesforceUser!
-
- """Last Modified Date"""
- lastModifiedDate: String!
-
- """Last Modified By ID"""
- lastModifiedById: String!
-
- """Last Modified By ID"""
- lastModifiedBy: SalesforceUser!
-
- """System Modstamp"""
- systemModstamp: String!
-
- """Apex Test Result ID"""
- apexTestResultId: String!
-
- """Apex Test Result ID"""
- apexTestResult: SalesforceApexTestResult!
-
- """Total number of SOQL queries issued"""
- soql: Int!
-
- """Total number of records retrieved by SOQL queries"""
- queryRows: Int!
-
- """Total number of SOSL queries issued"""
- sosl: Int!
-
- """Total number of DML statements issued"""
- dml: Int!
-
- """Total number of records processed as a result of DML statements"""
- dmlRows: Int!
-
- """Maximum CPU time on the Salesforce servers"""
- cpu: Int!
-
- """Total number of callouts"""
- callouts: Int!
-
- """Total number of sendEmail methods allowed"""
- email: Int!
-
- """Total number of async calls"""
- asyncCalls: Int!
-
- """
- Maximum number of push notification method calls allowed per Apex transaction
- """
- mobilePush: Int!
-
- """LimitContext"""
- limitContext: String
-
- """LimitExceptions"""
- limitExceptions: String
- customFields(
- """
- List of custom fields to return. By default, returns all custom fields.
- """
- fields: [String!]
- ): JSON!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-"""Salesforce Apex Test Result Limits connection, for use in pagination."""
-type SalesforceApexTestResultLimitssConnection {
- """
- The count of all Apex Test Result Limit you could get from the connection.
- """
- totalCount: Int!
-
- """Pagination Information"""
- pageInfo: PageInfo!
-
- """List of Salesforce Apex Test Result Limits"""
- nodes: [SalesforceApexTestResultLimits!]!
-
- """List of Apex Test Result Limit edges"""
- edges: [SalesforceApexTestResultLimitsEdge!]!
-}
-
-"""Apex Test Run Result"""
-type SalesforceApexTestRunResult implements OneGraphNode {
- """ApexTestRunResult ID"""
- id: String!
-
- """Deleted"""
- isDeleted: Boolean!
-
- """Created Date"""
- createdDate: String!
-
- """Created By ID"""
- createdById: String!
-
- """Created By ID"""
- createdBy: SalesforceUser!
-
- """Last Modified Date"""
- lastModifiedDate: String!
-
- """Last Modified By ID"""
- lastModifiedById: String!
-
- """Last Modified By ID"""
- lastModifiedBy: SalesforceUser!
-
- """System Modstamp"""
- systemModstamp: String!
-
- """Apex Job ID"""
- asyncApexJobId: String
-
- """Apex Job ID"""
- asyncApexJob: SalesforceAsyncApexJob
-
- """User ID"""
- userId: String
-
- """User ID"""
- user: SalesforceUser
-
- """Name of the job"""
- jobName: String
-
- """allTests"""
- isAllTests: Boolean!
-
- """Client that kicked off the test run"""
- source: String
-
- """Start time of the test run"""
- startTime: String!
-
- """End time of the test run"""
- endTime: String
-
- """Time(ms) actually spent running tests"""
- testTime: Int
-
- """Status of the test run"""
- status: String!
-
- """Number of classes enqueued in this test run"""
- classesEnqueued: Int!
-
- """Number of classes completed in this test run"""
- classesCompleted: Int
-
- """Number of methods enqueued in this test run"""
- methodsEnqueued: Int
-
- """Number of methods completed in this test run"""
- methodsCompleted: Int
-
- """Number of methods failed in this test run"""
- methodsFailed: Int
-
- """Collection of Salesforce ApexTestQueueItem"""
- apexTestQueueItems(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceApexTestQueueItemConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceApexTestQueueItemSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceApexTestQueueItemSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of ApexTestQueueItems to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceApexTestQueueItemsConnection
-
- """Collection of Salesforce ApexTestResult"""
- apexTestResults(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceApexTestResultConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceApexTestResultSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceApexTestResultSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of ApexTestResults to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceApexTestResultsConnection
- customFields(
- """
- List of custom fields to return. By default, returns all custom fields.
- """
- fields: [String!]
- ): JSON!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-"""
-A filter to be used against ApexLog object types. All fields are combined with a logical ‘and.’
-"""
-input SalesforceApexLogConnectionFilter {
- """Filter against custom fields."""
- customField: SalesforceCustomFieldFilter
-
- """Filter by the ApexLog's logUser relation."""
- logUser: SalesforceUserConnectionFilter
-
- """Filter by the ApexLog's id field"""
- id: SalesforceIdFilter
-
- """Filter by the ApexLog's logUserId field"""
- logUserId: SalesforceIdFilter
-
- """Filter by the ApexLog's logLength field"""
- logLength: SalesforceIntFilter
-
- """Filter by the ApexLog's lastModifiedDate field"""
- lastModifiedDate: SalesforceDateTimeFilter
-
- """Filter by the ApexLog's request field"""
- request: SalesforceStringFilter
-
- """Filter by the ApexLog's operation field"""
- operation: SalesforceStringFilter
-
- """Filter by the ApexLog's application field"""
- application: SalesforceStringFilter
-
- """Filter by the ApexLog's status field"""
- status: SalesforceStringFilter
-
- """Filter by the ApexLog's durationMilliseconds field"""
- durationMilliseconds: SalesforceIntFilter
-
- """Filter by the ApexLog's systemModstamp field"""
- systemModstamp: SalesforceDateTimeFilter
-
- """Filter by the ApexLog's startTime field"""
- startTime: SalesforceDateTimeFilter
-
- """Filter by the ApexLog's location field"""
- location: SalesforceStringFilter
-
- """Checks for any expressions in this list."""
- or: [SalesforceApexLogConnectionFilter!]
-
- """Checks for all expressions in this list."""
- and: [SalesforceApexLogConnectionFilter!]
-}
-
-"""
-A filter to be used against ApexTestResult object types. All fields are combined with a logical ‘and.’
-"""
-input SalesforceApexTestResultConnectionFilter {
- """Filter against custom fields."""
- customField: SalesforceCustomFieldFilter
-
- """Filter by the ApexTestResult's apexTestRunResult relation."""
- apexTestRunResult: SalesforceApexTestRunResultConnectionFilter
-
- """Filter by the ApexTestResult's apexLog relation."""
- apexLog: SalesforceApexLogConnectionFilter
-
- """Filter by the ApexTestResult's queueItem relation."""
- queueItem: SalesforceApexTestQueueItemConnectionFilter
-
- """Filter by the ApexTestResult's asyncApexJob relation."""
- asyncApexJob: SalesforceAsyncApexJobConnectionFilter
-
- """Filter by the ApexTestResult's apexClass relation."""
- apexClass: SalesforceApexClassConnectionFilter
-
- """Filter by the ApexTestResult's id field"""
- id: SalesforceIdFilter
-
- """Filter by the ApexTestResult's systemModstamp field"""
- systemModstamp: SalesforceDateTimeFilter
-
- """Filter by the ApexTestResult's testTimestamp field"""
- testTimestamp: SalesforceDateTimeFilter
-
- """Filter by the ApexTestResult's outcome field"""
- outcome: SalesforceStringFilter
-
- """Filter by the ApexTestResult's apexClassId field"""
- apexClassId: SalesforceIdFilter
-
- """Filter by the ApexTestResult's methodName field"""
- methodName: SalesforceStringFilter
-
- """Filter by the ApexTestResult's message field"""
- message: SalesforceStringFilter
-
- """Filter by the ApexTestResult's stackTrace field"""
- stackTrace: SalesforceStringFilter
-
- """Filter by the ApexTestResult's asyncApexJobId field"""
- asyncApexJobId: SalesforceIdFilter
-
- """Filter by the ApexTestResult's queueItemId field"""
- queueItemId: SalesforceIdFilter
-
- """Filter by the ApexTestResult's apexLogId field"""
- apexLogId: SalesforceIdFilter
-
- """Filter by the ApexTestResult's apexTestRunResultId field"""
- apexTestRunResultId: SalesforceIdFilter
-
- """Filter by the ApexTestResult's runTime field"""
- runTime: SalesforceIntFilter
-
- """Checks for any expressions in this list."""
- or: [SalesforceApexTestResultConnectionFilter!]
-
- """Checks for all expressions in this list."""
- and: [SalesforceApexTestResultConnectionFilter!]
-}
-
-"""Field that Apex Test Results can be sorted by"""
-enum SalesforceApexTestResultSortByFieldEnum {
- ID
- SYSTEM_MODSTAMP
- TEST_TIMESTAMP
- OUTCOME
- APEX_CLASS_ID
- METHOD_NAME
- MESSAGE
- STACK_TRACE
- ASYNC_APEX_JOB_ID
- QUEUE_ITEM_ID
- APEX_LOG_ID
- APEX_TEST_RUN_RESULT_ID
- RUN_TIME
-}
-
-"""Apex Debug Log"""
-type SalesforceApexLog implements OneGraphNode {
- """Log ID"""
- id: String!
-
- """Log User ID"""
- logUserId: String
-
- """Log User ID"""
- logUser: SalesforceUser
-
- """Log Size (bytes)"""
- logLength: Int!
-
- """Date"""
- lastModifiedDate: String!
-
- """Request Type"""
- request: String!
-
- """Operation"""
- operation: String!
-
- """Application"""
- application: String!
-
- """Status"""
- status: String!
-
- """Duration (ms)"""
- durationMilliseconds: Int!
-
- """System Modstamp"""
- systemModstamp: String!
-
- """Start Time"""
- startTime: String!
-
- """Location"""
- location: String
-
- """Collection of Salesforce ApexTestResult"""
- apexTestResults(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceApexTestResultConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceApexTestResultSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceApexTestResultSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of ApexTestResults to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceApexTestResultsConnection
- customFields(
- """
- List of custom fields to return. By default, returns all custom fields.
- """
- fields: [String!]
- ): JSON!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-"""Apex Test Result"""
-type SalesforceApexTestResult implements OneGraphNode {
- """Apex Test Result ID"""
- id: String!
-
- """System Modstamp"""
- systemModstamp: String!
-
- """Time Started"""
- testTimestamp: String!
-
- """Pass/Fail"""
- outcome: String!
-
- """Class ID"""
- apexClassId: String!
-
- """Class ID"""
- apexClass: SalesforceApexClass!
-
- """Method Name"""
- methodName: String
-
- """Error Message"""
- message: String
-
- """Stack Trace"""
- stackTrace: String
-
- """Apex Job ID"""
- asyncApexJobId: String
-
- """Apex Job ID"""
- asyncApexJob: SalesforceAsyncApexJob
-
- """Apex Test Queue Item ID"""
- queueItemId: String
-
- """Apex Test Queue Item ID"""
- queueItem: SalesforceApexTestQueueItem
-
- """Log ID"""
- apexLogId: String
-
- """Log ID"""
- apexLog: SalesforceApexLog
-
- """ApexTestRunResult ID"""
- apexTestRunResultId: String
-
- """ApexTestRunResult ID"""
- apexTestRunResult: SalesforceApexTestRunResult
-
- """Run Time"""
- runTime: Int
-
- """Collection of Salesforce ApexTestResultLimits"""
- apexTestResults(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceApexTestResultLimitsConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceApexTestResultLimitsSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceApexTestResultLimitsSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """
- Number of ApexTestResultLimits to fetch. Defaults to 10. Maximum is 60.
- """
- first: Int
- ): SalesforceApexTestResultLimitssConnection
- customFields(
- """
- List of custom fields to return. By default, returns all custom fields.
- """
- fields: [String!]
- ): JSON!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-"""Salesforce Apex Test Results connection, for use in pagination."""
-type SalesforceApexTestResultsConnection {
- """The count of all Apex Test Result you could get from the connection."""
- totalCount: Int!
-
- """Pagination Information"""
- pageInfo: PageInfo!
-
- """List of Salesforce Apex Test Results"""
- nodes: [SalesforceApexTestResult!]!
-
- """List of Apex Test Result edges"""
- edges: [SalesforceApexTestResultEdge!]!
-}
-
-"""
-A filter to be used against ApexTestRunResult object types. All fields are combined with a logical ‘and.’
-"""
-input SalesforceApexTestRunResultConnectionFilter {
- """Filter against custom fields."""
- customField: SalesforceCustomFieldFilter
-
- """Filter by the ApexTestRunResult's user relation."""
- user: SalesforceUserConnectionFilter
-
- """Filter by the ApexTestRunResult's asyncApexJob relation."""
- asyncApexJob: SalesforceAsyncApexJobConnectionFilter
-
- """Filter by the ApexTestRunResult's lastModifiedBy relation."""
- lastModifiedBy: SalesforceUserConnectionFilter
-
- """Filter by the ApexTestRunResult's createdBy relation."""
- createdBy: SalesforceUserConnectionFilter
-
- """Filter by the ApexTestRunResult's id field"""
- id: SalesforceIdFilter
-
- """Filter by the ApexTestRunResult's isDeleted field"""
- isDeleted: SalesforceBooleanFilter
-
- """Filter by the ApexTestRunResult's createdDate field"""
- createdDate: SalesforceDateTimeFilter
-
- """Filter by the ApexTestRunResult's createdById field"""
- createdById: SalesforceIdFilter
-
- """Filter by the ApexTestRunResult's lastModifiedDate field"""
- lastModifiedDate: SalesforceDateTimeFilter
-
- """Filter by the ApexTestRunResult's lastModifiedById field"""
- lastModifiedById: SalesforceIdFilter
-
- """Filter by the ApexTestRunResult's systemModstamp field"""
- systemModstamp: SalesforceDateTimeFilter
-
- """Filter by the ApexTestRunResult's asyncApexJobId field"""
- asyncApexJobId: SalesforceIdFilter
-
- """Filter by the ApexTestRunResult's userId field"""
- userId: SalesforceIdFilter
-
- """Filter by the ApexTestRunResult's jobName field"""
- jobName: SalesforceStringFilter
-
- """Filter by the ApexTestRunResult's isAllTests field"""
- isAllTests: SalesforceBooleanFilter
-
- """Filter by the ApexTestRunResult's source field"""
- source: SalesforceStringFilter
-
- """Filter by the ApexTestRunResult's startTime field"""
- startTime: SalesforceDateTimeFilter
-
- """Filter by the ApexTestRunResult's endTime field"""
- endTime: SalesforceDateTimeFilter
-
- """Filter by the ApexTestRunResult's testTime field"""
- testTime: SalesforceIntFilter
-
- """Filter by the ApexTestRunResult's status field"""
- status: SalesforceStringFilter
-
- """Filter by the ApexTestRunResult's classesEnqueued field"""
- classesEnqueued: SalesforceIntFilter
-
- """Filter by the ApexTestRunResult's classesCompleted field"""
- classesCompleted: SalesforceIntFilter
-
- """Filter by the ApexTestRunResult's methodsEnqueued field"""
- methodsEnqueued: SalesforceIntFilter
-
- """Filter by the ApexTestRunResult's methodsCompleted field"""
- methodsCompleted: SalesforceIntFilter
-
- """Filter by the ApexTestRunResult's methodsFailed field"""
- methodsFailed: SalesforceIntFilter
-
- """Checks for any expressions in this list."""
- or: [SalesforceApexTestRunResultConnectionFilter!]
-
- """Checks for all expressions in this list."""
- and: [SalesforceApexTestRunResultConnectionFilter!]
-}
-
-"""
-A filter to be used against AsyncApexJob object types. All fields are combined with a logical ‘and.’
-"""
-input SalesforceAsyncApexJobConnectionFilter {
- """Filter against custom fields."""
- customField: SalesforceCustomFieldFilter
-
- """Filter by the AsyncApexJob's parentJob relation."""
- parentJob: SalesforceAsyncApexJobConnectionFilter
-
- """Filter by the AsyncApexJob's apexClass relation."""
- apexClass: SalesforceApexClassConnectionFilter
-
- """Filter by the AsyncApexJob's createdBy relation."""
- createdBy: SalesforceUserConnectionFilter
-
- """Filter by the AsyncApexJob's id field"""
- id: SalesforceIdFilter
-
- """Filter by the AsyncApexJob's createdDate field"""
- createdDate: SalesforceDateTimeFilter
-
- """Filter by the AsyncApexJob's createdById field"""
- createdById: SalesforceIdFilter
-
- """Filter by the AsyncApexJob's jobType field"""
- jobType: SalesforceStringFilter
-
- """Filter by the AsyncApexJob's apexClassId field"""
- apexClassId: SalesforceIdFilter
-
- """Filter by the AsyncApexJob's status field"""
- status: SalesforceStringFilter
-
- """Filter by the AsyncApexJob's jobItemsProcessed field"""
- jobItemsProcessed: SalesforceIntFilter
-
- """Filter by the AsyncApexJob's totalJobItems field"""
- totalJobItems: SalesforceIntFilter
-
- """Filter by the AsyncApexJob's numberOfErrors field"""
- numberOfErrors: SalesforceIntFilter
-
- """Filter by the AsyncApexJob's completedDate field"""
- completedDate: SalesforceDateTimeFilter
-
- """Filter by the AsyncApexJob's methodName field"""
- methodName: SalesforceStringFilter
-
- """Filter by the AsyncApexJob's extendedStatus field"""
- extendedStatus: SalesforceStringFilter
-
- """Filter by the AsyncApexJob's parentJobId field"""
- parentJobId: SalesforceIdFilter
-
- """Filter by the AsyncApexJob's lastProcessed field"""
- lastProcessed: SalesforceStringFilter
-
- """Filter by the AsyncApexJob's lastProcessedOffset field"""
- lastProcessedOffset: SalesforceIntFilter
-
- """Checks for any expressions in this list."""
- or: [SalesforceAsyncApexJobConnectionFilter!]
-
- """Checks for all expressions in this list."""
- and: [SalesforceAsyncApexJobConnectionFilter!]
-}
-
-"""
-A filter to be used against ApexTestQueueItem object types. All fields are combined with a logical ‘and.’
-"""
-input SalesforceApexTestQueueItemConnectionFilter {
- """Filter against custom fields."""
- customField: SalesforceCustomFieldFilter
-
- """Filter by the ApexTestQueueItem's testRunResult relation."""
- testRunResult: SalesforceApexTestRunResultConnectionFilter
-
- """Filter by the ApexTestQueueItem's parentJob relation."""
- parentJob: SalesforceAsyncApexJobConnectionFilter
-
- """Filter by the ApexTestQueueItem's apexClass relation."""
- apexClass: SalesforceApexClassConnectionFilter
-
- """Filter by the ApexTestQueueItem's createdBy relation."""
- createdBy: SalesforceUserConnectionFilter
-
- """Filter by the ApexTestQueueItem's id field"""
- id: SalesforceIdFilter
-
- """Filter by the ApexTestQueueItem's createdDate field"""
- createdDate: SalesforceDateTimeFilter
-
- """Filter by the ApexTestQueueItem's createdById field"""
- createdById: SalesforceIdFilter
-
- """Filter by the ApexTestQueueItem's systemModstamp field"""
- systemModstamp: SalesforceDateTimeFilter
-
- """Filter by the ApexTestQueueItem's apexClassId field"""
- apexClassId: SalesforceIdFilter
-
- """Filter by the ApexTestQueueItem's status field"""
- status: SalesforceStringFilter
-
- """Filter by the ApexTestQueueItem's extendedStatus field"""
- extendedStatus: SalesforceStringFilter
-
- """Filter by the ApexTestQueueItem's parentJobId field"""
- parentJobId: SalesforceIdFilter
-
- """Filter by the ApexTestQueueItem's testRunResultId field"""
- testRunResultId: SalesforceIdFilter
-
- """Checks for any expressions in this list."""
- or: [SalesforceApexTestQueueItemConnectionFilter!]
-
- """Checks for all expressions in this list."""
- and: [SalesforceApexTestQueueItemConnectionFilter!]
-}
-
-"""Field that Apex Test Queue Items can be sorted by"""
-enum SalesforceApexTestQueueItemSortByFieldEnum {
- ID
- CREATED_DATE
- CREATED_BY_ID
- SYSTEM_MODSTAMP
- APEX_CLASS_ID
- STATUS
- EXTENDED_STATUS
- PARENT_JOB_ID
- TEST_RUN_RESULT_ID
-}
-
-"""Apex Job"""
-type SalesforceAsyncApexJob implements OneGraphNode {
- """Apex Job ID"""
- id: String!
-
- """Created Date"""
- createdDate: String!
-
- """Created By ID"""
- createdById: String!
-
- """Created By ID"""
- createdBy: SalesforceUser!
-
- """Job Type"""
- jobType: String!
-
- """Class ID"""
- apexClassId: String
-
- """Class ID"""
- apexClass: SalesforceApexClass
-
- """Status"""
- status: String!
-
- """Batches Processed"""
- jobItemsProcessed: Int!
-
- """Total Batches"""
- totalJobItems: Int
-
- """Failures"""
- numberOfErrors: Int
-
- """Completion Date"""
- completedDate: String
-
- """Apex Method"""
- methodName: String
-
- """Status Detail"""
- extendedStatus: String
-
- """Apex Job ID"""
- parentJobId: String
-
- """Apex Job ID"""
- parentJob: SalesforceAsyncApexJob
-
- """Last ID processed and committed"""
- lastProcessed: String
-
- """Offset of last ID processed and committed"""
- lastProcessedOffset: Int
-
- """Collection of Salesforce ApexTestQueueItem"""
- apexTestQueueItems(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceApexTestQueueItemConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceApexTestQueueItemSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceApexTestQueueItemSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of ApexTestQueueItems to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceApexTestQueueItemsConnection
-
- """Collection of Salesforce ApexTestResult"""
- apexTestResults(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceApexTestResultConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceApexTestResultSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceApexTestResultSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of ApexTestResults to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceApexTestResultsConnection
-
- """Collection of Salesforce ApexTestRunResult"""
- asyncApex(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceApexTestRunResultConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceApexTestRunResultSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceApexTestRunResultSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of ApexTestRunResults to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceApexTestRunResultsConnection
-
- """Collection of Salesforce AsyncApexJob"""
- asyncApexJobs(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceAsyncApexJobConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceAsyncApexJobSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceAsyncApexJobSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of AsyncApexJobs to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceAsyncApexJobsConnection
-
- """Collection of Salesforce FlowRecordRelation"""
- flowRecordRelations(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceFlowRecordRelationConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceFlowRecordRelationSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceFlowRecordRelationsConnection
- customFields(
- """
- List of custom fields to return. By default, returns all custom fields.
- """
- fields: [String!]
- ): JSON!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-"""Apex Test Queue Item"""
-type SalesforceApexTestQueueItem implements OneGraphNode {
- """Apex Test Queue Item ID"""
- id: String!
-
- """Created Date"""
- createdDate: String!
-
- """Created By ID"""
- createdById: String!
-
- """Created By ID"""
- createdBy: SalesforceUser!
-
- """System Modstamp"""
- systemModstamp: String!
-
- """Class ID"""
- apexClassId: String!
-
- """Class ID"""
- apexClass: SalesforceApexClass!
-
- """Status"""
- status: String!
-
- """Status Detail"""
- extendedStatus: String
-
- """Apex Job ID"""
- parentJobId: String
-
- """Apex Job ID"""
- parentJob: SalesforceAsyncApexJob
-
- """ApexTestRunResult ID"""
- testRunResultId: String
-
- """ApexTestRunResult ID"""
- testRunResult: SalesforceApexTestRunResult
-
- """Collection of Salesforce ApexTestResult"""
- apexTestResults(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceApexTestResultConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceApexTestResultSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceApexTestResultSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of ApexTestResults to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceApexTestResultsConnection
-
- """Collection of Salesforce FlowRecordRelation"""
- flowRecordRelations(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceFlowRecordRelationConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceFlowRecordRelationSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceFlowRecordRelationsConnection
- customFields(
- """
- List of custom fields to return. By default, returns all custom fields.
- """
- fields: [String!]
- ): JSON!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-"""Salesforce Apex Test Queue Items connection, for use in pagination."""
-type SalesforceApexTestQueueItemsConnection {
- """
- The count of all Apex Test Queue Item you could get from the connection.
- """
- totalCount: Int!
-
- """Pagination Information"""
- pageInfo: PageInfo!
-
- """List of Salesforce Apex Test Queue Items"""
- nodes: [SalesforceApexTestQueueItem!]!
-
- """List of Apex Test Queue Item edges"""
- edges: [SalesforceApexTestQueueItemEdge!]!
-}
-
-"""Apex Class"""
-type SalesforceApexClass implements OneGraphNode {
- """Class ID"""
- id: String!
-
- """Namespace Prefix"""
- namespacePrefix: String
-
- """Name"""
- name: String!
-
- """Api Version"""
- apiVersion: Float!
-
- """Status"""
- status: String!
-
- """Is Valid"""
- isValid: Boolean!
-
- """Body CRC"""
- bodyCrc: Float
-
- """Body"""
- body: String
-
- """Size Without Comments"""
- lengthWithoutComments: Int!
-
- """Created Date"""
- createdDate: String!
-
- """Created By ID"""
- createdById: String!
-
- """Created By ID"""
- createdBy: SalesforceUser!
-
- """Last Modified Date"""
- lastModifiedDate: String!
-
- """Last Modified By ID"""
- lastModifiedById: String!
-
- """Last Modified By ID"""
- lastModifiedBy: SalesforceUser!
-
- """System Modstamp"""
- systemModstamp: String!
-
- """Collection of Salesforce ApexTestQueueItem"""
- apexTestQueueItems(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceApexTestQueueItemConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceApexTestQueueItemSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceApexTestQueueItemSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of ApexTestQueueItems to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceApexTestQueueItemsConnection
-
- """Collection of Salesforce ApexTestResult"""
- apexTestResults(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceApexTestResultConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceApexTestResultSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceApexTestResultSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of ApexTestResults to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceApexTestResultsConnection
-
- """Collection of Salesforce AsyncApexJob"""
- asyncApexJobs(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceAsyncApexJobConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceAsyncApexJobSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceAsyncApexJobSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of AsyncApexJobs to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceAsyncApexJobsConnection
-
- """Collection of Salesforce AuthProvider"""
- authProviders(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceAuthProviderConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceAuthProviderSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceAuthProviderSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of AuthProviders to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceAuthProvidersConnection
-
- """Collection of Salesforce EmailServicesFunction"""
- emailServicesFunctions(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceEmailServicesFunctionConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceEmailServicesFunctionSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceEmailServicesFunctionSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """
- Number of EmailServicesFunctions to fetch. Defaults to 10. Maximum is 60.
- """
- first: Int
- ): SalesforceEmailServicesFunctionsConnection
-
- """Collection of Salesforce ExternalDataSource"""
- externalDataSources(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceExternalDataSourceConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceExternalDataSourceSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceExternalDataSourceSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of ExternalDataSources to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceExternalDataSourcesConnection
-
- """Collection of Salesforce SamlSsoConfig"""
- samlSsoConfigs(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceSamlSsoConfigConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceSamlSsoConfigSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceSamlSsoConfigSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of SamlSsoConfigs to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceSamlSsoConfigsConnection
-
- """Collection of Salesforce SetupEntityAccess"""
- setupEntityAccessItems(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceSetupEntityAccessConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceSetupEntityAccessSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceSetupEntityAccessSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of SetupEntityAccesses to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceSetupEntityAccesssConnection
-
- """Collection of Salesforce TestSuiteMembership"""
- testSuiteMemberships(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceTestSuiteMembershipConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceTestSuiteMembershipSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceTestSuiteMembershipSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """
- Number of TestSuiteMemberships to fetch. Defaults to 10. Maximum is 60.
- """
- first: Int
- ): SalesforceTestSuiteMembershipsConnection
-
- """Collection of Salesforce TransactionSecurityPolicy"""
- transactionSecurityPolicies(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceTransactionSecurityPolicyConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceTransactionSecurityPolicySortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceTransactionSecurityPolicySortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """
- Number of TransactionSecurityPolicies to fetch. Defaults to 10. Maximum is 60.
- """
- first: Int
- ): SalesforceTransactionSecurityPolicysConnection
- customFields(
- """
- List of custom fields to return. By default, returns all custom fields.
- """
- fields: [String!]
- ): JSON!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-"""Auth. Provider"""
-type SalesforceAuthProvider implements OneGraphNode {
- """Auth. Provider ID"""
- id: String!
-
- """Created Date"""
- createdDate: String!
-
- """Provider Type"""
- providerType: String!
-
- """Name"""
- friendlyName: String!
-
- """URL Suffix"""
- developerName: String!
-
- """Class ID"""
- registrationHandlerId: String
-
- """Class ID"""
- registrationHandler: SalesforceApexClass
-
- """User ID"""
- executionUserId: String
-
- """User ID"""
- executionUser: SalesforceUser
-
- """Consumer Key"""
- consumerKey: String
-
- """Consumer Secret"""
- consumerSecret: String
-
- """Custom Error URL"""
- errorUrl: String
-
- """Authorize Endpoint URL"""
- authorizeUrl: String
-
- """Token Endpoint URL"""
- tokenUrl: String
-
- """User Info Endpoint URL"""
- userInfoUrl: String
-
- """Default Scopes"""
- defaultScopes: String
-
- """Token Issuer"""
- idTokenIssuer: String
-
- """Send access token in header"""
- optionsSendAccessTokenInHeader: Boolean!
-
- """Send client credentials in header"""
- optionsSendClientCredentialsInHeader: Boolean!
-
- """
- Include identity organization's organization ID for third-party account linkage
- """
- optionsIncludeOrgIdInId: Boolean!
-
- """Icon URL"""
- iconUrl: String
-
- """Custom Logout URL"""
- logoutUrl: String
-
- """Class ID"""
- pluginId: String
-
- """Class ID"""
- plugin: SalesforceApexClass
-
- """Custom Metadata Type Record"""
- customMetadataTypeRecord: String
-
- """Collection of Salesforce AuthConfigProviders"""
- authConfigProvidersPlural(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceAuthConfigProvidersConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceAuthConfigProvidersSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceAuthConfigProvidersSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of AuthConfigProviders to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceAuthConfigProviderssConnection
-
- """Collection of Salesforce ExternalDataSource"""
- externalDataSources(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceExternalDataSourceConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceExternalDataSourceSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceExternalDataSourceSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of ExternalDataSources to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceExternalDataSourcesConnection
-
- """Collection of Salesforce ExternalDataUserAuth"""
- externalDataUserAuths(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceExternalDataUserAuthConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceExternalDataUserAuthSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceExternalDataUserAuthSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """
- Number of ExternalDataUserAuths to fetch. Defaults to 10. Maximum is 60.
- """
- first: Int
- ): SalesforceExternalDataUserAuthsConnection
-
- """Collection of Salesforce LoginHistory"""
- loginHistories(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceLoginHistoryConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceLoginHistorySortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceLoginHistorySortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of LoginHistories to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceLoginHistorysConnection
-
- """Collection of Salesforce NamedCredential"""
- namedCredentials(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceNamedCredentialConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceNamedCredentialSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceNamedCredentialSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of NamedCredentials to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceNamedCredentialsConnection
- customFields(
- """
- List of custom fields to return. By default, returns all custom fields.
- """
- fields: [String!]
- ): JSON!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-"""External Data Source"""
-type SalesforceExternalDataSource implements OneGraphNode {
- """External Data Source ID"""
- id: String!
-
- """Deleted"""
- isDeleted: Boolean!
-
- """Name"""
- developerName: String!
-
- """Master Language"""
- language: String!
-
- """External Data Source"""
- masterLabel: String!
-
- """Namespace Prefix"""
- namespacePrefix: String
-
- """Created Date"""
- createdDate: String!
-
- """Created By ID"""
- createdById: String!
-
- """Created By ID"""
- createdBy: SalesforceUser!
-
- """Last Modified Date"""
- lastModifiedDate: String!
-
- """Last Modified By ID"""
- lastModifiedById: String!
-
- """Last Modified By ID"""
- lastModifiedBy: SalesforceUser!
-
- """System Modstamp"""
- systemModstamp: String!
-
- """Class ID"""
- type: String!
-
- """URL"""
- endpoint: String
-
- """Default External Repository"""
- repository: String
-
- """Writable External Objects"""
- isWritable: Boolean!
-
- """Identity Type"""
- principalType: String!
-
- """Authentication Protocol"""
- protocol: String!
-
- """Auth. Provider ID"""
- authProviderId: String
-
- """Auth. Provider ID"""
- authProvider: SalesforceAuthProvider
-
- """Static Resource ID"""
- largeIconId: String
-
- """Static Resource ID"""
- largeIcon: SalesforceStaticResource
-
- """Static Resource ID"""
- smallIconId: String
-
- """Static Resource ID"""
- smallIcon: SalesforceStaticResource
-
- """Custom Configuration"""
- customConfiguration: String
-
- """Collection of Salesforce ContentVersion"""
- contentVersions(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceContentVersionConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceContentVersionSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceContentVersionSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of ContentVersions to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceContentVersionsConnection
-
- """Collection of Salesforce ExternalDataUserAuth"""
- userAuths(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceExternalDataUserAuthConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceExternalDataUserAuthSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceExternalDataUserAuthSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """
- Number of ExternalDataUserAuths to fetch. Defaults to 10. Maximum is 60.
- """
- first: Int
- ): SalesforceExternalDataUserAuthsConnection
-
- """Collection of Salesforce Product2"""
- product2s(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceProduct2ConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceProduct2SortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceProduct2SortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of Product2s to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceProduct2sConnection
-
- """Collection of Salesforce SetupEntityAccess"""
- setupEntityAccessItems(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceSetupEntityAccessConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceSetupEntityAccessSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceSetupEntityAccessSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of SetupEntityAccesses to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceSetupEntityAccesssConnection
- customFields(
- """
- List of custom fields to return. By default, returns all custom fields.
- """
- fields: [String!]
- ): JSON!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-"""Product"""
-type SalesforceProduct2 implements OneGraphNode {
- """Product ID"""
- id: String!
-
- """Product Name"""
- name: String!
-
- """Product Code"""
- productCode: String
-
- """Product Description"""
- description: String
-
- """Active"""
- isActive: Boolean!
-
- """Created Date"""
- createdDate: String!
-
- """Created By ID"""
- createdById: String!
-
- """Created By ID"""
- createdBy: SalesforceUser!
-
- """Last Modified Date"""
- lastModifiedDate: String!
-
- """Last Modified By ID"""
- lastModifiedById: String!
-
- """Last Modified By ID"""
- lastModifiedBy: SalesforceUser!
-
- """System Modstamp"""
- systemModstamp: String!
-
- """Product Family"""
- family: String
-
- """External Data Source ID"""
- externalDataSourceId: String
-
- """External Data Source ID"""
- externalDataSource: SalesforceExternalDataSource
-
- """External ID"""
- externalId: String
-
- """Display URL"""
- displayUrl: String
-
- """Quantity Unit Of Measure"""
- quantityUnitOfMeasure: String
-
- """Deleted"""
- isDeleted: Boolean!
-
- """Last Viewed Date"""
- lastViewedDate: String
-
- """Last Referenced Date"""
- lastReferencedDate: String
-
- """Product SKU"""
- stockKeepingUnit: String
-
- """Collection of Salesforce Asset"""
- assets(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceAssetConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceAssetSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceAssetSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of Assets to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceAssetsConnection
-
- """Collection of Salesforce Attachment"""
- attachments(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceAttachmentConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceAttachmentSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceAttachmentSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of Attachments to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceAttachmentsConnection
-
- """Collection of Salesforce ContentDocumentLink"""
- contentDocumentLinks(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceContentDocumentLinkConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceContentDocumentLinkSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceContentDocumentLinkSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """
- Number of ContentDocumentLinks to fetch. Defaults to 10. Maximum is 60.
- """
- first: Int
- ): SalesforceContentDocumentLinksConnection
-
- """Collection of Salesforce ContentVersion"""
- contentVersions(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceContentVersionConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceContentVersionSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceContentVersionSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of ContentVersions to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceContentVersionsConnection
-
- """Collection of Salesforce EmailMessage"""
- emails(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceEmailMessageConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceEmailMessageSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceEmailMessageSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of EmailMessages to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceEmailMessagesConnection
-
- """Collection of Salesforce EntitySubscription"""
- feedSubscriptionsForEntity(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceEntitySubscriptionConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceEntitySubscriptionSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceEntitySubscriptionSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of EntitySubscriptions to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceEntitySubscriptionsConnection
-
- """Collection of Salesforce Event"""
- events(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceEventConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceEventSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceEventSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of Events to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceEventsConnection
-
- """Collection of Salesforce FeedComment"""
- feedComments(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceFeedCommentConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceFeedCommentSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceFeedCommentSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of FeedComments to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceFeedCommentsConnection
-
- """Collection of Salesforce FeedItem"""
- feedItems(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceFeedItemConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceFeedItemSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceFeedItemSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of FeedItems to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceFeedItemsConnection
-
- """Collection of Salesforce FlowRecordRelation"""
- flowRecordRelations(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceFlowRecordRelationConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceFlowRecordRelationSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceFlowRecordRelationsConnection
-
- """Collection of Salesforce Note"""
- notes(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceNoteConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceNoteSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceNoteSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of Notes to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceNotesConnection
-
- """Collection of Salesforce OpportunityLineItem"""
- opportunityLineItems(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceOpportunityLineItemConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceOpportunityLineItemSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceOpportunityLineItemSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """
- Number of OpportunityLineItems to fetch. Defaults to 10. Maximum is 60.
- """
- first: Int
- ): SalesforceOpportunityLineItemsConnection
-
- """Collection of Salesforce OrderItem"""
- orderItems(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceOrderItemConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceOrderItemSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceOrderItemSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of OrderItems to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceOrderItemsConnection
-
- """Collection of Salesforce PricebookEntry"""
- pricebookEntries(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforcePricebookEntryConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforcePricebookEntrySortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforcePricebookEntrySortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of PricebookEntries to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforcePricebookEntrysConnection
-
- """Collection of Salesforce ProcessInstance"""
- processInstances(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceProcessInstanceConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceProcessInstanceSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceProcessInstanceSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of ProcessInstances to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceProcessInstancesConnection
-
- """Collection of Salesforce Product2Feed"""
- feeds(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceProduct2FeedConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceProduct2FeedSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceProduct2FeedSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of Product2Feeds to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceProduct2FeedsConnection
-
- """Collection of Salesforce Product2History"""
- histories(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceProduct2HistoryConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceProduct2HistorySortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceProduct2HistorySortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of Product2Histories to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceProduct2HistorysConnection
-
- """Collection of Salesforce Task"""
- tasks(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceTaskConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceTaskSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceTaskSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of Tasks to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceTasksConnection
- customFields(
- """
- List of custom fields to return. By default, returns all custom fields.
- """
- fields: [String!]
- ): JSON!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-union SalesforceAttachmentParentUnion = SalesforceTask | SalesforceSolution | SalesforceProduct2 | SalesforceOrder | SalesforceOpportunity | SalesforceLead | SalesforceEvent | SalesforceEmailTemplate | SalesforceEmailMessage | SalesforceContract | SalesforceContact | SalesforceCase | SalesforceCampaign | SalesforceAsset | SalesforceAccount
-
-"""Attachment"""
-type SalesforceAttachment implements OneGraphNode {
- """Attachment ID"""
- id: String!
-
- """Deleted"""
- isDeleted: Boolean!
-
- """Parent ID"""
- parentId: String!
-
- """Parent ID"""
- parent: SalesforceAttachmentParentUnion!
-
- """File Name"""
- name: String!
-
- """Private"""
- isPrivate: Boolean!
-
- """Content Type"""
- contentType: String
-
- """Body Length"""
- bodyLength: Int
-
- """Body"""
- body: String!
-
- """Owner ID"""
- ownerId: String!
-
- """Owner ID"""
- owner: SalesforceUser!
-
- """Created Date"""
- createdDate: String!
-
- """Created By ID"""
- createdById: String!
-
- """Created By ID"""
- createdBy: SalesforceUser!
-
- """Last Modified Date"""
- lastModifiedDate: String!
-
- """Last Modified By ID"""
- lastModifiedById: String!
-
- """Last Modified By ID"""
- lastModifiedBy: SalesforceUser!
-
- """System Modstamp"""
- systemModstamp: String!
-
- """Description"""
- description: String
-
- """Collection of Salesforce FlowRecordRelation"""
- flowRecordRelations(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceFlowRecordRelationConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceFlowRecordRelationSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceFlowRecordRelationsConnection
- customFields(
- """
- List of custom fields to return. By default, returns all custom fields.
- """
- fields: [String!]
- ): JSON!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-"""Salesforce Attachments connection, for use in pagination."""
-type SalesforceAttachmentsConnection {
- """The count of all Attachment you could get from the connection."""
- totalCount: Int!
-
- """Pagination Information"""
- pageInfo: PageInfo!
-
- """List of Salesforce Attachments"""
- nodes: [SalesforceAttachment!]!
-
- """List of Attachment edges"""
- edges: [SalesforceAttachmentEdge!]!
-}
-
-"""Solution"""
-type SalesforceSolution implements OneGraphNode {
- """Solution ID"""
- id: String!
-
- """Deleted"""
- isDeleted: Boolean!
-
- """Solution Number"""
- solutionNumber: String!
-
- """Title"""
- solutionName: String!
-
- """Public"""
- isPublished: Boolean!
-
- """Visible in Public Knowledge Base"""
- isPublishedInPublicKb: Boolean!
-
- """Status"""
- status: String!
-
- """Reviewed"""
- isReviewed: Boolean!
-
- """Description"""
- solutionNote: String
-
- """Owner ID"""
- ownerId: String!
-
- """Owner ID"""
- owner: SalesforceUser!
-
- """Created Date"""
- createdDate: String!
-
- """Created By ID"""
- createdById: String!
-
- """Created By ID"""
- createdBy: SalesforceUser!
-
- """Last Modified Date"""
- lastModifiedDate: String!
-
- """Last Modified By ID"""
- lastModifiedById: String!
-
- """Last Modified By ID"""
- lastModifiedBy: SalesforceUser!
-
- """System Modstamp"""
- systemModstamp: String!
-
- """Num Related Cases"""
- timesUsed: Int!
-
- """Last Viewed Date"""
- lastViewedDate: String
-
- """Last Referenced Date"""
- lastReferencedDate: String
-
- """Is Html"""
- isHtml: Boolean!
-
- """Collection of Salesforce Attachment"""
- attachments(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceAttachmentConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceAttachmentSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceAttachmentSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of Attachments to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceAttachmentsConnection
-
- """Collection of Salesforce CaseSolution"""
- caseSolutions(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceCaseSolutionConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceCaseSolutionSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceCaseSolutionSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of CaseSolutions to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceCaseSolutionsConnection
-
- """Collection of Salesforce CategoryData"""
- categoryDatas(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceCategoryDataConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceCategoryDataSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceCategoryDataSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of CategoryDatas to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceCategoryDatasConnection
-
- """Collection of Salesforce ContentDocumentLink"""
- contentDocumentLinks(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceContentDocumentLinkConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceContentDocumentLinkSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceContentDocumentLinkSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """
- Number of ContentDocumentLinks to fetch. Defaults to 10. Maximum is 60.
- """
- first: Int
- ): SalesforceContentDocumentLinksConnection
-
- """Collection of Salesforce ContentVersion"""
- contentVersions(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceContentVersionConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceContentVersionSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceContentVersionSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of ContentVersions to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceContentVersionsConnection
-
- """Collection of Salesforce EmailMessage"""
- emails(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceEmailMessageConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceEmailMessageSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceEmailMessageSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of EmailMessages to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceEmailMessagesConnection
-
- """Collection of Salesforce EntitySubscription"""
- feedSubscriptionsForEntity(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceEntitySubscriptionConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceEntitySubscriptionSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceEntitySubscriptionSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of EntitySubscriptions to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceEntitySubscriptionsConnection
-
- """Collection of Salesforce Event"""
- events(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceEventConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceEventSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceEventSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of Events to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceEventsConnection
-
- """Collection of Salesforce FeedComment"""
- feedComments(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceFeedCommentConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceFeedCommentSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceFeedCommentSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of FeedComments to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceFeedCommentsConnection
-
- """Collection of Salesforce FeedItem"""
- feedItems(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceFeedItemConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceFeedItemSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceFeedItemSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of FeedItems to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceFeedItemsConnection
-
- """Collection of Salesforce FlowRecordRelation"""
- flowRecordRelations(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceFlowRecordRelationConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceFlowRecordRelationSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceFlowRecordRelationsConnection
-
- """Collection of Salesforce ProcessInstance"""
- processInstances(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceProcessInstanceConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceProcessInstanceSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceProcessInstanceSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of ProcessInstances to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceProcessInstancesConnection
-
- """Collection of Salesforce SolutionFeed"""
- feeds(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceSolutionFeedConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceSolutionFeedSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceSolutionFeedSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of SolutionFeeds to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceSolutionFeedsConnection
-
- """Collection of Salesforce SolutionHistory"""
- histories(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceSolutionHistoryConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceSolutionHistorySortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceSolutionHistorySortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of SolutionHistories to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceSolutionHistorysConnection
-
- """Collection of Salesforce Task"""
- tasks(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceTaskConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceTaskSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceTaskSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of Tasks to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceTasksConnection
-
- """Collection of Salesforce TopicAssignment"""
- topicAssignments(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceTopicAssignmentConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceTopicAssignmentSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceTopicAssignmentSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of TopicAssignments to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceTopicAssignmentsConnection
-
- """Collection of Salesforce Vote"""
- votes(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceVoteConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceVoteSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceVoteSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of Votes to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceVotesConnection
- customFields(
- """
- List of custom fields to return. By default, returns all custom fields.
- """
- fields: [String!]
- ): JSON!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-union SalesforceTaskWhatUnion = SalesforceSolution | SalesforceProduct2 | SalesforceOrder | SalesforceOpportunity | SalesforceContract | SalesforceCase | SalesforceCampaign | SalesforceAssetRelationship | SalesforceAsset | SalesforceAccount
-
-union SalesforceTaskWhoUnion = SalesforceLead | SalesforceContact
-
-"""Task"""
-type SalesforceTask implements OneGraphNode {
- """Activity ID"""
- id: String!
-
- """Name ID"""
- whoId: String
-
- """Name ID"""
- who: SalesforceTaskWhoUnion
-
- """Related To ID"""
- whatId: String
-
- """Related To ID"""
- what: SalesforceTaskWhatUnion
-
- """Subject"""
- subject: String
-
- """Due Date Only"""
- activityDate: String
-
- """Status"""
- status: String!
-
- """Priority"""
- priority: String!
-
- """High Priority"""
- isHighPriority: Boolean!
-
- """Assigned To ID"""
- ownerId: String!
-
- """Assigned To ID"""
- owner: SalesforceUser!
-
- """Description"""
- description: String
-
- """Deleted"""
- isDeleted: Boolean!
-
- """Account ID"""
- accountId: String
-
- """Account ID"""
- account: SalesforceAccount
-
- """Closed"""
- isClosed: Boolean!
-
- """Created Date"""
- createdDate: String!
-
- """Created By ID"""
- createdById: String!
-
- """Created By ID"""
- createdBy: SalesforceUser!
-
- """Last Modified Date"""
- lastModifiedDate: String!
-
- """Last Modified By ID"""
- lastModifiedById: String!
-
- """Last Modified By ID"""
- lastModifiedBy: SalesforceUser!
-
- """System Modstamp"""
- systemModstamp: String!
-
- """Archived"""
- isArchived: Boolean!
-
- """Call Duration"""
- callDurationInSeconds: Int
-
- """Call Type"""
- callType: String
-
- """Call Result"""
- callDisposition: String
-
- """Call Object Identifier"""
- callObject: String
-
- """Reminder Date/Time"""
- reminderDateTime: String
-
- """Reminder Set"""
- isReminderSet: Boolean!
-
- """Recurrence Activity ID"""
- recurrenceActivityId: String
-
- """Recurrence Activity ID"""
- recurrenceActivity: SalesforceTask
-
- """Create Recurring Series of Tasks"""
- isRecurrence: Boolean!
-
- """Recurrence Start"""
- recurrenceStartDateOnly: String
-
- """Recurrence End"""
- recurrenceEndDateOnly: String
-
- """Recurrence Time Zone"""
- recurrenceTimeZoneSidKey: String
-
- """Recurrence Type"""
- recurrenceType: String
-
- """Recurrence Interval"""
- recurrenceInterval: Int
-
- """Recurrence Day of Week Mask"""
- recurrenceDayOfWeekMask: Int
-
- """Recurrence Day of Month"""
- recurrenceDayOfMonth: Int
-
- """Recurrence Instance"""
- recurrenceInstance: String
-
- """Recurrence Month of Year"""
- recurrenceMonthOfYear: String
-
- """Repeat This Task"""
- recurrenceRegeneratedType: String
-
- """Task Subtype"""
- taskSubtype: String
-
- """Collection of Salesforce Attachment"""
- attachments(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceAttachmentConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceAttachmentSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceAttachmentSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of Attachments to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceAttachmentsConnection
-
- """Collection of Salesforce ContentDocumentLink"""
- contentDocumentLinks(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceContentDocumentLinkConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceContentDocumentLinkSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceContentDocumentLinkSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """
- Number of ContentDocumentLinks to fetch. Defaults to 10. Maximum is 60.
- """
- first: Int
- ): SalesforceContentDocumentLinksConnection
-
- """Collection of Salesforce ContentVersion"""
- contentVersions(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceContentVersionConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceContentVersionSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceContentVersionSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of ContentVersions to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceContentVersionsConnection
-
- """Collection of Salesforce EmailMessage"""
- emailMessages(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceEmailMessageConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceEmailMessageSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceEmailMessageSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of EmailMessages to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceEmailMessagesConnection
-
- """Collection of Salesforce EntitySubscription"""
- feedSubscriptionsForEntity(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceEntitySubscriptionConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceEntitySubscriptionSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceEntitySubscriptionSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of EntitySubscriptions to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceEntitySubscriptionsConnection
-
- """Collection of Salesforce FeedComment"""
- feedComments(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceFeedCommentConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceFeedCommentSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceFeedCommentSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of FeedComments to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceFeedCommentsConnection
-
- """Collection of Salesforce FeedItem"""
- feedItems(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceFeedItemConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceFeedItemSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceFeedItemSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of FeedItems to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceFeedItemsConnection
-
- """Collection of Salesforce FlowRecordRelation"""
- flowRecordRelations(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceFlowRecordRelationConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceFlowRecordRelationSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceFlowRecordRelationsConnection
-
- """Collection of Salesforce Task"""
- recurringTasks(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceTaskConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceTaskSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceTaskSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of Tasks to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceTasksConnection
-
- """Collection of Salesforce TaskFeed"""
- feeds(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceTaskFeedConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceTaskFeedSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceTaskFeedSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of TaskFeeds to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceTaskFeedsConnection
-
- """Collection of Salesforce TopicAssignment"""
- topicAssignments(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceTopicAssignmentConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceTopicAssignmentSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceTopicAssignmentSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of TopicAssignments to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceTopicAssignmentsConnection
- customFields(
- """
- List of custom fields to return. By default, returns all custom fields.
- """
- fields: [String!]
- ): JSON!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-union SalesforceEntitySubscriptionParentUnion = SalesforceUser | SalesforceTopic | SalesforceTask | SalesforceSolution | SalesforceSite | SalesforceReport | SalesforceProduct2 | SalesforceOrderItem | SalesforceOrder | SalesforceOpportunity | SalesforceLead | SalesforceEvent | SalesforceDashboardComponent | SalesforceDashboard | SalesforceContract | SalesforceContentDocument | SalesforceContact | SalesforceCollaborationGroup | SalesforceCase | SalesforceCampaign | SalesforceAssetRelationship | SalesforceAsset | SalesforceAccount
-
-"""Entity Subscription"""
-type SalesforceEntitySubscription implements OneGraphNode {
- """Entity Subscription ID"""
- id: String!
-
- """Parent ID"""
- parentId: String!
-
- """Parent ID"""
- parent: SalesforceEntitySubscriptionParentUnion!
-
- """Subscriber ID"""
- subscriberId: String!
-
- """Subscriber ID"""
- subscriber: SalesforceUser!
-
- """Created By ID"""
- createdById: String!
-
- """Created By ID"""
- createdBy: SalesforceUser!
-
- """Created Date"""
- createdDate: String!
-
- """Deleted"""
- isDeleted: Boolean!
-
- """Collection of Salesforce FlowRecordRelation"""
- flowRecordRelations(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceFlowRecordRelationConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceFlowRecordRelationSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceFlowRecordRelationsConnection
- customFields(
- """
- List of custom fields to return. By default, returns all custom fields.
- """
- fields: [String!]
- ): JSON!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-"""Salesforce Entity Subscriptions connection, for use in pagination."""
-type SalesforceEntitySubscriptionsConnection {
- """
- The count of all Entity Subscription you could get from the connection.
- """
- totalCount: Int!
-
- """Pagination Information"""
- pageInfo: PageInfo!
-
- """List of Salesforce Entity Subscriptions"""
- nodes: [SalesforceEntitySubscription!]!
-
- """List of Entity Subscription edges"""
- edges: [SalesforceEntitySubscriptionEdge!]!
-}
-
-"""
-A filter to be used against Report object types. All fields are combined with a logical ‘and.’
-"""
-input SalesforceReportConnectionFilter {
- """Filter against custom fields."""
- customField: SalesforceCustomFieldFilter
-
- """Filter by the Report's lastModifiedBy relation."""
- lastModifiedBy: SalesforceUserConnectionFilter
-
- """Filter by the Report's createdBy relation."""
- createdBy: SalesforceUserConnectionFilter
-
- """Filter by the Report's id field"""
- id: SalesforceIdFilter
-
- """Filter by the Report's ownerId field"""
- ownerId: SalesforceIdFilter
-
- """Filter by the Report's folderName field"""
- folderName: SalesforceStringFilter
-
- """Filter by the Report's createdDate field"""
- createdDate: SalesforceDateTimeFilter
-
- """Filter by the Report's createdById field"""
- createdById: SalesforceIdFilter
-
- """Filter by the Report's lastModifiedDate field"""
- lastModifiedDate: SalesforceDateTimeFilter
-
- """Filter by the Report's lastModifiedById field"""
- lastModifiedById: SalesforceIdFilter
-
- """Filter by the Report's isDeleted field"""
- isDeleted: SalesforceBooleanFilter
-
- """Filter by the Report's name field"""
- name: SalesforceStringFilter
-
- """Filter by the Report's description field"""
- description: SalesforceStringFilter
-
- """Filter by the Report's developerName field"""
- developerName: SalesforceStringFilter
-
- """Filter by the Report's namespacePrefix field"""
- namespacePrefix: SalesforceStringFilter
-
- """Filter by the Report's lastRunDate field"""
- lastRunDate: SalesforceDateTimeFilter
-
- """Filter by the Report's systemModstamp field"""
- systemModstamp: SalesforceDateTimeFilter
-
- """Filter by the Report's format field"""
- format: SalesforceStringFilter
-
- """Filter by the Report's lastViewedDate field"""
- lastViewedDate: SalesforceDateTimeFilter
-
- """Filter by the Report's lastReferencedDate field"""
- lastReferencedDate: SalesforceDateTimeFilter
-
- """Checks for any expressions in this list."""
- or: [SalesforceReportConnectionFilter!]
-
- """Checks for all expressions in this list."""
- and: [SalesforceReportConnectionFilter!]
-}
-
-"""
-A filter to be used against Dashboard object types. All fields are combined with a logical ‘and.’
-"""
-input SalesforceDashboardConnectionFilter {
- """Filter against custom fields."""
- customField: SalesforceCustomFieldFilter
-
- """Filter by the Dashboard's runningUser relation."""
- runningUser: SalesforceUserConnectionFilter
-
- """Filter by the Dashboard's lastModifiedBy relation."""
- lastModifiedBy: SalesforceUserConnectionFilter
-
- """Filter by the Dashboard's createdBy relation."""
- createdBy: SalesforceUserConnectionFilter
-
- """Filter by the Dashboard's id field"""
- id: SalesforceIdFilter
-
- """Filter by the Dashboard's isDeleted field"""
- isDeleted: SalesforceBooleanFilter
-
- """Filter by the Dashboard's folderId field"""
- folderId: SalesforceIdFilter
-
- """Filter by the Dashboard's folderName field"""
- folderName: SalesforceStringFilter
-
- """Filter by the Dashboard's title field"""
- title: SalesforceStringFilter
-
- """Filter by the Dashboard's developerName field"""
- developerName: SalesforceStringFilter
-
- """Filter by the Dashboard's namespacePrefix field"""
- namespacePrefix: SalesforceStringFilter
-
- """Filter by the Dashboard's description field"""
- description: SalesforceStringFilter
-
- """Filter by the Dashboard's leftSize field"""
- leftSize: SalesforceStringFilter
-
- """Filter by the Dashboard's middleSize field"""
- middleSize: SalesforceStringFilter
-
- """Filter by the Dashboard's rightSize field"""
- rightSize: SalesforceStringFilter
-
- """Filter by the Dashboard's createdDate field"""
- createdDate: SalesforceDateTimeFilter
-
- """Filter by the Dashboard's createdById field"""
- createdById: SalesforceIdFilter
-
- """Filter by the Dashboard's lastModifiedDate field"""
- lastModifiedDate: SalesforceDateTimeFilter
-
- """Filter by the Dashboard's lastModifiedById field"""
- lastModifiedById: SalesforceIdFilter
-
- """Filter by the Dashboard's systemModstamp field"""
- systemModstamp: SalesforceDateTimeFilter
-
- """Filter by the Dashboard's runningUserId field"""
- runningUserId: SalesforceIdFilter
-
- """Filter by the Dashboard's titleColor field"""
- titleColor: SalesforceIntFilter
-
- """Filter by the Dashboard's titleSize field"""
- titleSize: SalesforceIntFilter
-
- """Filter by the Dashboard's textColor field"""
- textColor: SalesforceIntFilter
-
- """Filter by the Dashboard's backgroundStart field"""
- backgroundStart: SalesforceIntFilter
-
- """Filter by the Dashboard's backgroundEnd field"""
- backgroundEnd: SalesforceIntFilter
-
- """Filter by the Dashboard's backgroundDirection field"""
- backgroundDirection: SalesforceStringFilter
-
- """Filter by the Dashboard's type field"""
- type: SalesforceStringFilter
-
- """Filter by the Dashboard's lastViewedDate field"""
- lastViewedDate: SalesforceDateTimeFilter
-
- """Filter by the Dashboard's lastReferencedDate field"""
- lastReferencedDate: SalesforceDateTimeFilter
-
- """Filter by the Dashboard's colorPalette field"""
- colorPalette: SalesforceStringFilter
-
- """Filter by the Dashboard's chartTheme field"""
- chartTheme: SalesforceStringFilter
-
- """Checks for any expressions in this list."""
- or: [SalesforceDashboardConnectionFilter!]
-
- """Checks for all expressions in this list."""
- and: [SalesforceDashboardConnectionFilter!]
-}
-
-"""
-A filter to be used against DashboardComponent object types. All fields are combined with a logical ‘and.’
-"""
-input SalesforceDashboardComponentConnectionFilter {
- """Filter against custom fields."""
- customField: SalesforceCustomFieldFilter
-
- """Filter by the DashboardComponent's customReport relation."""
- customReport: SalesforceReportConnectionFilter
-
- """Filter by the DashboardComponent's dashboard relation."""
- dashboard: SalesforceDashboardConnectionFilter
-
- """Filter by the DashboardComponent's id field"""
- id: SalesforceIdFilter
-
- """Filter by the DashboardComponent's name field"""
- name: SalesforceStringFilter
-
- """Filter by the DashboardComponent's dashboardId field"""
- dashboardId: SalesforceIdFilter
-
- """Filter by the DashboardComponent's customReportId field"""
- customReportId: SalesforceIdFilter
-
- """Checks for any expressions in this list."""
- or: [SalesforceDashboardComponentConnectionFilter!]
-
- """Checks for all expressions in this list."""
- and: [SalesforceDashboardComponentConnectionFilter!]
-}
-
-"""Field that Dashboard Components can be sorted by"""
-enum SalesforceDashboardComponentSortByFieldEnum {
- ID
- NAME
- DASHBOARD_ID
- CUSTOM_REPORT_ID
-}
-
-union SalesforceReportOwnerUnion = SalesforceUser | SalesforceOrganization | SalesforceFolder
-
-"""Report"""
-type SalesforceReport implements OneGraphNode {
- """Report ID"""
- id: String!
-
- """Owner ID"""
- ownerId: String!
-
- """Owner ID"""
- owner: SalesforceReportOwnerUnion!
-
- """Folder Name"""
- folderName: String
-
- """Created Date"""
- createdDate: String!
-
- """Created By ID"""
- createdById: String!
-
- """Created By ID"""
- createdBy: SalesforceUser!
-
- """Last Modified Date"""
- lastModifiedDate: String!
-
- """Last Modified By ID"""
- lastModifiedById: String!
-
- """Last Modified By ID"""
- lastModifiedBy: SalesforceUser!
-
- """Deleted"""
- isDeleted: Boolean!
-
- """Report Name"""
- name: String!
-
- """Description"""
- description: String
-
- """Report Unique Name"""
- developerName: String!
-
- """Namespace Prefix"""
- namespacePrefix: String
-
- """Last Run"""
- lastRunDate: String
-
- """System Modstamp"""
- systemModstamp: String!
-
- """Format"""
- format: String!
-
- """Last Viewed Date"""
- lastViewedDate: String
-
- """Last Referenced Date"""
- lastReferencedDate: String
-
- """Collection of Salesforce ContentDocumentLink"""
- contentDocumentLinks(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceContentDocumentLinkConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceContentDocumentLinkSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceContentDocumentLinkSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """
- Number of ContentDocumentLinks to fetch. Defaults to 10. Maximum is 60.
- """
- first: Int
- ): SalesforceContentDocumentLinksConnection
-
- """Collection of Salesforce ContentVersion"""
- contentVersions(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceContentVersionConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceContentVersionSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceContentVersionSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of ContentVersions to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceContentVersionsConnection
-
- """Collection of Salesforce DashboardComponent"""
- dashboardComponents(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceDashboardComponentConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceDashboardComponentSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceDashboardComponentSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of DashboardComponents to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceDashboardComponentsConnection
-
- """Collection of Salesforce EntitySubscription"""
- feedSubscriptionsForEntity(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceEntitySubscriptionConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceEntitySubscriptionSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceEntitySubscriptionSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of EntitySubscriptions to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceEntitySubscriptionsConnection
-
- """Collection of Salesforce FeedComment"""
- feedComments(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceFeedCommentConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceFeedCommentSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceFeedCommentSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of FeedComments to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceFeedCommentsConnection
-
- """Collection of Salesforce FeedItem"""
- feedItems(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceFeedItemConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceFeedItemSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceFeedItemSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of FeedItems to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceFeedItemsConnection
-
- """Collection of Salesforce FlowRecordRelation"""
- flowRecordRelations(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceFlowRecordRelationConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceFlowRecordRelationSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceFlowRecordRelationsConnection
-
- """Collection of Salesforce ReportFeed"""
- feeds(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceReportFeedConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceReportFeedSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceReportFeedSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of ReportFeeds to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceReportFeedsConnection
- customFields(
- """
- List of custom fields to return. By default, returns all custom fields.
- """
- fields: [String!]
- ): JSON!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-"""Dashboard Component"""
-type SalesforceDashboardComponent implements OneGraphNode {
- """Dashboard Component ID"""
- id: String!
-
- """Dashboard Component Name"""
- name: String
-
- """Dashboard ID"""
- dashboardId: String!
-
- """Dashboard ID"""
- dashboard: SalesforceDashboard!
-
- """Report ID"""
- customReportId: String
-
- """Report ID"""
- customReport: SalesforceReport
-
- """Collection of Salesforce ContentDocumentLink"""
- contentDocumentLinks(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceContentDocumentLinkConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceContentDocumentLinkSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceContentDocumentLinkSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """
- Number of ContentDocumentLinks to fetch. Defaults to 10. Maximum is 60.
- """
- first: Int
- ): SalesforceContentDocumentLinksConnection
-
- """Collection of Salesforce ContentVersion"""
- contentVersions(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceContentVersionConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceContentVersionSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceContentVersionSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of ContentVersions to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceContentVersionsConnection
-
- """Collection of Salesforce DashboardComponentFeed"""
- feeds(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceDashboardComponentFeedConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceDashboardComponentFeedSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceDashboardComponentFeedSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """
- Number of DashboardComponentFeeds to fetch. Defaults to 10. Maximum is 60.
- """
- first: Int
- ): SalesforceDashboardComponentFeedsConnection
-
- """Collection of Salesforce EntitySubscription"""
- feedSubscriptionsForEntity(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceEntitySubscriptionConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceEntitySubscriptionSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceEntitySubscriptionSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of EntitySubscriptions to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceEntitySubscriptionsConnection
-
- """Collection of Salesforce FeedComment"""
- feedComments(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceFeedCommentConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceFeedCommentSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceFeedCommentSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of FeedComments to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceFeedCommentsConnection
-
- """Collection of Salesforce FeedItem"""
- feedItems(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceFeedItemConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceFeedItemSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceFeedItemSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of FeedItems to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceFeedItemsConnection
-
- """Collection of Salesforce FlowRecordRelation"""
- flowRecordRelations(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceFlowRecordRelationConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceFlowRecordRelationSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceFlowRecordRelationsConnection
- customFields(
- """
- List of custom fields to return. By default, returns all custom fields.
- """
- fields: [String!]
- ): JSON!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-"""Salesforce Dashboard Components connection, for use in pagination."""
-type SalesforceDashboardComponentsConnection {
- """
- The count of all Dashboard Component you could get from the connection.
- """
- totalCount: Int!
-
- """Pagination Information"""
- pageInfo: PageInfo!
-
- """List of Salesforce Dashboard Components"""
- nodes: [SalesforceDashboardComponent!]!
-
- """List of Dashboard Component edges"""
- edges: [SalesforceDashboardComponentEdge!]!
-}
-
-"""Field that Content Versions can be sorted by"""
-enum SalesforceContentVersionSortByFieldEnum {
- ID
- CONTENT_DOCUMENT_ID
- IS_LATEST
- CONTENT_URL
- CONTENT_BODY_ID
- VERSION_NUMBER
- TITLE
- DESCRIPTION
- REASON_FOR_CHANGE
- SHARING_OPTION
- SHARING_PRIVACY
- PATH_ON_CLIENT
- RATING_COUNT
- IS_DELETED
- CONTENT_MODIFIED_DATE
- CONTENT_MODIFIED_BY_ID
- POSITIVE_RATING_COUNT
- NEGATIVE_RATING_COUNT
- FEATURED_CONTENT_BOOST
- FEATURED_CONTENT_DATE
- OWNER_ID
- CREATED_BY_ID
- CREATED_DATE
- LAST_MODIFIED_BY_ID
- LAST_MODIFIED_DATE
- SYSTEM_MODSTAMP
- TAG_CSV
- FILE_TYPE
- PUBLISH_STATUS
- CONTENT_SIZE
- FILE_EXTENSION
- FIRST_PUBLISH_LOCATION_ID
- ORIGIN
- CONTENT_LOCATION
- TEXT_PREVIEW
- EXTERNAL_DOCUMENT_INFO_1
- EXTERNAL_DOCUMENT_INFO_2
- EXTERNAL_DATA_SOURCE_ID
- CHECKSUM
- IS_MAJOR_VERSION
-}
-
-union SalesforceDashboardFolderUnion = SalesforceUser | SalesforceFolder
-
-"""Dashboard"""
-type SalesforceDashboard implements OneGraphNode {
- """Dashboard ID"""
- id: String!
-
- """Deleted"""
- isDeleted: Boolean!
-
- """Folder ID"""
- folderId: String!
-
- """Folder ID"""
- folder: SalesforceDashboardFolderUnion!
-
- """Folder Name"""
- folderName: String
-
- """Title"""
- title: String!
-
- """Dashboard Unique Name"""
- developerName: String!
-
- """Namespace Prefix"""
- namespacePrefix: String
-
- """Description"""
- description: String
-
- """Left Size"""
- leftSize: String!
-
- """Middle Size"""
- middleSize: String
-
- """Right Size"""
- rightSize: String!
-
- """Created Date"""
- createdDate: String!
-
- """Created By ID"""
- createdById: String!
-
- """Created By ID"""
- createdBy: SalesforceUser!
-
- """Last Modified Date"""
- lastModifiedDate: String!
-
- """Last Modified By ID"""
- lastModifiedById: String!
-
- """Last Modified By ID"""
- lastModifiedBy: SalesforceUser!
-
- """System Modstamp"""
- systemModstamp: String!
-
- """Running User ID"""
- runningUserId: String!
-
- """Running User ID"""
- runningUser: SalesforceUser!
-
- """Title Color"""
- titleColor: Int!
-
- """Title Size"""
- titleSize: Int!
-
- """Text Color"""
- textColor: Int!
-
- """Starting Color"""
- backgroundStart: Int!
-
- """Ending Color"""
- backgroundEnd: Int!
-
- """Background Fade Direction"""
- backgroundDirection: String!
-
- """Dashboard Running User"""
- type: String!
-
- """Last Viewed Date"""
- lastViewedDate: String
-
- """Last Referenced Date"""
- lastReferencedDate: String
-
- """Last refreshed for this user"""
- dashboardResultRefreshedDate: String
-
- """Running as"""
- dashboardResultRunningUser: String
-
- """Color Palette"""
- colorPalette: String
-
- """Chart Background"""
- chartTheme: String
-
- """Collection of Salesforce ContentDocumentLink"""
- contentDocumentLinks(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceContentDocumentLinkConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceContentDocumentLinkSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceContentDocumentLinkSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """
- Number of ContentDocumentLinks to fetch. Defaults to 10. Maximum is 60.
- """
- first: Int
- ): SalesforceContentDocumentLinksConnection
-
- """Collection of Salesforce ContentVersion"""
- contentVersions(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceContentVersionConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceContentVersionSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceContentVersionSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of ContentVersions to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceContentVersionsConnection
-
- """Collection of Salesforce DashboardComponent"""
- dashboardComponents(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceDashboardComponentConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceDashboardComponentSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceDashboardComponentSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of DashboardComponents to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceDashboardComponentsConnection
-
- """Collection of Salesforce DashboardFeed"""
- feeds(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceDashboardFeedConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceDashboardFeedSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceDashboardFeedSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of DashboardFeeds to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceDashboardFeedsConnection
-
- """Collection of Salesforce EntitySubscription"""
- feedSubscriptionsForEntity(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceEntitySubscriptionConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceEntitySubscriptionSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceEntitySubscriptionSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of EntitySubscriptions to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceEntitySubscriptionsConnection
-
- """Collection of Salesforce FeedComment"""
- feedComments(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceFeedCommentConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceFeedCommentSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceFeedCommentSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of FeedComments to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceFeedCommentsConnection
-
- """Collection of Salesforce FeedItem"""
- feedItems(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceFeedItemConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceFeedItemSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceFeedItemSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of FeedItems to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceFeedItemsConnection
-
- """Collection of Salesforce FlowRecordRelation"""
- flowRecordRelations(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceFlowRecordRelationConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceFlowRecordRelationSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceFlowRecordRelationsConnection
- customFields(
- """
- List of custom fields to return. By default, returns all custom fields.
- """
- fields: [String!]
- ): JSON!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-"""Salesforce Dashboards connection, for use in pagination."""
-type SalesforceDashboardsConnection {
- """The count of all Dashboard you could get from the connection."""
- totalCount: Int!
-
- """Pagination Information"""
- pageInfo: PageInfo!
-
- """List of Salesforce Dashboards"""
- nodes: [SalesforceDashboard!]!
-
- """List of Dashboard edges"""
- edges: [SalesforceDashboardEdge!]!
-}
-
-"""Folder"""
-type SalesforceFolder implements OneGraphNode {
- """Folder ID"""
- id: String!
-
- """Name"""
- name: String!
-
- """Folder Unique Name"""
- developerName: String
-
- """Access Type"""
- accessType: String!
-
- """Read Only"""
- isReadonly: Boolean!
-
- """Type"""
- type: String!
-
- """Namespace Prefix"""
- namespacePrefix: String
-
- """Created Date"""
- createdDate: String!
-
- """Created By ID"""
- createdById: String!
-
- """Created By ID"""
- createdBy: SalesforceUser!
-
- """Last Modified Date"""
- lastModifiedDate: String!
-
- """Last Modified By ID"""
- lastModifiedById: String!
-
- """Last Modified By ID"""
- lastModifiedBy: SalesforceUser!
-
- """System Modstamp"""
- systemModstamp: String!
-
- """Collection of Salesforce Dashboard"""
- dashboards(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceDashboardConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceDashboardSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceDashboardSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of Dashboards to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceDashboardsConnection
-
- """Collection of Salesforce Document"""
- documents(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceDocumentConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceDocumentSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceDocumentSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of Documents to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceDocumentsConnection
-
- """Collection of Salesforce EmailTemplate"""
- emailTemplates(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceEmailTemplateConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceEmailTemplateSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceEmailTemplateSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of EmailTemplates to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceEmailTemplatesConnection
-
- """Collection of Salesforce Report"""
- reports(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceReportConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceReportSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceReportSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of Reports to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceReportsConnection
- customFields(
- """
- List of custom fields to return. By default, returns all custom fields.
- """
- fields: [String!]
- ): JSON!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-union SalesforceDocumentFolderUnion = SalesforceUser | SalesforceFolder
-
-"""Document"""
-type SalesforceDocument implements OneGraphNode {
- """Document ID"""
- id: String!
-
- """Folder ID"""
- folderId: String!
-
- """Folder ID"""
- folder: SalesforceDocumentFolderUnion!
-
- """Deleted"""
- isDeleted: Boolean!
-
- """Document Name"""
- name: String!
-
- """Document Unique Name"""
- developerName: String!
-
- """Namespace Prefix"""
- namespacePrefix: String
-
- """MIME Type"""
- contentType: String
-
- """File Extension"""
- type: String
-
- """Externally Available"""
- isPublic: Boolean!
-
- """Body Length"""
- bodyLength: Int!
-
- """Body"""
- body: String
-
- """Url"""
- url: String
-
- """Description"""
- description: String
-
- """Keywords"""
- keywords: String
-
- """Internal Use Only"""
- isInternalUseOnly: Boolean!
-
- """Author ID"""
- authorId: String!
-
- """Author ID"""
- author: SalesforceUser!
-
- """Created Date"""
- createdDate: String!
-
- """Created By ID"""
- createdById: String!
-
- """Created By ID"""
- createdBy: SalesforceUser!
-
- """Last Modified Date"""
- lastModifiedDate: String!
-
- """Last Modified By ID"""
- lastModifiedById: String!
-
- """Last Modified By ID"""
- lastModifiedBy: SalesforceUser!
-
- """System Modstamp"""
- systemModstamp: String!
-
- """Document Content Searchable"""
- isBodySearchable: Boolean!
-
- """Last Viewed Date"""
- lastViewedDate: String
-
- """Last Referenced Date"""
- lastReferencedDate: String
-
- """Collection of Salesforce CustomBrandAsset"""
- customBrandAssets(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceCustomBrandAssetConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceCustomBrandAssetSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceCustomBrandAssetSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of CustomBrandAssets to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceCustomBrandAssetsConnection
-
- """Collection of Salesforce DocumentAttachmentMap"""
- documentAttachmentMaps(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceDocumentAttachmentMapConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceDocumentAttachmentMapSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceDocumentAttachmentMapSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """
- Number of DocumentAttachmentMaps to fetch. Defaults to 10. Maximum is 60.
- """
- first: Int
- ): SalesforceDocumentAttachmentMapsConnection
-
- """Collection of Salesforce FlowRecordRelation"""
- flowRecordRelations(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceFlowRecordRelationConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceFlowRecordRelationSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceFlowRecordRelationsConnection
- customFields(
- """
- List of custom fields to return. By default, returns all custom fields.
- """
- fields: [String!]
- ): JSON!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-union SalesforceCustomBrandAssetAssetSourceUnion = SalesforceDocument | SalesforceContentAsset
-
-"""
-A filter to be used against CustomBrandAsset object types. All fields are combined with a logical ‘and.’
-"""
-input SalesforceCustomBrandAssetConnectionFilter {
- """Filter against custom fields."""
- customField: SalesforceCustomFieldFilter
-
- """Filter by the CustomBrandAsset's lastModifiedBy relation."""
- lastModifiedBy: SalesforceUserConnectionFilter
-
- """Filter by the CustomBrandAsset's createdBy relation."""
- createdBy: SalesforceUserConnectionFilter
-
- """Filter by the CustomBrandAsset's customBrand relation."""
- customBrand: SalesforceCustomBrandConnectionFilter
-
- """Filter by the CustomBrandAsset's id field"""
- id: SalesforceIdFilter
-
- """Filter by the CustomBrandAsset's customBrandId field"""
- customBrandId: SalesforceIdFilter
-
- """Filter by the CustomBrandAsset's assetCategory field"""
- assetCategory: SalesforceStringFilter
-
- """Filter by the CustomBrandAsset's textAsset field"""
- textAsset: SalesforceStringFilter
-
- """Filter by the CustomBrandAsset's assetSourceId field"""
- assetSourceId: SalesforceIdFilter
-
- """Filter by the CustomBrandAsset's createdById field"""
- createdById: SalesforceIdFilter
-
- """Filter by the CustomBrandAsset's createdDate field"""
- createdDate: SalesforceDateTimeFilter
-
- """Filter by the CustomBrandAsset's lastModifiedDate field"""
- lastModifiedDate: SalesforceDateTimeFilter
-
- """Filter by the CustomBrandAsset's lastModifiedById field"""
- lastModifiedById: SalesforceIdFilter
-
- """Checks for any expressions in this list."""
- or: [SalesforceCustomBrandAssetConnectionFilter!]
-
- """Checks for all expressions in this list."""
- and: [SalesforceCustomBrandAssetConnectionFilter!]
-}
-
-"""Field that Custom Brand Assets can be sorted by"""
-enum SalesforceCustomBrandAssetSortByFieldEnum {
- ID
- CUSTOM_BRAND_ID
- ASSET_CATEGORY
- TEXT_ASSET
- ASSET_SOURCE_ID
- CREATED_BY_ID
- CREATED_DATE
- LAST_MODIFIED_DATE
- LAST_MODIFIED_BY_ID
-}
-
-"""
-A filter to be used against Organization object types. All fields are combined with a logical ‘and.’
-"""
-input SalesforceOrganizationConnectionFilter {
- """Filter against custom fields."""
- customField: SalesforceCustomFieldFilter
-
- """Filter by the Organization's lastModifiedBy relation."""
- lastModifiedBy: SalesforceUserConnectionFilter
-
- """Filter by the Organization's createdBy relation."""
- createdBy: SalesforceUserConnectionFilter
-
- """Filter by the Organization's id field"""
- id: SalesforceIdFilter
-
- """Filter by the Organization's name field"""
- name: SalesforceStringFilter
-
- """Filter by the Organization's division field"""
- division: SalesforceStringFilter
-
- """Filter by the Organization's street field"""
- street: SalesforceStringFilter
-
- """Filter by the Organization's city field"""
- city: SalesforceStringFilter
-
- """Filter by the Organization's state field"""
- state: SalesforceStringFilter
-
- """Filter by the Organization's postalCode field"""
- postalCode: SalesforceStringFilter
-
- """Filter by the Organization's country field"""
- country: SalesforceStringFilter
-
- """Filter by the Organization's latitude field"""
- latitude: SalesforceFloatFilter
-
- """Filter by the Organization's longitude field"""
- longitude: SalesforceFloatFilter
-
- """Filter by the Organization's geocodeAccuracy field"""
- geocodeAccuracy: SalesforceStringFilter
-
- """Filter by the Organization's phone field"""
- phone: SalesforceStringFilter
-
- """Filter by the Organization's fax field"""
- fax: SalesforceStringFilter
-
- """Filter by the Organization's primaryContact field"""
- primaryContact: SalesforceStringFilter
-
- """Filter by the Organization's defaultLocaleSidKey field"""
- defaultLocaleSidKey: SalesforceStringFilter
-
- """Filter by the Organization's languageLocaleKey field"""
- languageLocaleKey: SalesforceStringFilter
-
- """Filter by the Organization's receivesInfoEmails field"""
- receivesInfoEmails: SalesforceBooleanFilter
-
- """Filter by the Organization's receivesAdminInfoEmails field"""
- receivesAdminInfoEmails: SalesforceBooleanFilter
-
- """
- Filter by the Organization's preferencesRequireOpportunityProducts field
- """
- preferencesRequireOpportunityProducts: SalesforceBooleanFilter
-
- """
- Filter by the Organization's preferencesTransactionSecurityPolicy field
- """
- preferencesTransactionSecurityPolicy: SalesforceBooleanFilter
-
- """Filter by the Organization's preferencesTerminateOldestSession field"""
- preferencesTerminateOldestSession: SalesforceBooleanFilter
-
- """Filter by the Organization's preferencesConsentManagementEnabled field"""
- preferencesConsentManagementEnabled: SalesforceBooleanFilter
-
- """
- Filter by the Organization's preferencesIndividualAutoCreateEnabled field
- """
- preferencesIndividualAutoCreateEnabled: SalesforceBooleanFilter
-
- """Filter by the Organization's preferencesLightningLoginEnabled field"""
- preferencesLightningLoginEnabled: SalesforceBooleanFilter
-
- """Filter by the Organization's preferencesOnlyLlPermUserAllowed field"""
- preferencesOnlyLlPermUserAllowed: SalesforceBooleanFilter
-
- """Filter by the Organization's fiscalYearStartMonth field"""
- fiscalYearStartMonth: SalesforceIntFilter
-
- """Filter by the Organization's usesStartDateAsFiscalYearName field"""
- usesStartDateAsFiscalYearName: SalesforceBooleanFilter
-
- """Filter by the Organization's defaultAccountAccess field"""
- defaultAccountAccess: SalesforceStringFilter
-
- """Filter by the Organization's defaultContactAccess field"""
- defaultContactAccess: SalesforceStringFilter
-
- """Filter by the Organization's defaultOpportunityAccess field"""
- defaultOpportunityAccess: SalesforceStringFilter
-
- """Filter by the Organization's defaultLeadAccess field"""
- defaultLeadAccess: SalesforceStringFilter
-
- """Filter by the Organization's defaultCaseAccess field"""
- defaultCaseAccess: SalesforceStringFilter
-
- """Filter by the Organization's defaultCalendarAccess field"""
- defaultCalendarAccess: SalesforceStringFilter
-
- """Filter by the Organization's defaultPricebookAccess field"""
- defaultPricebookAccess: SalesforceStringFilter
-
- """Filter by the Organization's defaultCampaignAccess field"""
- defaultCampaignAccess: SalesforceStringFilter
-
- """Filter by the Organization's systemModstamp field"""
- systemModstamp: SalesforceDateTimeFilter
-
- """Filter by the Organization's complianceBccEmail field"""
- complianceBccEmail: SalesforceStringFilter
-
- """Filter by the Organization's uiSkin field"""
- uiSkin: SalesforceStringFilter
-
- """Filter by the Organization's signupCountryIsoCode field"""
- signupCountryIsoCode: SalesforceStringFilter
-
- """Filter by the Organization's trialExpirationDate field"""
- trialExpirationDate: SalesforceDateTimeFilter
-
- """Filter by the Organization's numKnowledgeService field"""
- numKnowledgeService: SalesforceIntFilter
-
- """Filter by the Organization's organizationType field"""
- organizationType: SalesforceStringFilter
-
- """Filter by the Organization's namespacePrefix field"""
- namespacePrefix: SalesforceStringFilter
-
- """Filter by the Organization's instanceName field"""
- instanceName: SalesforceStringFilter
-
- """Filter by the Organization's isSandbox field"""
- isSandbox: SalesforceBooleanFilter
-
- """Filter by the Organization's webToCaseDefaultOrigin field"""
- webToCaseDefaultOrigin: SalesforceStringFilter
-
- """Filter by the Organization's monthlyPageViewsUsed field"""
- monthlyPageViewsUsed: SalesforceIntFilter
-
- """Filter by the Organization's monthlyPageViewsEntitlement field"""
- monthlyPageViewsEntitlement: SalesforceIntFilter
-
- """Filter by the Organization's isReadOnly field"""
- isReadOnly: SalesforceBooleanFilter
-
- """Filter by the Organization's createdDate field"""
- createdDate: SalesforceDateTimeFilter
-
- """Filter by the Organization's createdById field"""
- createdById: SalesforceIdFilter
-
- """Filter by the Organization's lastModifiedDate field"""
- lastModifiedDate: SalesforceDateTimeFilter
-
- """Filter by the Organization's lastModifiedById field"""
- lastModifiedById: SalesforceIdFilter
-
- """Checks for any expressions in this list."""
- or: [SalesforceOrganizationConnectionFilter!]
-
- """Checks for all expressions in this list."""
- and: [SalesforceOrganizationConnectionFilter!]
-}
-
-"""
-A filter to be used against Stamp object types. All fields are combined with a logical ‘and.’
-"""
-input SalesforceStampConnectionFilter {
- """Filter against custom fields."""
- customField: SalesforceCustomFieldFilter
-
- """Filter by the Stamp's lastModifiedBy relation."""
- lastModifiedBy: SalesforceUserConnectionFilter
-
- """Filter by the Stamp's createdBy relation."""
- createdBy: SalesforceUserConnectionFilter
-
- """Filter by the Stamp's parent relation."""
- parent: SalesforceOrganizationConnectionFilter
-
- """Filter by the Stamp's id field"""
- id: SalesforceIdFilter
-
- """Filter by the Stamp's isDeleted field"""
- isDeleted: SalesforceBooleanFilter
-
- """Filter by the Stamp's parentId field"""
- parentId: SalesforceIdFilter
-
- """Filter by the Stamp's masterLabel field"""
- masterLabel: SalesforceStringFilter
-
- """Filter by the Stamp's createdDate field"""
- createdDate: SalesforceDateTimeFilter
-
- """Filter by the Stamp's createdById field"""
- createdById: SalesforceIdFilter
-
- """Filter by the Stamp's lastModifiedDate field"""
- lastModifiedDate: SalesforceDateTimeFilter
-
- """Filter by the Stamp's lastModifiedById field"""
- lastModifiedById: SalesforceIdFilter
-
- """Filter by the Stamp's systemModstamp field"""
- systemModstamp: SalesforceDateTimeFilter
-
- """Filter by the Stamp's description field"""
- description: SalesforceStringFilter
-
- """Checks for any expressions in this list."""
- or: [SalesforceStampConnectionFilter!]
-
- """Checks for all expressions in this list."""
- and: [SalesforceStampConnectionFilter!]
-}
-
-"""
-A filter to be used against StampAssignment object types. All fields are combined with a logical ‘and.’
-"""
-input SalesforceStampAssignmentConnectionFilter {
- """Filter against custom fields."""
- customField: SalesforceCustomFieldFilter
-
- """Filter by the StampAssignment's subject relation."""
- subject: SalesforceUserConnectionFilter
-
- """Filter by the StampAssignment's stamp relation."""
- stamp: SalesforceStampConnectionFilter
-
- """Filter by the StampAssignment's lastModifiedBy relation."""
- lastModifiedBy: SalesforceUserConnectionFilter
-
- """Filter by the StampAssignment's createdBy relation."""
- createdBy: SalesforceUserConnectionFilter
-
- """Filter by the StampAssignment's id field"""
- id: SalesforceIdFilter
-
- """Filter by the StampAssignment's isDeleted field"""
- isDeleted: SalesforceBooleanFilter
-
- """Filter by the StampAssignment's createdDate field"""
- createdDate: SalesforceDateTimeFilter
-
- """Filter by the StampAssignment's createdById field"""
- createdById: SalesforceIdFilter
-
- """Filter by the StampAssignment's lastModifiedDate field"""
- lastModifiedDate: SalesforceDateTimeFilter
-
- """Filter by the StampAssignment's lastModifiedById field"""
- lastModifiedById: SalesforceIdFilter
-
- """Filter by the StampAssignment's systemModstamp field"""
- systemModstamp: SalesforceDateTimeFilter
-
- """Filter by the StampAssignment's stampId field"""
- stampId: SalesforceIdFilter
-
- """Filter by the StampAssignment's subjectId field"""
- subjectId: SalesforceIdFilter
-
- """Checks for any expressions in this list."""
- or: [SalesforceStampAssignmentConnectionFilter!]
-
- """Checks for all expressions in this list."""
- and: [SalesforceStampAssignmentConnectionFilter!]
-}
-
-"""Field that Stamp Assignments can be sorted by"""
-enum SalesforceStampAssignmentSortByFieldEnum {
- ID
- IS_DELETED
- CREATED_DATE
- CREATED_BY_ID
- LAST_MODIFIED_DATE
- LAST_MODIFIED_BY_ID
- SYSTEM_MODSTAMP
- STAMP_ID
- SUBJECT_ID
-}
-
-"""An edge in a connection."""
-type SalesforceStampAssignmentEdge {
- """The item at the end of the edge."""
- node: SalesforceStampAssignment!
-
- """A cursor for use in pagination"""
- cursor: String!
-}
-
-"""Stamp Assignment"""
-type SalesforceStampAssignment implements OneGraphNode {
- """StampAssignment ID"""
- id: String!
-
- """Deleted"""
- isDeleted: Boolean!
-
- """Created Date"""
- createdDate: String!
-
- """Created By ID"""
- createdById: String!
-
- """Created By ID"""
- createdBy: SalesforceUser!
-
- """Last Modified Date"""
- lastModifiedDate: String!
-
- """Last Modified By ID"""
- lastModifiedById: String!
-
- """Last Modified By ID"""
- lastModifiedBy: SalesforceUser!
-
- """System Modstamp"""
- systemModstamp: String!
-
- """Stamp ID"""
- stampId: String!
-
- """Stamp ID"""
- stamp: SalesforceStamp!
-
- """User ID"""
- subjectId: String!
-
- """User ID"""
- subject: SalesforceUser!
- customFields(
- """
- List of custom fields to return. By default, returns all custom fields.
- """
- fields: [String!]
- ): JSON!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-"""Salesforce Stamp Assignments connection, for use in pagination."""
-type SalesforceStampAssignmentsConnection {
- """The count of all Stamp Assignment you could get from the connection."""
- totalCount: Int!
-
- """Pagination Information"""
- pageInfo: PageInfo!
-
- """List of Salesforce Stamp Assignments"""
- nodes: [SalesforceStampAssignment!]!
-
- """List of Stamp Assignment edges"""
- edges: [SalesforceStampAssignmentEdge!]!
-}
-
-"""
-A filter to be used against CustomBrand object types. All fields are combined with a logical ‘and.’
-"""
-input SalesforceCustomBrandConnectionFilter {
- """Filter against custom fields."""
- customField: SalesforceCustomFieldFilter
-
- """Filter by the CustomBrand's lastModifiedBy relation."""
- lastModifiedBy: SalesforceUserConnectionFilter
-
- """Filter by the CustomBrand's createdBy relation."""
- createdBy: SalesforceUserConnectionFilter
-
- """Filter by the CustomBrand's id field"""
- id: SalesforceIdFilter
-
- """Filter by the CustomBrand's parentId field"""
- parentId: SalesforceIdFilter
-
- """Filter by the CustomBrand's createdById field"""
- createdById: SalesforceIdFilter
-
- """Filter by the CustomBrand's createdDate field"""
- createdDate: SalesforceDateTimeFilter
-
- """Filter by the CustomBrand's lastModifiedDate field"""
- lastModifiedDate: SalesforceDateTimeFilter
-
- """Filter by the CustomBrand's lastModifiedById field"""
- lastModifiedById: SalesforceIdFilter
-
- """Checks for any expressions in this list."""
- or: [SalesforceCustomBrandConnectionFilter!]
-
- """Checks for all expressions in this list."""
- and: [SalesforceCustomBrandConnectionFilter!]
-}
-
-"""Field that Custom Brands can be sorted by"""
-enum SalesforceCustomBrandSortByFieldEnum {
- ID
- PARENT_ID
- CREATED_BY_ID
- CREATED_DATE
- LAST_MODIFIED_DATE
- LAST_MODIFIED_BY_ID
-}
-
-"""An edge in a connection."""
-type SalesforceCustomBrandEdge {
- """The item at the end of the edge."""
- node: SalesforceCustomBrand!
-
- """A cursor for use in pagination"""
- cursor: String!
-}
-
-"""Salesforce Custom Brands connection, for use in pagination."""
-type SalesforceCustomBrandsConnection {
- """The count of all Custom Brand you could get from the connection."""
- totalCount: Int!
-
- """Pagination Information"""
- pageInfo: PageInfo!
-
- """List of Salesforce Custom Brands"""
- nodes: [SalesforceCustomBrand!]!
-
- """List of Custom Brand edges"""
- edges: [SalesforceCustomBrandEdge!]!
-}
-
-"""Stamp"""
-type SalesforceStamp implements OneGraphNode {
- """Stamp ID"""
- id: String!
-
- """Deleted"""
- isDeleted: Boolean!
-
- """Parent ID"""
- parentId: String!
-
- """Parent ID"""
- parent: SalesforceOrganization!
-
- """Label"""
- masterLabel: String!
-
- """Created Date"""
- createdDate: String!
-
- """Created By ID"""
- createdById: String!
-
- """Created By ID"""
- createdBy: SalesforceUser!
-
- """Last Modified Date"""
- lastModifiedDate: String!
-
- """Last Modified By ID"""
- lastModifiedById: String!
-
- """Last Modified By ID"""
- lastModifiedBy: SalesforceUser!
-
- """System Modstamp"""
- systemModstamp: String!
-
- """Description"""
- description: String
-
- """Collection of Salesforce CustomBrand"""
- customBrands(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceCustomBrandConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceCustomBrandSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceCustomBrandSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of CustomBrands to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceCustomBrandsConnection
-
- """Collection of Salesforce StampAssignment"""
- stampAssignments(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceStampAssignmentConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceStampAssignmentSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceStampAssignmentSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of StampAssignments to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceStampAssignmentsConnection
- customFields(
- """
- List of custom fields to return. By default, returns all custom fields.
- """
- fields: [String!]
- ): JSON!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-union SalesforceCustomBrandParentUnion = SalesforceTopic | SalesforceStamp | SalesforceOrganization
-
-"""Custom Brand"""
-type SalesforceCustomBrand implements OneGraphNode {
- """Custom Brand ID"""
- id: String!
-
- """Branded Entity ID"""
- parentId: String!
-
- """Branded Entity ID"""
- parent: SalesforceCustomBrandParentUnion!
-
- """Created By ID"""
- createdById: String!
-
- """Created By ID"""
- createdBy: SalesforceUser!
-
- """Created Date"""
- createdDate: String!
-
- """Modified Date"""
- lastModifiedDate: String!
-
- """Last Modified By ID"""
- lastModifiedById: String!
-
- """Last Modified By ID"""
- lastModifiedBy: SalesforceUser!
-
- """Collection of Salesforce CustomBrandAsset"""
- customBrandAssets(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceCustomBrandAssetConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceCustomBrandAssetSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceCustomBrandAssetSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of CustomBrandAssets to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceCustomBrandAssetsConnection
- customFields(
- """
- List of custom fields to return. By default, returns all custom fields.
- """
- fields: [String!]
- ): JSON!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-"""Custom Brand Asset"""
-type SalesforceCustomBrandAsset implements OneGraphNode {
- """Custom Brand Asset ID"""
- id: String!
-
- """Custom Brand ID"""
- customBrandId: String!
-
- """Custom Brand ID"""
- customBrand: SalesforceCustomBrand!
-
- """Asset Category"""
- assetCategory: String!
-
- """Text Asset"""
- textAsset: String
-
- """Asset source ID"""
- assetSourceId: String
-
- """Asset source ID"""
- assetSource: SalesforceCustomBrandAssetAssetSourceUnion
-
- """Created By ID"""
- createdById: String!
-
- """Created By ID"""
- createdBy: SalesforceUser!
-
- """Created Date"""
- createdDate: String!
-
- """Modified Date"""
- lastModifiedDate: String!
-
- """Last Modified By ID"""
- lastModifiedById: String!
-
- """Last Modified By ID"""
- lastModifiedBy: SalesforceUser!
- customFields(
- """
- List of custom fields to return. By default, returns all custom fields.
- """
- fields: [String!]
- ): JSON!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-"""Salesforce Custom Brand Assets connection, for use in pagination."""
-type SalesforceCustomBrandAssetsConnection {
- """The count of all Custom Brand Asset you could get from the connection."""
- totalCount: Int!
-
- """Pagination Information"""
- pageInfo: PageInfo!
-
- """List of Salesforce Custom Brand Assets"""
- nodes: [SalesforceCustomBrandAsset!]!
-
- """List of Custom Brand Asset edges"""
- edges: [SalesforceCustomBrandAssetEdge!]!
-}
-
-"""Field that Content Documents can be sorted by"""
-enum SalesforceContentDocumentSortByFieldEnum {
- ID
- CREATED_BY_ID
- CREATED_DATE
- LAST_MODIFIED_BY_ID
- LAST_MODIFIED_DATE
- IS_ARCHIVED
- ARCHIVED_BY_ID
- ARCHIVED_DATE
- IS_DELETED
- OWNER_ID
- SYSTEM_MODSTAMP
- TITLE
- PUBLISH_STATUS
- LATEST_PUBLISHED_VERSION_ID
- PARENT_ID
- LAST_VIEWED_DATE
- LAST_REFERENCED_DATE
- DESCRIPTION
- CONTENT_SIZE
- FILE_TYPE
- FILE_EXTENSION
- SHARING_OPTION
- SHARING_PRIVACY
- CONTENT_MODIFIED_DATE
- CONTENT_ASSET_ID
-}
-
-"""An edge in a connection."""
-type SalesforceContentDocumentEdge {
- """The item at the end of the edge."""
- node: SalesforceContentDocument!
-
- """A cursor for use in pagination"""
- cursor: String!
-}
-
-"""Salesforce Content Documents connection, for use in pagination."""
-type SalesforceContentDocumentsConnection {
- """The count of all Content Document you could get from the connection."""
- totalCount: Int!
-
- """Pagination Information"""
- pageInfo: PageInfo!
-
- """List of Salesforce Content Documents"""
- nodes: [SalesforceContentDocument!]!
-
- """List of Content Document edges"""
- edges: [SalesforceContentDocumentEdge!]!
-}
-
-"""
-A filter to be used against ChatterExtension object types. All fields are combined with a logical ‘and.’
-"""
-input SalesforceChatterExtensionConnectionFilter {
- """Filter against custom fields."""
- customField: SalesforceCustomFieldFilter
-
- """Filter by the ChatterExtension's icon relation."""
- icon: SalesforceContentAssetConnectionFilter
-
- """Filter by the ChatterExtension's lastModifiedBy relation."""
- lastModifiedBy: SalesforceUserConnectionFilter
-
- """Filter by the ChatterExtension's createdBy relation."""
- createdBy: SalesforceUserConnectionFilter
-
- """Filter by the ChatterExtension's id field"""
- id: SalesforceIdFilter
-
- """Filter by the ChatterExtension's isDeleted field"""
- isDeleted: SalesforceBooleanFilter
-
- """Filter by the ChatterExtension's developerName field"""
- developerName: SalesforceStringFilter
-
- """Filter by the ChatterExtension's language field"""
- language: SalesforceStringFilter
-
- """Filter by the ChatterExtension's masterLabel field"""
- masterLabel: SalesforceStringFilter
-
- """Filter by the ChatterExtension's namespacePrefix field"""
- namespacePrefix: SalesforceStringFilter
-
- """Filter by the ChatterExtension's isProtected field"""
- isProtected: SalesforceBooleanFilter
-
- """Filter by the ChatterExtension's createdDate field"""
- createdDate: SalesforceDateTimeFilter
-
- """Filter by the ChatterExtension's createdById field"""
- createdById: SalesforceIdFilter
-
- """Filter by the ChatterExtension's lastModifiedDate field"""
- lastModifiedDate: SalesforceDateTimeFilter
-
- """Filter by the ChatterExtension's lastModifiedById field"""
- lastModifiedById: SalesforceIdFilter
-
- """Filter by the ChatterExtension's systemModstamp field"""
- systemModstamp: SalesforceDateTimeFilter
-
- """Filter by the ChatterExtension's extensionName field"""
- extensionName: SalesforceStringFilter
-
- """Filter by the ChatterExtension's type field"""
- type: SalesforceStringFilter
-
- """Filter by the ChatterExtension's iconId field"""
- iconId: SalesforceIdFilter
-
- """Filter by the ChatterExtension's description field"""
- description: SalesforceStringFilter
-
- """Filter by the ChatterExtension's compositionComponentEnumOrId field"""
- compositionComponentEnumOrId: SalesforceStringFilter
-
- """Filter by the ChatterExtension's renderComponentEnumOrId field"""
- renderComponentEnumOrId: SalesforceStringFilter
-
- """Filter by the ChatterExtension's hoverText field"""
- hoverText: SalesforceStringFilter
-
- """Filter by the ChatterExtension's headerText field"""
- headerText: SalesforceStringFilter
-
- """Checks for any expressions in this list."""
- or: [SalesforceChatterExtensionConnectionFilter!]
-
- """Checks for all expressions in this list."""
- and: [SalesforceChatterExtensionConnectionFilter!]
-}
-
-"""Field that Chatter Extensions can be sorted by"""
-enum SalesforceChatterExtensionSortByFieldEnum {
- ID
- IS_DELETED
- DEVELOPER_NAME
- LANGUAGE
- MASTER_LABEL
- NAMESPACE_PREFIX
- IS_PROTECTED
- CREATED_DATE
- CREATED_BY_ID
- LAST_MODIFIED_DATE
- LAST_MODIFIED_BY_ID
- SYSTEM_MODSTAMP
- EXTENSION_NAME
- TYPE
- ICON_ID
- DESCRIPTION
- COMPOSITION_COMPONENT_ENUM_OR_ID
- RENDER_COMPONENT_ENUM_OR_ID
- HOVER_TEXT
- HEADER_TEXT
-}
-
-"""Asset File"""
-type SalesforceContentAsset implements OneGraphNode {
- """Asset File ID"""
- id: String!
-
- """Deleted"""
- isDeleted: Boolean!
-
- """Unique Name"""
- developerName: String!
-
- """Master Language"""
- language: String
-
- """Label"""
- masterLabel: String!
-
- """Namespace Prefix"""
- namespacePrefix: String
-
- """Created Date"""
- createdDate: String!
-
- """Created By ID"""
- createdById: String!
-
- """Created By ID"""
- createdBy: SalesforceUser!
-
- """Last Modified Date"""
- lastModifiedDate: String!
-
- """Last Modified By ID"""
- lastModifiedById: String!
-
- """Last Modified By ID"""
- lastModifiedBy: SalesforceUser!
-
- """System Modstamp"""
- systemModstamp: String!
-
- """ContentDocument ID"""
- contentDocumentId: String
-
- """ContentDocument ID"""
- contentDocument: SalesforceContentDocument
-
- """Let unauthenticated users see this asset file"""
- isVisibleByExternalUsers: Boolean!
-
- """Collection of Salesforce ChatterExtension"""
- chatterExtensions(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceChatterExtensionConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceChatterExtensionSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceChatterExtensionSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of ChatterExtensions to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceChatterExtensionsConnection
-
- """Collection of Salesforce ContentDocument"""
- contentDocuments(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceContentDocumentConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceContentDocumentSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceContentDocumentSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of ContentDocuments to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceContentDocumentsConnection
-
- """Collection of Salesforce CustomBrandAsset"""
- customBrandAssets(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceCustomBrandAssetConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceCustomBrandAssetSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceCustomBrandAssetSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of CustomBrandAssets to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceCustomBrandAssetsConnection
- customFields(
- """
- List of custom fields to return. By default, returns all custom fields.
- """
- fields: [String!]
- ): JSON!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-"""Chatter Extension"""
-type SalesforceChatterExtension implements OneGraphNode {
- """Chatter Extension ID"""
- id: String!
-
- """Deleted"""
- isDeleted: Boolean!
-
- """Name"""
- developerName: String!
-
- """Master Language"""
- language: String
-
- """Label"""
- masterLabel: String!
-
- """Namespace Prefix"""
- namespacePrefix: String
-
- """Protected Component"""
- isProtected: Boolean!
-
- """Created Date"""
- createdDate: String!
-
- """Created By ID"""
- createdById: String!
-
- """Created By ID"""
- createdBy: SalesforceUser!
-
- """Last Modified Date"""
- lastModifiedDate: String!
-
- """Last Modified By ID"""
- lastModifiedById: String!
-
- """Last Modified By ID"""
- lastModifiedBy: SalesforceUser!
-
- """System Modstamp"""
- systemModstamp: String!
-
- """Name"""
- extensionName: String!
-
- """Type"""
- type: String!
-
- """Asset File ID"""
- iconId: String
-
- """Asset File ID"""
- icon: SalesforceContentAsset
-
- """Description"""
- description: String!
-
- """Lightning Definition Bundle ID"""
- compositionComponentEnumOrId: String
-
- """Lightning Definition Bundle ID"""
- renderComponentEnumOrId: String
-
- """Hover Text"""
- hoverText: String
-
- """Header Text"""
- headerText: String
-
- """Collection of Salesforce ChatterExtensionConfig"""
- chatterExtensionConfigs(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceChatterExtensionConfigConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceChatterExtensionConfigSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceChatterExtensionConfigSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """
- Number of ChatterExtensionConfigs to fetch. Defaults to 10. Maximum is 60.
- """
- first: Int
- ): SalesforceChatterExtensionConfigsConnection
- customFields(
- """
- List of custom fields to return. By default, returns all custom fields.
- """
- fields: [String!]
- ): JSON!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-"""Salesforce Chatter Extensions connection, for use in pagination."""
-type SalesforceChatterExtensionsConnection {
- """The count of all Chatter Extension you could get from the connection."""
- totalCount: Int!
-
- """Pagination Information"""
- pageInfo: PageInfo!
-
- """List of Salesforce Chatter Extensions"""
- nodes: [SalesforceChatterExtension!]!
-
- """List of Chatter Extension edges"""
- edges: [SalesforceChatterExtensionEdge!]!
-}
-
-"""
-A filter to be used against AuraDefinitionBundle object types. All fields are combined with a logical ‘and.’
-"""
-input SalesforceAuraDefinitionBundleConnectionFilter {
- """Filter against custom fields."""
- customField: SalesforceCustomFieldFilter
-
- """Filter by the AuraDefinitionBundle's lastModifiedBy relation."""
- lastModifiedBy: SalesforceUserConnectionFilter
-
- """Filter by the AuraDefinitionBundle's createdBy relation."""
- createdBy: SalesforceUserConnectionFilter
-
- """Filter by the AuraDefinitionBundle's id field"""
- id: SalesforceIdFilter
-
- """Filter by the AuraDefinitionBundle's isDeleted field"""
- isDeleted: SalesforceBooleanFilter
-
- """Filter by the AuraDefinitionBundle's developerName field"""
- developerName: SalesforceStringFilter
-
- """Filter by the AuraDefinitionBundle's language field"""
- language: SalesforceStringFilter
-
- """Filter by the AuraDefinitionBundle's masterLabel field"""
- masterLabel: SalesforceStringFilter
-
- """Filter by the AuraDefinitionBundle's namespacePrefix field"""
- namespacePrefix: SalesforceStringFilter
-
- """Filter by the AuraDefinitionBundle's createdDate field"""
- createdDate: SalesforceDateTimeFilter
-
- """Filter by the AuraDefinitionBundle's createdById field"""
- createdById: SalesforceIdFilter
-
- """Filter by the AuraDefinitionBundle's lastModifiedDate field"""
- lastModifiedDate: SalesforceDateTimeFilter
-
- """Filter by the AuraDefinitionBundle's lastModifiedById field"""
- lastModifiedById: SalesforceIdFilter
-
- """Filter by the AuraDefinitionBundle's systemModstamp field"""
- systemModstamp: SalesforceDateTimeFilter
-
- """Filter by the AuraDefinitionBundle's apiVersion field"""
- apiVersion: SalesforceFloatFilter
-
- """Filter by the AuraDefinitionBundle's description field"""
- description: SalesforceStringFilter
-
- """Checks for any expressions in this list."""
- or: [SalesforceAuraDefinitionBundleConnectionFilter!]
-
- """Checks for all expressions in this list."""
- and: [SalesforceAuraDefinitionBundleConnectionFilter!]
-}
-
-"""
-A filter to be used against AuraDefinition object types. All fields are combined with a logical ‘and.’
-"""
-input SalesforceAuraDefinitionConnectionFilter {
- """Filter against custom fields."""
- customField: SalesforceCustomFieldFilter
-
- """Filter by the AuraDefinition's auraDefinitionBundle relation."""
- auraDefinitionBundle: SalesforceAuraDefinitionBundleConnectionFilter
-
- """Filter by the AuraDefinition's lastModifiedBy relation."""
- lastModifiedBy: SalesforceUserConnectionFilter
-
- """Filter by the AuraDefinition's createdBy relation."""
- createdBy: SalesforceUserConnectionFilter
-
- """Filter by the AuraDefinition's id field"""
- id: SalesforceIdFilter
-
- """Filter by the AuraDefinition's isDeleted field"""
- isDeleted: SalesforceBooleanFilter
-
- """Filter by the AuraDefinition's createdDate field"""
- createdDate: SalesforceDateTimeFilter
-
- """Filter by the AuraDefinition's createdById field"""
- createdById: SalesforceIdFilter
-
- """Filter by the AuraDefinition's lastModifiedDate field"""
- lastModifiedDate: SalesforceDateTimeFilter
-
- """Filter by the AuraDefinition's lastModifiedById field"""
- lastModifiedById: SalesforceIdFilter
-
- """Filter by the AuraDefinition's systemModstamp field"""
- systemModstamp: SalesforceDateTimeFilter
-
- """Filter by the AuraDefinition's auraDefinitionBundleId field"""
- auraDefinitionBundleId: SalesforceIdFilter
-
- """Filter by the AuraDefinition's defType field"""
- defType: SalesforceStringFilter
-
- """Filter by the AuraDefinition's format field"""
- format: SalesforceStringFilter
-
- """Checks for any expressions in this list."""
- or: [SalesforceAuraDefinitionConnectionFilter!]
-
- """Checks for all expressions in this list."""
- and: [SalesforceAuraDefinitionConnectionFilter!]
-}
-
-"""Field that Lightning Component Definitions can be sorted by"""
-enum SalesforceAuraDefinitionSortByFieldEnum {
- ID
- IS_DELETED
- CREATED_DATE
- CREATED_BY_ID
- LAST_MODIFIED_DATE
- LAST_MODIFIED_BY_ID
- SYSTEM_MODSTAMP
- AURA_DEFINITION_BUNDLE_ID
- DEF_TYPE
- FORMAT
-}
-
-"""An edge in a connection."""
-type SalesforceAuraDefinitionEdge {
- """The item at the end of the edge."""
- node: SalesforceAuraDefinition!
-
- """A cursor for use in pagination"""
- cursor: String!
-}
-
-"""Lightning Component Definition"""
-type SalesforceAuraDefinition implements OneGraphNode {
- """Lightning Definition ID"""
- id: String!
-
- """Deleted"""
- isDeleted: Boolean!
-
- """Created Date"""
- createdDate: String!
-
- """Created By ID"""
- createdById: String!
-
- """Created By ID"""
- createdBy: SalesforceUser!
-
- """Last Modified Date"""
- lastModifiedDate: String!
-
- """Last Modified By ID"""
- lastModifiedById: String!
-
- """Last Modified By ID"""
- lastModifiedBy: SalesforceUser!
-
- """System Modstamp"""
- systemModstamp: String!
-
- """Lightning Definition Bundle ID"""
- auraDefinitionBundleId: String!
-
- """Lightning Definition Bundle ID"""
- auraDefinitionBundle: SalesforceAuraDefinitionBundle!
-
- """Definition Type"""
- defType: String!
-
- """Format"""
- format: String!
-
- """Source"""
- source: String!
- customFields(
- """
- List of custom fields to return. By default, returns all custom fields.
- """
- fields: [String!]
- ): JSON!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-"""
-Salesforce Lightning Component Definitions connection, for use in pagination.
-"""
-type SalesforceAuraDefinitionsConnection {
- """
- The count of all Lightning Component Definition you could get from the connection.
- """
- totalCount: Int!
-
- """Pagination Information"""
- pageInfo: PageInfo!
-
- """List of Salesforce Lightning Component Definitions"""
- nodes: [SalesforceAuraDefinition!]!
-
- """List of Lightning Component Definition edges"""
- edges: [SalesforceAuraDefinitionEdge!]!
-}
-
-"""Lightning Component Bundle"""
-type SalesforceAuraDefinitionBundle implements OneGraphNode {
- """Lightning Definition Bundle ID"""
- id: String!
-
- """Deleted"""
- isDeleted: Boolean!
-
- """Name"""
- developerName: String!
-
- """Master Language"""
- language: String
-
- """Label"""
- masterLabel: String!
-
- """Namespace Prefix"""
- namespacePrefix: String
-
- """Created Date"""
- createdDate: String!
-
- """Created By ID"""
- createdById: String!
-
- """Created By ID"""
- createdBy: SalesforceUser!
-
- """Last Modified Date"""
- lastModifiedDate: String!
-
- """Last Modified By ID"""
- lastModifiedById: String!
-
- """Last Modified By ID"""
- lastModifiedBy: SalesforceUser!
-
- """System Modstamp"""
- systemModstamp: String!
-
- """Api Version"""
- apiVersion: Float!
-
- """Description"""
- description: String!
-
- """Collection of Salesforce AuraDefinition"""
- auraDefinitions(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceAuraDefinitionConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceAuraDefinitionSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceAuraDefinitionSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of AuraDefinitions to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceAuraDefinitionsConnection
-
- """Collection of Salesforce ChatterExtension"""
- chatterExtensions(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceChatterExtensionConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceChatterExtensionSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceChatterExtensionSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of ChatterExtensions to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceChatterExtensionsConnection
- customFields(
- """
- List of custom fields to return. By default, returns all custom fields.
- """
- fields: [String!]
- ): JSON!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-union SalesforceSobject = SalesforceAuraDefinitionBundle | SalesforceApexTestRunResult | SalesforceDataAssessmentMetric | SalesforceTopicAssignment | SalesforceLightningComponentBundle | SalesforceLeadFeed | SalesforceFeedRevision | SalesforceScontrol | SalesforceDuplicateRule | SalesforceSecureAgentPlugin | SalesforceApexLog | SalesforceCollaborationGroupRecord | SalesforceEmailMessage | SalesforceOrderItem | SalesforceUserListViewCriterion | SalesforceAsyncApexJob | SalesforceSearchActivity | SalesforceCampaignShare | SalesforcePermissionSetAssignment | SalesforceDuplicateRecordItem | SalesforceDeclinedEventRelation | SalesforceUserProvisioningConfig | SalesforceTask | SalesforceCampaignHistory | SalesforceTaskStatus | SalesforceUserFeed | SalesforceMatchingRuleItem | SalesforceContentVersionComment | SalesforceStreamingChannel | SalesforceStamp | SalesforceApexTestQueueItem | SalesforceFieldPermissions | SalesforceSecureAgentPluginProperty | SalesforceMacro | SalesforceEmailServicesAddress | SalesforceContractHistory | SalesforceHoliday | SalesforcePushTopic | SalesforceCaseStatus | SalesforceLoginGeo | SalesforceTransactionSecurityPolicy | SalesforceUserProvisioningLog | SalesforceDandBCompany | SalesforceContractStatus | SalesforceProcessInstanceNode | SalesforcePlatformCachePartitionType | SalesforceContentWorkspaceDoc | SalesforceGroup | SalesforceOpportunityFeed | SalesforceDocument | SalesforceSetupEntityAccess | SalesforceContactCleanInfo | SalesforceDuplicateRecordSet | SalesforceLeadShare | SalesforceSecureAgent | SalesforceContactFeed | SalesforceProduct2Feed | SalesforceQuickText | SalesforceSecureAgentsCluster | SalesforceFeedPollVote | SalesforceCorsWhitelistEntry | SalesforceOrderHistory | SalesforceChatterExtension | SalesforceContentDocumentLink | SalesforceOpportunityCompetitor | SalesforceIdeaComment | SalesforceBackgroundOperation | SalesforceCaseTeamTemplateRecord | SalesforceGroupMember | SalesforceWaveCompatibilityCheckItem | SalesforceCaseTeamTemplateMember | SalesforceApexTestResultLimits | SalesforceCaseTeamTemplate | SalesforceProcessInstanceStep | SalesforceObjectPermissions | SalesforceListViewChart | SalesforceOrderItemFeed | SalesforceProcessNode | SalesforceUserProvMockTarget | SalesforcePricebook2 | SalesforceLoginHistory | SalesforceCaseHistory | SalesforceChatterActivity | SalesforceEmailDomainKey | SalesforceInstalledMobileApp | SalesforceLoginIp | SalesforceSite | SalesforceExternalDataSource | SalesforceFeedComment | SalesforceLead | SalesforceOrderItemHistory | SalesforceFeedPollChoice | SalesforceWebLink | SalesforceCaseShare | SalesforcePricebook2History | SalesforceCronJobDetail | SalesforceEventRelation | SalesforceSolutionFeed | SalesforceStaticResource | SalesforceSolutionStatus | SalesforceFlowInterview | SalesforceIdpEventLog | SalesforceTodayGoalShare | SalesforceContentFolder | SalesforceAccountPartner | SalesforceContentDistribution | SalesforceCategoryData | SalesforceFiscalYearSettings | SalesforceListEmailShare | SalesforceCampaignFeed | SalesforceChatterExtensionConfig | SalesforcePricebookEntry | SalesforceDomainSite | SalesforceContentDocumentHistory | SalesforceTenantUsageEntitlement | SalesforceFeedAttachment | SalesforceCaseTeamRole | SalesforceContentWorkspaceSubscription | SalesforceTopicFeed | SalesforceRecordType | SalesforceListEmail | SalesforceAccountContactRole | SalesforceClientBrowser | SalesforceAssetFeed | SalesforcePartnerRole | SalesforceCaseFeed | SalesforceFileSearchActivity | SalesforceUserPackageLicense | SalesforceUserProvisioningRequest | SalesforcePermissionSetLicenseAssign | SalesforceUserShare | SalesforcePackageLicense | SalesforceAccountCleanInfo | SalesforceAssetShare | SalesforceContactShare | SalesforceProduct2History | SalesforceCampaignMember | SalesforceAssetRelationshipFeed | SalesforcePermissionSet | SalesforceActionLinkTemplate | SalesforceContentFolderItem | SalesforceOpportunityStage | SalesforceProfile | SalesforceAccount | SalesforceEmailCapture | SalesforceCaseSolution | SalesforceOpportunityContactRole | SalesforceUserRole | SalesforceEventFeed | SalesforceAssetRelationship | SalesforceEventLogFile | SalesforceOpportunityShare | SalesforceSamlSsoConfig | SalesforceAccountHistory | SalesforceOpportunityFieldHistory | SalesforceCollaborationGroupMember | SalesforceUserPreference | SalesforceCollaborationGroupFeed | SalesforceOrgDeleteRequest | SalesforceListView | SalesforceCustomObjectUserLicenseMetrics | SalesforceMailmergeTemplate | SalesforceCaseTeamMember | SalesforceCallCenter | SalesforceAssetRelationshipHistory | SalesforceContentFolderMember | SalesforceContentWorkspace | SalesforceContentDocumentFeed | SalesforceDashboardComponent | SalesforceConnectedApplication | SalesforceDomain | SalesforceVerificationHistory | SalesforceQueueSobject | SalesforceContentWorkspaceMember | SalesforceAuthSession | SalesforceVisualforceAccessMetrics | SalesforceReport | SalesforceApexTestSuite | SalesforceTaskPriority | SalesforceTopic | SalesforceAuthConfig | SalesforceQuickTextHistory | SalesforceContentVersionRating | SalesforceEmailTemplate | SalesforceLeadHistory | SalesforceContentDocument | SalesforceContact | SalesforceDatacloudPurchaseUsage | SalesforceAuraDefinition | SalesforceDataAssessmentFieldMetric | SalesforceSecurityCustomBaseline | SalesforceContentVersion | SalesforceCampaignMemberStatus | SalesforcePermissionSetLicense | SalesforceProcessDefinition | SalesforceEvent | SalesforceLeadCleanInfo | SalesforceSearchPromotionRule | SalesforceExternalDataUserAuth | SalesforceAnnouncement | SalesforceTopicUserEvent | SalesforceUserAppMenuCustomization | SalesforceOrderShare | SalesforceTestSuiteMembership | SalesforceCaseContactRole | SalesforceContentNotification | SalesforceDashboard | SalesforceUser | SalesforceMacroHistory | SalesforceBusinessHours | SalesforceContentWorkspacePermission | SalesforceContractFeed | SalesforceCustomPermission | SalesforceMacroInstruction | SalesforceDocumentAttachmentMap | SalesforceContract | SalesforceContentTagSubscription | SalesforceSolutionHistory | SalesforceCspTrustedSite | SalesforceGrantedByLicense | SalesforceCronTrigger | SalesforceSetupAuditTrail | SalesforceKnowledgeableUser | SalesforceEmailMessageRelation | SalesforceOrgWideEmailAddress | SalesforceMatchingRule | SalesforceEmailServicesFunction | SalesforceLeadStatus | SalesforceCommunity | SalesforceSessionPermSetActivation | SalesforceAcceptedEventRelation | SalesforceProduct2 | SalesforceAuthConfigProviders | SalesforceQuickTextShare | SalesforceFolder | SalesforceApexTestResult | SalesforceOrgDeleteRequestShare | SalesforceFlowInterviewShare | SalesforceUserProvAccountStaging | SalesforceBusinessProcess | SalesforceSolution | SalesforceSiteHistory | SalesforceVote | SalesforceContractContactRole | SalesforceAssignmentRule | SalesforceNote | SalesforceCustomBrand | SalesforceDataAssessmentValueMetric | SalesforceReportFeed | SalesforceContentVersionHistory | SalesforceIdea | SalesforceCollaborationGroup | SalesforceOpportunity | SalesforceContentDocumentSubscription | SalesforceContactHistory | SalesforceListEmailRecipientSource | SalesforceNamedCredential | SalesforceTodayGoal | SalesforceOrganization | SalesforceTaskFeed | SalesforceOpportunityLineItem | SalesforceFlowRecordRelation | SalesforceAdditionalNumber | SalesforceCollaborationInvitation | SalesforcePartner | SalesforceEntitySubscription | SalesforceCategoryNode | SalesforceApexEmailNotification | SalesforceUserListView | SalesforceUserProvAccount | SalesforceProcessInstanceWorkitem | SalesforceAsset | SalesforceDatacloudOwnedEntity | SalesforceUserProvisioningRequestShare | SalesforceActionLinkGroupTemplate | SalesforceUserAppInfo | SalesforceAppMenuItem | SalesforceUserAppMenuCustomizationShare | SalesforceAssetHistory | SalesforceOpportunityHistory | SalesforceDashboardComponentFeed | SalesforcePeriod | SalesforceContentFolderLink | SalesforceFeedItem | SalesforceAccountShare | SalesforceApexClass | SalesforceDashboardFeed | SalesforceSiteFeed | SalesforceApexTrigger | SalesforceStampAssignment | SalesforceUserLogin | SalesforceCustomBrandAsset | SalesforceAccountFeed | SalesforceCustomPermissionDependency | SalesforceContentAsset | SalesforceMacroShare | SalesforceCollaborationGroupMemberRequest | SalesforceCampaign | SalesforceOrder | SalesforceOrderFeed | SalesforceOpportunityPartner | SalesforceAttachment | SalesforceForecastShare | SalesforceApexComponent | SalesforceLightningComponentResource | SalesforceApexPage | SalesforceCase | SalesforceProcessInstance | SalesforceContentUserSubscription | SalesforceUserLicense | SalesforceContentDistributionView | SalesforceUndecidedEventRelation | SalesforceBrandTemplate | SalesforceCaseComment | SalesforceStreamingChannelShare | SalesforcePlatformCachePartition | SalesforceAuthProvider
-
-"""Field that Record Types can be sorted by"""
-enum SalesforceRecordTypeSortByFieldEnum {
- ID
- NAME
- DEVELOPER_NAME
- NAMESPACE_PREFIX
- DESCRIPTION
- BUSINESS_PROCESS_ID
- SOBJECT_TYPE
- IS_ACTIVE
- CREATED_BY_ID
- CREATED_DATE
- LAST_MODIFIED_BY_ID
- LAST_MODIFIED_DATE
- SYSTEM_MODSTAMP
-}
-
-"""An edge in a connection."""
-type SalesforceRecordTypeEdge {
- """The item at the end of the edge."""
- node: SalesforceRecordType!
-
- """A cursor for use in pagination"""
- cursor: String!
-}
-
-"""Salesforce Record Types connection, for use in pagination."""
-type SalesforceRecordTypesConnection {
- """The count of all Record Type you could get from the connection."""
- totalCount: Int!
-
- """Pagination Information"""
- pageInfo: PageInfo!
-
- """List of Salesforce Record Types"""
- nodes: [SalesforceRecordType!]!
-
- """List of Record Type edges"""
- edges: [SalesforceRecordTypeEdge!]!
-}
-
-"""Business Process"""
-type SalesforceBusinessProcess implements OneGraphNode {
- """Business Process ID"""
- id: String!
-
- """Name"""
- name: String!
-
- """Namespace Prefix"""
- namespacePrefix: String
-
- """Description"""
- description: String
-
- """Entity Enumeration Or ID"""
- tableEnumOrId: String!
-
- """Active"""
- isActive: Boolean!
-
- """Created By ID"""
- createdById: String!
-
- """Created By ID"""
- createdBy: SalesforceUser!
-
- """Created Date"""
- createdDate: String!
-
- """Last Modified By ID"""
- lastModifiedById: String!
-
- """Last Modified By ID"""
- lastModifiedBy: SalesforceUser!
-
- """Last Modified Date"""
- lastModifiedDate: String!
-
- """System Modstamp"""
- systemModstamp: String!
-
- """Collection of Salesforce RecordType"""
- recordTypes(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceRecordTypeConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceRecordTypeSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceRecordTypeSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of RecordTypes to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceRecordTypesConnection
- customFields(
- """
- List of custom fields to return. By default, returns all custom fields.
- """
- fields: [String!]
- ): JSON!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-"""Record Type"""
-type SalesforceRecordType implements OneGraphNode {
- """Record Type ID"""
- id: String!
-
- """Name"""
- name: String!
-
- """Record Type Name"""
- developerName: String!
-
- """Namespace Prefix"""
- namespacePrefix: String
-
- """Description"""
- description: String
-
- """Business Process ID"""
- businessProcessId: String
-
- """Business Process ID"""
- businessProcess: SalesforceBusinessProcess
-
- """Sobject Type Name"""
- sobjectType: String!
-
- """Active"""
- isActive: Boolean!
-
- """Created By ID"""
- createdById: String!
-
- """Created By ID"""
- createdBy: SalesforceUser!
-
- """Created Date"""
- createdDate: String!
-
- """Last Modified By ID"""
- lastModifiedById: String!
-
- """Last Modified By ID"""
- lastModifiedBy: SalesforceUser!
-
- """Last Modified Date"""
- lastModifiedDate: String!
-
- """System Modstamp"""
- systemModstamp: String!
-
- """Collection of Salesforce Campaign"""
- campaigns(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceCampaignConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceCampaignSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceCampaignSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of Campaigns to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceCampaignsConnection
-
- """Collection of Salesforce ContentWorkspace"""
- contentWorkspaces(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceContentWorkspaceConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceContentWorkspaceSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceContentWorkspaceSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of ContentWorkspaces to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceContentWorkspacesConnection
- customFields(
- """
- List of custom fields to return. By default, returns all custom fields.
- """
- fields: [String!]
- ): JSON!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-"""Library"""
-type SalesforceContentWorkspace implements OneGraphNode {
- """Library ID"""
- id: String!
-
- """Name"""
- name: String!
-
- """Description"""
- description: String
-
- """Tag Model"""
- tagModel: String
-
- """Created By ID"""
- createdById: String!
-
- """Created By ID"""
- createdBy: SalesforceUser!
-
- """Created Date"""
- createdDate: String!
-
- """Last Modified By ID"""
- lastModifiedById: String!
-
- """Last Modified By ID"""
- lastModifiedBy: SalesforceUser!
-
- """System Modstamp"""
- systemModstamp: String!
-
- """Last Modified Date"""
- lastModifiedDate: String!
-
- """Record Type ID"""
- defaultRecordTypeId: String
-
- """Record Type ID"""
- defaultRecordType: SalesforceRecordType
-
- """Restrict Record Types"""
- isRestrictContentTypes: Boolean!
-
- """Restrict Linked Record Types"""
- isRestrictLinkedContentTypes: Boolean!
-
- """Library Type"""
- workspaceType: String
-
- """Add Creator Membership"""
- shouldAddCreatorMembership: Boolean!
-
- """Last Activity"""
- lastWorkspaceActivityDate: String
-
- """Content Folder ID"""
- rootContentFolderId: String
-
- """Content Folder ID"""
- rootContentFolder: SalesforceContentFolder
-
- """Namespace Prefix"""
- namespacePrefix: String
-
- """Unique Name"""
- developerName: String
-
- """Collection of Salesforce ContentDocument"""
- contentDocuments(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceContentDocumentConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceContentDocumentSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceContentDocumentSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of ContentDocuments to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceContentDocumentsConnection
-
- """Collection of Salesforce ContentDocumentLink"""
- contentDocumentLinks(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceContentDocumentLinkConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceContentDocumentLinkSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceContentDocumentLinkSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """
- Number of ContentDocumentLinks to fetch. Defaults to 10. Maximum is 60.
- """
- first: Int
- ): SalesforceContentDocumentLinksConnection
-
- """Collection of Salesforce ContentFolderLink"""
- contentFolderLinks(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceContentFolderLinkConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceContentFolderLinkSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceContentFolderLinkSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of ContentFolderLinks to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceContentFolderLinksConnection
-
- """Collection of Salesforce ContentNotification"""
- contentNotifications(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceContentNotificationConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceContentNotificationSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceContentNotificationSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """
- Number of ContentNotifications to fetch. Defaults to 10. Maximum is 60.
- """
- first: Int
- ): SalesforceContentNotificationsConnection
-
- """Collection of Salesforce ContentVersion"""
- contentVersions(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceContentVersionConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceContentVersionSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceContentVersionSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of ContentVersions to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceContentVersionsConnection
-
- """Collection of Salesforce ContentWorkspaceDoc"""
- contentWorkspaceDocs(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceContentWorkspaceDocConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceContentWorkspaceDocSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceContentWorkspaceDocSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """
- Number of ContentWorkspaceDocs to fetch. Defaults to 10. Maximum is 60.
- """
- first: Int
- ): SalesforceContentWorkspaceDocsConnection
-
- """Collection of Salesforce ContentWorkspaceMember"""
- contentWorkspaceMembers(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceContentWorkspaceMemberConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceContentWorkspaceMemberSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceContentWorkspaceMemberSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """
- Number of ContentWorkspaceMembers to fetch. Defaults to 10. Maximum is 60.
- """
- first: Int
- ): SalesforceContentWorkspaceMembersConnection
-
- """Collection of Salesforce ContentWorkspaceSubscription"""
- contentWorkspaceSubscriptions(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceContentWorkspaceSubscriptionConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceContentWorkspaceSubscriptionSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceContentWorkspaceSubscriptionSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """
- Number of ContentWorkspaceSubscriptions to fetch. Defaults to 10. Maximum is 60.
- """
- first: Int
- ): SalesforceContentWorkspaceSubscriptionsConnection
- customFields(
- """
- List of custom fields to return. By default, returns all custom fields.
- """
- fields: [String!]
- ): JSON!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-"""Content Document"""
-type SalesforceContentDocument implements OneGraphNode {
- """ContentDocument ID"""
- id: String!
-
- """Created By ID"""
- createdById: String!
-
- """Created By ID"""
- createdBy: SalesforceUser!
-
- """Created"""
- createdDate: String!
-
- """Last Modified By ID"""
- lastModifiedById: String!
-
- """Last Modified By ID"""
- lastModifiedBy: SalesforceUser!
-
- """Last Modified Date"""
- lastModifiedDate: String!
-
- """Is Archived"""
- isArchived: Boolean!
-
- """User ID"""
- archivedById: String
-
- """User ID"""
- archivedBy: SalesforceUser
-
- """Archived Date"""
- archivedDate: String
-
- """Is Deleted"""
- isDeleted: Boolean!
-
- """Owner ID"""
- ownerId: String!
-
- """Owner ID"""
- owner: SalesforceUser!
-
- """System Modstamp"""
- systemModstamp: String!
-
- """Title"""
- title: String!
-
- """Publish Status"""
- publishStatus: String!
-
- """Latest Published Version ID"""
- latestPublishedVersionId: String
-
- """Latest Published Version ID"""
- latestPublishedVersion: SalesforceContentVersion
-
- """Parent ID"""
- parentId: String
-
- """Parent ID"""
- parent: SalesforceContentWorkspace
-
- """Last Viewed Date"""
- lastViewedDate: String
-
- """Last Referenced Date"""
- lastReferencedDate: String
-
- """Description"""
- description: String
-
- """Size"""
- contentSize: Int
-
- """File Type"""
- fileType: String
-
- """File Extension"""
- fileExtension: String
-
- """Prevent others from sharing and unsharing"""
- sharingOption: String
-
- """File Privacy on Records"""
- sharingPrivacy: String
-
- """Content Modified Date"""
- contentModifiedDate: String
-
- """Asset File ID"""
- contentAssetId: String
-
- """Asset File ID"""
- contentAsset: SalesforceContentAsset
-
- """Collection of Salesforce ContentAsset"""
- contentAssets(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceContentAssetConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceContentAssetSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceContentAssetSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of ContentAssets to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceContentAssetsConnection
-
- """Collection of Salesforce ContentDistribution"""
- contentDistributions(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceContentDistributionConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceContentDistributionSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceContentDistributionSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """
- Number of ContentDistributions to fetch. Defaults to 10. Maximum is 60.
- """
- first: Int
- ): SalesforceContentDistributionsConnection
-
- """Collection of Salesforce ContentDocumentFeed"""
- feeds(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceContentDocumentFeedConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceContentDocumentFeedSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceContentDocumentFeedSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """
- Number of ContentDocumentFeeds to fetch. Defaults to 10. Maximum is 60.
- """
- first: Int
- ): SalesforceContentDocumentFeedsConnection
-
- """Collection of Salesforce ContentDocumentHistory"""
- histories(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceContentDocumentHistoryConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceContentDocumentHistorySortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceContentDocumentHistorySortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """
- Number of ContentDocumentHistories to fetch. Defaults to 10. Maximum is 60.
- """
- first: Int
- ): SalesforceContentDocumentHistorysConnection
-
- """Collection of Salesforce ContentDocumentLink"""
- contentDocumentLinks(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceContentDocumentLinkConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceContentDocumentLinkSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceContentDocumentLinkSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """
- Number of ContentDocumentLinks to fetch. Defaults to 10. Maximum is 60.
- """
- first: Int
- ): SalesforceContentDocumentLinksConnection
-
- """Collection of Salesforce ContentDocumentSubscription"""
- contentDocumentSubscriptions(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceContentDocumentSubscriptionConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceContentDocumentSubscriptionSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceContentDocumentSubscriptionSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """
- Number of ContentDocumentSubscriptions to fetch. Defaults to 10. Maximum is 60.
- """
- first: Int
- ): SalesforceContentDocumentSubscriptionsConnection
-
- """Collection of Salesforce ContentFolderMember"""
- contentFolderMembers(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceContentFolderMemberConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceContentFolderMemberSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceContentFolderMemberSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """
- Number of ContentFolderMembers to fetch. Defaults to 10. Maximum is 60.
- """
- first: Int
- ): SalesforceContentFolderMembersConnection
-
- """Collection of Salesforce ContentNotification"""
- contentNotifications(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceContentNotificationConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceContentNotificationSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceContentNotificationSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """
- Number of ContentNotifications to fetch. Defaults to 10. Maximum is 60.
- """
- first: Int
- ): SalesforceContentNotificationsConnection
-
- """Collection of Salesforce ContentVersion"""
- contentVersions(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceContentVersionConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceContentVersionSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceContentVersionSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of ContentVersions to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceContentVersionsConnection
-
- """Collection of Salesforce ContentVersionComment"""
- contentVersionComments(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceContentVersionCommentConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceContentVersionCommentSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceContentVersionCommentSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """
- Number of ContentVersionComments to fetch. Defaults to 10. Maximum is 60.
- """
- first: Int
- ): SalesforceContentVersionCommentsConnection
-
- """Collection of Salesforce ContentWorkspaceDoc"""
- contentWorkspaceDocs(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceContentWorkspaceDocConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceContentWorkspaceDocSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceContentWorkspaceDocSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """
- Number of ContentWorkspaceDocs to fetch. Defaults to 10. Maximum is 60.
- """
- first: Int
- ): SalesforceContentWorkspaceDocsConnection
-
- """Collection of Salesforce EntitySubscription"""
- feedSubscriptionsForEntity(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceEntitySubscriptionConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceEntitySubscriptionSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceEntitySubscriptionSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of EntitySubscriptions to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceEntitySubscriptionsConnection
-
- """Collection of Salesforce FeedAttachment"""
- feedAttachments(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceFeedAttachmentConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceFeedAttachmentSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceFeedAttachmentSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of FeedAttachments to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceFeedAttachmentsConnection
-
- """Collection of Salesforce FeedComment"""
- feedComments(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceFeedCommentConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceFeedCommentSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceFeedCommentSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of FeedComments to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceFeedCommentsConnection
-
- """Collection of Salesforce FeedItem"""
- feedItems(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceFeedItemConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceFeedItemSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceFeedItemSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of FeedItems to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceFeedItemsConnection
-
- """Collection of Salesforce FlowRecordRelation"""
- flowRecordRelations(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceFlowRecordRelationConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceFlowRecordRelationSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceFlowRecordRelationsConnection
-
- """Collection of Salesforce TopicAssignment"""
- topicAssignments(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceTopicAssignmentConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceTopicAssignmentSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceTopicAssignmentSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of TopicAssignments to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceTopicAssignmentsConnection
- customFields(
- """
- List of custom fields to return. By default, returns all custom fields.
- """
- fields: [String!]
- ): JSON!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-"""Content Version"""
-type SalesforceContentVersion implements OneGraphNode {
- """ContentVersion ID"""
- id: String!
-
- """ContentDocument ID"""
- contentDocumentId: String!
-
- """ContentDocument ID"""
- contentDocument: SalesforceContentDocument!
-
- """Is Latest"""
- isLatest: Boolean!
-
- """Content URL"""
- contentUrl: String
-
- """Content Body ID"""
- contentBodyId: String
-
- """Content Body ID"""
- contentBody: SalesforceContentBody
-
- """Version Number"""
- versionNumber: String
-
- """Title"""
- title: String!
-
- """Description"""
- description: String
-
- """Reason For Change"""
- reasonForChange: String
-
- """Prevent others from sharing and unsharing"""
- sharingOption: String!
-
- """File Privacy on Records"""
- sharingPrivacy: String!
-
- """Path On Client"""
- pathOnClient: String
-
- """Rating Count"""
- ratingCount: Int
-
- """Is Deleted"""
- isDeleted: Boolean!
-
- """Content Modified Date"""
- contentModifiedDate: String
-
- """User ID"""
- contentModifiedById: String
-
- """User ID"""
- contentModifiedBy: SalesforceUser
-
- """Positive Rating Count"""
- positiveRatingCount: Int
-
- """Negative Rating Count"""
- negativeRatingCount: Int
-
- """Featured Content Boost"""
- featuredContentBoost: Int
-
- """Featured Content Date"""
- featuredContentDate: String
-
- """Owner ID"""
- ownerId: String!
-
- """Owner ID"""
- owner: SalesforceUser!
-
- """Created By ID"""
- createdById: String!
-
- """Created By ID"""
- createdBy: SalesforceUser!
-
- """Created Date"""
- createdDate: String!
-
- """Last Modified By ID"""
- lastModifiedById: String!
-
- """Last Modified By ID"""
- lastModifiedBy: SalesforceUser!
-
- """Last Modified Date"""
- lastModifiedDate: String!
-
- """System Modstamp"""
- systemModstamp: String!
-
- """Tags"""
- tagCsv: String
-
- """File Type"""
- fileType: String!
-
- """Publish Status"""
- publishStatus: String!
-
- """Version Data"""
- versionData: String
-
- """Size"""
- contentSize: Int
-
- """File Extension"""
- fileExtension: String
-
- """First Publish Location ID"""
- firstPublishLocationId: String
-
- """First Publish Location ID"""
- firstPublishLocation: SalesforceContentVersionFirstPublishLocationUnion
-
- """Content Origin"""
- origin: String!
-
- """Content Location"""
- contentLocation: String!
-
- """Text Preview"""
- textPreview: String
-
- """External Document Info1"""
- externalDocumentInfo1: String
-
- """External Document Info2"""
- externalDocumentInfo2: String
-
- """External Data Source ID"""
- externalDataSourceId: String
-
- """External Data Source ID"""
- externalDataSource: SalesforceExternalDataSource
-
- """Checksum"""
- checksum: String
-
- """Major Version"""
- isMajorVersion: Boolean!
-
- """Asset File Enabled"""
- isAssetEnabled: Boolean!
-
- """Collection of Salesforce AccountFeed"""
- accountFeeds(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceAccountFeedConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceAccountFeedSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceAccountFeedSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of AccountFeeds to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceAccountFeedsConnection
-
- """Collection of Salesforce AssetFeed"""
- assetFeeds(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceAssetFeedConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceAssetFeedSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceAssetFeedSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of AssetFeeds to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceAssetFeedsConnection
-
- """Collection of Salesforce AssetRelationshipFeed"""
- assetRelationshipFeeds(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceAssetRelationshipFeedConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceAssetRelationshipFeedSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceAssetRelationshipFeedSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """
- Number of AssetRelationshipFeeds to fetch. Defaults to 10. Maximum is 60.
- """
- first: Int
- ): SalesforceAssetRelationshipFeedsConnection
-
- """Collection of Salesforce CampaignFeed"""
- campaignFeeds(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceCampaignFeedConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceCampaignFeedSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceCampaignFeedSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of CampaignFeeds to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceCampaignFeedsConnection
-
- """Collection of Salesforce CaseFeed"""
- caseFeeds(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceCaseFeedConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceCaseFeedSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceCaseFeedSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of CaseFeeds to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceCaseFeedsConnection
-
- """Collection of Salesforce CollaborationGroupFeed"""
- collaborationGroupFeeds(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceCollaborationGroupFeedConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceCollaborationGroupFeedSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceCollaborationGroupFeedSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """
- Number of CollaborationGroupFeeds to fetch. Defaults to 10. Maximum is 60.
- """
- first: Int
- ): SalesforceCollaborationGroupFeedsConnection
-
- """Collection of Salesforce ContactFeed"""
- contactFeeds(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceContactFeedConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceContactFeedSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceContactFeedSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of ContactFeeds to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceContactFeedsConnection
-
- """Collection of Salesforce ContentDistribution"""
- contentDistributions(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceContentDistributionConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceContentDistributionSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceContentDistributionSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """
- Number of ContentDistributions to fetch. Defaults to 10. Maximum is 60.
- """
- first: Int
- ): SalesforceContentDistributionsConnection
-
- """Collection of Salesforce ContentDocument"""
- contentDocuments(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceContentDocumentConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceContentDocumentSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceContentDocumentSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of ContentDocuments to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceContentDocumentsConnection
-
- """Collection of Salesforce ContentDocumentFeed"""
- contentDocumentFeeds(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceContentDocumentFeedConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceContentDocumentFeedSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceContentDocumentFeedSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """
- Number of ContentDocumentFeeds to fetch. Defaults to 10. Maximum is 60.
- """
- first: Int
- ): SalesforceContentDocumentFeedsConnection
-
- """Collection of Salesforce ContentNotification"""
- contentNotifications(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceContentNotificationConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceContentNotificationSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceContentNotificationSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """
- Number of ContentNotifications to fetch. Defaults to 10. Maximum is 60.
- """
- first: Int
- ): SalesforceContentNotificationsConnection
-
- """Collection of Salesforce ContentVersionComment"""
- contentVersionComments(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceContentVersionCommentConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceContentVersionCommentSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceContentVersionCommentSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """
- Number of ContentVersionComments to fetch. Defaults to 10. Maximum is 60.
- """
- first: Int
- ): SalesforceContentVersionCommentsConnection
-
- """Collection of Salesforce ContentVersionHistory"""
- histories(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceContentVersionHistoryConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceContentVersionHistorySortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceContentVersionHistorySortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """
- Number of ContentVersionHistories to fetch. Defaults to 10. Maximum is 60.
- """
- first: Int
- ): SalesforceContentVersionHistorysConnection
-
- """Collection of Salesforce ContentVersionRating"""
- contentVersionRatings(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceContentVersionRatingConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceContentVersionRatingSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceContentVersionRatingSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """
- Number of ContentVersionRatings to fetch. Defaults to 10. Maximum is 60.
- """
- first: Int
- ): SalesforceContentVersionRatingsConnection
-
- """Collection of Salesforce ContractFeed"""
- contractFeeds(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceContractFeedConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceContractFeedSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceContractFeedSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of ContractFeeds to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceContractFeedsConnection
-
- """Collection of Salesforce DashboardComponentFeed"""
- dashboardComponentFeeds(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceDashboardComponentFeedConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceDashboardComponentFeedSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceDashboardComponentFeedSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """
- Number of DashboardComponentFeeds to fetch. Defaults to 10. Maximum is 60.
- """
- first: Int
- ): SalesforceDashboardComponentFeedsConnection
-
- """Collection of Salesforce DashboardFeed"""
- dashboardFeeds(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceDashboardFeedConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceDashboardFeedSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceDashboardFeedSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of DashboardFeeds to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceDashboardFeedsConnection
-
- """Collection of Salesforce EventFeed"""
- eventFeeds(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceEventFeedConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceEventFeedSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceEventFeedSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of EventFeeds to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceEventFeedsConnection
-
- """Collection of Salesforce FeedAttachment"""
- feedAttachments(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceFeedAttachmentConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceFeedAttachmentSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceFeedAttachmentSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of FeedAttachments to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceFeedAttachmentsConnection
-
- """Collection of Salesforce FeedComment"""
- feedComments(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceFeedCommentConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceFeedCommentSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceFeedCommentSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of FeedComments to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceFeedCommentsConnection
-
- """Collection of Salesforce FeedItem"""
- feedItems(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceFeedItemConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceFeedItemSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceFeedItemSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of FeedItems to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceFeedItemsConnection
-
- """Collection of Salesforce FlowRecordRelation"""
- flowRecordRelations(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceFlowRecordRelationConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceFlowRecordRelationSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceFlowRecordRelationsConnection
-
- """Collection of Salesforce LeadFeed"""
- leadFeeds(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceLeadFeedConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceLeadFeedSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceLeadFeedSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of LeadFeeds to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceLeadFeedsConnection
-
- """Collection of Salesforce OpportunityFeed"""
- opportunityFeeds(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceOpportunityFeedConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceOpportunityFeedSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceOpportunityFeedSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of OpportunityFeeds to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceOpportunityFeedsConnection
-
- """Collection of Salesforce OrderFeed"""
- orderFeeds(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceOrderFeedConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceOrderFeedSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceOrderFeedSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of OrderFeeds to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceOrderFeedsConnection
-
- """Collection of Salesforce OrderItemFeed"""
- orderItemFeeds(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceOrderItemFeedConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceOrderItemFeedSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceOrderItemFeedSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of OrderItemFeeds to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceOrderItemFeedsConnection
-
- """Collection of Salesforce Product2Feed"""
- product2Feeds(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceProduct2FeedConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceProduct2FeedSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceProduct2FeedSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of Product2Feeds to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceProduct2FeedsConnection
-
- """Collection of Salesforce ReportFeed"""
- reportFeeds(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceReportFeedConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceReportFeedSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceReportFeedSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of ReportFeeds to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceReportFeedsConnection
-
- """Collection of Salesforce SiteFeed"""
- siteFeeds(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceSiteFeedConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceSiteFeedSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceSiteFeedSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of SiteFeeds to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceSiteFeedsConnection
-
- """Collection of Salesforce SolutionFeed"""
- solutionFeeds(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceSolutionFeedConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceSolutionFeedSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceSolutionFeedSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of SolutionFeeds to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceSolutionFeedsConnection
-
- """Collection of Salesforce TaskFeed"""
- taskFeeds(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceTaskFeedConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceTaskFeedSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceTaskFeedSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of TaskFeeds to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceTaskFeedsConnection
-
- """Collection of Salesforce TopicFeed"""
- topicFeeds(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceTopicFeedConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceTopicFeedSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceTopicFeedSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of TopicFeeds to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceTopicFeedsConnection
-
- """Collection of Salesforce UserFeed"""
- userFeeds(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceUserFeedConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceUserFeedSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceUserFeedSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of UserFeeds to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceUserFeedsConnection
- customFields(
- """
- List of custom fields to return. By default, returns all custom fields.
- """
- fields: [String!]
- ): JSON!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-"""Salesforce Content Versions connection, for use in pagination."""
-type SalesforceContentVersionsConnection {
- """The count of all Content Version you could get from the connection."""
- totalCount: Int!
-
- """Pagination Information"""
- pageInfo: PageInfo!
-
- """List of Salesforce Content Versions"""
- nodes: [SalesforceContentVersion!]!
-
- """List of Content Version edges"""
- edges: [SalesforceContentVersionEdge!]!
-}
-
-"""
-A filter to be used against ContentAsset object types. All fields are combined with a logical ‘and.’
-"""
-input SalesforceContentAssetConnectionFilter {
- """Filter against custom fields."""
- customField: SalesforceCustomFieldFilter
-
- """Filter by the ContentAsset's contentDocument relation."""
- contentDocument: SalesforceContentDocumentConnectionFilter
-
- """Filter by the ContentAsset's lastModifiedBy relation."""
- lastModifiedBy: SalesforceUserConnectionFilter
-
- """Filter by the ContentAsset's createdBy relation."""
- createdBy: SalesforceUserConnectionFilter
-
- """Filter by the ContentAsset's id field"""
- id: SalesforceIdFilter
-
- """Filter by the ContentAsset's isDeleted field"""
- isDeleted: SalesforceBooleanFilter
-
- """Filter by the ContentAsset's developerName field"""
- developerName: SalesforceStringFilter
-
- """Filter by the ContentAsset's language field"""
- language: SalesforceStringFilter
-
- """Filter by the ContentAsset's masterLabel field"""
- masterLabel: SalesforceStringFilter
-
- """Filter by the ContentAsset's namespacePrefix field"""
- namespacePrefix: SalesforceStringFilter
-
- """Filter by the ContentAsset's createdDate field"""
- createdDate: SalesforceDateTimeFilter
-
- """Filter by the ContentAsset's createdById field"""
- createdById: SalesforceIdFilter
-
- """Filter by the ContentAsset's lastModifiedDate field"""
- lastModifiedDate: SalesforceDateTimeFilter
-
- """Filter by the ContentAsset's lastModifiedById field"""
- lastModifiedById: SalesforceIdFilter
-
- """Filter by the ContentAsset's systemModstamp field"""
- systemModstamp: SalesforceDateTimeFilter
-
- """Filter by the ContentAsset's contentDocumentId field"""
- contentDocumentId: SalesforceIdFilter
-
- """Filter by the ContentAsset's isVisibleByExternalUsers field"""
- isVisibleByExternalUsers: SalesforceBooleanFilter
-
- """Checks for any expressions in this list."""
- or: [SalesforceContentAssetConnectionFilter!]
-
- """Checks for all expressions in this list."""
- and: [SalesforceContentAssetConnectionFilter!]
-}
-
-"""
-A filter to be used against ContentFolder object types. All fields are combined with a logical ‘and.’
-"""
-input SalesforceContentFolderConnectionFilter {
- """Filter against custom fields."""
- customField: SalesforceCustomFieldFilter
-
- """Filter by the ContentFolder's parentContentFolder relation."""
- parentContentFolder: SalesforceContentFolderConnectionFilter
-
- """Filter by the ContentFolder's lastModifiedBy relation."""
- lastModifiedBy: SalesforceUserConnectionFilter
-
- """Filter by the ContentFolder's createdBy relation."""
- createdBy: SalesforceUserConnectionFilter
-
- """Filter by the ContentFolder's id field"""
- id: SalesforceIdFilter
-
- """Filter by the ContentFolder's isDeleted field"""
- isDeleted: SalesforceBooleanFilter
-
- """Filter by the ContentFolder's name field"""
- name: SalesforceStringFilter
-
- """Filter by the ContentFolder's createdDate field"""
- createdDate: SalesforceDateTimeFilter
-
- """Filter by the ContentFolder's createdById field"""
- createdById: SalesforceIdFilter
-
- """Filter by the ContentFolder's lastModifiedDate field"""
- lastModifiedDate: SalesforceDateTimeFilter
-
- """Filter by the ContentFolder's lastModifiedById field"""
- lastModifiedById: SalesforceIdFilter
-
- """Filter by the ContentFolder's systemModstamp field"""
- systemModstamp: SalesforceDateTimeFilter
-
- """Filter by the ContentFolder's parentContentFolderId field"""
- parentContentFolderId: SalesforceIdFilter
-
- """Checks for any expressions in this list."""
- or: [SalesforceContentFolderConnectionFilter!]
-
- """Checks for all expressions in this list."""
- and: [SalesforceContentFolderConnectionFilter!]
-}
-
-"""
-A filter to be used against BusinessProcess object types. All fields are combined with a logical ‘and.’
-"""
-input SalesforceBusinessProcessConnectionFilter {
- """Filter against custom fields."""
- customField: SalesforceCustomFieldFilter
-
- """Filter by the BusinessProcess's lastModifiedBy relation."""
- lastModifiedBy: SalesforceUserConnectionFilter
-
- """Filter by the BusinessProcess's createdBy relation."""
- createdBy: SalesforceUserConnectionFilter
-
- """Filter by the BusinessProcess's id field"""
- id: SalesforceIdFilter
-
- """Filter by the BusinessProcess's name field"""
- name: SalesforceStringFilter
-
- """Filter by the BusinessProcess's namespacePrefix field"""
- namespacePrefix: SalesforceStringFilter
-
- """Filter by the BusinessProcess's description field"""
- description: SalesforceStringFilter
-
- """Filter by the BusinessProcess's tableEnumOrId field"""
- tableEnumOrId: SalesforceStringFilter
-
- """Filter by the BusinessProcess's isActive field"""
- isActive: SalesforceBooleanFilter
-
- """Filter by the BusinessProcess's createdById field"""
- createdById: SalesforceIdFilter
-
- """Filter by the BusinessProcess's createdDate field"""
- createdDate: SalesforceDateTimeFilter
-
- """Filter by the BusinessProcess's lastModifiedById field"""
- lastModifiedById: SalesforceIdFilter
-
- """Filter by the BusinessProcess's lastModifiedDate field"""
- lastModifiedDate: SalesforceDateTimeFilter
-
- """Filter by the BusinessProcess's systemModstamp field"""
- systemModstamp: SalesforceDateTimeFilter
-
- """Checks for any expressions in this list."""
- or: [SalesforceBusinessProcessConnectionFilter!]
-
- """Checks for all expressions in this list."""
- and: [SalesforceBusinessProcessConnectionFilter!]
-}
-
-"""
-A filter to be used against RecordType object types. All fields are combined with a logical ‘and.’
-"""
-input SalesforceRecordTypeConnectionFilter {
- """Filter against custom fields."""
- customField: SalesforceCustomFieldFilter
-
- """Filter by the RecordType's lastModifiedBy relation."""
- lastModifiedBy: SalesforceUserConnectionFilter
-
- """Filter by the RecordType's createdBy relation."""
- createdBy: SalesforceUserConnectionFilter
-
- """Filter by the RecordType's businessProcess relation."""
- businessProcess: SalesforceBusinessProcessConnectionFilter
-
- """Filter by the RecordType's id field"""
- id: SalesforceIdFilter
-
- """Filter by the RecordType's name field"""
- name: SalesforceStringFilter
-
- """Filter by the RecordType's developerName field"""
- developerName: SalesforceStringFilter
-
- """Filter by the RecordType's namespacePrefix field"""
- namespacePrefix: SalesforceStringFilter
-
- """Filter by the RecordType's description field"""
- description: SalesforceStringFilter
-
- """Filter by the RecordType's businessProcessId field"""
- businessProcessId: SalesforceIdFilter
-
- """Filter by the RecordType's sobjectType field"""
- sobjectType: SalesforceStringFilter
-
- """Filter by the RecordType's isActive field"""
- isActive: SalesforceBooleanFilter
-
- """Filter by the RecordType's createdById field"""
- createdById: SalesforceIdFilter
-
- """Filter by the RecordType's createdDate field"""
- createdDate: SalesforceDateTimeFilter
-
- """Filter by the RecordType's lastModifiedById field"""
- lastModifiedById: SalesforceIdFilter
-
- """Filter by the RecordType's lastModifiedDate field"""
- lastModifiedDate: SalesforceDateTimeFilter
-
- """Filter by the RecordType's systemModstamp field"""
- systemModstamp: SalesforceDateTimeFilter
-
- """Checks for any expressions in this list."""
- or: [SalesforceRecordTypeConnectionFilter!]
-
- """Checks for all expressions in this list."""
- and: [SalesforceRecordTypeConnectionFilter!]
-}
-
-"""
-A filter to be used against ContentWorkspace object types. All fields are combined with a logical ‘and.’
-"""
-input SalesforceContentWorkspaceConnectionFilter {
- """Filter against custom fields."""
- customField: SalesforceCustomFieldFilter
-
- """Filter by the ContentWorkspace's rootContentFolder relation."""
- rootContentFolder: SalesforceContentFolderConnectionFilter
-
- """Filter by the ContentWorkspace's defaultRecordType relation."""
- defaultRecordType: SalesforceRecordTypeConnectionFilter
-
- """Filter by the ContentWorkspace's lastModifiedBy relation."""
- lastModifiedBy: SalesforceUserConnectionFilter
-
- """Filter by the ContentWorkspace's createdBy relation."""
- createdBy: SalesforceUserConnectionFilter
-
- """Filter by the ContentWorkspace's id field"""
- id: SalesforceIdFilter
-
- """Filter by the ContentWorkspace's name field"""
- name: SalesforceStringFilter
-
- """Filter by the ContentWorkspace's description field"""
- description: SalesforceStringFilter
-
- """Filter by the ContentWorkspace's tagModel field"""
- tagModel: SalesforceStringFilter
-
- """Filter by the ContentWorkspace's createdById field"""
- createdById: SalesforceIdFilter
-
- """Filter by the ContentWorkspace's createdDate field"""
- createdDate: SalesforceDateTimeFilter
-
- """Filter by the ContentWorkspace's lastModifiedById field"""
- lastModifiedById: SalesforceIdFilter
-
- """Filter by the ContentWorkspace's systemModstamp field"""
- systemModstamp: SalesforceDateTimeFilter
-
- """Filter by the ContentWorkspace's lastModifiedDate field"""
- lastModifiedDate: SalesforceDateTimeFilter
-
- """Filter by the ContentWorkspace's defaultRecordTypeId field"""
- defaultRecordTypeId: SalesforceIdFilter
-
- """Filter by the ContentWorkspace's isRestrictContentTypes field"""
- isRestrictContentTypes: SalesforceBooleanFilter
-
- """Filter by the ContentWorkspace's isRestrictLinkedContentTypes field"""
- isRestrictLinkedContentTypes: SalesforceBooleanFilter
-
- """Filter by the ContentWorkspace's workspaceType field"""
- workspaceType: SalesforceStringFilter
-
- """Filter by the ContentWorkspace's rootContentFolderId field"""
- rootContentFolderId: SalesforceIdFilter
-
- """Filter by the ContentWorkspace's namespacePrefix field"""
- namespacePrefix: SalesforceStringFilter
-
- """Filter by the ContentWorkspace's developerName field"""
- developerName: SalesforceStringFilter
-
- """Checks for any expressions in this list."""
- or: [SalesforceContentWorkspaceConnectionFilter!]
-
- """Checks for all expressions in this list."""
- and: [SalesforceContentWorkspaceConnectionFilter!]
-}
-
-"""
-A filter to be used against StaticResource object types. All fields are combined with a logical ‘and.’
-"""
-input SalesforceStaticResourceConnectionFilter {
- """Filter against custom fields."""
- customField: SalesforceCustomFieldFilter
-
- """Filter by the StaticResource's lastModifiedBy relation."""
- lastModifiedBy: SalesforceUserConnectionFilter
-
- """Filter by the StaticResource's createdBy relation."""
- createdBy: SalesforceUserConnectionFilter
-
- """Filter by the StaticResource's id field"""
- id: SalesforceIdFilter
-
- """Filter by the StaticResource's namespacePrefix field"""
- namespacePrefix: SalesforceStringFilter
-
- """Filter by the StaticResource's name field"""
- name: SalesforceStringFilter
-
- """Filter by the StaticResource's contentType field"""
- contentType: SalesforceStringFilter
-
- """Filter by the StaticResource's bodyLength field"""
- bodyLength: SalesforceIntFilter
-
- """Filter by the StaticResource's description field"""
- description: SalesforceStringFilter
-
- """Filter by the StaticResource's createdDate field"""
- createdDate: SalesforceDateTimeFilter
-
- """Filter by the StaticResource's createdById field"""
- createdById: SalesforceIdFilter
-
- """Filter by the StaticResource's lastModifiedDate field"""
- lastModifiedDate: SalesforceDateTimeFilter
-
- """Filter by the StaticResource's lastModifiedById field"""
- lastModifiedById: SalesforceIdFilter
-
- """Filter by the StaticResource's systemModstamp field"""
- systemModstamp: SalesforceDateTimeFilter
-
- """Filter by the StaticResource's cacheControl field"""
- cacheControl: SalesforceStringFilter
-
- """Checks for any expressions in this list."""
- or: [SalesforceStaticResourceConnectionFilter!]
-
- """Checks for all expressions in this list."""
- and: [SalesforceStaticResourceConnectionFilter!]
-}
-
-"""
-A filter to be used against ApexClass object types. All fields are combined with a logical ‘and.’
-"""
-input SalesforceApexClassConnectionFilter {
- """Filter against custom fields."""
- customField: SalesforceCustomFieldFilter
-
- """Filter by the ApexClass's lastModifiedBy relation."""
- lastModifiedBy: SalesforceUserConnectionFilter
-
- """Filter by the ApexClass's createdBy relation."""
- createdBy: SalesforceUserConnectionFilter
-
- """Filter by the ApexClass's id field"""
- id: SalesforceIdFilter
-
- """Filter by the ApexClass's namespacePrefix field"""
- namespacePrefix: SalesforceStringFilter
-
- """Filter by the ApexClass's name field"""
- name: SalesforceStringFilter
-
- """Filter by the ApexClass's apiVersion field"""
- apiVersion: SalesforceFloatFilter
-
- """Filter by the ApexClass's status field"""
- status: SalesforceStringFilter
-
- """Filter by the ApexClass's isValid field"""
- isValid: SalesforceBooleanFilter
-
- """Filter by the ApexClass's bodyCrc field"""
- bodyCrc: SalesforceFloatFilter
-
- """Filter by the ApexClass's lengthWithoutComments field"""
- lengthWithoutComments: SalesforceIntFilter
-
- """Filter by the ApexClass's createdDate field"""
- createdDate: SalesforceDateTimeFilter
-
- """Filter by the ApexClass's createdById field"""
- createdById: SalesforceIdFilter
-
- """Filter by the ApexClass's lastModifiedDate field"""
- lastModifiedDate: SalesforceDateTimeFilter
-
- """Filter by the ApexClass's lastModifiedById field"""
- lastModifiedById: SalesforceIdFilter
-
- """Filter by the ApexClass's systemModstamp field"""
- systemModstamp: SalesforceDateTimeFilter
-
- """Checks for any expressions in this list."""
- or: [SalesforceApexClassConnectionFilter!]
-
- """Checks for all expressions in this list."""
- and: [SalesforceApexClassConnectionFilter!]
-}
-
-"""
-A filter to be used against AuthProvider object types. All fields are combined with a logical ‘and.’
-"""
-input SalesforceAuthProviderConnectionFilter {
- """Filter against custom fields."""
- customField: SalesforceCustomFieldFilter
-
- """Filter by the AuthProvider's plugin relation."""
- plugin: SalesforceApexClassConnectionFilter
-
- """Filter by the AuthProvider's executionUser relation."""
- executionUser: SalesforceUserConnectionFilter
-
- """Filter by the AuthProvider's registrationHandler relation."""
- registrationHandler: SalesforceApexClassConnectionFilter
-
- """Filter by the AuthProvider's id field"""
- id: SalesforceIdFilter
-
- """Filter by the AuthProvider's createdDate field"""
- createdDate: SalesforceDateTimeFilter
-
- """Filter by the AuthProvider's providerType field"""
- providerType: SalesforceStringFilter
-
- """Filter by the AuthProvider's friendlyName field"""
- friendlyName: SalesforceStringFilter
-
- """Filter by the AuthProvider's developerName field"""
- developerName: SalesforceStringFilter
-
- """Filter by the AuthProvider's registrationHandlerId field"""
- registrationHandlerId: SalesforceIdFilter
-
- """Filter by the AuthProvider's executionUserId field"""
- executionUserId: SalesforceIdFilter
-
- """Filter by the AuthProvider's consumerKey field"""
- consumerKey: SalesforceStringFilter
-
- """Filter by the AuthProvider's errorUrl field"""
- errorUrl: SalesforceStringFilter
-
- """Filter by the AuthProvider's authorizeUrl field"""
- authorizeUrl: SalesforceStringFilter
-
- """Filter by the AuthProvider's tokenUrl field"""
- tokenUrl: SalesforceStringFilter
-
- """Filter by the AuthProvider's userInfoUrl field"""
- userInfoUrl: SalesforceStringFilter
-
- """Filter by the AuthProvider's defaultScopes field"""
- defaultScopes: SalesforceStringFilter
-
- """Filter by the AuthProvider's idTokenIssuer field"""
- idTokenIssuer: SalesforceStringFilter
-
- """Filter by the AuthProvider's optionsSendAccessTokenInHeader field"""
- optionsSendAccessTokenInHeader: SalesforceBooleanFilter
-
- """
- Filter by the AuthProvider's optionsSendClientCredentialsInHeader field
- """
- optionsSendClientCredentialsInHeader: SalesforceBooleanFilter
-
- """Filter by the AuthProvider's optionsIncludeOrgIdInId field"""
- optionsIncludeOrgIdInId: SalesforceBooleanFilter
-
- """Filter by the AuthProvider's iconUrl field"""
- iconUrl: SalesforceStringFilter
-
- """Filter by the AuthProvider's logoutUrl field"""
- logoutUrl: SalesforceStringFilter
-
- """Filter by the AuthProvider's pluginId field"""
- pluginId: SalesforceIdFilter
-
- """Filter by the AuthProvider's customMetadataTypeRecord field"""
- customMetadataTypeRecord: SalesforceStringFilter
-
- """Checks for any expressions in this list."""
- or: [SalesforceAuthProviderConnectionFilter!]
-
- """Checks for all expressions in this list."""
- and: [SalesforceAuthProviderConnectionFilter!]
-}
-
-"""
-A filter to be used against ExternalDataSource object types. All fields are combined with a logical ‘and.’
-"""
-input SalesforceExternalDataSourceConnectionFilter {
- """Filter against custom fields."""
- customField: SalesforceCustomFieldFilter
-
- """Filter by the ExternalDataSource's smallIcon relation."""
- smallIcon: SalesforceStaticResourceConnectionFilter
-
- """Filter by the ExternalDataSource's largeIcon relation."""
- largeIcon: SalesforceStaticResourceConnectionFilter
-
- """Filter by the ExternalDataSource's authProvider relation."""
- authProvider: SalesforceAuthProviderConnectionFilter
-
- """Filter by the ExternalDataSource's lastModifiedBy relation."""
- lastModifiedBy: SalesforceUserConnectionFilter
-
- """Filter by the ExternalDataSource's createdBy relation."""
- createdBy: SalesforceUserConnectionFilter
-
- """Filter by the ExternalDataSource's id field"""
- id: SalesforceIdFilter
-
- """Filter by the ExternalDataSource's isDeleted field"""
- isDeleted: SalesforceBooleanFilter
-
- """Filter by the ExternalDataSource's developerName field"""
- developerName: SalesforceStringFilter
-
- """Filter by the ExternalDataSource's language field"""
- language: SalesforceStringFilter
-
- """Filter by the ExternalDataSource's masterLabel field"""
- masterLabel: SalesforceStringFilter
-
- """Filter by the ExternalDataSource's namespacePrefix field"""
- namespacePrefix: SalesforceStringFilter
-
- """Filter by the ExternalDataSource's createdDate field"""
- createdDate: SalesforceDateTimeFilter
-
- """Filter by the ExternalDataSource's createdById field"""
- createdById: SalesforceIdFilter
-
- """Filter by the ExternalDataSource's lastModifiedDate field"""
- lastModifiedDate: SalesforceDateTimeFilter
-
- """Filter by the ExternalDataSource's lastModifiedById field"""
- lastModifiedById: SalesforceIdFilter
-
- """Filter by the ExternalDataSource's systemModstamp field"""
- systemModstamp: SalesforceDateTimeFilter
-
- """Filter by the ExternalDataSource's type field"""
- type: SalesforceStringFilter
-
- """Filter by the ExternalDataSource's repository field"""
- repository: SalesforceStringFilter
-
- """Filter by the ExternalDataSource's isWritable field"""
- isWritable: SalesforceBooleanFilter
-
- """Filter by the ExternalDataSource's principalType field"""
- principalType: SalesforceStringFilter
-
- """Filter by the ExternalDataSource's protocol field"""
- protocol: SalesforceStringFilter
-
- """Filter by the ExternalDataSource's authProviderId field"""
- authProviderId: SalesforceIdFilter
-
- """Filter by the ExternalDataSource's largeIconId field"""
- largeIconId: SalesforceIdFilter
-
- """Filter by the ExternalDataSource's smallIconId field"""
- smallIconId: SalesforceIdFilter
-
- """Checks for any expressions in this list."""
- or: [SalesforceExternalDataSourceConnectionFilter!]
-
- """Checks for all expressions in this list."""
- and: [SalesforceExternalDataSourceConnectionFilter!]
-}
-
-"""
-A filter to be used against ContentVersion object types. All fields are combined with a logical ‘and.’
-"""
-input SalesforceContentVersionConnectionFilter {
- """Filter against custom fields."""
- customField: SalesforceCustomFieldFilter
-
- """Filter by the ContentVersion's externalDataSource relation."""
- externalDataSource: SalesforceExternalDataSourceConnectionFilter
-
- """Filter by the ContentVersion's lastModifiedBy relation."""
- lastModifiedBy: SalesforceUserConnectionFilter
-
- """Filter by the ContentVersion's createdBy relation."""
- createdBy: SalesforceUserConnectionFilter
-
- """Filter by the ContentVersion's owner relation."""
- owner: SalesforceUserConnectionFilter
-
- """Filter by the ContentVersion's contentModifiedBy relation."""
- contentModifiedBy: SalesforceUserConnectionFilter
-
- """Filter by the ContentVersion's contentDocument relation."""
- contentDocument: SalesforceContentDocumentConnectionFilter
-
- """Filter by the ContentVersion's id field"""
- id: SalesforceIdFilter
-
- """Filter by the ContentVersion's contentDocumentId field"""
- contentDocumentId: SalesforceIdFilter
-
- """Filter by the ContentVersion's isLatest field"""
- isLatest: SalesforceBooleanFilter
-
- """Filter by the ContentVersion's contentUrl field"""
- contentUrl: SalesforceStringFilter
-
- """Filter by the ContentVersion's contentBodyId field"""
- contentBodyId: SalesforceIdFilter
-
- """Filter by the ContentVersion's versionNumber field"""
- versionNumber: SalesforceStringFilter
-
- """Filter by the ContentVersion's title field"""
- title: SalesforceStringFilter
-
- """Filter by the ContentVersion's description field"""
- description: SalesforceStringFilter
-
- """Filter by the ContentVersion's reasonForChange field"""
- reasonForChange: SalesforceStringFilter
-
- """Filter by the ContentVersion's sharingOption field"""
- sharingOption: SalesforceStringFilter
-
- """Filter by the ContentVersion's sharingPrivacy field"""
- sharingPrivacy: SalesforceStringFilter
-
- """Filter by the ContentVersion's pathOnClient field"""
- pathOnClient: SalesforceStringFilter
-
- """Filter by the ContentVersion's ratingCount field"""
- ratingCount: SalesforceIntFilter
-
- """Filter by the ContentVersion's isDeleted field"""
- isDeleted: SalesforceBooleanFilter
-
- """Filter by the ContentVersion's contentModifiedDate field"""
- contentModifiedDate: SalesforceDateTimeFilter
-
- """Filter by the ContentVersion's contentModifiedById field"""
- contentModifiedById: SalesforceIdFilter
-
- """Filter by the ContentVersion's positiveRatingCount field"""
- positiveRatingCount: SalesforceIntFilter
-
- """Filter by the ContentVersion's negativeRatingCount field"""
- negativeRatingCount: SalesforceIntFilter
-
- """Filter by the ContentVersion's featuredContentBoost field"""
- featuredContentBoost: SalesforceIntFilter
-
- """Filter by the ContentVersion's featuredContentDate field"""
- featuredContentDate: SalesforceDateFilter
-
- """Filter by the ContentVersion's ownerId field"""
- ownerId: SalesforceIdFilter
-
- """Filter by the ContentVersion's createdById field"""
- createdById: SalesforceIdFilter
-
- """Filter by the ContentVersion's createdDate field"""
- createdDate: SalesforceDateTimeFilter
-
- """Filter by the ContentVersion's lastModifiedById field"""
- lastModifiedById: SalesforceIdFilter
-
- """Filter by the ContentVersion's lastModifiedDate field"""
- lastModifiedDate: SalesforceDateTimeFilter
-
- """Filter by the ContentVersion's systemModstamp field"""
- systemModstamp: SalesforceDateTimeFilter
-
- """Filter by the ContentVersion's fileType field"""
- fileType: SalesforceStringFilter
-
- """Filter by the ContentVersion's publishStatus field"""
- publishStatus: SalesforceStringFilter
-
- """Filter by the ContentVersion's contentSize field"""
- contentSize: SalesforceIntFilter
-
- """Filter by the ContentVersion's fileExtension field"""
- fileExtension: SalesforceStringFilter
-
- """Filter by the ContentVersion's firstPublishLocationId field"""
- firstPublishLocationId: SalesforceIdFilter
-
- """Filter by the ContentVersion's origin field"""
- origin: SalesforceStringFilter
-
- """Filter by the ContentVersion's contentLocation field"""
- contentLocation: SalesforceStringFilter
-
- """Filter by the ContentVersion's textPreview field"""
- textPreview: SalesforceStringFilter
-
- """Filter by the ContentVersion's externalDocumentInfo1 field"""
- externalDocumentInfo1: SalesforceStringFilter
-
- """Filter by the ContentVersion's externalDocumentInfo2 field"""
- externalDocumentInfo2: SalesforceStringFilter
-
- """Filter by the ContentVersion's externalDataSourceId field"""
- externalDataSourceId: SalesforceIdFilter
-
- """Filter by the ContentVersion's checksum field"""
- checksum: SalesforceStringFilter
-
- """Filter by the ContentVersion's isMajorVersion field"""
- isMajorVersion: SalesforceBooleanFilter
-
- """Checks for any expressions in this list."""
- or: [SalesforceContentVersionConnectionFilter!]
-
- """Checks for all expressions in this list."""
- and: [SalesforceContentVersionConnectionFilter!]
-}
-
-"""
-A filter to be used against CallCenter object types. All fields are combined with a logical ‘and.’
-"""
-input SalesforceCallCenterConnectionFilter {
- """Filter against custom fields."""
- customField: SalesforceCustomFieldFilter
-
- """Filter by the CallCenter's lastModifiedBy relation."""
- lastModifiedBy: SalesforceUserConnectionFilter
-
- """Filter by the CallCenter's createdBy relation."""
- createdBy: SalesforceUserConnectionFilter
-
- """Filter by the CallCenter's id field"""
- id: SalesforceIdFilter
-
- """Filter by the CallCenter's name field"""
- name: SalesforceStringFilter
-
- """Filter by the CallCenter's internalName field"""
- internalName: SalesforceStringFilter
-
- """Filter by the CallCenter's version field"""
- version: SalesforceFloatFilter
-
- """Filter by the CallCenter's adapterUrl field"""
- adapterUrl: SalesforceStringFilter
-
- """Filter by the CallCenter's customSettings field"""
- customSettings: SalesforceStringFilter
-
- """Filter by the CallCenter's systemModstamp field"""
- systemModstamp: SalesforceDateTimeFilter
-
- """Filter by the CallCenter's createdDate field"""
- createdDate: SalesforceDateTimeFilter
-
- """Filter by the CallCenter's createdById field"""
- createdById: SalesforceIdFilter
-
- """Filter by the CallCenter's lastModifiedDate field"""
- lastModifiedDate: SalesforceDateTimeFilter
-
- """Filter by the CallCenter's lastModifiedById field"""
- lastModifiedById: SalesforceIdFilter
-
- """Checks for any expressions in this list."""
- or: [SalesforceCallCenterConnectionFilter!]
-
- """Checks for all expressions in this list."""
- and: [SalesforceCallCenterConnectionFilter!]
-}
-
-"""
-A filter to be used against Contact object types. All fields are combined with a logical ‘and.’
-"""
-input SalesforceContactConnectionFilter {
- """Filter against custom fields."""
- customField: SalesforceCustomFieldFilter
-
- """Filter by the Contact's lastModifiedBy relation."""
- lastModifiedBy: SalesforceUserConnectionFilter
-
- """Filter by the Contact's createdBy relation."""
- createdBy: SalesforceUserConnectionFilter
-
- """Filter by the Contact's owner relation."""
- owner: SalesforceUserConnectionFilter
-
- """Filter by the Contact's reportsTo relation."""
- reportsTo: SalesforceContactConnectionFilter
-
- """Filter by the Contact's account relation."""
- account: SalesforceAccountConnectionFilter
-
- """Filter by the Contact's masterRecord relation."""
- masterRecord: SalesforceContactConnectionFilter
-
- """Filter by the Contact's id field"""
- id: SalesforceIdFilter
-
- """Filter by the Contact's isDeleted field"""
- isDeleted: SalesforceBooleanFilter
-
- """Filter by the Contact's masterRecordId field"""
- masterRecordId: SalesforceIdFilter
-
- """Filter by the Contact's accountId field"""
- accountId: SalesforceIdFilter
-
- """Filter by the Contact's lastName field"""
- lastName: SalesforceStringFilter
-
- """Filter by the Contact's firstName field"""
- firstName: SalesforceStringFilter
-
- """Filter by the Contact's salutation field"""
- salutation: SalesforceStringFilter
-
- """Filter by the Contact's name field"""
- name: SalesforceStringFilter
-
- """Filter by the Contact's otherStreet field"""
- otherStreet: SalesforceStringFilter
-
- """Filter by the Contact's otherCity field"""
- otherCity: SalesforceStringFilter
-
- """Filter by the Contact's otherState field"""
- otherState: SalesforceStringFilter
-
- """Filter by the Contact's otherPostalCode field"""
- otherPostalCode: SalesforceStringFilter
-
- """Filter by the Contact's otherCountry field"""
- otherCountry: SalesforceStringFilter
-
- """Filter by the Contact's otherLatitude field"""
- otherLatitude: SalesforceFloatFilter
-
- """Filter by the Contact's otherLongitude field"""
- otherLongitude: SalesforceFloatFilter
-
- """Filter by the Contact's otherGeocodeAccuracy field"""
- otherGeocodeAccuracy: SalesforceStringFilter
-
- """Filter by the Contact's mailingStreet field"""
- mailingStreet: SalesforceStringFilter
-
- """Filter by the Contact's mailingCity field"""
- mailingCity: SalesforceStringFilter
-
- """Filter by the Contact's mailingState field"""
- mailingState: SalesforceStringFilter
-
- """Filter by the Contact's mailingPostalCode field"""
- mailingPostalCode: SalesforceStringFilter
-
- """Filter by the Contact's mailingCountry field"""
- mailingCountry: SalesforceStringFilter
-
- """Filter by the Contact's mailingLatitude field"""
- mailingLatitude: SalesforceFloatFilter
-
- """Filter by the Contact's mailingLongitude field"""
- mailingLongitude: SalesforceFloatFilter
-
- """Filter by the Contact's mailingGeocodeAccuracy field"""
- mailingGeocodeAccuracy: SalesforceStringFilter
-
- """Filter by the Contact's phone field"""
- phone: SalesforceStringFilter
-
- """Filter by the Contact's fax field"""
- fax: SalesforceStringFilter
-
- """Filter by the Contact's mobilePhone field"""
- mobilePhone: SalesforceStringFilter
-
- """Filter by the Contact's homePhone field"""
- homePhone: SalesforceStringFilter
-
- """Filter by the Contact's otherPhone field"""
- otherPhone: SalesforceStringFilter
-
- """Filter by the Contact's assistantPhone field"""
- assistantPhone: SalesforceStringFilter
-
- """Filter by the Contact's reportsToId field"""
- reportsToId: SalesforceIdFilter
-
- """Filter by the Contact's email field"""
- email: SalesforceStringFilter
-
- """Filter by the Contact's title field"""
- title: SalesforceStringFilter
-
- """Filter by the Contact's department field"""
- department: SalesforceStringFilter
-
- """Filter by the Contact's assistantName field"""
- assistantName: SalesforceStringFilter
-
- """Filter by the Contact's leadSource field"""
- leadSource: SalesforceStringFilter
-
- """Filter by the Contact's birthdate field"""
- birthdate: SalesforceDateFilter
-
- """Filter by the Contact's ownerId field"""
- ownerId: SalesforceIdFilter
-
- """Filter by the Contact's createdDate field"""
- createdDate: SalesforceDateTimeFilter
-
- """Filter by the Contact's createdById field"""
- createdById: SalesforceIdFilter
-
- """Filter by the Contact's lastModifiedDate field"""
- lastModifiedDate: SalesforceDateTimeFilter
-
- """Filter by the Contact's lastModifiedById field"""
- lastModifiedById: SalesforceIdFilter
-
- """Filter by the Contact's systemModstamp field"""
- systemModstamp: SalesforceDateTimeFilter
-
- """Filter by the Contact's lastActivityDate field"""
- lastActivityDate: SalesforceDateFilter
-
- """Filter by the Contact's lastCuRequestDate field"""
- lastCuRequestDate: SalesforceDateTimeFilter
-
- """Filter by the Contact's lastCuUpdateDate field"""
- lastCuUpdateDate: SalesforceDateTimeFilter
-
- """Filter by the Contact's lastViewedDate field"""
- lastViewedDate: SalesforceDateTimeFilter
-
- """Filter by the Contact's lastReferencedDate field"""
- lastReferencedDate: SalesforceDateTimeFilter
-
- """Filter by the Contact's emailBouncedReason field"""
- emailBouncedReason: SalesforceStringFilter
-
- """Filter by the Contact's emailBouncedDate field"""
- emailBouncedDate: SalesforceDateTimeFilter
-
- """Filter by the Contact's isEmailBounced field"""
- isEmailBounced: SalesforceBooleanFilter
-
- """Filter by the Contact's photoUrl field"""
- photoUrl: SalesforceStringFilter
-
- """Filter by the Contact's jigsaw field"""
- jigsaw: SalesforceStringFilter
-
- """Filter by the Contact's jigsawContactId field"""
- jigsawContactId: SalesforceStringFilter
-
- """Filter by the Contact's cleanStatus field"""
- cleanStatus: SalesforceStringFilter
-
- """Checks for any expressions in this list."""
- or: [SalesforceContactConnectionFilter!]
-
- """Checks for all expressions in this list."""
- and: [SalesforceContactConnectionFilter!]
-}
-
-"""
-A filter to be used against UserLicense object types. All fields are combined with a logical ‘and.’
-"""
-input SalesforceUserLicenseConnectionFilter {
- """Filter against custom fields."""
- customField: SalesforceCustomFieldFilter
-
- """Filter by the UserLicense's id field"""
- id: SalesforceIdFilter
-
- """Filter by the UserLicense's licenseDefinitionKey field"""
- licenseDefinitionKey: SalesforceStringFilter
-
- """Filter by the UserLicense's totalLicenses field"""
- totalLicenses: SalesforceIntFilter
-
- """Filter by the UserLicense's status field"""
- status: SalesforceStringFilter
-
- """Filter by the UserLicense's usedLicenses field"""
- usedLicenses: SalesforceIntFilter
-
- """Filter by the UserLicense's usedLicensesLastUpdated field"""
- usedLicensesLastUpdated: SalesforceDateTimeFilter
-
- """Filter by the UserLicense's name field"""
- name: SalesforceStringFilter
-
- """Filter by the UserLicense's masterLabel field"""
- masterLabel: SalesforceStringFilter
-
- """Filter by the UserLicense's createdDate field"""
- createdDate: SalesforceDateTimeFilter
-
- """Filter by the UserLicense's lastModifiedDate field"""
- lastModifiedDate: SalesforceDateTimeFilter
-
- """Filter by the UserLicense's systemModstamp field"""
- systemModstamp: SalesforceDateTimeFilter
-
- """Checks for any expressions in this list."""
- or: [SalesforceUserLicenseConnectionFilter!]
-
- """Checks for all expressions in this list."""
- and: [SalesforceUserLicenseConnectionFilter!]
-}
-
-"""
-A filter to be used against Profile object types. All fields are combined with a logical ‘and.’
-"""
-input SalesforceProfileConnectionFilter {
- """Filter against custom fields."""
- customField: SalesforceCustomFieldFilter
-
- """Filter by the Profile's lastModifiedBy relation."""
- lastModifiedBy: SalesforceUserConnectionFilter
-
- """Filter by the Profile's createdBy relation."""
- createdBy: SalesforceUserConnectionFilter
-
- """Filter by the Profile's userLicense relation."""
- userLicense: SalesforceUserLicenseConnectionFilter
-
- """Filter by the Profile's id field"""
- id: SalesforceIdFilter
-
- """Filter by the Profile's name field"""
- name: SalesforceStringFilter
-
- """Filter by the Profile's permissionsEmailSingle field"""
- permissionsEmailSingle: SalesforceBooleanFilter
-
- """Filter by the Profile's permissionsEmailMass field"""
- permissionsEmailMass: SalesforceBooleanFilter
-
- """Filter by the Profile's permissionsEditTask field"""
- permissionsEditTask: SalesforceBooleanFilter
-
- """Filter by the Profile's permissionsEditEvent field"""
- permissionsEditEvent: SalesforceBooleanFilter
-
- """Filter by the Profile's permissionsExportReport field"""
- permissionsExportReport: SalesforceBooleanFilter
-
- """Filter by the Profile's permissionsImportPersonal field"""
- permissionsImportPersonal: SalesforceBooleanFilter
-
- """Filter by the Profile's permissionsDataExport field"""
- permissionsDataExport: SalesforceBooleanFilter
-
- """Filter by the Profile's permissionsManageUsers field"""
- permissionsManageUsers: SalesforceBooleanFilter
-
- """Filter by the Profile's permissionsEditPublicFilters field"""
- permissionsEditPublicFilters: SalesforceBooleanFilter
-
- """Filter by the Profile's permissionsEditPublicTemplates field"""
- permissionsEditPublicTemplates: SalesforceBooleanFilter
-
- """Filter by the Profile's permissionsModifyAllData field"""
- permissionsModifyAllData: SalesforceBooleanFilter
-
- """Filter by the Profile's permissionsManageCases field"""
- permissionsManageCases: SalesforceBooleanFilter
-
- """Filter by the Profile's permissionsMassInlineEdit field"""
- permissionsMassInlineEdit: SalesforceBooleanFilter
-
- """Filter by the Profile's permissionsEditKnowledge field"""
- permissionsEditKnowledge: SalesforceBooleanFilter
-
- """Filter by the Profile's permissionsManageKnowledge field"""
- permissionsManageKnowledge: SalesforceBooleanFilter
-
- """Filter by the Profile's permissionsManageSolutions field"""
- permissionsManageSolutions: SalesforceBooleanFilter
-
- """Filter by the Profile's permissionsCustomizeApplication field"""
- permissionsCustomizeApplication: SalesforceBooleanFilter
-
- """Filter by the Profile's permissionsEditReadonlyFields field"""
- permissionsEditReadonlyFields: SalesforceBooleanFilter
-
- """Filter by the Profile's permissionsRunReports field"""
- permissionsRunReports: SalesforceBooleanFilter
-
- """Filter by the Profile's permissionsViewSetup field"""
- permissionsViewSetup: SalesforceBooleanFilter
-
- """Filter by the Profile's permissionsTransferAnyEntity field"""
- permissionsTransferAnyEntity: SalesforceBooleanFilter
-
- """Filter by the Profile's permissionsNewReportBuilder field"""
- permissionsNewReportBuilder: SalesforceBooleanFilter
-
- """Filter by the Profile's permissionsActivateContract field"""
- permissionsActivateContract: SalesforceBooleanFilter
-
- """Filter by the Profile's permissionsActivateOrder field"""
- permissionsActivateOrder: SalesforceBooleanFilter
-
- """Filter by the Profile's permissionsImportLeads field"""
- permissionsImportLeads: SalesforceBooleanFilter
-
- """Filter by the Profile's permissionsManageLeads field"""
- permissionsManageLeads: SalesforceBooleanFilter
-
- """Filter by the Profile's permissionsTransferAnyLead field"""
- permissionsTransferAnyLead: SalesforceBooleanFilter
-
- """Filter by the Profile's permissionsViewAllData field"""
- permissionsViewAllData: SalesforceBooleanFilter
-
- """Filter by the Profile's permissionsEditPublicDocuments field"""
- permissionsEditPublicDocuments: SalesforceBooleanFilter
-
- """Filter by the Profile's permissionsViewEncryptedData field"""
- permissionsViewEncryptedData: SalesforceBooleanFilter
-
- """Filter by the Profile's permissionsEditBrandTemplates field"""
- permissionsEditBrandTemplates: SalesforceBooleanFilter
-
- """Filter by the Profile's permissionsEditHtmlTemplates field"""
- permissionsEditHtmlTemplates: SalesforceBooleanFilter
-
- """Filter by the Profile's permissionsChatterInternalUser field"""
- permissionsChatterInternalUser: SalesforceBooleanFilter
-
- """Filter by the Profile's permissionsManageEncryptionKeys field"""
- permissionsManageEncryptionKeys: SalesforceBooleanFilter
-
- """Filter by the Profile's permissionsDeleteActivatedContract field"""
- permissionsDeleteActivatedContract: SalesforceBooleanFilter
-
- """Filter by the Profile's permissionsChatterInviteExternalUsers field"""
- permissionsChatterInviteExternalUsers: SalesforceBooleanFilter
-
- """Filter by the Profile's permissionsSendSitRequests field"""
- permissionsSendSitRequests: SalesforceBooleanFilter
-
- """Filter by the Profile's permissionsManageRemoteAccess field"""
- permissionsManageRemoteAccess: SalesforceBooleanFilter
-
- """Filter by the Profile's permissionsCanUseNewDashboardBuilder field"""
- permissionsCanUseNewDashboardBuilder: SalesforceBooleanFilter
-
- """Filter by the Profile's permissionsManageCategories field"""
- permissionsManageCategories: SalesforceBooleanFilter
-
- """Filter by the Profile's permissionsConvertLeads field"""
- permissionsConvertLeads: SalesforceBooleanFilter
-
- """Filter by the Profile's permissionsPasswordNeverExpires field"""
- permissionsPasswordNeverExpires: SalesforceBooleanFilter
-
- """Filter by the Profile's permissionsUseTeamReassignWizards field"""
- permissionsUseTeamReassignWizards: SalesforceBooleanFilter
-
- """Filter by the Profile's permissionsEditActivatedOrders field"""
- permissionsEditActivatedOrders: SalesforceBooleanFilter
-
- """Filter by the Profile's permissionsInstallMultiforce field"""
- permissionsInstallMultiforce: SalesforceBooleanFilter
-
- """Filter by the Profile's permissionsPublishMultiforce field"""
- permissionsPublishMultiforce: SalesforceBooleanFilter
-
- """Filter by the Profile's permissionsChatterOwnGroups field"""
- permissionsChatterOwnGroups: SalesforceBooleanFilter
-
- """Filter by the Profile's permissionsEditOppLineItemUnitPrice field"""
- permissionsEditOppLineItemUnitPrice: SalesforceBooleanFilter
-
- """Filter by the Profile's permissionsCreateMultiforce field"""
- permissionsCreateMultiforce: SalesforceBooleanFilter
-
- """Filter by the Profile's permissionsBulkApiHardDelete field"""
- permissionsBulkApiHardDelete: SalesforceBooleanFilter
-
- """Filter by the Profile's permissionsSolutionImport field"""
- permissionsSolutionImport: SalesforceBooleanFilter
-
- """Filter by the Profile's permissionsManageCallCenters field"""
- permissionsManageCallCenters: SalesforceBooleanFilter
-
- """Filter by the Profile's permissionsManageSynonyms field"""
- permissionsManageSynonyms: SalesforceBooleanFilter
-
- """Filter by the Profile's permissionsViewContent field"""
- permissionsViewContent: SalesforceBooleanFilter
-
- """Filter by the Profile's permissionsManageEmailClientConfig field"""
- permissionsManageEmailClientConfig: SalesforceBooleanFilter
-
- """Filter by the Profile's permissionsEnableNotifications field"""
- permissionsEnableNotifications: SalesforceBooleanFilter
-
- """Filter by the Profile's permissionsManageDataIntegrations field"""
- permissionsManageDataIntegrations: SalesforceBooleanFilter
-
- """Filter by the Profile's permissionsDistributeFromPersWksp field"""
- permissionsDistributeFromPersWksp: SalesforceBooleanFilter
-
- """Filter by the Profile's permissionsViewDataCategories field"""
- permissionsViewDataCategories: SalesforceBooleanFilter
-
- """Filter by the Profile's permissionsManageDataCategories field"""
- permissionsManageDataCategories: SalesforceBooleanFilter
-
- """Filter by the Profile's permissionsAuthorApex field"""
- permissionsAuthorApex: SalesforceBooleanFilter
-
- """Filter by the Profile's permissionsManageMobile field"""
- permissionsManageMobile: SalesforceBooleanFilter
-
- """Filter by the Profile's permissionsApiEnabled field"""
- permissionsApiEnabled: SalesforceBooleanFilter
-
- """Filter by the Profile's permissionsManageCustomReportTypes field"""
- permissionsManageCustomReportTypes: SalesforceBooleanFilter
-
- """Filter by the Profile's permissionsEditCaseComments field"""
- permissionsEditCaseComments: SalesforceBooleanFilter
-
- """Filter by the Profile's permissionsTransferAnyCase field"""
- permissionsTransferAnyCase: SalesforceBooleanFilter
-
- """Filter by the Profile's permissionsContentAdministrator field"""
- permissionsContentAdministrator: SalesforceBooleanFilter
-
- """Filter by the Profile's permissionsCreateWorkspaces field"""
- permissionsCreateWorkspaces: SalesforceBooleanFilter
-
- """Filter by the Profile's permissionsManageContentPermissions field"""
- permissionsManageContentPermissions: SalesforceBooleanFilter
-
- """Filter by the Profile's permissionsManageContentProperties field"""
- permissionsManageContentProperties: SalesforceBooleanFilter
-
- """Filter by the Profile's permissionsManageContentTypes field"""
- permissionsManageContentTypes: SalesforceBooleanFilter
-
- """Filter by the Profile's permissionsManageExchangeConfig field"""
- permissionsManageExchangeConfig: SalesforceBooleanFilter
-
- """Filter by the Profile's permissionsManageAnalyticSnapshots field"""
- permissionsManageAnalyticSnapshots: SalesforceBooleanFilter
-
- """Filter by the Profile's permissionsScheduleReports field"""
- permissionsScheduleReports: SalesforceBooleanFilter
-
- """Filter by the Profile's permissionsManageBusinessHourHolidays field"""
- permissionsManageBusinessHourHolidays: SalesforceBooleanFilter
-
- """Filter by the Profile's permissionsManageDynamicDashboards field"""
- permissionsManageDynamicDashboards: SalesforceBooleanFilter
-
- """Filter by the Profile's permissionsCustomSidebarOnAllPages field"""
- permissionsCustomSidebarOnAllPages: SalesforceBooleanFilter
-
- """Filter by the Profile's permissionsManageInteraction field"""
- permissionsManageInteraction: SalesforceBooleanFilter
-
- """Filter by the Profile's permissionsViewMyTeamsDashboards field"""
- permissionsViewMyTeamsDashboards: SalesforceBooleanFilter
-
- """Filter by the Profile's permissionsModerateChatter field"""
- permissionsModerateChatter: SalesforceBooleanFilter
-
- """Filter by the Profile's permissionsResetPasswords field"""
- permissionsResetPasswords: SalesforceBooleanFilter
-
- """Filter by the Profile's permissionsFlowUflRequired field"""
- permissionsFlowUflRequired: SalesforceBooleanFilter
-
- """Filter by the Profile's permissionsCanInsertFeedSystemFields field"""
- permissionsCanInsertFeedSystemFields: SalesforceBooleanFilter
-
- """Filter by the Profile's permissionsManageKnowledgeImportExport field"""
- permissionsManageKnowledgeImportExport: SalesforceBooleanFilter
-
- """Filter by the Profile's permissionsEmailTemplateManagement field"""
- permissionsEmailTemplateManagement: SalesforceBooleanFilter
-
- """Filter by the Profile's permissionsEmailAdministration field"""
- permissionsEmailAdministration: SalesforceBooleanFilter
-
- """Filter by the Profile's permissionsManageChatterMessages field"""
- permissionsManageChatterMessages: SalesforceBooleanFilter
-
- """Filter by the Profile's permissionsAllowEmailIc field"""
- permissionsAllowEmailIc: SalesforceBooleanFilter
-
- """Filter by the Profile's permissionsChatterFileLink field"""
- permissionsChatterFileLink: SalesforceBooleanFilter
-
- """Filter by the Profile's permissionsForceTwoFactor field"""
- permissionsForceTwoFactor: SalesforceBooleanFilter
-
- """Filter by the Profile's permissionsViewEventLogFiles field"""
- permissionsViewEventLogFiles: SalesforceBooleanFilter
-
- """Filter by the Profile's permissionsManageNetworks field"""
- permissionsManageNetworks: SalesforceBooleanFilter
-
- """Filter by the Profile's permissionsManageAuthProviders field"""
- permissionsManageAuthProviders: SalesforceBooleanFilter
-
- """Filter by the Profile's permissionsRunFlow field"""
- permissionsRunFlow: SalesforceBooleanFilter
-
- """Filter by the Profile's permissionsCreateCustomizeDashboards field"""
- permissionsCreateCustomizeDashboards: SalesforceBooleanFilter
-
- """Filter by the Profile's permissionsCreateDashboardFolders field"""
- permissionsCreateDashboardFolders: SalesforceBooleanFilter
-
- """Filter by the Profile's permissionsViewPublicDashboards field"""
- permissionsViewPublicDashboards: SalesforceBooleanFilter
-
- """Filter by the Profile's permissionsManageDashbdsInPubFolders field"""
- permissionsManageDashbdsInPubFolders: SalesforceBooleanFilter
-
- """Filter by the Profile's permissionsCreateCustomizeReports field"""
- permissionsCreateCustomizeReports: SalesforceBooleanFilter
-
- """Filter by the Profile's permissionsCreateReportFolders field"""
- permissionsCreateReportFolders: SalesforceBooleanFilter
-
- """Filter by the Profile's permissionsViewPublicReports field"""
- permissionsViewPublicReports: SalesforceBooleanFilter
-
- """Filter by the Profile's permissionsManageReportsInPubFolders field"""
- permissionsManageReportsInPubFolders: SalesforceBooleanFilter
-
- """Filter by the Profile's permissionsEditMyDashboards field"""
- permissionsEditMyDashboards: SalesforceBooleanFilter
-
- """Filter by the Profile's permissionsEditMyReports field"""
- permissionsEditMyReports: SalesforceBooleanFilter
-
- """Filter by the Profile's permissionsViewAllUsers field"""
- permissionsViewAllUsers: SalesforceBooleanFilter
-
- """Filter by the Profile's permissionsAllowUniversalSearch field"""
- permissionsAllowUniversalSearch: SalesforceBooleanFilter
-
- """Filter by the Profile's permissionsConnectOrgToEnvironmentHub field"""
- permissionsConnectOrgToEnvironmentHub: SalesforceBooleanFilter
-
- """Filter by the Profile's permissionsWorkCalibrationUser field"""
- permissionsWorkCalibrationUser: SalesforceBooleanFilter
-
- """Filter by the Profile's permissionsCreateCustomizeFilters field"""
- permissionsCreateCustomizeFilters: SalesforceBooleanFilter
-
- """Filter by the Profile's permissionsWorkDotComUserPerm field"""
- permissionsWorkDotComUserPerm: SalesforceBooleanFilter
-
- """Filter by the Profile's permissionsGovernNetworks field"""
- permissionsGovernNetworks: SalesforceBooleanFilter
-
- """Filter by the Profile's permissionsSalesConsole field"""
- permissionsSalesConsole: SalesforceBooleanFilter
-
- """Filter by the Profile's permissionsTwoFactorApi field"""
- permissionsTwoFactorApi: SalesforceBooleanFilter
-
- """Filter by the Profile's permissionsDeleteTopics field"""
- permissionsDeleteTopics: SalesforceBooleanFilter
-
- """Filter by the Profile's permissionsEditTopics field"""
- permissionsEditTopics: SalesforceBooleanFilter
-
- """Filter by the Profile's permissionsCreateTopics field"""
- permissionsCreateTopics: SalesforceBooleanFilter
-
- """Filter by the Profile's permissionsAssignTopics field"""
- permissionsAssignTopics: SalesforceBooleanFilter
-
- """Filter by the Profile's permissionsIdentityEnabled field"""
- permissionsIdentityEnabled: SalesforceBooleanFilter
-
- """Filter by the Profile's permissionsIdentityConnect field"""
- permissionsIdentityConnect: SalesforceBooleanFilter
-
- """Filter by the Profile's permissionsAllowViewKnowledge field"""
- permissionsAllowViewKnowledge: SalesforceBooleanFilter
-
- """Filter by the Profile's permissionsContentWorkspaces field"""
- permissionsContentWorkspaces: SalesforceBooleanFilter
-
- """Filter by the Profile's permissionsManageSearchPromotionRules field"""
- permissionsManageSearchPromotionRules: SalesforceBooleanFilter
-
- """Filter by the Profile's permissionsCustomMobileAppsAccess field"""
- permissionsCustomMobileAppsAccess: SalesforceBooleanFilter
-
- """Filter by the Profile's permissionsViewHelpLink field"""
- permissionsViewHelpLink: SalesforceBooleanFilter
-
- """Filter by the Profile's permissionsManageProfilesPermissionsets field"""
- permissionsManageProfilesPermissionsets: SalesforceBooleanFilter
-
- """Filter by the Profile's permissionsAssignPermissionSets field"""
- permissionsAssignPermissionSets: SalesforceBooleanFilter
-
- """Filter by the Profile's permissionsManageRoles field"""
- permissionsManageRoles: SalesforceBooleanFilter
-
- """Filter by the Profile's permissionsManageIpAddresses field"""
- permissionsManageIpAddresses: SalesforceBooleanFilter
-
- """Filter by the Profile's permissionsManageSharing field"""
- permissionsManageSharing: SalesforceBooleanFilter
-
- """Filter by the Profile's permissionsManageInternalUsers field"""
- permissionsManageInternalUsers: SalesforceBooleanFilter
-
- """Filter by the Profile's permissionsManagePasswordPolicies field"""
- permissionsManagePasswordPolicies: SalesforceBooleanFilter
-
- """Filter by the Profile's permissionsManageLoginAccessPolicies field"""
- permissionsManageLoginAccessPolicies: SalesforceBooleanFilter
-
- """Filter by the Profile's permissionsManageCustomPermissions field"""
- permissionsManageCustomPermissions: SalesforceBooleanFilter
-
- """Filter by the Profile's permissionsCanVerifyComment field"""
- permissionsCanVerifyComment: SalesforceBooleanFilter
-
- """Filter by the Profile's permissionsManageUnlistedGroups field"""
- permissionsManageUnlistedGroups: SalesforceBooleanFilter
-
- """Filter by the Profile's permissionsModifySecureAgents field"""
- permissionsModifySecureAgents: SalesforceBooleanFilter
-
- """Filter by the Profile's permissionsManageTwoFactor field"""
- permissionsManageTwoFactor: SalesforceBooleanFilter
-
- """Filter by the Profile's permissionsChatterForSharePoint field"""
- permissionsChatterForSharePoint: SalesforceBooleanFilter
-
- """Filter by the Profile's permissionsLightningExperienceUser field"""
- permissionsLightningExperienceUser: SalesforceBooleanFilter
-
- """Filter by the Profile's permissionsConfigCustomRecs field"""
- permissionsConfigCustomRecs: SalesforceBooleanFilter
-
- """Filter by the Profile's permissionsSubmitMacrosAllowed field"""
- permissionsSubmitMacrosAllowed: SalesforceBooleanFilter
-
- """Filter by the Profile's permissionsBulkMacrosAllowed field"""
- permissionsBulkMacrosAllowed: SalesforceBooleanFilter
-
- """Filter by the Profile's permissionsShareInternalArticles field"""
- permissionsShareInternalArticles: SalesforceBooleanFilter
-
- """Filter by the Profile's permissionsManageSessionPermissionSets field"""
- permissionsManageSessionPermissionSets: SalesforceBooleanFilter
-
- """Filter by the Profile's permissionsSendAnnouncementEmails field"""
- permissionsSendAnnouncementEmails: SalesforceBooleanFilter
-
- """Filter by the Profile's permissionsChatterEditOwnPost field"""
- permissionsChatterEditOwnPost: SalesforceBooleanFilter
-
- """Filter by the Profile's permissionsChatterEditOwnRecordPost field"""
- permissionsChatterEditOwnRecordPost: SalesforceBooleanFilter
-
- """Filter by the Profile's permissionsImportCustomObjects field"""
- permissionsImportCustomObjects: SalesforceBooleanFilter
-
- """Filter by the Profile's permissionsDelegatedTwoFactor field"""
- permissionsDelegatedTwoFactor: SalesforceBooleanFilter
-
- """Filter by the Profile's permissionsChatterComposeUiCodesnippet field"""
- permissionsChatterComposeUiCodesnippet: SalesforceBooleanFilter
-
- """Filter by the Profile's permissionsSelectFilesFromSalesforce field"""
- permissionsSelectFilesFromSalesforce: SalesforceBooleanFilter
-
- """Filter by the Profile's permissionsModerateNetworkUsers field"""
- permissionsModerateNetworkUsers: SalesforceBooleanFilter
-
- """Filter by the Profile's permissionsMergeTopics field"""
- permissionsMergeTopics: SalesforceBooleanFilter
-
- """Filter by the Profile's permissionsSubscribeToLightningReports field"""
- permissionsSubscribeToLightningReports: SalesforceBooleanFilter
-
- """Filter by the Profile's permissionsManagePvtRptsAndDashbds field"""
- permissionsManagePvtRptsAndDashbds: SalesforceBooleanFilter
-
- """Filter by the Profile's permissionsAllowLightningLogin field"""
- permissionsAllowLightningLogin: SalesforceBooleanFilter
-
- """Filter by the Profile's permissionsCampaignInfluence2 field"""
- permissionsCampaignInfluence2: SalesforceBooleanFilter
-
- """Filter by the Profile's permissionsViewDataAssessment field"""
- permissionsViewDataAssessment: SalesforceBooleanFilter
-
- """Filter by the Profile's permissionsRemoveDirectMessageMembers field"""
- permissionsRemoveDirectMessageMembers: SalesforceBooleanFilter
-
- """Filter by the Profile's permissionsCanApproveFeedPost field"""
- permissionsCanApproveFeedPost: SalesforceBooleanFilter
-
- """Filter by the Profile's permissionsAddDirectMessageMembers field"""
- permissionsAddDirectMessageMembers: SalesforceBooleanFilter
-
- """Filter by the Profile's permissionsAllowViewEditConvertedLeads field"""
- permissionsAllowViewEditConvertedLeads: SalesforceBooleanFilter
-
- """Filter by the Profile's permissionsShowCompanyNameAsUserBadge field"""
- permissionsShowCompanyNameAsUserBadge: SalesforceBooleanFilter
-
- """Filter by the Profile's permissionsAccessCmc field"""
- permissionsAccessCmc: SalesforceBooleanFilter
-
- """Filter by the Profile's permissionsViewHealthCheck field"""
- permissionsViewHealthCheck: SalesforceBooleanFilter
-
- """Filter by the Profile's permissionsManageHealthCheck field"""
- permissionsManageHealthCheck: SalesforceBooleanFilter
-
- """Filter by the Profile's permissionsPackaging2 field"""
- permissionsPackaging2: SalesforceBooleanFilter
-
- """Filter by the Profile's permissionsManageCertificates field"""
- permissionsManageCertificates: SalesforceBooleanFilter
-
- """Filter by the Profile's permissionsCreateReportInLightning field"""
- permissionsCreateReportInLightning: SalesforceBooleanFilter
-
- """Filter by the Profile's permissionsPreventClassicExperience field"""
- permissionsPreventClassicExperience: SalesforceBooleanFilter
-
- """Filter by the Profile's permissionsHideReadByList field"""
- permissionsHideReadByList: SalesforceBooleanFilter
-
- """Filter by the Profile's permissionsListEmailSend field"""
- permissionsListEmailSend: SalesforceBooleanFilter
-
- """Filter by the Profile's permissionsFeedPinning field"""
- permissionsFeedPinning: SalesforceBooleanFilter
-
- """Filter by the Profile's permissionsChangeDashboardColors field"""
- permissionsChangeDashboardColors: SalesforceBooleanFilter
-
- """Filter by the Profile's permissionsIotUser field"""
- permissionsIotUser: SalesforceBooleanFilter
-
- """Filter by the Profile's permissionsUseWebLink field"""
- permissionsUseWebLink: SalesforceBooleanFilter
-
- """Filter by the Profile's permissionsViewAllActivities field"""
- permissionsViewAllActivities: SalesforceBooleanFilter
-
- """Filter by the Profile's permissionsSubscribeReportToOtherUsers field"""
- permissionsSubscribeReportToOtherUsers: SalesforceBooleanFilter
-
- """
- Filter by the Profile's permissionsLightningConsoleAllowedForUser field
- """
- permissionsLightningConsoleAllowedForUser: SalesforceBooleanFilter
-
- """Filter by the Profile's permissionsSubscribeReportsRunAsUser field"""
- permissionsSubscribeReportsRunAsUser: SalesforceBooleanFilter
-
- """
- Filter by the Profile's permissionsSubscribeToLightningDashboards field
- """
- permissionsSubscribeToLightningDashboards: SalesforceBooleanFilter
-
- """Filter by the Profile's permissionsApexRestServices field"""
- permissionsApexRestServices: SalesforceBooleanFilter
-
- """Filter by the Profile's permissionsEnableCommunityAppLauncher field"""
- permissionsEnableCommunityAppLauncher: SalesforceBooleanFilter
-
- """Filter by the Profile's permissionsManageSurveys field"""
- permissionsManageSurveys: SalesforceBooleanFilter
-
- """Filter by the Profile's permissionsViewRoles field"""
- permissionsViewRoles: SalesforceBooleanFilter
-
- """Filter by the Profile's userLicenseId field"""
- userLicenseId: SalesforceIdFilter
-
- """Filter by the Profile's userType field"""
- userType: SalesforceStringFilter
-
- """Filter by the Profile's createdDate field"""
- createdDate: SalesforceDateTimeFilter
-
- """Filter by the Profile's createdById field"""
- createdById: SalesforceIdFilter
-
- """Filter by the Profile's lastModifiedDate field"""
- lastModifiedDate: SalesforceDateTimeFilter
-
- """Filter by the Profile's lastModifiedById field"""
- lastModifiedById: SalesforceIdFilter
-
- """Filter by the Profile's systemModstamp field"""
- systemModstamp: SalesforceDateTimeFilter
-
- """Filter by the Profile's description field"""
- description: SalesforceStringFilter
-
- """Filter by the Profile's lastViewedDate field"""
- lastViewedDate: SalesforceDateTimeFilter
-
- """Filter by the Profile's lastReferencedDate field"""
- lastReferencedDate: SalesforceDateTimeFilter
-
- """Checks for any expressions in this list."""
- or: [SalesforceProfileConnectionFilter!]
-
- """Checks for all expressions in this list."""
- and: [SalesforceProfileConnectionFilter!]
-}
-
-"""A filter to be used against custom fields of type `datetime`."""
-input SalesforceCustomFieldDateTimeFilter {
- filter: SalesforceDateTimeFilter!
-
- """Name of the custom field, e.g. `CustomerPriority__c`"""
- fieldName: String!
-}
-
-"""A filter to be used against custom fields of type `date`."""
-input SalesforceCustomFieldDateFilter {
- filter: SalesforceDateFilter!
-
- """Name of the custom field, e.g. `CustomerPriority__c`"""
- fieldName: String!
-}
-
-"""A filter to be used against custom fields of type `boolean`."""
-input SalesforceCustomFieldBooleanFilter {
- filter: SalesforceBooleanFilter!
-
- """Name of the custom field, e.g. `CustomerPriority__c`"""
- fieldName: String!
-}
-
-"""A filter to be used against custom fields of type `string`."""
-input SalesforceCustomFieldStringFilter {
- filter: SalesforceStringFilter!
-
- """Name of the custom field, e.g. `CustomerPriority__c`"""
- fieldName: String!
-}
-
-"""A filter to be used against custom fields of type `float`."""
-input SalesforceCustomFieldFloatFilter {
- filter: SalesforceFloatFilter!
-
- """Name of the custom field, e.g. `CustomerPriority__c`"""
- fieldName: String!
-}
-
-"""A filter to be used against custom fields of type `int`."""
-input SalesforceCustomFieldIntFilter {
- filter: SalesforceIntFilter!
-
- """Name of the custom field, e.g. `CustomerPriority__c`"""
- fieldName: String!
-}
-
-"""A filter to be used against custom fields."""
-input SalesforceCustomFieldFilter {
- """Filter for custom field of type `datetime`."""
- dateTimeField: SalesforceCustomFieldDateTimeFilter
-
- """Filter for custom field of type `date`."""
- dateField: SalesforceCustomFieldDateFilter
-
- """Filter for custom field of type `boolean`."""
- booleanField: SalesforceCustomFieldBooleanFilter
-
- """Filter for custom field of type `string`."""
- stringField: SalesforceCustomFieldStringFilter
-
- """Filter for custom field of type `float`."""
- floatField: SalesforceCustomFieldFloatFilter
-
- """Filter for custom field of type `int`."""
- intField: SalesforceCustomFieldIntFilter
-}
-
-"""
-A filter to be used against DandBCompany object types. All fields are combined with a logical ‘and.’
-"""
-input SalesforceDandBCompanyConnectionFilter {
- """Filter against custom fields."""
- customField: SalesforceCustomFieldFilter
-
- """Filter by the DandBCompany's lastModifiedBy relation."""
- lastModifiedBy: SalesforceUserConnectionFilter
-
- """Filter by the DandBCompany's createdBy relation."""
- createdBy: SalesforceUserConnectionFilter
-
- """Filter by the DandBCompany's id field"""
- id: SalesforceIdFilter
-
- """Filter by the DandBCompany's isDeleted field"""
- isDeleted: SalesforceBooleanFilter
-
- """Filter by the DandBCompany's name field"""
- name: SalesforceStringFilter
-
- """Filter by the DandBCompany's createdDate field"""
- createdDate: SalesforceDateTimeFilter
-
- """Filter by the DandBCompany's createdById field"""
- createdById: SalesforceIdFilter
-
- """Filter by the DandBCompany's lastModifiedDate field"""
- lastModifiedDate: SalesforceDateTimeFilter
-
- """Filter by the DandBCompany's lastModifiedById field"""
- lastModifiedById: SalesforceIdFilter
-
- """Filter by the DandBCompany's systemModstamp field"""
- systemModstamp: SalesforceDateTimeFilter
-
- """Filter by the DandBCompany's lastViewedDate field"""
- lastViewedDate: SalesforceDateTimeFilter
-
- """Filter by the DandBCompany's lastReferencedDate field"""
- lastReferencedDate: SalesforceDateTimeFilter
-
- """Filter by the DandBCompany's dunsNumber field"""
- dunsNumber: SalesforceStringFilter
-
- """Filter by the DandBCompany's street field"""
- street: SalesforceStringFilter
-
- """Filter by the DandBCompany's city field"""
- city: SalesforceStringFilter
-
- """Filter by the DandBCompany's state field"""
- state: SalesforceStringFilter
-
- """Filter by the DandBCompany's postalCode field"""
- postalCode: SalesforceStringFilter
-
- """Filter by the DandBCompany's country field"""
- country: SalesforceStringFilter
-
- """Filter by the DandBCompany's geocodeAccuracyStandard field"""
- geocodeAccuracyStandard: SalesforceStringFilter
-
- """Filter by the DandBCompany's phone field"""
- phone: SalesforceStringFilter
-
- """Filter by the DandBCompany's fax field"""
- fax: SalesforceStringFilter
-
- """Filter by the DandBCompany's countryAccessCode field"""
- countryAccessCode: SalesforceStringFilter
-
- """Filter by the DandBCompany's publicIndicator field"""
- publicIndicator: SalesforceStringFilter
-
- """Filter by the DandBCompany's stockSymbol field"""
- stockSymbol: SalesforceStringFilter
-
- """Filter by the DandBCompany's stockExchange field"""
- stockExchange: SalesforceStringFilter
-
- """Filter by the DandBCompany's salesVolume field"""
- salesVolume: SalesforceFloatFilter
-
- """Filter by the DandBCompany's url field"""
- url: SalesforceStringFilter
-
- """Filter by the DandBCompany's outOfBusiness field"""
- outOfBusiness: SalesforceStringFilter
-
- """Filter by the DandBCompany's employeesTotal field"""
- employeesTotal: SalesforceFloatFilter
-
- """Filter by the DandBCompany's fipsMsaCode field"""
- fipsMsaCode: SalesforceStringFilter
-
- """Filter by the DandBCompany's fipsMsaDesc field"""
- fipsMsaDesc: SalesforceStringFilter
-
- """Filter by the DandBCompany's tradeStyle1 field"""
- tradeStyle1: SalesforceStringFilter
-
- """Filter by the DandBCompany's yearStarted field"""
- yearStarted: SalesforceStringFilter
-
- """Filter by the DandBCompany's mailingStreet field"""
- mailingStreet: SalesforceStringFilter
-
- """Filter by the DandBCompany's mailingCity field"""
- mailingCity: SalesforceStringFilter
-
- """Filter by the DandBCompany's mailingState field"""
- mailingState: SalesforceStringFilter
-
- """Filter by the DandBCompany's mailingPostalCode field"""
- mailingPostalCode: SalesforceStringFilter
-
- """Filter by the DandBCompany's mailingCountry field"""
- mailingCountry: SalesforceStringFilter
-
- """Filter by the DandBCompany's mailingGeocodeAccuracy field"""
- mailingGeocodeAccuracy: SalesforceStringFilter
-
- """Filter by the DandBCompany's latitude field"""
- latitude: SalesforceStringFilter
-
- """Filter by the DandBCompany's longitude field"""
- longitude: SalesforceStringFilter
-
- """Filter by the DandBCompany's primarySic field"""
- primarySic: SalesforceStringFilter
-
- """Filter by the DandBCompany's primarySicDesc field"""
- primarySicDesc: SalesforceStringFilter
-
- """Filter by the DandBCompany's secondSic field"""
- secondSic: SalesforceStringFilter
-
- """Filter by the DandBCompany's secondSicDesc field"""
- secondSicDesc: SalesforceStringFilter
-
- """Filter by the DandBCompany's thirdSic field"""
- thirdSic: SalesforceStringFilter
-
- """Filter by the DandBCompany's thirdSicDesc field"""
- thirdSicDesc: SalesforceStringFilter
-
- """Filter by the DandBCompany's fourthSic field"""
- fourthSic: SalesforceStringFilter
-
- """Filter by the DandBCompany's fourthSicDesc field"""
- fourthSicDesc: SalesforceStringFilter
-
- """Filter by the DandBCompany's fifthSic field"""
- fifthSic: SalesforceStringFilter
-
- """Filter by the DandBCompany's fifthSicDesc field"""
- fifthSicDesc: SalesforceStringFilter
-
- """Filter by the DandBCompany's sixthSic field"""
- sixthSic: SalesforceStringFilter
-
- """Filter by the DandBCompany's sixthSicDesc field"""
- sixthSicDesc: SalesforceStringFilter
-
- """Filter by the DandBCompany's primaryNaics field"""
- primaryNaics: SalesforceStringFilter
-
- """Filter by the DandBCompany's primaryNaicsDesc field"""
- primaryNaicsDesc: SalesforceStringFilter
-
- """Filter by the DandBCompany's secondNaics field"""
- secondNaics: SalesforceStringFilter
-
- """Filter by the DandBCompany's secondNaicsDesc field"""
- secondNaicsDesc: SalesforceStringFilter
-
- """Filter by the DandBCompany's thirdNaics field"""
- thirdNaics: SalesforceStringFilter
-
- """Filter by the DandBCompany's thirdNaicsDesc field"""
- thirdNaicsDesc: SalesforceStringFilter
-
- """Filter by the DandBCompany's fourthNaics field"""
- fourthNaics: SalesforceStringFilter
-
- """Filter by the DandBCompany's fourthNaicsDesc field"""
- fourthNaicsDesc: SalesforceStringFilter
-
- """Filter by the DandBCompany's fifthNaics field"""
- fifthNaics: SalesforceStringFilter
-
- """Filter by the DandBCompany's fifthNaicsDesc field"""
- fifthNaicsDesc: SalesforceStringFilter
-
- """Filter by the DandBCompany's sixthNaics field"""
- sixthNaics: SalesforceStringFilter
-
- """Filter by the DandBCompany's sixthNaicsDesc field"""
- sixthNaicsDesc: SalesforceStringFilter
-
- """Filter by the DandBCompany's ownOrRent field"""
- ownOrRent: SalesforceStringFilter
-
- """Filter by the DandBCompany's employeesHere field"""
- employeesHere: SalesforceFloatFilter
-
- """Filter by the DandBCompany's employeesHereReliability field"""
- employeesHereReliability: SalesforceStringFilter
-
- """Filter by the DandBCompany's salesVolumeReliability field"""
- salesVolumeReliability: SalesforceStringFilter
-
- """Filter by the DandBCompany's currencyCode field"""
- currencyCode: SalesforceStringFilter
-
- """Filter by the DandBCompany's legalStatus field"""
- legalStatus: SalesforceStringFilter
-
- """Filter by the DandBCompany's globalUltimateTotalEmployees field"""
- globalUltimateTotalEmployees: SalesforceFloatFilter
-
- """Filter by the DandBCompany's employeesTotalReliability field"""
- employeesTotalReliability: SalesforceStringFilter
-
- """Filter by the DandBCompany's minorityOwned field"""
- minorityOwned: SalesforceStringFilter
-
- """Filter by the DandBCompany's womenOwned field"""
- womenOwned: SalesforceStringFilter
-
- """Filter by the DandBCompany's smallBusiness field"""
- smallBusiness: SalesforceStringFilter
-
- """Filter by the DandBCompany's marketingSegmentationCluster field"""
- marketingSegmentationCluster: SalesforceStringFilter
-
- """Filter by the DandBCompany's importExportAgent field"""
- importExportAgent: SalesforceStringFilter
-
- """Filter by the DandBCompany's subsidiary field"""
- subsidiary: SalesforceStringFilter
-
- """Filter by the DandBCompany's tradeStyle2 field"""
- tradeStyle2: SalesforceStringFilter
-
- """Filter by the DandBCompany's tradeStyle3 field"""
- tradeStyle3: SalesforceStringFilter
-
- """Filter by the DandBCompany's tradeStyle4 field"""
- tradeStyle4: SalesforceStringFilter
-
- """Filter by the DandBCompany's tradeStyle5 field"""
- tradeStyle5: SalesforceStringFilter
-
- """Filter by the DandBCompany's nationalId field"""
- nationalId: SalesforceStringFilter
-
- """Filter by the DandBCompany's nationalIdType field"""
- nationalIdType: SalesforceStringFilter
-
- """Filter by the DandBCompany's usTaxId field"""
- usTaxId: SalesforceStringFilter
-
- """Filter by the DandBCompany's geoCodeAccuracy field"""
- geoCodeAccuracy: SalesforceStringFilter
-
- """Filter by the DandBCompany's familyMembers field"""
- familyMembers: SalesforceIntFilter
-
- """Filter by the DandBCompany's marketingPreScreen field"""
- marketingPreScreen: SalesforceStringFilter
-
- """Filter by the DandBCompany's globalUltimateDunsNumber field"""
- globalUltimateDunsNumber: SalesforceStringFilter
-
- """Filter by the DandBCompany's globalUltimateBusinessName field"""
- globalUltimateBusinessName: SalesforceStringFilter
-
- """Filter by the DandBCompany's parentOrHqDunsNumber field"""
- parentOrHqDunsNumber: SalesforceStringFilter
-
- """Filter by the DandBCompany's parentOrHqBusinessName field"""
- parentOrHqBusinessName: SalesforceStringFilter
-
- """Filter by the DandBCompany's domesticUltimateDunsNumber field"""
- domesticUltimateDunsNumber: SalesforceStringFilter
-
- """Filter by the DandBCompany's domesticUltimateBusinessName field"""
- domesticUltimateBusinessName: SalesforceStringFilter
-
- """Filter by the DandBCompany's locationStatus field"""
- locationStatus: SalesforceStringFilter
-
- """Filter by the DandBCompany's companyCurrencyIsoCode field"""
- companyCurrencyIsoCode: SalesforceStringFilter
-
- """Filter by the DandBCompany's fortuneRank field"""
- fortuneRank: SalesforceIntFilter
-
- """Filter by the DandBCompany's includedInSnP500 field"""
- includedInSnP500: SalesforceStringFilter
-
- """Filter by the DandBCompany's premisesMeasure field"""
- premisesMeasure: SalesforceIntFilter
-
- """Filter by the DandBCompany's premisesMeasureReliability field"""
- premisesMeasureReliability: SalesforceStringFilter
-
- """Filter by the DandBCompany's premisesMeasureUnit field"""
- premisesMeasureUnit: SalesforceStringFilter
-
- """Filter by the DandBCompany's employeeQuantityGrowthRate field"""
- employeeQuantityGrowthRate: SalesforceFloatFilter
-
- """Filter by the DandBCompany's salesTurnoverGrowthRate field"""
- salesTurnoverGrowthRate: SalesforceFloatFilter
-
- """Filter by the DandBCompany's primarySic8 field"""
- primarySic8: SalesforceStringFilter
-
- """Filter by the DandBCompany's primarySic8Desc field"""
- primarySic8Desc: SalesforceStringFilter
-
- """Filter by the DandBCompany's secondSic8 field"""
- secondSic8: SalesforceStringFilter
-
- """Filter by the DandBCompany's secondSic8Desc field"""
- secondSic8Desc: SalesforceStringFilter
-
- """Filter by the DandBCompany's thirdSic8 field"""
- thirdSic8: SalesforceStringFilter
-
- """Filter by the DandBCompany's thirdSic8Desc field"""
- thirdSic8Desc: SalesforceStringFilter
-
- """Filter by the DandBCompany's fourthSic8 field"""
- fourthSic8: SalesforceStringFilter
-
- """Filter by the DandBCompany's fourthSic8Desc field"""
- fourthSic8Desc: SalesforceStringFilter
-
- """Filter by the DandBCompany's fifthSic8 field"""
- fifthSic8: SalesforceStringFilter
-
- """Filter by the DandBCompany's fifthSic8Desc field"""
- fifthSic8Desc: SalesforceStringFilter
-
- """Filter by the DandBCompany's sixthSic8 field"""
- sixthSic8: SalesforceStringFilter
-
- """Filter by the DandBCompany's sixthSic8Desc field"""
- sixthSic8Desc: SalesforceStringFilter
-
- """Filter by the DandBCompany's priorYearEmployees field"""
- priorYearEmployees: SalesforceIntFilter
-
- """Filter by the DandBCompany's priorYearRevenue field"""
- priorYearRevenue: SalesforceFloatFilter
-
- """Checks for any expressions in this list."""
- or: [SalesforceDandBCompanyConnectionFilter!]
-
- """Checks for all expressions in this list."""
- and: [SalesforceDandBCompanyConnectionFilter!]
-}
-
-"""
-A filter to be used against Account object types. All fields are combined with a logical ‘and.’
-"""
-input SalesforceAccountConnectionFilter {
- """Filter against custom fields."""
- customField: SalesforceCustomFieldFilter
-
- """Filter by the Account's dandbCompany relation."""
- dandbCompany: SalesforceDandBCompanyConnectionFilter
-
- """Filter by the Account's lastModifiedBy relation."""
- lastModifiedBy: SalesforceUserConnectionFilter
-
- """Filter by the Account's createdBy relation."""
- createdBy: SalesforceUserConnectionFilter
-
- """Filter by the Account's owner relation."""
- owner: SalesforceUserConnectionFilter
-
- """Filter by the Account's parent relation."""
- parent: SalesforceAccountConnectionFilter
-
- """Filter by the Account's masterRecord relation."""
- masterRecord: SalesforceAccountConnectionFilter
-
- """Filter by the Account's id field"""
- id: SalesforceIdFilter
-
- """Filter by the Account's isDeleted field"""
- isDeleted: SalesforceBooleanFilter
-
- """Filter by the Account's masterRecordId field"""
- masterRecordId: SalesforceIdFilter
-
- """Filter by the Account's name field"""
- name: SalesforceStringFilter
-
- """Filter by the Account's type field"""
- type: SalesforceStringFilter
-
- """Filter by the Account's parentId field"""
- parentId: SalesforceIdFilter
-
- """Filter by the Account's billingStreet field"""
- billingStreet: SalesforceStringFilter
-
- """Filter by the Account's billingCity field"""
- billingCity: SalesforceStringFilter
-
- """Filter by the Account's billingState field"""
- billingState: SalesforceStringFilter
-
- """Filter by the Account's billingPostalCode field"""
- billingPostalCode: SalesforceStringFilter
-
- """Filter by the Account's billingCountry field"""
- billingCountry: SalesforceStringFilter
-
- """Filter by the Account's billingLatitude field"""
- billingLatitude: SalesforceFloatFilter
-
- """Filter by the Account's billingLongitude field"""
- billingLongitude: SalesforceFloatFilter
-
- """Filter by the Account's billingGeocodeAccuracy field"""
- billingGeocodeAccuracy: SalesforceStringFilter
-
- """Filter by the Account's shippingStreet field"""
- shippingStreet: SalesforceStringFilter
-
- """Filter by the Account's shippingCity field"""
- shippingCity: SalesforceStringFilter
-
- """Filter by the Account's shippingState field"""
- shippingState: SalesforceStringFilter
-
- """Filter by the Account's shippingPostalCode field"""
- shippingPostalCode: SalesforceStringFilter
-
- """Filter by the Account's shippingCountry field"""
- shippingCountry: SalesforceStringFilter
-
- """Filter by the Account's shippingLatitude field"""
- shippingLatitude: SalesforceFloatFilter
-
- """Filter by the Account's shippingLongitude field"""
- shippingLongitude: SalesforceFloatFilter
-
- """Filter by the Account's shippingGeocodeAccuracy field"""
- shippingGeocodeAccuracy: SalesforceStringFilter
-
- """Filter by the Account's phone field"""
- phone: SalesforceStringFilter
-
- """Filter by the Account's fax field"""
- fax: SalesforceStringFilter
-
- """Filter by the Account's accountNumber field"""
- accountNumber: SalesforceStringFilter
-
- """Filter by the Account's website field"""
- website: SalesforceStringFilter
-
- """Filter by the Account's photoUrl field"""
- photoUrl: SalesforceStringFilter
-
- """Filter by the Account's sic field"""
- sic: SalesforceStringFilter
-
- """Filter by the Account's industry field"""
- industry: SalesforceStringFilter
-
- """Filter by the Account's annualRevenue field"""
- annualRevenue: SalesforceFloatFilter
-
- """Filter by the Account's numberOfEmployees field"""
- numberOfEmployees: SalesforceIntFilter
-
- """Filter by the Account's ownership field"""
- ownership: SalesforceStringFilter
-
- """Filter by the Account's tickerSymbol field"""
- tickerSymbol: SalesforceStringFilter
-
- """Filter by the Account's rating field"""
- rating: SalesforceStringFilter
-
- """Filter by the Account's site field"""
- site: SalesforceStringFilter
-
- """Filter by the Account's ownerId field"""
- ownerId: SalesforceIdFilter
-
- """Filter by the Account's createdDate field"""
- createdDate: SalesforceDateTimeFilter
-
- """Filter by the Account's createdById field"""
- createdById: SalesforceIdFilter
-
- """Filter by the Account's lastModifiedDate field"""
- lastModifiedDate: SalesforceDateTimeFilter
-
- """Filter by the Account's lastModifiedById field"""
- lastModifiedById: SalesforceIdFilter
-
- """Filter by the Account's systemModstamp field"""
- systemModstamp: SalesforceDateTimeFilter
-
- """Filter by the Account's lastActivityDate field"""
- lastActivityDate: SalesforceDateFilter
-
- """Filter by the Account's lastViewedDate field"""
- lastViewedDate: SalesforceDateTimeFilter
-
- """Filter by the Account's lastReferencedDate field"""
- lastReferencedDate: SalesforceDateTimeFilter
-
- """Filter by the Account's jigsaw field"""
- jigsaw: SalesforceStringFilter
-
- """Filter by the Account's jigsawCompanyId field"""
- jigsawCompanyId: SalesforceStringFilter
-
- """Filter by the Account's cleanStatus field"""
- cleanStatus: SalesforceStringFilter
-
- """Filter by the Account's accountSource field"""
- accountSource: SalesforceStringFilter
-
- """Filter by the Account's dunsNumber field"""
- dunsNumber: SalesforceStringFilter
-
- """Filter by the Account's tradestyle field"""
- tradestyle: SalesforceStringFilter
-
- """Filter by the Account's naicsCode field"""
- naicsCode: SalesforceStringFilter
-
- """Filter by the Account's naicsDesc field"""
- naicsDesc: SalesforceStringFilter
-
- """Filter by the Account's yearStarted field"""
- yearStarted: SalesforceStringFilter
-
- """Filter by the Account's sicDesc field"""
- sicDesc: SalesforceStringFilter
-
- """Filter by the Account's dandbCompanyId field"""
- dandbCompanyId: SalesforceIdFilter
-
- """Checks for any expressions in this list."""
- or: [SalesforceAccountConnectionFilter!]
-
- """Checks for all expressions in this list."""
- and: [SalesforceAccountConnectionFilter!]
-}
-
-"""
-A filter to be used against UserRole object types. All fields are combined with a logical ‘and.’
-"""
-input SalesforceUserRoleConnectionFilter {
- """Filter against custom fields."""
- customField: SalesforceCustomFieldFilter
-
- """Filter by the UserRole's portalAccountOwner relation."""
- portalAccountOwner: SalesforceUserConnectionFilter
-
- """Filter by the UserRole's portalAccount relation."""
- portalAccount: SalesforceAccountConnectionFilter
-
- """Filter by the UserRole's lastModifiedBy relation."""
- lastModifiedBy: SalesforceUserConnectionFilter
-
- """Filter by the UserRole's forecastUser relation."""
- forecastUser: SalesforceUserConnectionFilter
-
- """Filter by the UserRole's parentRole relation."""
- parentRole: SalesforceUserRoleConnectionFilter
-
- """Filter by the UserRole's id field"""
- id: SalesforceIdFilter
-
- """Filter by the UserRole's name field"""
- name: SalesforceStringFilter
-
- """Filter by the UserRole's parentRoleId field"""
- parentRoleId: SalesforceIdFilter
-
- """Filter by the UserRole's rollupDescription field"""
- rollupDescription: SalesforceStringFilter
-
- """Filter by the UserRole's opportunityAccessForAccountOwner field"""
- opportunityAccessForAccountOwner: SalesforceStringFilter
-
- """Filter by the UserRole's caseAccessForAccountOwner field"""
- caseAccessForAccountOwner: SalesforceStringFilter
-
- """Filter by the UserRole's contactAccessForAccountOwner field"""
- contactAccessForAccountOwner: SalesforceStringFilter
-
- """Filter by the UserRole's forecastUserId field"""
- forecastUserId: SalesforceIdFilter
-
- """Filter by the UserRole's mayForecastManagerShare field"""
- mayForecastManagerShare: SalesforceBooleanFilter
-
- """Filter by the UserRole's lastModifiedDate field"""
- lastModifiedDate: SalesforceDateTimeFilter
-
- """Filter by the UserRole's lastModifiedById field"""
- lastModifiedById: SalesforceIdFilter
-
- """Filter by the UserRole's systemModstamp field"""
- systemModstamp: SalesforceDateTimeFilter
-
- """Filter by the UserRole's developerName field"""
- developerName: SalesforceStringFilter
-
- """Filter by the UserRole's portalAccountId field"""
- portalAccountId: SalesforceIdFilter
-
- """Filter by the UserRole's portalType field"""
- portalType: SalesforceStringFilter
-
- """Filter by the UserRole's portalAccountOwnerId field"""
- portalAccountOwnerId: SalesforceIdFilter
-
- """Checks for any expressions in this list."""
- or: [SalesforceUserRoleConnectionFilter!]
-
- """Checks for all expressions in this list."""
- and: [SalesforceUserRoleConnectionFilter!]
-}
-
-"""
-A filter to be used against float fields. All fields are combined with a logical `and`.
-"""
-input SalesforceFloatFilter {
- """Not included in the specified list."""
- notIn: [Float!]
-
- """Included in the specified list."""
- in: [Float!]
-
- """Less than or equal to the specified value"""
- lessThanOrEqualTo: Float
-
- """Less than the specified value"""
- lessThan: Float
-
- """Greater than or equal to the specified value"""
- greaterThanOrEqualTo: Float
-
- """Greater than the specified value"""
- greaterThan: Float
-
- """Is null (if true is specified) or is not null (if false is specified)."""
- isNull: Boolean
-
- """Not equal to the specified value."""
- notEqualTo: Float
-
- """Equal to the specified value."""
- equalTo: Float
-}
-
-"""
-A filter to be used against User object types. All fields are combined with a logical ‘and.’
-"""
-input SalesforceUserConnectionFilter {
- """Filter against custom fields."""
- customField: SalesforceCustomFieldFilter
-
- """Filter by the User's callCenter relation."""
- callCenter: SalesforceCallCenterConnectionFilter
-
- """Filter by the User's account relation."""
- account: SalesforceAccountConnectionFilter
-
- """Filter by the User's contact relation."""
- contact: SalesforceContactConnectionFilter
-
- """Filter by the User's lastModifiedBy relation."""
- lastModifiedBy: SalesforceUserConnectionFilter
-
- """Filter by the User's createdBy relation."""
- createdBy: SalesforceUserConnectionFilter
-
- """Filter by the User's manager relation."""
- manager: SalesforceUserConnectionFilter
-
- """Filter by the User's profile relation."""
- profile: SalesforceProfileConnectionFilter
-
- """Filter by the User's userRole relation."""
- userRole: SalesforceUserRoleConnectionFilter
-
- """Filter by the User's id field"""
- id: SalesforceIdFilter
-
- """Filter by the User's username field"""
- username: SalesforceStringFilter
-
- """Filter by the User's lastName field"""
- lastName: SalesforceStringFilter
-
- """Filter by the User's firstName field"""
- firstName: SalesforceStringFilter
-
- """Filter by the User's name field"""
- name: SalesforceStringFilter
-
- """Filter by the User's companyName field"""
- companyName: SalesforceStringFilter
-
- """Filter by the User's division field"""
- division: SalesforceStringFilter
-
- """Filter by the User's department field"""
- department: SalesforceStringFilter
-
- """Filter by the User's title field"""
- title: SalesforceStringFilter
-
- """Filter by the User's street field"""
- street: SalesforceStringFilter
-
- """Filter by the User's city field"""
- city: SalesforceStringFilter
-
- """Filter by the User's state field"""
- state: SalesforceStringFilter
-
- """Filter by the User's postalCode field"""
- postalCode: SalesforceStringFilter
-
- """Filter by the User's country field"""
- country: SalesforceStringFilter
-
- """Filter by the User's latitude field"""
- latitude: SalesforceFloatFilter
-
- """Filter by the User's longitude field"""
- longitude: SalesforceFloatFilter
-
- """Filter by the User's geocodeAccuracy field"""
- geocodeAccuracy: SalesforceStringFilter
-
- """Filter by the User's email field"""
- email: SalesforceStringFilter
-
- """Filter by the User's emailPreferencesAutoBcc field"""
- emailPreferencesAutoBcc: SalesforceBooleanFilter
-
- """Filter by the User's emailPreferencesAutoBccStayInTouch field"""
- emailPreferencesAutoBccStayInTouch: SalesforceBooleanFilter
-
- """Filter by the User's emailPreferencesStayInTouchReminder field"""
- emailPreferencesStayInTouchReminder: SalesforceBooleanFilter
-
- """Filter by the User's senderEmail field"""
- senderEmail: SalesforceStringFilter
-
- """Filter by the User's senderName field"""
- senderName: SalesforceStringFilter
-
- """Filter by the User's signature field"""
- signature: SalesforceStringFilter
-
- """Filter by the User's stayInTouchSubject field"""
- stayInTouchSubject: SalesforceStringFilter
-
- """Filter by the User's stayInTouchSignature field"""
- stayInTouchSignature: SalesforceStringFilter
-
- """Filter by the User's stayInTouchNote field"""
- stayInTouchNote: SalesforceStringFilter
-
- """Filter by the User's phone field"""
- phone: SalesforceStringFilter
-
- """Filter by the User's fax field"""
- fax: SalesforceStringFilter
-
- """Filter by the User's mobilePhone field"""
- mobilePhone: SalesforceStringFilter
-
- """Filter by the User's alias field"""
- alias: SalesforceStringFilter
-
- """Filter by the User's communityNickname field"""
- communityNickname: SalesforceStringFilter
-
- """Filter by the User's badgeText field"""
- badgeText: SalesforceStringFilter
-
- """Filter by the User's isActive field"""
- isActive: SalesforceBooleanFilter
-
- """Filter by the User's timeZoneSidKey field"""
- timeZoneSidKey: SalesforceStringFilter
-
- """Filter by the User's userRoleId field"""
- userRoleId: SalesforceIdFilter
-
- """Filter by the User's localeSidKey field"""
- localeSidKey: SalesforceStringFilter
-
- """Filter by the User's receivesInfoEmails field"""
- receivesInfoEmails: SalesforceBooleanFilter
-
- """Filter by the User's receivesAdminInfoEmails field"""
- receivesAdminInfoEmails: SalesforceBooleanFilter
-
- """Filter by the User's emailEncodingKey field"""
- emailEncodingKey: SalesforceStringFilter
-
- """Filter by the User's profileId field"""
- profileId: SalesforceIdFilter
-
- """Filter by the User's userType field"""
- userType: SalesforceStringFilter
-
- """Filter by the User's languageLocaleKey field"""
- languageLocaleKey: SalesforceStringFilter
-
- """Filter by the User's employeeNumber field"""
- employeeNumber: SalesforceStringFilter
-
- """Filter by the User's delegatedApproverId field"""
- delegatedApproverId: SalesforceIdFilter
-
- """Filter by the User's managerId field"""
- managerId: SalesforceIdFilter
-
- """Filter by the User's lastLoginDate field"""
- lastLoginDate: SalesforceDateTimeFilter
-
- """Filter by the User's lastPasswordChangeDate field"""
- lastPasswordChangeDate: SalesforceDateTimeFilter
-
- """Filter by the User's createdDate field"""
- createdDate: SalesforceDateTimeFilter
-
- """Filter by the User's createdById field"""
- createdById: SalesforceIdFilter
-
- """Filter by the User's lastModifiedDate field"""
- lastModifiedDate: SalesforceDateTimeFilter
-
- """Filter by the User's lastModifiedById field"""
- lastModifiedById: SalesforceIdFilter
-
- """Filter by the User's systemModstamp field"""
- systemModstamp: SalesforceDateTimeFilter
-
- """Filter by the User's offlineTrialExpirationDate field"""
- offlineTrialExpirationDate: SalesforceDateTimeFilter
-
- """Filter by the User's offlinePdaTrialExpirationDate field"""
- offlinePdaTrialExpirationDate: SalesforceDateTimeFilter
-
- """Filter by the User's userPermissionsMarketingUser field"""
- userPermissionsMarketingUser: SalesforceBooleanFilter
-
- """Filter by the User's userPermissionsOfflineUser field"""
- userPermissionsOfflineUser: SalesforceBooleanFilter
-
- """Filter by the User's userPermissionsCallCenterAutoLogin field"""
- userPermissionsCallCenterAutoLogin: SalesforceBooleanFilter
-
- """Filter by the User's userPermissionsMobileUser field"""
- userPermissionsMobileUser: SalesforceBooleanFilter
-
- """Filter by the User's userPermissionsSfContentUser field"""
- userPermissionsSfContentUser: SalesforceBooleanFilter
-
- """Filter by the User's userPermissionsKnowledgeUser field"""
- userPermissionsKnowledgeUser: SalesforceBooleanFilter
-
- """Filter by the User's userPermissionsInteractionUser field"""
- userPermissionsInteractionUser: SalesforceBooleanFilter
-
- """Filter by the User's userPermissionsSupportUser field"""
- userPermissionsSupportUser: SalesforceBooleanFilter
-
- """Filter by the User's userPermissionsJigsawProspectingUser field"""
- userPermissionsJigsawProspectingUser: SalesforceBooleanFilter
-
- """Filter by the User's userPermissionsSiteforceContributorUser field"""
- userPermissionsSiteforceContributorUser: SalesforceBooleanFilter
-
- """Filter by the User's userPermissionsSiteforcePublisherUser field"""
- userPermissionsSiteforcePublisherUser: SalesforceBooleanFilter
-
- """Filter by the User's userPermissionsWorkDotComUserFeature field"""
- userPermissionsWorkDotComUserFeature: SalesforceBooleanFilter
-
- """Filter by the User's forecastEnabled field"""
- forecastEnabled: SalesforceBooleanFilter
-
- """Filter by the User's userPreferencesActivityRemindersPopup field"""
- userPreferencesActivityRemindersPopup: SalesforceBooleanFilter
-
- """
- Filter by the User's userPreferencesEventRemindersCheckboxDefault field
- """
- userPreferencesEventRemindersCheckboxDefault: SalesforceBooleanFilter
-
- """Filter by the User's userPreferencesTaskRemindersCheckboxDefault field"""
- userPreferencesTaskRemindersCheckboxDefault: SalesforceBooleanFilter
-
- """Filter by the User's userPreferencesReminderSoundOff field"""
- userPreferencesReminderSoundOff: SalesforceBooleanFilter
-
- """Filter by the User's userPreferencesDisableAllFeedsEmail field"""
- userPreferencesDisableAllFeedsEmail: SalesforceBooleanFilter
-
- """Filter by the User's userPreferencesDisableFollowersEmail field"""
- userPreferencesDisableFollowersEmail: SalesforceBooleanFilter
-
- """Filter by the User's userPreferencesDisableProfilePostEmail field"""
- userPreferencesDisableProfilePostEmail: SalesforceBooleanFilter
-
- """Filter by the User's userPreferencesDisableChangeCommentEmail field"""
- userPreferencesDisableChangeCommentEmail: SalesforceBooleanFilter
-
- """Filter by the User's userPreferencesDisableLaterCommentEmail field"""
- userPreferencesDisableLaterCommentEmail: SalesforceBooleanFilter
-
- """Filter by the User's userPreferencesDisProfPostCommentEmail field"""
- userPreferencesDisProfPostCommentEmail: SalesforceBooleanFilter
-
- """Filter by the User's userPreferencesContentNoEmail field"""
- userPreferencesContentNoEmail: SalesforceBooleanFilter
-
- """Filter by the User's userPreferencesContentEmailAsAndWhen field"""
- userPreferencesContentEmailAsAndWhen: SalesforceBooleanFilter
-
- """Filter by the User's userPreferencesApexPagesDeveloperMode field"""
- userPreferencesApexPagesDeveloperMode: SalesforceBooleanFilter
-
- """Filter by the User's userPreferencesHideCsnGetChatterMobileTask field"""
- userPreferencesHideCsnGetChatterMobileTask: SalesforceBooleanFilter
-
- """Filter by the User's userPreferencesDisableMentionsPostEmail field"""
- userPreferencesDisableMentionsPostEmail: SalesforceBooleanFilter
-
- """Filter by the User's userPreferencesDisMentionsCommentEmail field"""
- userPreferencesDisMentionsCommentEmail: SalesforceBooleanFilter
-
- """Filter by the User's userPreferencesHideCsnDesktopTask field"""
- userPreferencesHideCsnDesktopTask: SalesforceBooleanFilter
-
- """Filter by the User's userPreferencesHideChatterOnboardingSplash field"""
- userPreferencesHideChatterOnboardingSplash: SalesforceBooleanFilter
-
- """
- Filter by the User's userPreferencesHideSecondChatterOnboardingSplash field
- """
- userPreferencesHideSecondChatterOnboardingSplash: SalesforceBooleanFilter
-
- """Filter by the User's userPreferencesDisCommentAfterLikeEmail field"""
- userPreferencesDisCommentAfterLikeEmail: SalesforceBooleanFilter
-
- """Filter by the User's userPreferencesDisableLikeEmail field"""
- userPreferencesDisableLikeEmail: SalesforceBooleanFilter
-
- """Filter by the User's userPreferencesSortFeedByComment field"""
- userPreferencesSortFeedByComment: SalesforceBooleanFilter
-
- """Filter by the User's userPreferencesDisableMessageEmail field"""
- userPreferencesDisableMessageEmail: SalesforceBooleanFilter
-
- """Filter by the User's userPreferencesJigsawListUser field"""
- userPreferencesJigsawListUser: SalesforceBooleanFilter
-
- """Filter by the User's userPreferencesDisableBookmarkEmail field"""
- userPreferencesDisableBookmarkEmail: SalesforceBooleanFilter
-
- """Filter by the User's userPreferencesDisableSharePostEmail field"""
- userPreferencesDisableSharePostEmail: SalesforceBooleanFilter
-
- """Filter by the User's userPreferencesEnableAutoSubForFeeds field"""
- userPreferencesEnableAutoSubForFeeds: SalesforceBooleanFilter
-
- """
- Filter by the User's userPreferencesDisableFileShareNotificationsForApi field
- """
- userPreferencesDisableFileShareNotificationsForApi: SalesforceBooleanFilter
-
- """Filter by the User's userPreferencesShowTitleToExternalUsers field"""
- userPreferencesShowTitleToExternalUsers: SalesforceBooleanFilter
-
- """Filter by the User's userPreferencesShowManagerToExternalUsers field"""
- userPreferencesShowManagerToExternalUsers: SalesforceBooleanFilter
-
- """Filter by the User's userPreferencesShowEmailToExternalUsers field"""
- userPreferencesShowEmailToExternalUsers: SalesforceBooleanFilter
-
- """Filter by the User's userPreferencesShowWorkPhoneToExternalUsers field"""
- userPreferencesShowWorkPhoneToExternalUsers: SalesforceBooleanFilter
-
- """
- Filter by the User's userPreferencesShowMobilePhoneToExternalUsers field
- """
- userPreferencesShowMobilePhoneToExternalUsers: SalesforceBooleanFilter
-
- """Filter by the User's userPreferencesShowFaxToExternalUsers field"""
- userPreferencesShowFaxToExternalUsers: SalesforceBooleanFilter
-
- """
- Filter by the User's userPreferencesShowStreetAddressToExternalUsers field
- """
- userPreferencesShowStreetAddressToExternalUsers: SalesforceBooleanFilter
-
- """Filter by the User's userPreferencesShowCityToExternalUsers field"""
- userPreferencesShowCityToExternalUsers: SalesforceBooleanFilter
-
- """Filter by the User's userPreferencesShowStateToExternalUsers field"""
- userPreferencesShowStateToExternalUsers: SalesforceBooleanFilter
-
- """
- Filter by the User's userPreferencesShowPostalCodeToExternalUsers field
- """
- userPreferencesShowPostalCodeToExternalUsers: SalesforceBooleanFilter
-
- """Filter by the User's userPreferencesShowCountryToExternalUsers field"""
- userPreferencesShowCountryToExternalUsers: SalesforceBooleanFilter
-
- """Filter by the User's userPreferencesShowProfilePicToGuestUsers field"""
- userPreferencesShowProfilePicToGuestUsers: SalesforceBooleanFilter
-
- """Filter by the User's userPreferencesShowTitleToGuestUsers field"""
- userPreferencesShowTitleToGuestUsers: SalesforceBooleanFilter
-
- """Filter by the User's userPreferencesShowCityToGuestUsers field"""
- userPreferencesShowCityToGuestUsers: SalesforceBooleanFilter
-
- """Filter by the User's userPreferencesShowStateToGuestUsers field"""
- userPreferencesShowStateToGuestUsers: SalesforceBooleanFilter
-
- """Filter by the User's userPreferencesShowPostalCodeToGuestUsers field"""
- userPreferencesShowPostalCodeToGuestUsers: SalesforceBooleanFilter
-
- """Filter by the User's userPreferencesShowCountryToGuestUsers field"""
- userPreferencesShowCountryToGuestUsers: SalesforceBooleanFilter
-
- """Filter by the User's userPreferencesDisableFeedbackEmail field"""
- userPreferencesDisableFeedbackEmail: SalesforceBooleanFilter
-
- """Filter by the User's userPreferencesDisableWorkEmail field"""
- userPreferencesDisableWorkEmail: SalesforceBooleanFilter
-
- """Filter by the User's userPreferencesHideS1BrowserUi field"""
- userPreferencesHideS1BrowserUi: SalesforceBooleanFilter
-
- """Filter by the User's userPreferencesDisableEndorsementEmail field"""
- userPreferencesDisableEndorsementEmail: SalesforceBooleanFilter
-
- """Filter by the User's userPreferencesPathAssistantCollapsed field"""
- userPreferencesPathAssistantCollapsed: SalesforceBooleanFilter
-
- """Filter by the User's userPreferencesCacheDiagnostics field"""
- userPreferencesCacheDiagnostics: SalesforceBooleanFilter
-
- """Filter by the User's userPreferencesShowEmailToGuestUsers field"""
- userPreferencesShowEmailToGuestUsers: SalesforceBooleanFilter
-
- """Filter by the User's userPreferencesShowManagerToGuestUsers field"""
- userPreferencesShowManagerToGuestUsers: SalesforceBooleanFilter
-
- """Filter by the User's userPreferencesShowWorkPhoneToGuestUsers field"""
- userPreferencesShowWorkPhoneToGuestUsers: SalesforceBooleanFilter
-
- """Filter by the User's userPreferencesShowMobilePhoneToGuestUsers field"""
- userPreferencesShowMobilePhoneToGuestUsers: SalesforceBooleanFilter
-
- """Filter by the User's userPreferencesShowFaxToGuestUsers field"""
- userPreferencesShowFaxToGuestUsers: SalesforceBooleanFilter
-
- """
- Filter by the User's userPreferencesShowStreetAddressToGuestUsers field
- """
- userPreferencesShowStreetAddressToGuestUsers: SalesforceBooleanFilter
-
- """Filter by the User's userPreferencesLightningExperiencePreferred field"""
- userPreferencesLightningExperiencePreferred: SalesforceBooleanFilter
-
- """Filter by the User's userPreferencesPreviewLightning field"""
- userPreferencesPreviewLightning: SalesforceBooleanFilter
-
- """
- Filter by the User's userPreferencesHideEndUserOnboardingAssistantModal field
- """
- userPreferencesHideEndUserOnboardingAssistantModal: SalesforceBooleanFilter
-
- """Filter by the User's userPreferencesHideLightningMigrationModal field"""
- userPreferencesHideLightningMigrationModal: SalesforceBooleanFilter
-
- """Filter by the User's userPreferencesHideSfxWelcomeMat field"""
- userPreferencesHideSfxWelcomeMat: SalesforceBooleanFilter
-
- """Filter by the User's userPreferencesHideBiggerPhotoCallout field"""
- userPreferencesHideBiggerPhotoCallout: SalesforceBooleanFilter
-
- """Filter by the User's userPreferencesGlobalNavBarWtShown field"""
- userPreferencesGlobalNavBarWtShown: SalesforceBooleanFilter
-
- """Filter by the User's userPreferencesGlobalNavGridMenuWtShown field"""
- userPreferencesGlobalNavGridMenuWtShown: SalesforceBooleanFilter
-
- """Filter by the User's userPreferencesCreateLexAppsWtShown field"""
- userPreferencesCreateLexAppsWtShown: SalesforceBooleanFilter
-
- """Filter by the User's userPreferencesFavoritesWtShown field"""
- userPreferencesFavoritesWtShown: SalesforceBooleanFilter
-
- """
- Filter by the User's userPreferencesRecordHomeSectionCollapseWtShown field
- """
- userPreferencesRecordHomeSectionCollapseWtShown: SalesforceBooleanFilter
-
- """Filter by the User's userPreferencesRecordHomeReservedWtShown field"""
- userPreferencesRecordHomeReservedWtShown: SalesforceBooleanFilter
-
- """Filter by the User's userPreferencesFavoritesShowTopFavorites field"""
- userPreferencesFavoritesShowTopFavorites: SalesforceBooleanFilter
-
- """Filter by the User's userPreferencesExcludeMailAppAttachments field"""
- userPreferencesExcludeMailAppAttachments: SalesforceBooleanFilter
-
- """Filter by the User's userPreferencesSuppressTaskSfxReminders field"""
- userPreferencesSuppressTaskSfxReminders: SalesforceBooleanFilter
-
- """Filter by the User's userPreferencesSuppressEventSfxReminders field"""
- userPreferencesSuppressEventSfxReminders: SalesforceBooleanFilter
-
- """Filter by the User's userPreferencesPreviewCustomTheme field"""
- userPreferencesPreviewCustomTheme: SalesforceBooleanFilter
-
- """Filter by the User's userPreferencesHasCelebrationBadge field"""
- userPreferencesHasCelebrationBadge: SalesforceBooleanFilter
-
- """Filter by the User's contactId field"""
- contactId: SalesforceIdFilter
-
- """Filter by the User's accountId field"""
- accountId: SalesforceIdFilter
-
- """Filter by the User's callCenterId field"""
- callCenterId: SalesforceIdFilter
-
- """Filter by the User's extension field"""
- extension: SalesforceStringFilter
-
- """Filter by the User's federationIdentifier field"""
- federationIdentifier: SalesforceStringFilter
-
- """Filter by the User's aboutMe field"""
- aboutMe: SalesforceStringFilter
-
- """Filter by the User's fullPhotoUrl field"""
- fullPhotoUrl: SalesforceStringFilter
-
- """Filter by the User's smallPhotoUrl field"""
- smallPhotoUrl: SalesforceStringFilter
-
- """Filter by the User's isExtIndicatorVisible field"""
- isExtIndicatorVisible: SalesforceBooleanFilter
-
- """Filter by the User's outOfOfficeMessage field"""
- outOfOfficeMessage: SalesforceStringFilter
-
- """Filter by the User's mediumPhotoUrl field"""
- mediumPhotoUrl: SalesforceStringFilter
-
- """Filter by the User's digestFrequency field"""
- digestFrequency: SalesforceStringFilter
-
- """Filter by the User's defaultGroupNotificationFrequency field"""
- defaultGroupNotificationFrequency: SalesforceStringFilter
-
- """Filter by the User's jigsawImportLimitOverride field"""
- jigsawImportLimitOverride: SalesforceIntFilter
-
- """Filter by the User's lastViewedDate field"""
- lastViewedDate: SalesforceDateTimeFilter
-
- """Filter by the User's lastReferencedDate field"""
- lastReferencedDate: SalesforceDateTimeFilter
-
- """Filter by the User's bannerPhotoUrl field"""
- bannerPhotoUrl: SalesforceStringFilter
-
- """Filter by the User's smallBannerPhotoUrl field"""
- smallBannerPhotoUrl: SalesforceStringFilter
-
- """Filter by the User's mediumBannerPhotoUrl field"""
- mediumBannerPhotoUrl: SalesforceStringFilter
-
- """Filter by the User's isProfilePhotoActive field"""
- isProfilePhotoActive: SalesforceBooleanFilter
-
- """Checks for any expressions in this list."""
- or: [SalesforceUserConnectionFilter!]
-
- """Checks for all expressions in this list."""
- and: [SalesforceUserConnectionFilter!]
-}
-
-"""
-A filter to be used against date fields. All fields are combined with a logical `and`. Accepts dates in UTC with format 06/22/1971.
-"""
-input SalesforceDateFilter {
- """
- Not included in the specified list. Accepts dates in UTC with format 06/22/1971.
- """
- notIn: [String!]
-
- """
- Included in the specified list. Accepts dates in UTC with format 06/22/1971.
- """
- in: [String!]
-
- """
- Less than or equal to the specified value. Accepts dates in UTC with format 06/22/1971.
- """
- lessThanOrEqualTo: String
-
- """
- Less than the specified value. Accepts dates in UTC with format 06/22/1971.
- """
- lessThan: String
-
- """
- Greater than or equal to the specified value. Accepts dates in UTC with format 06/22/1971.
- """
- greaterThanOrEqualTo: String
-
- """
- Greater than the specified value. Accepts dates in UTC with format 06/22/1971.
- """
- greaterThan: String
-
- """Is null (if true is specified) or is not null (if false is specified)."""
- isNull: Boolean
-
- """
- Not equal to the specified value. Accepts dates in UTC with format 06/22/1971.
- """
- notEqualTo: String
-
- """
- Equal to the specified value. Accepts dates in UTC with format 06/22/1971.
- """
- equalTo: String
-}
-
-"""
-A filter to be used against int fields. All fields are combined with a logical `and`.
-"""
-input SalesforceIntFilter {
- """Not included in the specified list."""
- notIn: [Int!]
-
- """Included in the specified list."""
- in: [Int!]
-
- """Less than or equal to the specified value"""
- lessThanOrEqualTo: Int
-
- """Less than the specified value"""
- lessThan: Int
-
- """Greater than or equal to the specified value"""
- greaterThanOrEqualTo: Int
-
- """Greater than the specified value"""
- greaterThan: Int
-
- """Is null (if true is specified) or is not null (if false is specified)."""
- isNull: Boolean
-
- """Not equal to the specified value."""
- notEqualTo: Int
-
- """Equal to the specified value."""
- equalTo: Int
-}
-
-"""
-A filter to be used against ContentDocument object types. All fields are combined with a logical ‘and.’
-"""
-input SalesforceContentDocumentConnectionFilter {
- """Filter against custom fields."""
- customField: SalesforceCustomFieldFilter
-
- """Filter by the ContentDocument's contentAsset relation."""
- contentAsset: SalesforceContentAssetConnectionFilter
-
- """Filter by the ContentDocument's parent relation."""
- parent: SalesforceContentWorkspaceConnectionFilter
-
- """Filter by the ContentDocument's latestPublishedVersion relation."""
- latestPublishedVersion: SalesforceContentVersionConnectionFilter
-
- """Filter by the ContentDocument's owner relation."""
- owner: SalesforceUserConnectionFilter
-
- """Filter by the ContentDocument's archivedBy relation."""
- archivedBy: SalesforceUserConnectionFilter
-
- """Filter by the ContentDocument's lastModifiedBy relation."""
- lastModifiedBy: SalesforceUserConnectionFilter
-
- """Filter by the ContentDocument's createdBy relation."""
- createdBy: SalesforceUserConnectionFilter
-
- """Filter by the ContentDocument's id field"""
- id: SalesforceIdFilter
-
- """Filter by the ContentDocument's createdById field"""
- createdById: SalesforceIdFilter
-
- """Filter by the ContentDocument's createdDate field"""
- createdDate: SalesforceDateTimeFilter
-
- """Filter by the ContentDocument's lastModifiedById field"""
- lastModifiedById: SalesforceIdFilter
-
- """Filter by the ContentDocument's lastModifiedDate field"""
- lastModifiedDate: SalesforceDateTimeFilter
-
- """Filter by the ContentDocument's isArchived field"""
- isArchived: SalesforceBooleanFilter
-
- """Filter by the ContentDocument's archivedById field"""
- archivedById: SalesforceIdFilter
-
- """Filter by the ContentDocument's archivedDate field"""
- archivedDate: SalesforceDateFilter
-
- """Filter by the ContentDocument's isDeleted field"""
- isDeleted: SalesforceBooleanFilter
-
- """Filter by the ContentDocument's ownerId field"""
- ownerId: SalesforceIdFilter
-
- """Filter by the ContentDocument's systemModstamp field"""
- systemModstamp: SalesforceDateTimeFilter
-
- """Filter by the ContentDocument's title field"""
- title: SalesforceStringFilter
-
- """Filter by the ContentDocument's publishStatus field"""
- publishStatus: SalesforceStringFilter
-
- """Filter by the ContentDocument's latestPublishedVersionId field"""
- latestPublishedVersionId: SalesforceIdFilter
-
- """Filter by the ContentDocument's parentId field"""
- parentId: SalesforceIdFilter
-
- """Filter by the ContentDocument's lastViewedDate field"""
- lastViewedDate: SalesforceDateTimeFilter
-
- """Filter by the ContentDocument's lastReferencedDate field"""
- lastReferencedDate: SalesforceDateTimeFilter
-
- """Filter by the ContentDocument's description field"""
- description: SalesforceStringFilter
-
- """Filter by the ContentDocument's contentSize field"""
- contentSize: SalesforceIntFilter
-
- """Filter by the ContentDocument's fileType field"""
- fileType: SalesforceStringFilter
-
- """Filter by the ContentDocument's fileExtension field"""
- fileExtension: SalesforceStringFilter
-
- """Filter by the ContentDocument's sharingOption field"""
- sharingOption: SalesforceStringFilter
-
- """Filter by the ContentDocument's sharingPrivacy field"""
- sharingPrivacy: SalesforceStringFilter
-
- """Filter by the ContentDocument's contentModifiedDate field"""
- contentModifiedDate: SalesforceDateTimeFilter
-
- """Filter by the ContentDocument's contentAssetId field"""
- contentAssetId: SalesforceIdFilter
-
- """Checks for any expressions in this list."""
- or: [SalesforceContentDocumentConnectionFilter!]
-
- """Checks for all expressions in this list."""
- and: [SalesforceContentDocumentConnectionFilter!]
-}
-
-"""
-A filter to be used against Id fields. All fields are combined with a logical `and`.
-"""
-input SalesforceIdFilter {
- """Not included in the specified list."""
- notIn: [String!]
-
- """Included in the specified list."""
- in: [String!]
-
- """Less than or equal to the specified value"""
- lessThanOrEqualTo: String
-
- """Less than the specified value"""
- lessThan: String
-
- """Greater than or equal to the specified value"""
- greaterThanOrEqualTo: String
-
- """Greater than the specified value"""
- greaterThan: String
-
- """Is null (if true is specified) or is not null (if false is specified)."""
- isNull: Boolean
-
- """Not equal to the specified value."""
- notEqualTo: String
-
- """Equal to the specified value."""
- equalTo: String
-}
-
-"""
-A filter to be used against boolean fields. All fields are combined with a logical `and`.
-"""
-input SalesforceBooleanFilter {
- """Is null (if true is specified) or is not null (if false is specified)."""
- isNull: Boolean
-
- """Not equal to the specified value."""
- notEqualTo: Boolean
-
- """Equal to the specified value."""
- equalTo: Boolean
-}
-
-"""
-A filter to be used against date time fields. All fields are combined with a logical `and`. Accepts dates in UTC with format `06/22/1971 14:55:28`
-"""
-input SalesforceDateTimeFilter {
- """
- Not included in the specified list. Accepts dates in UTC with format `06/22/1971 14:55:28`
- """
- notIn: [String!]
-
- """
- Included in the specified list. Accepts dates in UTC with format `06/22/1971 14:55:28`
- """
- in: [String!]
-
- """
- Less than or equal to the specified value. Accepts dates in UTC with format `06/22/1971 14:55:28`
- """
- lessThanOrEqualTo: String
-
- """
- Less than the specified value. Accepts dates in UTC with format `06/22/1971 14:55:28`
- """
- lessThan: String
-
- """
- Greater than or equal to the specified value. Accepts dates in UTC with format `06/22/1971 14:55:28`
- """
- greaterThanOrEqualTo: String
-
- """
- Greater than the specified value. Accepts dates in UTC with format `06/22/1971 14:55:28`
- """
- greaterThan: String
-
- """Is null (if true is specified) or is not null (if false is specified)."""
- isNull: Boolean
-
- """Not equal to the specified value."""
- notEqualTo: String
-
- """
- Equal to the specified value. Accepts dates in UTC with format `06/22/1971 14:55:28`
- """
- equalTo: String
-}
-
-"""
-A filter to be used against string fields. All fields are combined with a logical `and`.
-"""
-input SalesforceStringFilter {
- """Not included in the specified list."""
- notIn: [String!]
-
- """Included in the specified list."""
- in: [String!]
-
- """Less than or equal to the specified value"""
- lessThanOrEqualTo: String
-
- """Less than the specified value"""
- lessThan: String
-
- """Greater than or equal to the specified value"""
- greaterThanOrEqualTo: String
-
- """Greater than the specified value"""
- greaterThan: String
-
- """
- Matches the specified pattern (case-insensitive). An underscore (_) matches any single character; a percent sign (%) matches any sequence of zero or more characters.
- """
- like: String
-
- """Is null (if true is specified) or is not null (if false is specified)."""
- isNull: Boolean
-
- """Not equal to the specified value."""
- notEqualTo: String
-
- """Equal to the specified value."""
- equalTo: String
-}
-
-"""
-A filter to be used against ContentDocumentLink object types. All fields are combined with a logical ‘and.’
-"""
-input SalesforceContentDocumentLinkConnectionFilter {
- """Filter against custom fields."""
- customField: SalesforceCustomFieldFilter
-
- """Filter by the ContentDocumentLink's contentDocument relation."""
- contentDocument: SalesforceContentDocumentConnectionFilter
-
- """Filter by the ContentDocumentLink's id field"""
- id: SalesforceIdFilter
-
- """Filter by the ContentDocumentLink's linkedEntityId field"""
- linkedEntityId: SalesforceIdFilter
-
- """Filter by the ContentDocumentLink's contentDocumentId field"""
- contentDocumentId: SalesforceIdFilter
-
- """Filter by the ContentDocumentLink's isDeleted field"""
- isDeleted: SalesforceBooleanFilter
-
- """Filter by the ContentDocumentLink's systemModstamp field"""
- systemModstamp: SalesforceDateTimeFilter
-
- """Filter by the ContentDocumentLink's shareType field"""
- shareType: SalesforceStringFilter
-
- """Filter by the ContentDocumentLink's visibility field"""
- visibility: SalesforceStringFilter
-
- """Checks for any expressions in this list."""
- or: [SalesforceContentDocumentLinkConnectionFilter!]
-
- """Checks for all expressions in this list."""
- and: [SalesforceContentDocumentLinkConnectionFilter!]
-}
-
-"""Field that Content Document Links can be sorted by"""
-enum SalesforceContentDocumentLinkSortByFieldEnum {
- ID
- LINKED_ENTITY_ID
- CONTENT_DOCUMENT_ID
- IS_DELETED
- SYSTEM_MODSTAMP
- SHARE_TYPE
- VISIBILITY
-}
-
-"""Order that items should be sorted"""
-enum SalesforceSortOrderBy {
- ASC
- DESC
-}
-
-"""Topic"""
-type SalesforceTopic implements OneGraphNode {
- """Topic ID"""
- id: String!
-
- """Name"""
- name: String!
-
- """Description"""
- description: String
-
- """Created Date"""
- createdDate: String!
-
- """Created By ID"""
- createdById: String!
-
- """Created By ID"""
- createdBy: SalesforceUser!
-
- """Talking About"""
- talkingAbout: Int!
-
- """System Modstamp"""
- systemModstamp: String!
-
- """Collection of Salesforce ContentDocumentLink"""
- contentDocumentLinks(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceContentDocumentLinkConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceContentDocumentLinkSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceContentDocumentLinkSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """
- Number of ContentDocumentLinks to fetch. Defaults to 10. Maximum is 60.
- """
- first: Int
- ): SalesforceContentDocumentLinksConnection
-
- """Collection of Salesforce ContentVersion"""
- contentVersions(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceContentVersionConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceContentVersionSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceContentVersionSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of ContentVersions to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceContentVersionsConnection
-
- """Collection of Salesforce CustomBrand"""
- customBrands(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceCustomBrandConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceCustomBrandSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceCustomBrandSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of CustomBrands to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceCustomBrandsConnection
-
- """Collection of Salesforce EntitySubscription"""
- feedSubscriptionsForEntity(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceEntitySubscriptionConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceEntitySubscriptionSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceEntitySubscriptionSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of EntitySubscriptions to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceEntitySubscriptionsConnection
-
- """Collection of Salesforce FeedComment"""
- feedComments(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceFeedCommentConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceFeedCommentSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceFeedCommentSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of FeedComments to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceFeedCommentsConnection
-
- """Collection of Salesforce FeedItem"""
- feedItems(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceFeedItemConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceFeedItemSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceFeedItemSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of FeedItems to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceFeedItemsConnection
-
- """Collection of Salesforce FlowRecordRelation"""
- flowRecordRelations(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceFlowRecordRelationConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceFlowRecordRelationSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceFlowRecordRelationsConnection
-
- """Collection of Salesforce KnowledgeableUser"""
- knowledgeableUsers(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceKnowledgeableUserConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceKnowledgeableUserSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceKnowledgeableUserSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of KnowledgeableUsers to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceKnowledgeableUsersConnection
-
- """Collection of Salesforce TopicAssignment"""
- topicAssignments(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceTopicAssignmentConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceTopicAssignmentSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceTopicAssignmentSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of TopicAssignments to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceTopicAssignmentsConnection
-
- """Collection of Salesforce TopicFeed"""
- feeds(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceTopicFeedConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceTopicFeedSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceTopicFeedSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of TopicFeeds to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceTopicFeedsConnection
-
- """Collection of Salesforce TopicUserEvent"""
- topicUserEvents(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceTopicUserEventConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceTopicUserEventSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceTopicUserEventSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of TopicUserEvents to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceTopicUserEventsConnection
- customFields(
- """
- List of custom fields to return. By default, returns all custom fields.
- """
- fields: [String!]
- ): JSON!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-union SalesforceContentDocumentLinkLinkedEntityUnion = SalesforceUser | SalesforceTopic | SalesforceTask | SalesforceSolution | SalesforceSite | SalesforceReport | SalesforceProduct2 | SalesforceOutgoingEmail | SalesforceOrganization | SalesforceOrderItem | SalesforceOrder | SalesforceOpportunity | SalesforceListEmail | SalesforceLead | SalesforceEvent | SalesforceEmailTemplate | SalesforceEmailMessage | SalesforceDashboardComponent | SalesforceDashboard | SalesforceContract | SalesforceContentWorkspace | SalesforceContact | SalesforceCollaborationGroup | SalesforceCase | SalesforceCampaign | SalesforceAssetRelationship | SalesforceAsset | SalesforceAccount
-
-"""Content Document Link"""
-type SalesforceContentDocumentLink implements OneGraphNode {
- """ContentDocumentLink ID"""
- id: String!
-
- """Linked Entity ID"""
- linkedEntityId: String!
-
- """Linked Entity ID"""
- linkedEntity: SalesforceContentDocumentLinkLinkedEntityUnion!
-
- """ContentDocument ID"""
- contentDocumentId: String!
-
- """ContentDocument ID"""
- contentDocument: SalesforceContentDocument!
-
- """Is Deleted"""
- isDeleted: Boolean!
-
- """System Modstamp"""
- systemModstamp: String!
-
- """Share Type"""
- shareType: String
-
- """Visibility"""
- visibility: String
-
- """Collection of Salesforce FlowRecordRelation"""
- flowRecordRelations(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceFlowRecordRelationConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceFlowRecordRelationSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceFlowRecordRelationsConnection
- customFields(
- """
- List of custom fields to return. By default, returns all custom fields.
- """
- fields: [String!]
- ): JSON!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-"""Salesforce Content Document Links connection, for use in pagination."""
-type SalesforceContentDocumentLinksConnection {
- """
- The count of all Content Document Link you could get from the connection.
- """
- totalCount: Int!
-
- """Pagination Information"""
- pageInfo: PageInfo!
-
- """List of Salesforce Content Document Links"""
- nodes: [SalesforceContentDocumentLink!]!
-
- """List of Content Document Link edges"""
- edges: [SalesforceContentDocumentLinkEdge!]!
-}
-
-"""Organization"""
-type SalesforceOrganization implements OneGraphNode {
- """Organization ID"""
- id: String!
-
- """Name"""
- name: String!
-
- """Division"""
- division: String
-
- """Street"""
- street: String
-
- """City"""
- city: String
-
- """State/Province"""
- state: String
-
- """Zip/Postal Code"""
- postalCode: String
-
- """Country"""
- country: String
-
- """Latitude"""
- latitude: Float
-
- """Longitude"""
- longitude: Float
-
- """Geocode Accuracy"""
- geocodeAccuracy: String
-
- """Address"""
- address: SalesforceAddress
-
- """Phone"""
- phone: String
-
- """Fax"""
- fax: String
-
- """Primary Contact"""
- primaryContact: String
-
- """Locale"""
- defaultLocaleSidKey: String!
-
- """Language"""
- languageLocaleKey: String!
-
- """Info Emails"""
- receivesInfoEmails: Boolean!
-
- """Info Emails Admin"""
- receivesAdminInfoEmails: Boolean!
-
- """RequireOpportunityProducts"""
- preferencesRequireOpportunityProducts: Boolean!
-
- """TransactionSecurityPolicy"""
- preferencesTransactionSecurityPolicy: Boolean!
-
- """TerminateOldestSession"""
- preferencesTerminateOldestSession: Boolean!
-
- """ConsentManagementEnabled"""
- preferencesConsentManagementEnabled: Boolean!
-
- """IndividualAutoCreateEnabled"""
- preferencesIndividualAutoCreateEnabled: Boolean!
-
- """LightningLoginEnabled"""
- preferencesLightningLoginEnabled: Boolean!
-
- """OnlyLLPermUserAllowed"""
- preferencesOnlyLlPermUserAllowed: Boolean!
-
- """Fiscal Year Starts In"""
- fiscalYearStartMonth: Int
-
- """Fiscal Year Name by Start"""
- usesStartDateAsFiscalYearName: Boolean!
-
- """Default Account Access"""
- defaultAccountAccess: String
-
- """Default Contact Access"""
- defaultContactAccess: String
-
- """Default Opportunity Access"""
- defaultOpportunityAccess: String
-
- """Default Lead Access"""
- defaultLeadAccess: String
-
- """Default Case Access"""
- defaultCaseAccess: String
-
- """Default Calendar Access"""
- defaultCalendarAccess: String
-
- """Default Price Book Access"""
- defaultPricebookAccess: String
-
- """Default Campaign Access"""
- defaultCampaignAccess: String
-
- """System Modstamp"""
- systemModstamp: String!
-
- """Compliance BCC Email"""
- complianceBccEmail: String
-
- """UI Skin"""
- uiSkin: String
-
- """Signup Country"""
- signupCountryIsoCode: String
-
- """Trial Expiration Date"""
- trialExpirationDate: String
-
- """Knowledge Licenses"""
- numKnowledgeService: Int
-
- """Edition"""
- organizationType: String
-
- """Namespace Prefix"""
- namespacePrefix: String
-
- """Instance Name"""
- instanceName: String
-
- """Is Sandbox"""
- isSandbox: Boolean!
-
- """Web to Cases Default Origin"""
- webToCaseDefaultOrigin: String
-
- """Monthly Page Views Used"""
- monthlyPageViewsUsed: Int
-
- """Monthly Page Views Allowed"""
- monthlyPageViewsEntitlement: Int
-
- """Is Read Only"""
- isReadOnly: Boolean!
-
- """Created Date"""
- createdDate: String!
-
- """Created By ID"""
- createdById: String!
-
- """Created By ID"""
- createdBy: SalesforceUser!
-
- """Last Modified Date"""
- lastModifiedDate: String!
-
- """Last Modified By ID"""
- lastModifiedById: String!
-
- """Last Modified By ID"""
- lastModifiedBy: SalesforceUser!
-
- """Collection of Salesforce ContentDocumentLink"""
- contentDocumentLinks(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceContentDocumentLinkConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceContentDocumentLinkSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceContentDocumentLinkSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """
- Number of ContentDocumentLinks to fetch. Defaults to 10. Maximum is 60.
- """
- first: Int
- ): SalesforceContentDocumentLinksConnection
-
- """Collection of Salesforce ContentVersion"""
- contentVersions(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceContentVersionConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceContentVersionSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceContentVersionSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of ContentVersions to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceContentVersionsConnection
-
- """Collection of Salesforce CustomBrand"""
- customBrands(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceCustomBrandConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceCustomBrandSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceCustomBrandSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of CustomBrands to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceCustomBrandsConnection
-
- """Collection of Salesforce EmailTemplate"""
- emailTemplates(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceEmailTemplateConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceEmailTemplateSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceEmailTemplateSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of EmailTemplates to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceEmailTemplatesConnection
-
- """Collection of Salesforce Group"""
- groups(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceGroupConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceGroupSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceGroupSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of Groups to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceGroupsConnection
-
- """Collection of Salesforce Report"""
- reports(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceReportConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceReportSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceReportSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of Reports to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceReportsConnection
-
- """Collection of Salesforce Stamp"""
- stamps(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceStampConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceStampSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceStampSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of Stamps to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceStampsConnection
- customFields(
- """
- List of custom fields to return. By default, returns all custom fields.
- """
- fields: [String!]
- ): JSON!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-union SalesforceGroupOwnerUnion = SalesforceUser | SalesforceOrganization
-
-union SalesforceGroupRelatedUnion = SalesforceUserRole | SalesforceUser
-
-"""Group"""
-type SalesforceGroup implements OneGraphNode {
- """Group ID"""
- id: String!
-
- """Name"""
- name: String!
-
- """Developer Name"""
- developerName: String
-
- """Related ID"""
- relatedId: String
-
- """Related ID"""
- related: SalesforceGroupRelatedUnion
-
- """Type"""
- type: String!
-
- """Email"""
- email: String
-
- """Owner ID"""
- ownerId: String!
-
- """Owner ID"""
- owner: SalesforceGroupOwnerUnion!
-
- """Send Email to Members"""
- doesSendEmailToMembers: Boolean!
-
- """Include Bosses"""
- doesIncludeBosses: Boolean!
-
- """Created Date"""
- createdDate: String!
-
- """Created By ID"""
- createdById: String!
-
- """Created By ID"""
- createdBy: SalesforceUser!
-
- """Last Modified Date"""
- lastModifiedDate: String!
-
- """Last Modified By ID"""
- lastModifiedById: String!
-
- """Last Modified By ID"""
- lastModifiedBy: SalesforceUser!
-
- """System Modstamp"""
- systemModstamp: String!
-
- """Collection of Salesforce AccountShare"""
- accountShares(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceAccountShareConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceAccountShareSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceAccountShareSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of AccountShares to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceAccountSharesConnection
-
- """Collection of Salesforce AssetShare"""
- assetShares(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceAssetShareConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceAssetShareSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceAssetShareSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of AssetShares to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceAssetSharesConnection
-
- """Collection of Salesforce CampaignShare"""
- campaignShares(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceCampaignShareConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceCampaignShareSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceCampaignShareSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of CampaignShares to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceCampaignSharesConnection
-
- """Collection of Salesforce CaseShare"""
- caseShares(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceCaseShareConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceCaseShareSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceCaseShareSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of CaseShares to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceCaseSharesConnection
-
- """Collection of Salesforce ContactShare"""
- contactShares(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceContactShareConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceContactShareSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceContactShareSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of ContactShares to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceContactSharesConnection
-
- """Collection of Salesforce ContentWorkspaceMember"""
- contentWorkspaceMembers(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceContentWorkspaceMemberConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceContentWorkspaceMemberSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceContentWorkspaceMemberSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """
- Number of ContentWorkspaceMembers to fetch. Defaults to 10. Maximum is 60.
- """
- first: Int
- ): SalesforceContentWorkspaceMembersConnection
-
- """Collection of Salesforce FlowInterviewShare"""
- flowInterviewShares(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceFlowInterviewShareConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceFlowInterviewShareSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceFlowInterviewShareSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of FlowInterviewShares to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceFlowInterviewSharesConnection
-
- """Collection of Salesforce ForecastShare"""
- forecastShares(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceForecastShareConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceForecastShareSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceForecastShareSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of ForecastShares to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceForecastSharesConnection
-
- """Collection of Salesforce GroupMember"""
- groupMembers(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceGroupMemberConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceGroupMemberSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceGroupMemberSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of GroupMembers to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceGroupMembersConnection
-
- """Collection of Salesforce LeadShare"""
- leadShares(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceLeadShareConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceLeadShareSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceLeadShareSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of LeadShares to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceLeadSharesConnection
-
- """Collection of Salesforce ListEmailShare"""
- listEmailShares(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceListEmailShareConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceListEmailShareSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceListEmailShareSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of ListEmailShares to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceListEmailSharesConnection
-
- """Collection of Salesforce MacroShare"""
- macroShares(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceMacroShareConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceMacroShareSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceMacroShareSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of MacroShares to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceMacroSharesConnection
-
- """Collection of Salesforce OpportunityShare"""
- opportunityShares(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceOpportunityShareConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceOpportunityShareSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceOpportunityShareSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of OpportunityShares to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceOpportunitySharesConnection
-
- """Collection of Salesforce OrderShare"""
- orderShares(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceOrderShareConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceOrderShareSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceOrderShareSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of OrderShares to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceOrderSharesConnection
-
- """Collection of Salesforce OrgDeleteRequestShare"""
- orgDeleteRequestShares(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceOrgDeleteRequestShareConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceOrgDeleteRequestShareSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceOrgDeleteRequestShareSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """
- Number of OrgDeleteRequestShares to fetch. Defaults to 10. Maximum is 60.
- """
- first: Int
- ): SalesforceOrgDeleteRequestSharesConnection
-
- """Collection of Salesforce QueueSobject"""
- queueSobjects(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceQueueSobjectConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceQueueSobjectSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceQueueSobjectSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of QueueSobjects to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceQueueSobjectsConnection
-
- """Collection of Salesforce QuickTextShare"""
- quickTextShares(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceQuickTextShareConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceQuickTextShareSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceQuickTextShareSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of QuickTextShares to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceQuickTextSharesConnection
-
- """Collection of Salesforce StreamingChannelShare"""
- streamingChannelShares(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceStreamingChannelShareConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceStreamingChannelShareSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceStreamingChannelShareSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """
- Number of StreamingChannelShares to fetch. Defaults to 10. Maximum is 60.
- """
- first: Int
- ): SalesforceStreamingChannelSharesConnection
-
- """Collection of Salesforce TodayGoalShare"""
- todayGoalShares(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceTodayGoalShareConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceTodayGoalShareSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceTodayGoalShareSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of TodayGoalShares to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceTodayGoalSharesConnection
-
- """Collection of Salesforce User"""
- delegatedUsers(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceUserConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceUserSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceUserSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of Users to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceUsersConnection
-
- """Collection of Salesforce UserAppMenuCustomizationShare"""
- userAppMenuCustomizationShares(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceUserAppMenuCustomizationShareConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceUserAppMenuCustomizationShareSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceUserAppMenuCustomizationShareSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """
- Number of UserAppMenuCustomizationShares to fetch. Defaults to 10. Maximum is 60.
- """
- first: Int
- ): SalesforceUserAppMenuCustomizationSharesConnection
-
- """Collection of Salesforce UserProvisioningRequestShare"""
- userProvisioningRequestShares(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceUserProvisioningRequestShareConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceUserProvisioningRequestShareSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceUserProvisioningRequestShareSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """
- Number of UserProvisioningRequestShares to fetch. Defaults to 10. Maximum is 60.
- """
- first: Int
- ): SalesforceUserProvisioningRequestSharesConnection
-
- """Collection of Salesforce UserShare"""
- userShares(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceUserShareConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceUserShareSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceUserShareSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of UserShares to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceUserSharesConnection
- customFields(
- """
- List of custom fields to return. By default, returns all custom fields.
- """
- fields: [String!]
- ): JSON!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-union SalesforceForecastShareUserOrGroupUnion = SalesforceUser | SalesforceGroup
-
-"""Forecast Share"""
-type SalesforceForecastShare implements OneGraphNode {
- """Forecast Share ID"""
- id: String!
-
- """User Role ID"""
- userRoleId: String!
-
- """User Role ID"""
- userRole: SalesforceUserRole!
-
- """User/Group ID"""
- userOrGroupId: String!
-
- """User/Group ID"""
- userOrGroup: SalesforceForecastShareUserOrGroupUnion!
-
- """Forecast Access"""
- accessLevel: String!
-
- """Submit Allowed"""
- canSubmit: Boolean!
-
- """Row Cause"""
- rowCause: String!
-
- """Last Modified Date"""
- lastModifiedDate: String!
-
- """Last Modified By ID"""
- lastModifiedById: String!
-
- """Last Modified By ID"""
- lastModifiedBy: SalesforceUser!
-
- """Collection of Salesforce FlowRecordRelation"""
- flowRecordRelations(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceFlowRecordRelationConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceFlowRecordRelationSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceFlowRecordRelationsConnection
- customFields(
- """
- List of custom fields to return. By default, returns all custom fields.
- """
- fields: [String!]
- ): JSON!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-"""Salesforce Forecast Shares connection, for use in pagination."""
-type SalesforceForecastSharesConnection {
- """The count of all Forecast Share you could get from the connection."""
- totalCount: Int!
-
- """Pagination Information"""
- pageInfo: PageInfo!
-
- """List of Salesforce Forecast Shares"""
- nodes: [SalesforceForecastShare!]!
-
- """List of Forecast Share edges"""
- edges: [SalesforceForecastShareEdge!]!
-}
-
-"""Role"""
-type SalesforceUserRole implements OneGraphNode {
- """Role ID"""
- id: String!
-
- """Name"""
- name: String!
-
- """Parent Role ID"""
- parentRoleId: String
-
- """Parent Role ID"""
- parentRole: SalesforceUserRole
-
- """Description"""
- rollupDescription: String
-
- """Opportunity Access Level for Account Owner"""
- opportunityAccessForAccountOwner: String!
-
- """Case Access Level for Account Owner"""
- caseAccessForAccountOwner: String
-
- """Contact Access Level for Account Owner"""
- contactAccessForAccountOwner: String
-
- """User ID"""
- forecastUserId: String
-
- """User ID"""
- forecastUser: SalesforceUser
-
- """May Forecast Manager Share"""
- mayForecastManagerShare: Boolean!
-
- """Last Modified Date"""
- lastModifiedDate: String!
-
- """Last Modified By ID"""
- lastModifiedById: String!
-
- """Last Modified By ID"""
- lastModifiedBy: SalesforceUser!
-
- """System Modstamp"""
- systemModstamp: String!
-
- """Developer Name"""
- developerName: String
-
- """Account ID"""
- portalAccountId: String
-
- """Account ID"""
- portalAccount: SalesforceAccount
-
- """Portal Type"""
- portalType: String
-
- """User ID"""
- portalAccountOwnerId: String
-
- """User ID"""
- portalAccountOwner: SalesforceUser
-
- """Collection of Salesforce ForecastShare"""
- forecastShares(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceForecastShareConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceForecastShareSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceForecastShareSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of ForecastShares to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceForecastSharesConnection
-
- """Collection of Salesforce Group"""
- groups(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceGroupConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceGroupSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceGroupSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of Groups to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceGroupsConnection
-
- """Collection of Salesforce User"""
- users(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceUserConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceUserSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceUserSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of Users to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceUsersConnection
-
- """Collection of Salesforce UserRole"""
- userRoles(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceUserRoleConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceUserRoleSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceUserRoleSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of UserRoles to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceUserRolesConnection
- customFields(
- """
- List of custom fields to return. By default, returns all custom fields.
- """
- fields: [String!]
- ): JSON!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-"""User"""
-type SalesforceUser implements OneGraphNode {
- """Linked Github User"""
- gitHubUser: GitHubUser
-
- """User ID"""
- id: String!
-
- """Username"""
- username: String!
-
- """Last Name"""
- lastName: String!
-
- """First Name"""
- firstName: String
-
- """Full Name"""
- name: String!
-
- """Company Name"""
- companyName: String
-
- """Division"""
- division: String
-
- """Department"""
- department: String
-
- """Title"""
- title: String
-
- """Street"""
- street: String
-
- """City"""
- city: String
-
- """State/Province"""
- state: String
-
- """Zip/Postal Code"""
- postalCode: String
-
- """Country"""
- country: String
-
- """Latitude"""
- latitude: Float
-
- """Longitude"""
- longitude: Float
-
- """Geocode Accuracy"""
- geocodeAccuracy: String
-
- """Address"""
- address: SalesforceAddress
-
- """Email"""
- email: String!
-
- """AutoBcc"""
- emailPreferencesAutoBcc: Boolean!
-
- """AutoBccStayInTouch"""
- emailPreferencesAutoBccStayInTouch: Boolean!
-
- """StayInTouchReminder"""
- emailPreferencesStayInTouchReminder: Boolean!
-
- """Email Sender Address"""
- senderEmail: String
-
- """Email Sender Name"""
- senderName: String
-
- """Email Signature"""
- signature: String
-
- """Stay-in-Touch Email Subject"""
- stayInTouchSubject: String
-
- """Stay-in-Touch Email Signature"""
- stayInTouchSignature: String
-
- """Stay-in-Touch Email Note"""
- stayInTouchNote: String
-
- """Phone"""
- phone: String
-
- """Fax"""
- fax: String
-
- """Cell"""
- mobilePhone: String
-
- """Alias"""
- alias: String!
-
- """Nickname"""
- communityNickname: String!
-
- """User Photo badge text overlay"""
- badgeText: String
-
- """Active"""
- isActive: Boolean!
-
- """Time Zone"""
- timeZoneSidKey: String!
-
- """Role ID"""
- userRoleId: String
-
- """Role ID"""
- userRole: SalesforceUserRole
-
- """Locale"""
- localeSidKey: String!
-
- """Info Emails"""
- receivesInfoEmails: Boolean!
-
- """Admin Info Emails"""
- receivesAdminInfoEmails: Boolean!
-
- """Email Encoding"""
- emailEncodingKey: String!
-
- """Profile ID"""
- profileId: String!
-
- """Profile ID"""
- profile: SalesforceProfile!
-
- """User Type"""
- userType: String
-
- """Language"""
- languageLocaleKey: String!
-
- """Employee Number"""
- employeeNumber: String
-
- """Delegated Approver ID"""
- delegatedApproverId: String
-
- """Delegated Approver ID"""
- delegatedApprover: SalesforceUserDelegatedApproverUnion
-
- """Manager ID"""
- managerId: String
-
- """Manager ID"""
- manager: SalesforceUser
-
- """Last Login"""
- lastLoginDate: String
-
- """Last Password Change or Reset"""
- lastPasswordChangeDate: String
-
- """Created Date"""
- createdDate: String!
-
- """Created By ID"""
- createdById: String!
-
- """Created By ID"""
- createdBy: SalesforceUser!
-
- """Last Modified Date"""
- lastModifiedDate: String!
-
- """Last Modified By ID"""
- lastModifiedById: String!
-
- """Last Modified By ID"""
- lastModifiedBy: SalesforceUser!
-
- """System Modstamp"""
- systemModstamp: String!
-
- """Offline Edition Trial Expiration Date"""
- offlineTrialExpirationDate: String
-
- """Sales Anywhere Trial Expiration Date"""
- offlinePdaTrialExpirationDate: String
-
- """Marketing User"""
- userPermissionsMarketingUser: Boolean!
-
- """Offline User"""
- userPermissionsOfflineUser: Boolean!
-
- """Auto-login To Call Center"""
- userPermissionsCallCenterAutoLogin: Boolean!
-
- """Apex Mobile User"""
- userPermissionsMobileUser: Boolean!
-
- """Salesforce CRM Content User"""
- userPermissionsSfContentUser: Boolean!
-
- """Knowledge User"""
- userPermissionsKnowledgeUser: Boolean!
-
- """Flow User"""
- userPermissionsInteractionUser: Boolean!
-
- """Service Cloud User"""
- userPermissionsSupportUser: Boolean!
-
- """Data.com User"""
- userPermissionsJigsawProspectingUser: Boolean!
-
- """Site.com Contributor User"""
- userPermissionsSiteforceContributorUser: Boolean!
-
- """Site.com Publisher User"""
- userPermissionsSiteforcePublisherUser: Boolean!
-
- """Work.com User"""
- userPermissionsWorkDotComUserFeature: Boolean!
-
- """Allow Forecasting"""
- forecastEnabled: Boolean!
-
- """ActivityRemindersPopup"""
- userPreferencesActivityRemindersPopup: Boolean!
-
- """EventRemindersCheckboxDefault"""
- userPreferencesEventRemindersCheckboxDefault: Boolean!
-
- """TaskRemindersCheckboxDefault"""
- userPreferencesTaskRemindersCheckboxDefault: Boolean!
-
- """ReminderSoundOff"""
- userPreferencesReminderSoundOff: Boolean!
-
- """DisableAllFeedsEmail"""
- userPreferencesDisableAllFeedsEmail: Boolean!
-
- """DisableFollowersEmail"""
- userPreferencesDisableFollowersEmail: Boolean!
-
- """DisableProfilePostEmail"""
- userPreferencesDisableProfilePostEmail: Boolean!
-
- """DisableChangeCommentEmail"""
- userPreferencesDisableChangeCommentEmail: Boolean!
-
- """DisableLaterCommentEmail"""
- userPreferencesDisableLaterCommentEmail: Boolean!
-
- """DisProfPostCommentEmail"""
- userPreferencesDisProfPostCommentEmail: Boolean!
-
- """ContentNoEmail"""
- userPreferencesContentNoEmail: Boolean!
-
- """ContentEmailAsAndWhen"""
- userPreferencesContentEmailAsAndWhen: Boolean!
-
- """ApexPagesDeveloperMode"""
- userPreferencesApexPagesDeveloperMode: Boolean!
-
- """HideCSNGetChatterMobileTask"""
- userPreferencesHideCsnGetChatterMobileTask: Boolean!
-
- """DisableMentionsPostEmail"""
- userPreferencesDisableMentionsPostEmail: Boolean!
-
- """DisMentionsCommentEmail"""
- userPreferencesDisMentionsCommentEmail: Boolean!
-
- """HideCSNDesktopTask"""
- userPreferencesHideCsnDesktopTask: Boolean!
-
- """HideChatterOnboardingSplash"""
- userPreferencesHideChatterOnboardingSplash: Boolean!
-
- """HideSecondChatterOnboardingSplash"""
- userPreferencesHideSecondChatterOnboardingSplash: Boolean!
-
- """DisCommentAfterLikeEmail"""
- userPreferencesDisCommentAfterLikeEmail: Boolean!
-
- """DisableLikeEmail"""
- userPreferencesDisableLikeEmail: Boolean!
-
- """SortFeedByComment"""
- userPreferencesSortFeedByComment: Boolean!
-
- """DisableMessageEmail"""
- userPreferencesDisableMessageEmail: Boolean!
-
- """JigsawListUser"""
- userPreferencesJigsawListUser: Boolean!
-
- """DisableBookmarkEmail"""
- userPreferencesDisableBookmarkEmail: Boolean!
-
- """DisableSharePostEmail"""
- userPreferencesDisableSharePostEmail: Boolean!
-
- """EnableAutoSubForFeeds"""
- userPreferencesEnableAutoSubForFeeds: Boolean!
-
- """DisableFileShareNotificationsForApi"""
- userPreferencesDisableFileShareNotificationsForApi: Boolean!
-
- """ShowTitleToExternalUsers"""
- userPreferencesShowTitleToExternalUsers: Boolean!
-
- """ShowManagerToExternalUsers"""
- userPreferencesShowManagerToExternalUsers: Boolean!
-
- """ShowEmailToExternalUsers"""
- userPreferencesShowEmailToExternalUsers: Boolean!
-
- """ShowWorkPhoneToExternalUsers"""
- userPreferencesShowWorkPhoneToExternalUsers: Boolean!
-
- """ShowMobilePhoneToExternalUsers"""
- userPreferencesShowMobilePhoneToExternalUsers: Boolean!
-
- """ShowFaxToExternalUsers"""
- userPreferencesShowFaxToExternalUsers: Boolean!
-
- """ShowStreetAddressToExternalUsers"""
- userPreferencesShowStreetAddressToExternalUsers: Boolean!
-
- """ShowCityToExternalUsers"""
- userPreferencesShowCityToExternalUsers: Boolean!
-
- """ShowStateToExternalUsers"""
- userPreferencesShowStateToExternalUsers: Boolean!
-
- """ShowPostalCodeToExternalUsers"""
- userPreferencesShowPostalCodeToExternalUsers: Boolean!
-
- """ShowCountryToExternalUsers"""
- userPreferencesShowCountryToExternalUsers: Boolean!
-
- """ShowProfilePicToGuestUsers"""
- userPreferencesShowProfilePicToGuestUsers: Boolean!
-
- """ShowTitleToGuestUsers"""
- userPreferencesShowTitleToGuestUsers: Boolean!
-
- """ShowCityToGuestUsers"""
- userPreferencesShowCityToGuestUsers: Boolean!
-
- """ShowStateToGuestUsers"""
- userPreferencesShowStateToGuestUsers: Boolean!
-
- """ShowPostalCodeToGuestUsers"""
- userPreferencesShowPostalCodeToGuestUsers: Boolean!
-
- """ShowCountryToGuestUsers"""
- userPreferencesShowCountryToGuestUsers: Boolean!
-
- """DisableFeedbackEmail"""
- userPreferencesDisableFeedbackEmail: Boolean!
-
- """DisableWorkEmail"""
- userPreferencesDisableWorkEmail: Boolean!
-
- """HideS1BrowserUI"""
- userPreferencesHideS1BrowserUi: Boolean!
-
- """DisableEndorsementEmail"""
- userPreferencesDisableEndorsementEmail: Boolean!
-
- """PathAssistantCollapsed"""
- userPreferencesPathAssistantCollapsed: Boolean!
-
- """CacheDiagnostics"""
- userPreferencesCacheDiagnostics: Boolean!
-
- """ShowEmailToGuestUsers"""
- userPreferencesShowEmailToGuestUsers: Boolean!
-
- """ShowManagerToGuestUsers"""
- userPreferencesShowManagerToGuestUsers: Boolean!
-
- """ShowWorkPhoneToGuestUsers"""
- userPreferencesShowWorkPhoneToGuestUsers: Boolean!
-
- """ShowMobilePhoneToGuestUsers"""
- userPreferencesShowMobilePhoneToGuestUsers: Boolean!
-
- """ShowFaxToGuestUsers"""
- userPreferencesShowFaxToGuestUsers: Boolean!
-
- """ShowStreetAddressToGuestUsers"""
- userPreferencesShowStreetAddressToGuestUsers: Boolean!
-
- """LightningExperiencePreferred"""
- userPreferencesLightningExperiencePreferred: Boolean!
-
- """PreviewLightning"""
- userPreferencesPreviewLightning: Boolean!
-
- """HideEndUserOnboardingAssistantModal"""
- userPreferencesHideEndUserOnboardingAssistantModal: Boolean!
-
- """HideLightningMigrationModal"""
- userPreferencesHideLightningMigrationModal: Boolean!
-
- """HideSfxWelcomeMat"""
- userPreferencesHideSfxWelcomeMat: Boolean!
-
- """HideBiggerPhotoCallout"""
- userPreferencesHideBiggerPhotoCallout: Boolean!
-
- """GlobalNavBarWTShown"""
- userPreferencesGlobalNavBarWtShown: Boolean!
-
- """GlobalNavGridMenuWTShown"""
- userPreferencesGlobalNavGridMenuWtShown: Boolean!
-
- """CreateLEXAppsWTShown"""
- userPreferencesCreateLexAppsWtShown: Boolean!
-
- """FavoritesWTShown"""
- userPreferencesFavoritesWtShown: Boolean!
-
- """RecordHomeSectionCollapseWTShown"""
- userPreferencesRecordHomeSectionCollapseWtShown: Boolean!
-
- """RecordHomeReservedWTShown"""
- userPreferencesRecordHomeReservedWtShown: Boolean!
-
- """FavoritesShowTopFavorites"""
- userPreferencesFavoritesShowTopFavorites: Boolean!
-
- """ExcludeMailAppAttachments"""
- userPreferencesExcludeMailAppAttachments: Boolean!
-
- """SuppressTaskSFXReminders"""
- userPreferencesSuppressTaskSfxReminders: Boolean!
-
- """SuppressEventSFXReminders"""
- userPreferencesSuppressEventSfxReminders: Boolean!
-
- """PreviewCustomTheme"""
- userPreferencesPreviewCustomTheme: Boolean!
-
- """HasCelebrationBadge"""
- userPreferencesHasCelebrationBadge: Boolean!
-
- """Contact ID"""
- contactId: String
-
- """Contact ID"""
- contact: SalesforceContact
-
- """Account ID"""
- accountId: String
-
- """Account ID"""
- account: SalesforceAccount
-
- """Call Center ID"""
- callCenterId: String
-
- """Call Center ID"""
- callCenter: SalesforceCallCenter
-
- """Extension"""
- extension: String
-
- """SAML Federation ID"""
- federationIdentifier: String
-
- """About Me"""
- aboutMe: String
-
- """Url for full-sized Photo"""
- fullPhotoUrl: String
-
- """Photo"""
- smallPhotoUrl: String
-
- """Show external indicator"""
- isExtIndicatorVisible: Boolean!
-
- """Out of office message"""
- outOfOfficeMessage: String
-
- """Url for medium profile photo"""
- mediumPhotoUrl: String
-
- """Chatter Email Highlights Frequency"""
- digestFrequency: String!
-
- """Default Notification Frequency when Joining Groups"""
- defaultGroupNotificationFrequency: String!
-
- """Data.com Monthly Addition Limit"""
- jigsawImportLimitOverride: Int
-
- """Last Viewed Date"""
- lastViewedDate: String
-
- """Last Referenced Date"""
- lastReferencedDate: String
-
- """Url for banner photo"""
- bannerPhotoUrl: String
-
- """Url for IOS banner photo"""
- smallBannerPhotoUrl: String
-
- """Url for Android banner photo"""
- mediumBannerPhotoUrl: String
-
- """Has Profile Photo"""
- isProfilePhotoActive: Boolean!
-
- """Collection of Salesforce AcceptedEventRelation"""
- acceptedEventRelations(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceAcceptedEventRelationConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceAcceptedEventRelationSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceAcceptedEventRelationSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """
- Number of AcceptedEventRelations to fetch. Defaults to 10. Maximum is 60.
- """
- first: Int
- ): SalesforceAcceptedEventRelationsConnection
-
- """Collection of Salesforce Account"""
- accounts(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceAccountConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceAccountSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceAccountSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of Accounts to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceAccountsConnection
-
- """Collection of Salesforce AccountCleanInfo"""
- accountCleanInfos(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceAccountCleanInfoConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceAccountCleanInfoSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceAccountCleanInfoSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of AccountCleanInfos to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceAccountCleanInfosConnection
-
- """Collection of Salesforce AccountCleanInfo"""
- accountCleanInfoReviewers(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceAccountCleanInfoConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceAccountCleanInfoSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceAccountCleanInfoSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of AccountCleanInfos to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceAccountCleanInfosConnection
-
- """Collection of Salesforce AccountContactRole"""
- accountContactRoles(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceAccountContactRoleConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceAccountContactRoleSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceAccountContactRoleSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of AccountContactRoles to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceAccountContactRolesConnection
-
- """Collection of Salesforce AccountFeed"""
- accountFeeds(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceAccountFeedConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceAccountFeedSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceAccountFeedSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of AccountFeeds to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceAccountFeedsConnection
-
- """Collection of Salesforce AccountHistory"""
- accountHistories(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceAccountHistoryConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceAccountHistorySortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceAccountHistorySortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of AccountHistories to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceAccountHistorysConnection
-
- """Collection of Salesforce AccountPartner"""
- accountPartners(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceAccountPartnerConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceAccountPartnerSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceAccountPartnerSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of AccountPartners to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceAccountPartnersConnection
-
- """Collection of Salesforce AccountShare"""
- accountShares(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceAccountShareConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceAccountShareSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceAccountShareSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of AccountShares to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceAccountSharesConnection
-
- """Collection of Salesforce ActionLinkGroupTemplate"""
- actionLinkGroupTemplates(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceActionLinkGroupTemplateConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceActionLinkGroupTemplateSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceActionLinkGroupTemplateSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """
- Number of ActionLinkGroupTemplates to fetch. Defaults to 10. Maximum is 60.
- """
- first: Int
- ): SalesforceActionLinkGroupTemplatesConnection
-
- """Collection of Salesforce ActionLinkTemplate"""
- actionLinkTemplates(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceActionLinkTemplateConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceActionLinkTemplateSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceActionLinkTemplateSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of ActionLinkTemplates to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceActionLinkTemplatesConnection
-
- """Collection of Salesforce AdditionalNumber"""
- additionalNumbers(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceAdditionalNumberConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceAdditionalNumberSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceAdditionalNumberSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of AdditionalNumbers to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceAdditionalNumbersConnection
-
- """Collection of Salesforce Announcement"""
- announcements(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceAnnouncementConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceAnnouncementSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceAnnouncementSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of Announcements to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceAnnouncementsConnection
-
- """Collection of Salesforce ApexClass"""
- apexClasses(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceApexClassConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceApexClassSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceApexClassSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of ApexClasses to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceApexClasssConnection
-
- """Collection of Salesforce ApexComponent"""
- apexComponents(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceApexComponentConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceApexComponentSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceApexComponentSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of ApexComponents to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceApexComponentsConnection
-
- """Collection of Salesforce ApexEmailNotification"""
- apexEmailNotifications(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceApexEmailNotificationConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceApexEmailNotificationSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceApexEmailNotificationSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """
- Number of ApexEmailNotifications to fetch. Defaults to 10. Maximum is 60.
- """
- first: Int
- ): SalesforceApexEmailNotificationsConnection
-
- """Collection of Salesforce ApexLog"""
- apexLogs(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceApexLogConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceApexLogSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceApexLogSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of ApexLogs to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceApexLogsConnection
-
- """Collection of Salesforce ApexPage"""
- apexPages(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceApexPageConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceApexPageSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceApexPageSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of ApexPages to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceApexPagesConnection
-
- """Collection of Salesforce ApexTestQueueItem"""
- apexTestQueueItems(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceApexTestQueueItemConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceApexTestQueueItemSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceApexTestQueueItemSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of ApexTestQueueItems to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceApexTestQueueItemsConnection
-
- """Collection of Salesforce ApexTestResultLimits"""
- apexTestResultLimitsPlural(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceApexTestResultLimitsConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceApexTestResultLimitsSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceApexTestResultLimitsSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """
- Number of ApexTestResultLimits to fetch. Defaults to 10. Maximum is 60.
- """
- first: Int
- ): SalesforceApexTestResultLimitssConnection
-
- """Collection of Salesforce ApexTestRunResult"""
- apexTestRunResults(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceApexTestRunResultConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceApexTestRunResultSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceApexTestRunResultSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of ApexTestRunResults to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceApexTestRunResultsConnection
-
- """Collection of Salesforce ApexTestSuite"""
- apexTestSuites(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceApexTestSuiteConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceApexTestSuiteSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceApexTestSuiteSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of ApexTestSuites to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceApexTestSuitesConnection
-
- """Collection of Salesforce ApexTrigger"""
- apexTriggers(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceApexTriggerConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceApexTriggerSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceApexTriggerSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of ApexTriggers to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceApexTriggersConnection
-
- """Collection of Salesforce AppMenuItem"""
- appMenuItems(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceAppMenuItemConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceAppMenuItemSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceAppMenuItemSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of AppMenuItems to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceAppMenuItemsConnection
-
- """Collection of Salesforce Asset"""
- assets(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceAssetConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceAssetSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceAssetSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of Assets to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceAssetsConnection
-
- """Collection of Salesforce AssetFeed"""
- assetFeeds(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceAssetFeedConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceAssetFeedSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceAssetFeedSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of AssetFeeds to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceAssetFeedsConnection
-
- """Collection of Salesforce AssetHistory"""
- assetHistories(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceAssetHistoryConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceAssetHistorySortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceAssetHistorySortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of AssetHistories to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceAssetHistorysConnection
-
- """Collection of Salesforce AssetRelationship"""
- assetRelationships(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceAssetRelationshipConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceAssetRelationshipSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceAssetRelationshipSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of AssetRelationships to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceAssetRelationshipsConnection
-
- """Collection of Salesforce AssetRelationshipFeed"""
- assetRelationshipFeeds(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceAssetRelationshipFeedConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceAssetRelationshipFeedSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceAssetRelationshipFeedSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """
- Number of AssetRelationshipFeeds to fetch. Defaults to 10. Maximum is 60.
- """
- first: Int
- ): SalesforceAssetRelationshipFeedsConnection
-
- """Collection of Salesforce AssetRelationshipHistory"""
- assetRelationshipHistories(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceAssetRelationshipHistoryConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceAssetRelationshipHistorySortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceAssetRelationshipHistorySortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """
- Number of AssetRelationshipHistories to fetch. Defaults to 10. Maximum is 60.
- """
- first: Int
- ): SalesforceAssetRelationshipHistorysConnection
-
- """Collection of Salesforce AssetShare"""
- assetShares(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceAssetShareConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceAssetShareSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceAssetShareSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of AssetShares to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceAssetSharesConnection
-
- """Collection of Salesforce AssignmentRule"""
- assignmentRules(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceAssignmentRuleConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceAssignmentRuleSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceAssignmentRuleSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of AssignmentRules to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceAssignmentRulesConnection
-
- """Collection of Salesforce AsyncApexJob"""
- asyncApexJobs(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceAsyncApexJobConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceAsyncApexJobSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceAsyncApexJobSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of AsyncApexJobs to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceAsyncApexJobsConnection
-
- """Collection of Salesforce Attachment"""
- attachments(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceAttachmentConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceAttachmentSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceAttachmentSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of Attachments to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceAttachmentsConnection
-
- """Collection of Salesforce AuraDefinition"""
- auraDefinitions(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceAuraDefinitionConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceAuraDefinitionSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceAuraDefinitionSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of AuraDefinitions to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceAuraDefinitionsConnection
-
- """Collection of Salesforce AuraDefinitionBundle"""
- auraDefinitionBundles(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceAuraDefinitionBundleConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceAuraDefinitionBundleSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceAuraDefinitionBundleSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """
- Number of AuraDefinitionBundles to fetch. Defaults to 10. Maximum is 60.
- """
- first: Int
- ): SalesforceAuraDefinitionBundlesConnection
-
- """Collection of Salesforce AuthConfig"""
- authConfigs(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceAuthConfigConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceAuthConfigSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceAuthConfigSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of AuthConfigs to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceAuthConfigsConnection
-
- """Collection of Salesforce AuthConfigProviders"""
- authConfigProvidersPlural(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceAuthConfigProvidersConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceAuthConfigProvidersSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceAuthConfigProvidersSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of AuthConfigProviders to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceAuthConfigProviderssConnection
-
- """Collection of Salesforce AuthProvider"""
- authProviders(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceAuthProviderConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceAuthProviderSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceAuthProviderSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of AuthProviders to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceAuthProvidersConnection
-
- """Collection of Salesforce AuthSession"""
- authSessions(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceAuthSessionConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceAuthSessionSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceAuthSessionSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of AuthSessions to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceAuthSessionsConnection
-
- """Collection of Salesforce BackgroundOperation"""
- backgroundOperations(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceBackgroundOperationConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceBackgroundOperationSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceBackgroundOperationSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """
- Number of BackgroundOperations to fetch. Defaults to 10. Maximum is 60.
- """
- first: Int
- ): SalesforceBackgroundOperationsConnection
-
- """Collection of Salesforce BrandTemplate"""
- brandTemplates(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceBrandTemplateConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceBrandTemplateSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceBrandTemplateSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of BrandTemplates to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceBrandTemplatesConnection
-
- """Collection of Salesforce BusinessHours"""
- businessHoursPlural(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceBusinessHoursConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceBusinessHoursSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceBusinessHoursSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of BusinessHours to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceBusinessHourssConnection
-
- """Collection of Salesforce BusinessProcess"""
- businessProcesses(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceBusinessProcessConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceBusinessProcessSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceBusinessProcessSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of BusinessProcesses to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceBusinessProcesssConnection
-
- """Collection of Salesforce CallCenter"""
- callCenters(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceCallCenterConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceCallCenterSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceCallCenterSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of CallCenters to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceCallCentersConnection
-
- """Collection of Salesforce Campaign"""
- campaigns(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceCampaignConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceCampaignSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceCampaignSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of Campaigns to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceCampaignsConnection
-
- """Collection of Salesforce CampaignFeed"""
- campaignFeeds(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceCampaignFeedConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceCampaignFeedSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceCampaignFeedSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of CampaignFeeds to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceCampaignFeedsConnection
-
- """Collection of Salesforce CampaignHistory"""
- campaignHistories(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceCampaignHistoryConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceCampaignHistorySortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceCampaignHistorySortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of CampaignHistories to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceCampaignHistorysConnection
-
- """Collection of Salesforce CampaignMember"""
- campaignMembers(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceCampaignMemberConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceCampaignMemberSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceCampaignMemberSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of CampaignMembers to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceCampaignMembersConnection
-
- """Collection of Salesforce CampaignMemberStatus"""
- campaignMemberStatuses(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceCampaignMemberStatusConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceCampaignMemberStatusSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceCampaignMemberStatusSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """
- Number of CampaignMemberStatuses to fetch. Defaults to 10. Maximum is 60.
- """
- first: Int
- ): SalesforceCampaignMemberStatussConnection
-
- """Collection of Salesforce CampaignShare"""
- campaignShares(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceCampaignShareConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceCampaignShareSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceCampaignShareSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of CampaignShares to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceCampaignSharesConnection
-
- """Collection of Salesforce Case"""
- cases(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceCaseConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceCaseSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceCaseSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of Cases to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceCasesConnection
-
- """Collection of Salesforce CaseComment"""
- caseComments(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceCaseCommentConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceCaseCommentSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceCaseCommentSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of CaseComments to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceCaseCommentsConnection
-
- """Collection of Salesforce CaseContactRole"""
- caseContactRoles(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceCaseContactRoleConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceCaseContactRoleSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceCaseContactRoleSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of CaseContactRoles to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceCaseContactRolesConnection
-
- """Collection of Salesforce CaseFeed"""
- caseFeeds(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceCaseFeedConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceCaseFeedSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceCaseFeedSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of CaseFeeds to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceCaseFeedsConnection
-
- """Collection of Salesforce CaseHistory"""
- caseHistories(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceCaseHistoryConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceCaseHistorySortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceCaseHistorySortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of CaseHistories to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceCaseHistorysConnection
-
- """Collection of Salesforce CaseShare"""
- caseShares(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceCaseShareConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceCaseShareSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceCaseShareSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of CaseShares to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceCaseSharesConnection
-
- """Collection of Salesforce CaseSolution"""
- caseSolutions(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceCaseSolutionConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceCaseSolutionSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceCaseSolutionSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of CaseSolutions to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceCaseSolutionsConnection
-
- """Collection of Salesforce CaseStatus"""
- caseStatuses(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceCaseStatusConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceCaseStatusSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceCaseStatusSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of CaseStatuses to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceCaseStatussConnection
-
- """Collection of Salesforce CaseTeamMember"""
- caseTeamMembers(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceCaseTeamMemberConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceCaseTeamMemberSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceCaseTeamMemberSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of CaseTeamMembers to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceCaseTeamMembersConnection
-
- """Collection of Salesforce CaseTeamRole"""
- caseTeamRoles(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceCaseTeamRoleConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceCaseTeamRoleSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceCaseTeamRoleSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of CaseTeamRoles to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceCaseTeamRolesConnection
-
- """Collection of Salesforce CaseTeamTemplate"""
- caseTeamTemplates(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceCaseTeamTemplateConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceCaseTeamTemplateSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceCaseTeamTemplateSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of CaseTeamTemplates to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceCaseTeamTemplatesConnection
-
- """Collection of Salesforce CaseTeamTemplateMember"""
- caseTeamTemplateMembers(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceCaseTeamTemplateMemberConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceCaseTeamTemplateMemberSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceCaseTeamTemplateMemberSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """
- Number of CaseTeamTemplateMembers to fetch. Defaults to 10. Maximum is 60.
- """
- first: Int
- ): SalesforceCaseTeamTemplateMembersConnection
-
- """Collection of Salesforce CaseTeamTemplateRecord"""
- caseTeamTemplateRecords(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceCaseTeamTemplateRecordConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceCaseTeamTemplateRecordSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceCaseTeamTemplateRecordSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """
- Number of CaseTeamTemplateRecords to fetch. Defaults to 10. Maximum is 60.
- """
- first: Int
- ): SalesforceCaseTeamTemplateRecordsConnection
-
- """Collection of Salesforce CategoryData"""
- categoryDatas(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceCategoryDataConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceCategoryDataSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceCategoryDataSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of CategoryDatas to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceCategoryDatasConnection
-
- """Collection of Salesforce CategoryNode"""
- categoryNodes(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceCategoryNodeConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceCategoryNodeSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceCategoryNodeSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of CategoryNodes to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceCategoryNodesConnection
-
- """Collection of Salesforce ChatterActivity"""
- chatterActivities(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceChatterActivityConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceChatterActivitySortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceChatterActivitySortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of ChatterActivities to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceChatterActivitysConnection
-
- """Collection of Salesforce ChatterExtension"""
- chatterExtensions(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceChatterExtensionConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceChatterExtensionSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceChatterExtensionSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of ChatterExtensions to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceChatterExtensionsConnection
-
- """Collection of Salesforce ChatterExtensionConfig"""
- chatterExtensionConfigs(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceChatterExtensionConfigConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceChatterExtensionConfigSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceChatterExtensionConfigSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """
- Number of ChatterExtensionConfigs to fetch. Defaults to 10. Maximum is 60.
- """
- first: Int
- ): SalesforceChatterExtensionConfigsConnection
-
- """Collection of Salesforce ClientBrowser"""
- clientBrowsers(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceClientBrowserConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceClientBrowserSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceClientBrowserSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of ClientBrowsers to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceClientBrowsersConnection
-
- """Collection of Salesforce CollaborationGroup"""
- collaborationGroups(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceCollaborationGroupConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceCollaborationGroupSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceCollaborationGroupSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of CollaborationGroups to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceCollaborationGroupsConnection
-
- """Collection of Salesforce CollaborationGroupFeed"""
- collaborationGroupFeeds(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceCollaborationGroupFeedConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceCollaborationGroupFeedSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceCollaborationGroupFeedSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """
- Number of CollaborationGroupFeeds to fetch. Defaults to 10. Maximum is 60.
- """
- first: Int
- ): SalesforceCollaborationGroupFeedsConnection
-
- """Collection of Salesforce CollaborationGroupMember"""
- collaborationGroupMembers(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceCollaborationGroupMemberConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceCollaborationGroupMemberSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceCollaborationGroupMemberSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """
- Number of CollaborationGroupMembers to fetch. Defaults to 10. Maximum is 60.
- """
- first: Int
- ): SalesforceCollaborationGroupMembersConnection
-
- """Collection of Salesforce CollaborationGroupMember"""
- groupMemberships(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceCollaborationGroupMemberConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceCollaborationGroupMemberSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceCollaborationGroupMemberSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """
- Number of CollaborationGroupMembers to fetch. Defaults to 10. Maximum is 60.
- """
- first: Int
- ): SalesforceCollaborationGroupMembersConnection
-
- """Collection of Salesforce CollaborationGroupMemberRequest"""
- collaborationGroupMemberRequests(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceCollaborationGroupMemberRequestConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceCollaborationGroupMemberRequestSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceCollaborationGroupMemberRequestSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """
- Number of CollaborationGroupMemberRequests to fetch. Defaults to 10. Maximum is 60.
- """
- first: Int
- ): SalesforceCollaborationGroupMemberRequestsConnection
-
- """Collection of Salesforce CollaborationGroupMemberRequest"""
- groupMembershipRequests(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceCollaborationGroupMemberRequestConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceCollaborationGroupMemberRequestSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceCollaborationGroupMemberRequestSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """
- Number of CollaborationGroupMemberRequests to fetch. Defaults to 10. Maximum is 60.
- """
- first: Int
- ): SalesforceCollaborationGroupMemberRequestsConnection
-
- """Collection of Salesforce CollaborationGroupRecord"""
- collaborationGroupRecords(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceCollaborationGroupRecordConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceCollaborationGroupRecordSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceCollaborationGroupRecordSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """
- Number of CollaborationGroupRecords to fetch. Defaults to 10. Maximum is 60.
- """
- first: Int
- ): SalesforceCollaborationGroupRecordsConnection
-
- """Collection of Salesforce CollaborationInvitation"""
- collaborationInvitations(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceCollaborationInvitationConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceCollaborationInvitationSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceCollaborationInvitationSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """
- Number of CollaborationInvitations to fetch. Defaults to 10. Maximum is 60.
- """
- first: Int
- ): SalesforceCollaborationInvitationsConnection
-
- """Collection of Salesforce Community"""
- communities(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceCommunityConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceCommunitySortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceCommunitySortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of Communities to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceCommunitysConnection
-
- """Collection of Salesforce ConnectedApplication"""
- connectedApplications(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceConnectedApplicationConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceConnectedApplicationSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceConnectedApplicationSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """
- Number of ConnectedApplications to fetch. Defaults to 10. Maximum is 60.
- """
- first: Int
- ): SalesforceConnectedApplicationsConnection
-
- """Collection of Salesforce Contact"""
- contacts(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceContactConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceContactSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceContactSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of Contacts to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceContactsConnection
-
- """Collection of Salesforce ContactCleanInfo"""
- contactCleanInfos(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceContactCleanInfoConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceContactCleanInfoSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceContactCleanInfoSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of ContactCleanInfos to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceContactCleanInfosConnection
-
- """Collection of Salesforce ContactCleanInfo"""
- contactCleanInfoReviewers(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceContactCleanInfoConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceContactCleanInfoSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceContactCleanInfoSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of ContactCleanInfos to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceContactCleanInfosConnection
-
- """Collection of Salesforce ContactFeed"""
- contactFeeds(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceContactFeedConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceContactFeedSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceContactFeedSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of ContactFeeds to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceContactFeedsConnection
-
- """Collection of Salesforce ContactHistory"""
- contactHistories(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceContactHistoryConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceContactHistorySortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceContactHistorySortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of ContactHistories to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceContactHistorysConnection
-
- """Collection of Salesforce ContactShare"""
- contactShares(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceContactShareConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceContactShareSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceContactShareSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of ContactShares to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceContactSharesConnection
-
- """Collection of Salesforce ContentAsset"""
- contentAssets(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceContentAssetConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceContentAssetSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceContentAssetSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of ContentAssets to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceContentAssetsConnection
-
- """Collection of Salesforce ContentDistribution"""
- contentDistributions(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceContentDistributionConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceContentDistributionSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceContentDistributionSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """
- Number of ContentDistributions to fetch. Defaults to 10. Maximum is 60.
- """
- first: Int
- ): SalesforceContentDistributionsConnection
-
- """Collection of Salesforce ContentDistributionView"""
- contentDistributionViews(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceContentDistributionViewConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceContentDistributionViewSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceContentDistributionViewSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """
- Number of ContentDistributionViews to fetch. Defaults to 10. Maximum is 60.
- """
- first: Int
- ): SalesforceContentDistributionViewsConnection
-
- """Collection of Salesforce ContentDocument"""
- contentDocuments(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceContentDocumentConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceContentDocumentSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceContentDocumentSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of ContentDocuments to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceContentDocumentsConnection
-
- """Collection of Salesforce ContentDocumentFeed"""
- contentDocumentFeeds(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceContentDocumentFeedConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceContentDocumentFeedSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceContentDocumentFeedSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """
- Number of ContentDocumentFeeds to fetch. Defaults to 10. Maximum is 60.
- """
- first: Int
- ): SalesforceContentDocumentFeedsConnection
-
- """Collection of Salesforce ContentDocumentHistory"""
- contentDocumentHistories(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceContentDocumentHistoryConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceContentDocumentHistorySortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceContentDocumentHistorySortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """
- Number of ContentDocumentHistories to fetch. Defaults to 10. Maximum is 60.
- """
- first: Int
- ): SalesforceContentDocumentHistorysConnection
-
- """Collection of Salesforce ContentDocumentLink"""
- contentDocumentLinks(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceContentDocumentLinkConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceContentDocumentLinkSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceContentDocumentLinkSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """
- Number of ContentDocumentLinks to fetch. Defaults to 10. Maximum is 60.
- """
- first: Int
- ): SalesforceContentDocumentLinksConnection
-
- """Collection of Salesforce ContentDocumentSubscription"""
- contentDocumentSubscriptions(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceContentDocumentSubscriptionConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceContentDocumentSubscriptionSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceContentDocumentSubscriptionSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """
- Number of ContentDocumentSubscriptions to fetch. Defaults to 10. Maximum is 60.
- """
- first: Int
- ): SalesforceContentDocumentSubscriptionsConnection
-
- """Collection of Salesforce ContentFolder"""
- contentFolders(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceContentFolderConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceContentFolderSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceContentFolderSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of ContentFolders to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceContentFoldersConnection
-
- """Collection of Salesforce ContentFolderItem"""
- contentFolderItems(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceContentFolderItemConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceContentFolderItemSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceContentFolderItemSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of ContentFolderItems to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceContentFolderItemsConnection
-
- """Collection of Salesforce ContentFolderMember"""
- contentFolderMembers(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceContentFolderMemberConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceContentFolderMemberSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceContentFolderMemberSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """
- Number of ContentFolderMembers to fetch. Defaults to 10. Maximum is 60.
- """
- first: Int
- ): SalesforceContentFolderMembersConnection
-
- """Collection of Salesforce ContentNotification"""
- contentNotifications(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceContentNotificationConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceContentNotificationSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceContentNotificationSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """
- Number of ContentNotifications to fetch. Defaults to 10. Maximum is 60.
- """
- first: Int
- ): SalesforceContentNotificationsConnection
-
- """Collection of Salesforce ContentTagSubscription"""
- contentTagSubscriptions(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceContentTagSubscriptionConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceContentTagSubscriptionSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceContentTagSubscriptionSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """
- Number of ContentTagSubscriptions to fetch. Defaults to 10. Maximum is 60.
- """
- first: Int
- ): SalesforceContentTagSubscriptionsConnection
-
- """Collection of Salesforce ContentUserSubscription"""
- contentUserSubscriptions(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceContentUserSubscriptionConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceContentUserSubscriptionSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceContentUserSubscriptionSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """
- Number of ContentUserSubscriptions to fetch. Defaults to 10. Maximum is 60.
- """
- first: Int
- ): SalesforceContentUserSubscriptionsConnection
-
- """Collection of Salesforce ContentVersion"""
- contentVersions(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceContentVersionConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceContentVersionSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceContentVersionSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of ContentVersions to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceContentVersionsConnection
-
- """Collection of Salesforce ContentVersionHistory"""
- contentVersionHistories(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceContentVersionHistoryConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceContentVersionHistorySortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceContentVersionHistorySortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """
- Number of ContentVersionHistories to fetch. Defaults to 10. Maximum is 60.
- """
- first: Int
- ): SalesforceContentVersionHistorysConnection
-
- """Collection of Salesforce ContentVersionRating"""
- contentVersionRatings(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceContentVersionRatingConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceContentVersionRatingSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceContentVersionRatingSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """
- Number of ContentVersionRatings to fetch. Defaults to 10. Maximum is 60.
- """
- first: Int
- ): SalesforceContentVersionRatingsConnection
-
- """Collection of Salesforce ContentWorkspace"""
- contentWorkspaces(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceContentWorkspaceConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceContentWorkspaceSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceContentWorkspaceSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of ContentWorkspaces to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceContentWorkspacesConnection
-
- """Collection of Salesforce ContentWorkspaceMember"""
- contentWorkspaceMembers(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceContentWorkspaceMemberConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceContentWorkspaceMemberSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceContentWorkspaceMemberSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """
- Number of ContentWorkspaceMembers to fetch. Defaults to 10. Maximum is 60.
- """
- first: Int
- ): SalesforceContentWorkspaceMembersConnection
-
- """Collection of Salesforce ContentWorkspacePermission"""
- contentWorkspacePermissions(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceContentWorkspacePermissionConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceContentWorkspacePermissionSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceContentWorkspacePermissionSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """
- Number of ContentWorkspacePermissions to fetch. Defaults to 10. Maximum is 60.
- """
- first: Int
- ): SalesforceContentWorkspacePermissionsConnection
-
- """Collection of Salesforce ContentWorkspaceSubscription"""
- contentWorkspaceSubscriptions(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceContentWorkspaceSubscriptionConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceContentWorkspaceSubscriptionSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceContentWorkspaceSubscriptionSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """
- Number of ContentWorkspaceSubscriptions to fetch. Defaults to 10. Maximum is 60.
- """
- first: Int
- ): SalesforceContentWorkspaceSubscriptionsConnection
-
- """Collection of Salesforce Contract"""
- contracts(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceContractConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceContractSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceContractSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of Contracts to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceContractsConnection
-
- """Collection of Salesforce Contract"""
- contractsSigned(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceContractConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceContractSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceContractSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of Contracts to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceContractsConnection
-
- """Collection of Salesforce ContractContactRole"""
- contractContactRoles(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceContractContactRoleConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceContractContactRoleSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceContractContactRoleSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """
- Number of ContractContactRoles to fetch. Defaults to 10. Maximum is 60.
- """
- first: Int
- ): SalesforceContractContactRolesConnection
-
- """Collection of Salesforce ContractFeed"""
- contractFeeds(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceContractFeedConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceContractFeedSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceContractFeedSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of ContractFeeds to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceContractFeedsConnection
-
- """Collection of Salesforce ContractHistory"""
- contractHistories(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceContractHistoryConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceContractHistorySortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceContractHistorySortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of ContractHistories to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceContractHistorysConnection
-
- """Collection of Salesforce ContractStatus"""
- contractStatuses(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceContractStatusConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceContractStatusSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceContractStatusSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of ContractStatuses to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceContractStatussConnection
-
- """Collection of Salesforce CorsWhitelistEntry"""
- corsWhitelistEntries(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceCorsWhitelistEntryConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceCorsWhitelistEntrySortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceCorsWhitelistEntrySortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """
- Number of CorsWhitelistEntries to fetch. Defaults to 10. Maximum is 60.
- """
- first: Int
- ): SalesforceCorsWhitelistEntrysConnection
-
- """Collection of Salesforce CronTrigger"""
- cronTriggers(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceCronTriggerConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceCronTriggerSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceCronTriggerSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of CronTriggers to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceCronTriggersConnection
-
- """Collection of Salesforce CspTrustedSite"""
- cspTrustedSites(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceCspTrustedSiteConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceCspTrustedSiteSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceCspTrustedSiteSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of CspTrustedSites to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceCspTrustedSitesConnection
-
- """Collection of Salesforce CustomBrand"""
- customBrands(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceCustomBrandConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceCustomBrandSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceCustomBrandSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of CustomBrands to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceCustomBrandsConnection
-
- """Collection of Salesforce CustomBrandAsset"""
- customBrandAssets(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceCustomBrandAssetConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceCustomBrandAssetSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceCustomBrandAssetSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of CustomBrandAssets to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceCustomBrandAssetsConnection
-
- """Collection of Salesforce CustomPermission"""
- customPermissions(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceCustomPermissionConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceCustomPermissionSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceCustomPermissionSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of CustomPermissions to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceCustomPermissionsConnection
-
- """Collection of Salesforce CustomPermissionDependency"""
- customPermissionDependencies(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceCustomPermissionDependencyConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceCustomPermissionDependencySortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceCustomPermissionDependencySortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """
- Number of CustomPermissionDependencies to fetch. Defaults to 10. Maximum is 60.
- """
- first: Int
- ): SalesforceCustomPermissionDependencysConnection
-
- """Collection of Salesforce DandBCompany"""
- dandBCompanies(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceDandBCompanyConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceDandBCompanySortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceDandBCompanySortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of DandBCompanies to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceDandBCompanysConnection
-
- """Collection of Salesforce Dashboard"""
- dashboards(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceDashboardConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceDashboardSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceDashboardSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of Dashboards to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceDashboardsConnection
-
- """Collection of Salesforce DashboardComponentFeed"""
- dashboardComponentFeeds(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceDashboardComponentFeedConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceDashboardComponentFeedSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceDashboardComponentFeedSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """
- Number of DashboardComponentFeeds to fetch. Defaults to 10. Maximum is 60.
- """
- first: Int
- ): SalesforceDashboardComponentFeedsConnection
-
- """Collection of Salesforce DashboardFeed"""
- dashboardFeeds(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceDashboardFeedConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceDashboardFeedSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceDashboardFeedSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of DashboardFeeds to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceDashboardFeedsConnection
-
- """Collection of Salesforce DataAssessmentFieldMetric"""
- dataAssessmentFieldMetrics(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceDataAssessmentFieldMetricConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceDataAssessmentFieldMetricSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceDataAssessmentFieldMetricSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """
- Number of DataAssessmentFieldMetrics to fetch. Defaults to 10. Maximum is 60.
- """
- first: Int
- ): SalesforceDataAssessmentFieldMetricsConnection
-
- """Collection of Salesforce DataAssessmentMetric"""
- dataAssessmentMetrics(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceDataAssessmentMetricConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceDataAssessmentMetricSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceDataAssessmentMetricSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """
- Number of DataAssessmentMetrics to fetch. Defaults to 10. Maximum is 60.
- """
- first: Int
- ): SalesforceDataAssessmentMetricsConnection
-
- """Collection of Salesforce DataAssessmentValueMetric"""
- dataAssessmentValueMetrics(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceDataAssessmentValueMetricConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceDataAssessmentValueMetricSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceDataAssessmentValueMetricSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """
- Number of DataAssessmentValueMetrics to fetch. Defaults to 10. Maximum is 60.
- """
- first: Int
- ): SalesforceDataAssessmentValueMetricsConnection
-
- """Collection of Salesforce DatacloudOwnedEntity"""
- datacloudOwnedEntities(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceDatacloudOwnedEntityConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceDatacloudOwnedEntitySortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceDatacloudOwnedEntitySortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """
- Number of DatacloudOwnedEntities to fetch. Defaults to 10. Maximum is 60.
- """
- first: Int
- ): SalesforceDatacloudOwnedEntitysConnection
-
- """Collection of Salesforce DatacloudPurchaseUsage"""
- datacloudPurchaseUsages(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceDatacloudPurchaseUsageConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceDatacloudPurchaseUsageSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceDatacloudPurchaseUsageSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """
- Number of DatacloudPurchaseUsages to fetch. Defaults to 10. Maximum is 60.
- """
- first: Int
- ): SalesforceDatacloudPurchaseUsagesConnection
-
- """Collection of Salesforce DeclinedEventRelation"""
- declinedEventRelations(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceDeclinedEventRelationConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceDeclinedEventRelationSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceDeclinedEventRelationSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """
- Number of DeclinedEventRelations to fetch. Defaults to 10. Maximum is 60.
- """
- first: Int
- ): SalesforceDeclinedEventRelationsConnection
-
- """Collection of Salesforce Document"""
- documents(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceDocumentConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceDocumentSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceDocumentSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of Documents to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceDocumentsConnection
-
- """Collection of Salesforce DocumentAttachmentMap"""
- documentAttachmentMaps(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceDocumentAttachmentMapConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceDocumentAttachmentMapSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceDocumentAttachmentMapSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """
- Number of DocumentAttachmentMaps to fetch. Defaults to 10. Maximum is 60.
- """
- first: Int
- ): SalesforceDocumentAttachmentMapsConnection
-
- """Collection of Salesforce Domain"""
- domains(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceDomainConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceDomainSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceDomainSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of Domains to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceDomainsConnection
-
- """Collection of Salesforce DomainSite"""
- domainSites(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceDomainSiteConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceDomainSiteSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceDomainSiteSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of DomainSites to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceDomainSitesConnection
-
- """Collection of Salesforce DuplicateRecordItem"""
- duplicateRecordItems(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceDuplicateRecordItemConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceDuplicateRecordItemSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceDuplicateRecordItemSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """
- Number of DuplicateRecordItems to fetch. Defaults to 10. Maximum is 60.
- """
- first: Int
- ): SalesforceDuplicateRecordItemsConnection
-
- """Collection of Salesforce DuplicateRecordSet"""
- duplicateRecordSets(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceDuplicateRecordSetConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceDuplicateRecordSetSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceDuplicateRecordSetSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of DuplicateRecordSets to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceDuplicateRecordSetsConnection
-
- """Collection of Salesforce DuplicateRule"""
- duplicateRules(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceDuplicateRuleConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceDuplicateRuleSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceDuplicateRuleSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of DuplicateRules to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceDuplicateRulesConnection
-
- """Collection of Salesforce EmailCapture"""
- emailCaptures(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceEmailCaptureConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceEmailCaptureSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceEmailCaptureSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of EmailCaptures to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceEmailCapturesConnection
-
- """Collection of Salesforce EmailDomainKey"""
- emailDomainKeys(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceEmailDomainKeyConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceEmailDomainKeySortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceEmailDomainKeySortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of EmailDomainKeys to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceEmailDomainKeysConnection
-
- """Collection of Salesforce EmailMessage"""
- emailMessages(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceEmailMessageConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceEmailMessageSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceEmailMessageSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of EmailMessages to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceEmailMessagesConnection
-
- """Collection of Salesforce EmailMessageRelation"""
- emailMessageRelations(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceEmailMessageRelationConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceEmailMessageRelationSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceEmailMessageRelationSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """
- Number of EmailMessageRelations to fetch. Defaults to 10. Maximum is 60.
- """
- first: Int
- ): SalesforceEmailMessageRelationsConnection
-
- """Collection of Salesforce EmailServicesAddress"""
- emailServicesAddresses(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceEmailServicesAddressConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceEmailServicesAddressSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceEmailServicesAddressSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """
- Number of EmailServicesAddresses to fetch. Defaults to 10. Maximum is 60.
- """
- first: Int
- ): SalesforceEmailServicesAddresssConnection
-
- """Collection of Salesforce EmailServicesFunction"""
- emailServicesFunctions(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceEmailServicesFunctionConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceEmailServicesFunctionSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceEmailServicesFunctionSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """
- Number of EmailServicesFunctions to fetch. Defaults to 10. Maximum is 60.
- """
- first: Int
- ): SalesforceEmailServicesFunctionsConnection
-
- """Collection of Salesforce EmailTemplate"""
- emailTemplates(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceEmailTemplateConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceEmailTemplateSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceEmailTemplateSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of EmailTemplates to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceEmailTemplatesConnection
-
- """Collection of Salesforce EntitySubscription"""
- entitySubscriptions(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceEntitySubscriptionConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceEntitySubscriptionSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceEntitySubscriptionSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of EntitySubscriptions to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceEntitySubscriptionsConnection
-
- """Collection of Salesforce EntitySubscription"""
- feedSubscriptionsForEntity(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceEntitySubscriptionConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceEntitySubscriptionSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceEntitySubscriptionSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of EntitySubscriptions to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceEntitySubscriptionsConnection
-
- """Collection of Salesforce EntitySubscription"""
- feedSubscriptions(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceEntitySubscriptionConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceEntitySubscriptionSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceEntitySubscriptionSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of EntitySubscriptions to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceEntitySubscriptionsConnection
-
- """Collection of Salesforce Event"""
- events(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceEventConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceEventSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceEventSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of Events to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceEventsConnection
-
- """Collection of Salesforce EventFeed"""
- eventFeeds(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceEventFeedConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceEventFeedSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceEventFeedSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of EventFeeds to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceEventFeedsConnection
-
- """Collection of Salesforce EventLogFile"""
- eventLogFiles(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceEventLogFileConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceEventLogFileSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceEventLogFileSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of EventLogFiles to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceEventLogFilesConnection
-
- """Collection of Salesforce EventRelation"""
- eventRelations(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceEventRelationConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceEventRelationSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceEventRelationSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of EventRelations to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceEventRelationsConnection
-
- """Collection of Salesforce ExternalDataSource"""
- externalDataSources(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceExternalDataSourceConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceExternalDataSourceSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceExternalDataSourceSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of ExternalDataSources to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceExternalDataSourcesConnection
-
- """Collection of Salesforce ExternalDataUserAuth"""
- externalDataUserAuths(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceExternalDataUserAuthConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceExternalDataUserAuthSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceExternalDataUserAuthSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """
- Number of ExternalDataUserAuths to fetch. Defaults to 10. Maximum is 60.
- """
- first: Int
- ): SalesforceExternalDataUserAuthsConnection
-
- """Collection of Salesforce FeedComment"""
- feedComments(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceFeedCommentConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceFeedCommentSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceFeedCommentSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of FeedComments to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceFeedCommentsConnection
-
- """Collection of Salesforce FeedItem"""
- feedItems(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceFeedItemConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceFeedItemSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceFeedItemSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of FeedItems to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceFeedItemsConnection
-
- """Collection of Salesforce FeedPollChoice"""
- feedPollChoices(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceFeedPollChoiceConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceFeedPollChoiceSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceFeedPollChoiceSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of FeedPollChoices to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceFeedPollChoicesConnection
-
- """Collection of Salesforce FeedPollVote"""
- feedPollVotes(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceFeedPollVoteConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceFeedPollVoteSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceFeedPollVoteSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of FeedPollVotes to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceFeedPollVotesConnection
-
- """Collection of Salesforce FeedRevision"""
- feedRevisions(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceFeedRevisionConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceFeedRevisionSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceFeedRevisionSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of FeedRevisions to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceFeedRevisionsConnection
-
- """Collection of Salesforce FileSearchActivity"""
- fileSearchActivities(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceFileSearchActivityConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceFileSearchActivitySortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceFileSearchActivitySortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """
- Number of FileSearchActivities to fetch. Defaults to 10. Maximum is 60.
- """
- first: Int
- ): SalesforceFileSearchActivitysConnection
-
- """Collection of Salesforce FlowInterview"""
- flowInterviews(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceFlowInterviewConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceFlowInterviewSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceFlowInterviewSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of FlowInterviews to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceFlowInterviewsConnection
-
- """Collection of Salesforce FlowInterviewShare"""
- flowInterviewShares(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceFlowInterviewShareConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceFlowInterviewShareSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceFlowInterviewShareSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of FlowInterviewShares to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceFlowInterviewSharesConnection
-
- """Collection of Salesforce FlowRecordRelation"""
- flowRecordRelations(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceFlowRecordRelationConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceFlowRecordRelationSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceFlowRecordRelationsConnection
-
- """Collection of Salesforce Folder"""
- folders(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceFolderConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceFolderSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceFolderSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of Folders to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceFoldersConnection
-
- """Collection of Salesforce ForecastShare"""
- forecastShares(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceForecastShareConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceForecastShareSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceForecastShareSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of ForecastShares to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceForecastSharesConnection
-
- """Collection of Salesforce GrantedByLicense"""
- grantedByLicenses(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceGrantedByLicenseConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceGrantedByLicenseSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceGrantedByLicenseSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of GrantedByLicenses to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceGrantedByLicensesConnection
-
- """Collection of Salesforce Group"""
- groups(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceGroupConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceGroupSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceGroupSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of Groups to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceGroupsConnection
-
- """Collection of Salesforce GroupMember"""
- groupMembers(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceGroupMemberConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceGroupMemberSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceGroupMemberSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of GroupMembers to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceGroupMembersConnection
-
- """Collection of Salesforce Holiday"""
- holidays(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceHolidayConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceHolidaySortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceHolidaySortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of Holidays to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceHolidaysConnection
-
- """Collection of Salesforce Idea"""
- ideas(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceIdeaConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceIdeaSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceIdeaSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of Ideas to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceIdeasConnection
-
- """Collection of Salesforce IdeaComment"""
- ideaComments(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceIdeaCommentConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceIdeaCommentSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceIdeaCommentSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of IdeaComments to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceIdeaCommentsConnection
-
- """Collection of Salesforce IdpEventLog"""
- idpEventLogs(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceIdpEventLogConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceIdpEventLogSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceIdpEventLogSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of IdpEventLogs to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceIdpEventLogsConnection
-
- """Collection of Salesforce InstalledMobileApp"""
- installedMobileApps(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceInstalledMobileAppConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceInstalledMobileAppSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceInstalledMobileAppSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of InstalledMobileApps to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceInstalledMobileAppsConnection
-
- """Collection of Salesforce KnowledgeableUser"""
- knowledgeableUsers(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceKnowledgeableUserConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceKnowledgeableUserSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceKnowledgeableUserSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of KnowledgeableUsers to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceKnowledgeableUsersConnection
-
- """Collection of Salesforce Lead"""
- leads(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceLeadConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceLeadSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceLeadSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of Leads to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceLeadsConnection
-
- """Collection of Salesforce LeadCleanInfo"""
- leadCleanInfos(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceLeadCleanInfoConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceLeadCleanInfoSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceLeadCleanInfoSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of LeadCleanInfos to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceLeadCleanInfosConnection
-
- """Collection of Salesforce LeadCleanInfo"""
- leadCleanInfoReviewers(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceLeadCleanInfoConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceLeadCleanInfoSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceLeadCleanInfoSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of LeadCleanInfos to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceLeadCleanInfosConnection
-
- """Collection of Salesforce LeadFeed"""
- leadFeeds(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceLeadFeedConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceLeadFeedSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceLeadFeedSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of LeadFeeds to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceLeadFeedsConnection
-
- """Collection of Salesforce LeadHistory"""
- leadHistories(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceLeadHistoryConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceLeadHistorySortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceLeadHistorySortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of LeadHistories to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceLeadHistorysConnection
-
- """Collection of Salesforce LeadShare"""
- leadShares(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceLeadShareConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceLeadShareSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceLeadShareSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of LeadShares to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceLeadSharesConnection
-
- """Collection of Salesforce LeadStatus"""
- leadStatuses(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceLeadStatusConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceLeadStatusSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceLeadStatusSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of LeadStatuses to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceLeadStatussConnection
-
- """Collection of Salesforce LightningComponentBundle"""
- lightningComponentBundles(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceLightningComponentBundleConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceLightningComponentBundleSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceLightningComponentBundleSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """
- Number of LightningComponentBundles to fetch. Defaults to 10. Maximum is 60.
- """
- first: Int
- ): SalesforceLightningComponentBundlesConnection
-
- """Collection of Salesforce LightningComponentResource"""
- lightningComponentResources(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceLightningComponentResourceConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceLightningComponentResourceSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceLightningComponentResourceSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """
- Number of LightningComponentResources to fetch. Defaults to 10. Maximum is 60.
- """
- first: Int
- ): SalesforceLightningComponentResourcesConnection
-
- """Collection of Salesforce ListEmail"""
- listEmails(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceListEmailConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceListEmailSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceListEmailSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of ListEmails to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceListEmailsConnection
-
- """Collection of Salesforce ListEmailRecipientSource"""
- listEmailRecipientSources(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceListEmailRecipientSourceConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceListEmailRecipientSourceSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceListEmailRecipientSourceSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """
- Number of ListEmailRecipientSources to fetch. Defaults to 10. Maximum is 60.
- """
- first: Int
- ): SalesforceListEmailRecipientSourcesConnection
-
- """Collection of Salesforce ListEmailShare"""
- listEmailShares(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceListEmailShareConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceListEmailShareSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceListEmailShareSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of ListEmailShares to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceListEmailSharesConnection
-
- """Collection of Salesforce ListView"""
- listViews(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceListViewConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceListViewSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceListViewSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of ListViews to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceListViewsConnection
-
- """Collection of Salesforce ListViewChart"""
- listViewCharts(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceListViewChartConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceListViewChartSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceListViewChartSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of ListViewCharts to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceListViewChartsConnection
-
- """Collection of Salesforce LoginGeo"""
- loginGeos(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceLoginGeoConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceLoginGeoSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceLoginGeoSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of LoginGeos to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceLoginGeosConnection
-
- """Collection of Salesforce LoginHistory"""
- loginHistories(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceLoginHistoryConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceLoginHistorySortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceLoginHistorySortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of LoginHistories to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceLoginHistorysConnection
-
- """Collection of Salesforce LoginIp"""
- loginIps(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceLoginIpConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceLoginIpSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceLoginIpSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of LoginIps to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceLoginIpsConnection
-
- """Collection of Salesforce Macro"""
- macros(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceMacroConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceMacroSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceMacroSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of Macros to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceMacrosConnection
-
- """Collection of Salesforce MacroHistory"""
- macroHistories(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceMacroHistoryConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceMacroHistorySortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceMacroHistorySortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of MacroHistories to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceMacroHistorysConnection
-
- """Collection of Salesforce MacroInstruction"""
- macroInstructions(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceMacroInstructionConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceMacroInstructionSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceMacroInstructionSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of MacroInstructions to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceMacroInstructionsConnection
-
- """Collection of Salesforce MacroShare"""
- macroShares(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceMacroShareConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceMacroShareSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceMacroShareSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of MacroShares to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceMacroSharesConnection
-
- """Collection of Salesforce MailmergeTemplate"""
- mailmergeTemplates(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceMailmergeTemplateConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceMailmergeTemplateSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceMailmergeTemplateSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of MailmergeTemplates to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceMailmergeTemplatesConnection
-
- """Collection of Salesforce MatchingRule"""
- matchingRules(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceMatchingRuleConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceMatchingRuleSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceMatchingRuleSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of MatchingRules to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceMatchingRulesConnection
-
- """Collection of Salesforce MatchingRuleItem"""
- matchingRuleItems(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceMatchingRuleItemConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceMatchingRuleItemSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceMatchingRuleItemSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of MatchingRuleItems to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceMatchingRuleItemsConnection
-
- """Collection of Salesforce NamedCredential"""
- namedCredentials(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceNamedCredentialConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceNamedCredentialSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceNamedCredentialSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of NamedCredentials to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceNamedCredentialsConnection
-
- """Collection of Salesforce Note"""
- notes(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceNoteConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceNoteSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceNoteSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of Notes to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceNotesConnection
-
- """Collection of Salesforce ObjectPermissions"""
- objectPermissionsPlural(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceObjectPermissionsConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceObjectPermissionsSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceObjectPermissionsSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of ObjectPermissions to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceObjectPermissionssConnection
-
- """Collection of Salesforce Opportunity"""
- opportunities(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceOpportunityConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceOpportunitySortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceOpportunitySortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of Opportunities to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceOpportunitysConnection
-
- """Collection of Salesforce OpportunityCompetitor"""
- opportunityCompetitors(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceOpportunityCompetitorConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceOpportunityCompetitorSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceOpportunityCompetitorSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """
- Number of OpportunityCompetitors to fetch. Defaults to 10. Maximum is 60.
- """
- first: Int
- ): SalesforceOpportunityCompetitorsConnection
-
- """Collection of Salesforce OpportunityContactRole"""
- opportunityContactRoles(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceOpportunityContactRoleConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceOpportunityContactRoleSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceOpportunityContactRoleSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """
- Number of OpportunityContactRoles to fetch. Defaults to 10. Maximum is 60.
- """
- first: Int
- ): SalesforceOpportunityContactRolesConnection
-
- """Collection of Salesforce OpportunityFeed"""
- opportunityFeeds(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceOpportunityFeedConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceOpportunityFeedSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceOpportunityFeedSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of OpportunityFeeds to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceOpportunityFeedsConnection
-
- """Collection of Salesforce OpportunityFieldHistory"""
- opportunityFieldHistories(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceOpportunityFieldHistoryConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceOpportunityFieldHistorySortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceOpportunityFieldHistorySortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """
- Number of OpportunityFieldHistories to fetch. Defaults to 10. Maximum is 60.
- """
- first: Int
- ): SalesforceOpportunityFieldHistorysConnection
-
- """Collection of Salesforce OpportunityHistory"""
- opportunityHistories(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceOpportunityHistoryConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceOpportunityHistorySortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceOpportunityHistorySortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """
- Number of OpportunityHistories to fetch. Defaults to 10. Maximum is 60.
- """
- first: Int
- ): SalesforceOpportunityHistorysConnection
-
- """Collection of Salesforce OpportunityLineItem"""
- opportunityLineItems(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceOpportunityLineItemConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceOpportunityLineItemSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceOpportunityLineItemSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """
- Number of OpportunityLineItems to fetch. Defaults to 10. Maximum is 60.
- """
- first: Int
- ): SalesforceOpportunityLineItemsConnection
-
- """Collection of Salesforce OpportunityPartner"""
- opportunityPartners(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceOpportunityPartnerConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceOpportunityPartnerSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceOpportunityPartnerSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of OpportunityPartners to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceOpportunityPartnersConnection
-
- """Collection of Salesforce OpportunityShare"""
- opportunityShares(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceOpportunityShareConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceOpportunityShareSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceOpportunityShareSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of OpportunityShares to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceOpportunitySharesConnection
-
- """Collection of Salesforce OpportunityStage"""
- opportunityStages(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceOpportunityStageConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceOpportunityStageSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceOpportunityStageSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of OpportunityStages to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceOpportunityStagesConnection
-
- """Collection of Salesforce Order"""
- orders(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceOrderConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceOrderSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceOrderSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of Orders to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceOrdersConnection
-
- """Collection of Salesforce OrderFeed"""
- orderFeeds(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceOrderFeedConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceOrderFeedSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceOrderFeedSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of OrderFeeds to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceOrderFeedsConnection
-
- """Collection of Salesforce OrderHistory"""
- orderHistories(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceOrderHistoryConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceOrderHistorySortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceOrderHistorySortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of OrderHistories to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceOrderHistorysConnection
-
- """Collection of Salesforce OrderItem"""
- orderItems(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceOrderItemConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceOrderItemSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceOrderItemSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of OrderItems to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceOrderItemsConnection
-
- """Collection of Salesforce OrderItemFeed"""
- orderItemFeeds(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceOrderItemFeedConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceOrderItemFeedSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceOrderItemFeedSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of OrderItemFeeds to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceOrderItemFeedsConnection
-
- """Collection of Salesforce OrderItemHistory"""
- orderItemHistories(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceOrderItemHistoryConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceOrderItemHistorySortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceOrderItemHistorySortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of OrderItemHistories to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceOrderItemHistorysConnection
-
- """Collection of Salesforce OrderShare"""
- orderShares(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceOrderShareConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceOrderShareSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceOrderShareSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of OrderShares to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceOrderSharesConnection
-
- """Collection of Salesforce OrgDeleteRequest"""
- orgDeleteRequests(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceOrgDeleteRequestConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceOrgDeleteRequestSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceOrgDeleteRequestSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of OrgDeleteRequests to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceOrgDeleteRequestsConnection
-
- """Collection of Salesforce OrgDeleteRequestShare"""
- orgDeleteRequestShares(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceOrgDeleteRequestShareConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceOrgDeleteRequestShareSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceOrgDeleteRequestShareSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """
- Number of OrgDeleteRequestShares to fetch. Defaults to 10. Maximum is 60.
- """
- first: Int
- ): SalesforceOrgDeleteRequestSharesConnection
-
- """Collection of Salesforce OrgWideEmailAddress"""
- orgWideEmailAddresses(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceOrgWideEmailAddressConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceOrgWideEmailAddressSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceOrgWideEmailAddressSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """
- Number of OrgWideEmailAddresses to fetch. Defaults to 10. Maximum is 60.
- """
- first: Int
- ): SalesforceOrgWideEmailAddresssConnection
-
- """Collection of Salesforce Organization"""
- organizations(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceOrganizationConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceOrganizationSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceOrganizationSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of Organizations to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceOrganizationsConnection
-
- """Collection of Salesforce Partner"""
- partners(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforcePartnerConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforcePartnerSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforcePartnerSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of Partners to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforcePartnersConnection
-
- """Collection of Salesforce PartnerRole"""
- partnerRoles(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforcePartnerRoleConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforcePartnerRoleSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforcePartnerRoleSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of PartnerRoles to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforcePartnerRolesConnection
-
- """Collection of Salesforce PermissionSet"""
- permissionSets(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforcePermissionSetConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforcePermissionSetSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforcePermissionSetSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of PermissionSets to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforcePermissionSetsConnection
-
- """Collection of Salesforce PermissionSetAssignment"""
- permissionSetAssignments(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforcePermissionSetAssignmentConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforcePermissionSetAssignmentSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforcePermissionSetAssignmentSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """
- Number of PermissionSetAssignments to fetch. Defaults to 10. Maximum is 60.
- """
- first: Int
- ): SalesforcePermissionSetAssignmentsConnection
-
- """Collection of Salesforce PermissionSetLicense"""
- permissionSetLicenses(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforcePermissionSetLicenseConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforcePermissionSetLicenseSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforcePermissionSetLicenseSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """
- Number of PermissionSetLicenses to fetch. Defaults to 10. Maximum is 60.
- """
- first: Int
- ): SalesforcePermissionSetLicensesConnection
-
- """Collection of Salesforce PermissionSetLicenseAssign"""
- permissionSetLicenseAssignments(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforcePermissionSetLicenseAssignConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforcePermissionSetLicenseAssignSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforcePermissionSetLicenseAssignSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """
- Number of PermissionSetLicenseAssigns to fetch. Defaults to 10. Maximum is 60.
- """
- first: Int
- ): SalesforcePermissionSetLicenseAssignsConnection
-
- """Collection of Salesforce PermissionSetLicenseAssign"""
- permissionSetLicenseAssigns(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforcePermissionSetLicenseAssignConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforcePermissionSetLicenseAssignSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforcePermissionSetLicenseAssignSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """
- Number of PermissionSetLicenseAssigns to fetch. Defaults to 10. Maximum is 60.
- """
- first: Int
- ): SalesforcePermissionSetLicenseAssignsConnection
-
- """Collection of Salesforce PlatformCachePartition"""
- platformCachePartitions(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforcePlatformCachePartitionConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforcePlatformCachePartitionSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforcePlatformCachePartitionSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """
- Number of PlatformCachePartitions to fetch. Defaults to 10. Maximum is 60.
- """
- first: Int
- ): SalesforcePlatformCachePartitionsConnection
-
- """Collection of Salesforce PlatformCachePartitionType"""
- platformCachePartitionTypes(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforcePlatformCachePartitionTypeConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforcePlatformCachePartitionTypeSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforcePlatformCachePartitionTypeSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """
- Number of PlatformCachePartitionTypes to fetch. Defaults to 10. Maximum is 60.
- """
- first: Int
- ): SalesforcePlatformCachePartitionTypesConnection
-
- """Collection of Salesforce Pricebook2"""
- pricebook2s(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforcePricebook2ConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforcePricebook2SortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforcePricebook2SortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of Pricebook2s to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforcePricebook2sConnection
-
- """Collection of Salesforce Pricebook2History"""
- pricebook2Histories(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforcePricebook2HistoryConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforcePricebook2HistorySortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforcePricebook2HistorySortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of Pricebook2Histories to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforcePricebook2HistorysConnection
-
- """Collection of Salesforce PricebookEntry"""
- pricebookEntries(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforcePricebookEntryConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforcePricebookEntrySortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforcePricebookEntrySortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of PricebookEntries to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforcePricebookEntrysConnection
-
- """Collection of Salesforce ProcessDefinition"""
- processDefinitions(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceProcessDefinitionConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceProcessDefinitionSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceProcessDefinitionSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of ProcessDefinitions to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceProcessDefinitionsConnection
-
- """Collection of Salesforce ProcessInstance"""
- processInstances(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceProcessInstanceConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceProcessInstanceSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceProcessInstanceSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of ProcessInstances to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceProcessInstancesConnection
-
- """Collection of Salesforce ProcessInstanceNode"""
- processInstanceNodes(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceProcessInstanceNodeConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceProcessInstanceNodeSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceProcessInstanceNodeSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """
- Number of ProcessInstanceNodes to fetch. Defaults to 10. Maximum is 60.
- """
- first: Int
- ): SalesforceProcessInstanceNodesConnection
-
- """Collection of Salesforce ProcessInstanceStep"""
- processInstanceSteps(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceProcessInstanceStepConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceProcessInstanceStepSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceProcessInstanceStepSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """
- Number of ProcessInstanceSteps to fetch. Defaults to 10. Maximum is 60.
- """
- first: Int
- ): SalesforceProcessInstanceStepsConnection
-
- """Collection of Salesforce ProcessInstanceWorkitem"""
- processInstanceWorkitems(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceProcessInstanceWorkitemConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceProcessInstanceWorkitemSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceProcessInstanceWorkitemSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """
- Number of ProcessInstanceWorkitems to fetch. Defaults to 10. Maximum is 60.
- """
- first: Int
- ): SalesforceProcessInstanceWorkitemsConnection
-
- """Collection of Salesforce Product2"""
- product2s(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceProduct2ConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceProduct2SortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceProduct2SortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of Product2s to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceProduct2sConnection
-
- """Collection of Salesforce Product2Feed"""
- product2Feeds(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceProduct2FeedConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceProduct2FeedSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceProduct2FeedSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of Product2Feeds to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceProduct2FeedsConnection
-
- """Collection of Salesforce Product2History"""
- product2Histories(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceProduct2HistoryConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceProduct2HistorySortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceProduct2HistorySortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of Product2Histories to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceProduct2HistorysConnection
-
- """Collection of Salesforce Profile"""
- profiles(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceProfileConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceProfileSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceProfileSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of Profiles to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceProfilesConnection
-
- """Collection of Salesforce PushTopic"""
- pushTopics(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforcePushTopicConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforcePushTopicSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforcePushTopicSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of PushTopics to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforcePushTopicsConnection
-
- """Collection of Salesforce QueueSobject"""
- queueSobjects(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceQueueSobjectConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceQueueSobjectSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceQueueSobjectSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of QueueSobjects to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceQueueSobjectsConnection
-
- """Collection of Salesforce QuickText"""
- quickTexts(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceQuickTextConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceQuickTextSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceQuickTextSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of QuickTexts to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceQuickTextsConnection
-
- """Collection of Salesforce QuickTextHistory"""
- quickTextHistories(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceQuickTextHistoryConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceQuickTextHistorySortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceQuickTextHistorySortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of QuickTextHistories to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceQuickTextHistorysConnection
-
- """Collection of Salesforce QuickTextShare"""
- quickTextShares(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceQuickTextShareConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceQuickTextShareSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceQuickTextShareSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of QuickTextShares to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceQuickTextSharesConnection
-
- """Collection of Salesforce RecordType"""
- recordTypes(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceRecordTypeConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceRecordTypeSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceRecordTypeSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of RecordTypes to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceRecordTypesConnection
-
- """Collection of Salesforce Report"""
- reports(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceReportConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceReportSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceReportSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of Reports to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceReportsConnection
-
- """Collection of Salesforce ReportFeed"""
- reportFeeds(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceReportFeedConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceReportFeedSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceReportFeedSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of ReportFeeds to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceReportFeedsConnection
-
- """Collection of Salesforce SamlSsoConfig"""
- samlSsoConfigs(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceSamlSsoConfigConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceSamlSsoConfigSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceSamlSsoConfigSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of SamlSsoConfigs to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceSamlSsoConfigsConnection
-
- """Collection of Salesforce Scontrol"""
- scontrols(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceScontrolConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceScontrolSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceScontrolSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of Scontrols to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceScontrolsConnection
-
- """Collection of Salesforce SearchActivity"""
- searchActivities(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceSearchActivityConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceSearchActivitySortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceSearchActivitySortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of SearchActivities to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceSearchActivitysConnection
-
- """Collection of Salesforce SearchPromotionRule"""
- searchPromotionRules(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceSearchPromotionRuleConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceSearchPromotionRuleSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceSearchPromotionRuleSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """
- Number of SearchPromotionRules to fetch. Defaults to 10. Maximum is 60.
- """
- first: Int
- ): SalesforceSearchPromotionRulesConnection
-
- """Collection of Salesforce SecureAgent"""
- secureAgents(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceSecureAgentConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceSecureAgentSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceSecureAgentSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of SecureAgents to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceSecureAgentsConnection
-
- """Collection of Salesforce SecureAgentPlugin"""
- secureAgentPlugins(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceSecureAgentPluginConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceSecureAgentPluginSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceSecureAgentPluginSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of SecureAgentPlugins to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceSecureAgentPluginsConnection
-
- """Collection of Salesforce SecureAgentPluginProperty"""
- secureAgentPluginProperties(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceSecureAgentPluginPropertyConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceSecureAgentPluginPropertySortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceSecureAgentPluginPropertySortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """
- Number of SecureAgentPluginProperties to fetch. Defaults to 10. Maximum is 60.
- """
- first: Int
- ): SalesforceSecureAgentPluginPropertysConnection
-
- """Collection of Salesforce SecureAgentsCluster"""
- secureAgentsClusters(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceSecureAgentsClusterConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceSecureAgentsClusterSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceSecureAgentsClusterSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """
- Number of SecureAgentsClusters to fetch. Defaults to 10. Maximum is 60.
- """
- first: Int
- ): SalesforceSecureAgentsClustersConnection
-
- """Collection of Salesforce SecurityCustomBaseline"""
- securityCustomBaselines(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceSecurityCustomBaselineConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceSecurityCustomBaselineSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceSecurityCustomBaselineSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """
- Number of SecurityCustomBaselines to fetch. Defaults to 10. Maximum is 60.
- """
- first: Int
- ): SalesforceSecurityCustomBaselinesConnection
-
- """Collection of Salesforce SessionPermSetActivation"""
- sessionPermSetActivations(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceSessionPermSetActivationConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceSessionPermSetActivationSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceSessionPermSetActivationSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """
- Number of SessionPermSetActivations to fetch. Defaults to 10. Maximum is 60.
- """
- first: Int
- ): SalesforceSessionPermSetActivationsConnection
-
- """Collection of Salesforce SetupAuditTrail"""
- setupAuditTrails(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceSetupAuditTrailConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceSetupAuditTrailSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceSetupAuditTrailSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of SetupAuditTrails to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceSetupAuditTrailsConnection
-
- """Collection of Salesforce Site"""
- userSites(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceSiteConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceSiteSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceSiteSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of Sites to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceSitesConnection
-
- """Collection of Salesforce Site"""
- sites(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceSiteConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceSiteSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceSiteSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of Sites to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceSitesConnection
-
- """Collection of Salesforce SiteFeed"""
- siteFeeds(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceSiteFeedConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceSiteFeedSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceSiteFeedSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of SiteFeeds to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceSiteFeedsConnection
-
- """Collection of Salesforce SiteHistory"""
- siteHistories(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceSiteHistoryConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceSiteHistorySortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceSiteHistorySortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of SiteHistories to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceSiteHistorysConnection
-
- """Collection of Salesforce Solution"""
- solutions(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceSolutionConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceSolutionSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceSolutionSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of Solutions to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceSolutionsConnection
-
- """Collection of Salesforce SolutionFeed"""
- solutionFeeds(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceSolutionFeedConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceSolutionFeedSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceSolutionFeedSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of SolutionFeeds to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceSolutionFeedsConnection
-
- """Collection of Salesforce SolutionHistory"""
- solutionHistories(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceSolutionHistoryConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceSolutionHistorySortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceSolutionHistorySortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of SolutionHistories to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceSolutionHistorysConnection
-
- """Collection of Salesforce SolutionStatus"""
- solutionStatuses(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceSolutionStatusConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceSolutionStatusSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceSolutionStatusSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of SolutionStatuses to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceSolutionStatussConnection
-
- """Collection of Salesforce Stamp"""
- stamps(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceStampConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceStampSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceStampSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of Stamps to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceStampsConnection
-
- """Collection of Salesforce StampAssignment"""
- stampAssignments(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceStampAssignmentConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceStampAssignmentSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceStampAssignmentSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of StampAssignments to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceStampAssignmentsConnection
-
- """Collection of Salesforce StaticResource"""
- staticResources(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceStaticResourceConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceStaticResourceSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceStaticResourceSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of StaticResources to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceStaticResourcesConnection
-
- """Collection of Salesforce StreamingChannel"""
- streamingChannels(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceStreamingChannelConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceStreamingChannelSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceStreamingChannelSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of StreamingChannels to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceStreamingChannelsConnection
-
- """Collection of Salesforce StreamingChannelShare"""
- streamingChannelShares(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceStreamingChannelShareConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceStreamingChannelShareSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceStreamingChannelShareSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """
- Number of StreamingChannelShares to fetch. Defaults to 10. Maximum is 60.
- """
- first: Int
- ): SalesforceStreamingChannelSharesConnection
-
- """Collection of Salesforce Task"""
- tasks(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceTaskConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceTaskSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceTaskSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of Tasks to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceTasksConnection
-
- """Collection of Salesforce TaskFeed"""
- taskFeeds(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceTaskFeedConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceTaskFeedSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceTaskFeedSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of TaskFeeds to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceTaskFeedsConnection
-
- """Collection of Salesforce TaskPriority"""
- taskPriorities(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceTaskPriorityConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceTaskPrioritySortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceTaskPrioritySortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of TaskPriorities to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceTaskPrioritysConnection
-
- """Collection of Salesforce TaskStatus"""
- taskStatuses(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceTaskStatusConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceTaskStatusSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceTaskStatusSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of TaskStatuses to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceTaskStatussConnection
-
- """Collection of Salesforce TenantUsageEntitlement"""
- tenantUsageEntitlements(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceTenantUsageEntitlementConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceTenantUsageEntitlementSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceTenantUsageEntitlementSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """
- Number of TenantUsageEntitlements to fetch. Defaults to 10. Maximum is 60.
- """
- first: Int
- ): SalesforceTenantUsageEntitlementsConnection
-
- """Collection of Salesforce TestSuiteMembership"""
- testSuiteMemberships(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceTestSuiteMembershipConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceTestSuiteMembershipSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceTestSuiteMembershipSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """
- Number of TestSuiteMemberships to fetch. Defaults to 10. Maximum is 60.
- """
- first: Int
- ): SalesforceTestSuiteMembershipsConnection
-
- """Collection of Salesforce TodayGoal"""
- todayGoals(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceTodayGoalConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceTodayGoalSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceTodayGoalSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of TodayGoals to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceTodayGoalsConnection
-
- """Collection of Salesforce TodayGoalShare"""
- todayGoalShares(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceTodayGoalShareConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceTodayGoalShareSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceTodayGoalShareSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of TodayGoalShares to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceTodayGoalSharesConnection
-
- """Collection of Salesforce Topic"""
- topics(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceTopicConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceTopicSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceTopicSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of Topics to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceTopicsConnection
-
- """Collection of Salesforce TopicAssignment"""
- topicAssignments(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceTopicAssignmentConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceTopicAssignmentSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceTopicAssignmentSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of TopicAssignments to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceTopicAssignmentsConnection
-
- """Collection of Salesforce TopicFeed"""
- topicFeeds(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceTopicFeedConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceTopicFeedSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceTopicFeedSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of TopicFeeds to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceTopicFeedsConnection
-
- """Collection of Salesforce TopicUserEvent"""
- topicUserEvents(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceTopicUserEventConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceTopicUserEventSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceTopicUserEventSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of TopicUserEvents to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceTopicUserEventsConnection
-
- """Collection of Salesforce TransactionSecurityPolicy"""
- transactionSecurityPolicies(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceTransactionSecurityPolicyConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceTransactionSecurityPolicySortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceTransactionSecurityPolicySortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """
- Number of TransactionSecurityPolicies to fetch. Defaults to 10. Maximum is 60.
- """
- first: Int
- ): SalesforceTransactionSecurityPolicysConnection
-
- """Collection of Salesforce UndecidedEventRelation"""
- undecidedEventRelations(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceUndecidedEventRelationConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceUndecidedEventRelationSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceUndecidedEventRelationSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """
- Number of UndecidedEventRelations to fetch. Defaults to 10. Maximum is 60.
- """
- first: Int
- ): SalesforceUndecidedEventRelationsConnection
-
- """Collection of Salesforce User"""
- users(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceUserConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceUserSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceUserSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of Users to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceUsersConnection
-
- """Collection of Salesforce User"""
- delegatedUsers(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceUserConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceUserSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceUserSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of Users to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceUsersConnection
-
- """Collection of Salesforce User"""
- managedUsers(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceUserConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceUserSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceUserSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of Users to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceUsersConnection
-
- """Collection of Salesforce UserAppInfo"""
- userAppInfos(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceUserAppInfoConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceUserAppInfoSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceUserAppInfoSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of UserAppInfos to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceUserAppInfosConnection
-
- """Collection of Salesforce UserAppMenuCustomization"""
- userAppMenuCustomizations(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceUserAppMenuCustomizationConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceUserAppMenuCustomizationSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceUserAppMenuCustomizationSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """
- Number of UserAppMenuCustomizations to fetch. Defaults to 10. Maximum is 60.
- """
- first: Int
- ): SalesforceUserAppMenuCustomizationsConnection
-
- """Collection of Salesforce UserAppMenuCustomizationShare"""
- userAppMenuCustomizationShares(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceUserAppMenuCustomizationShareConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceUserAppMenuCustomizationShareSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceUserAppMenuCustomizationShareSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """
- Number of UserAppMenuCustomizationShares to fetch. Defaults to 10. Maximum is 60.
- """
- first: Int
- ): SalesforceUserAppMenuCustomizationSharesConnection
-
- """Collection of Salesforce UserFeed"""
- userFeeds(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceUserFeedConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceUserFeedSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceUserFeedSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of UserFeeds to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceUserFeedsConnection
-
- """Collection of Salesforce UserFeed"""
- feeds(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceUserFeedConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceUserFeedSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceUserFeedSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of UserFeeds to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceUserFeedsConnection
-
- """Collection of Salesforce UserListView"""
- userListViews(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceUserListViewConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceUserListViewSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceUserListViewSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of UserListViews to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceUserListViewsConnection
-
- """Collection of Salesforce UserListViewCriterion"""
- userListViewCriterions(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceUserListViewCriterionConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceUserListViewCriterionSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceUserListViewCriterionSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """
- Number of UserListViewCriterions to fetch. Defaults to 10. Maximum is 60.
- """
- first: Int
- ): SalesforceUserListViewCriterionsConnection
-
- """Collection of Salesforce UserLogin"""
- userLogins(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceUserLoginConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceUserLoginSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceUserLoginSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of UserLogins to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceUserLoginsConnection
-
- """Collection of Salesforce UserPackageLicense"""
- userPackageLicenses(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceUserPackageLicenseConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceUserPackageLicenseSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceUserPackageLicenseSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of UserPackageLicenses to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceUserPackageLicensesConnection
-
- """Collection of Salesforce UserPreference"""
- userPreferences(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceUserPreferenceConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceUserPreferenceSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceUserPreferenceSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of UserPreferences to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceUserPreferencesConnection
-
- """Collection of Salesforce UserProvAccount"""
- userProvAccounts(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceUserProvAccountConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceUserProvAccountSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceUserProvAccountSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of UserProvAccounts to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceUserProvAccountsConnection
-
- """Collection of Salesforce UserProvAccountStaging"""
- userProvAccountStagings(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceUserProvAccountStagingConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceUserProvAccountStagingSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceUserProvAccountStagingSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """
- Number of UserProvAccountStagings to fetch. Defaults to 10. Maximum is 60.
- """
- first: Int
- ): SalesforceUserProvAccountStagingsConnection
-
- """Collection of Salesforce UserProvMockTarget"""
- userProvMockTargets(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceUserProvMockTargetConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceUserProvMockTargetSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceUserProvMockTargetSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of UserProvMockTargets to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceUserProvMockTargetsConnection
-
- """Collection of Salesforce UserProvisioningConfig"""
- userProvisioningConfigs(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceUserProvisioningConfigConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceUserProvisioningConfigSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceUserProvisioningConfigSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """
- Number of UserProvisioningConfigs to fetch. Defaults to 10. Maximum is 60.
- """
- first: Int
- ): SalesforceUserProvisioningConfigsConnection
-
- """Collection of Salesforce UserProvisioningLog"""
- userProvisioningLogs(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceUserProvisioningLogConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceUserProvisioningLogSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceUserProvisioningLogSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """
- Number of UserProvisioningLogs to fetch. Defaults to 10. Maximum is 60.
- """
- first: Int
- ): SalesforceUserProvisioningLogsConnection
-
- """Collection of Salesforce UserProvisioningRequest"""
- userProvisioningRequests(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceUserProvisioningRequestConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceUserProvisioningRequestSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceUserProvisioningRequestSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """
- Number of UserProvisioningRequests to fetch. Defaults to 10. Maximum is 60.
- """
- first: Int
- ): SalesforceUserProvisioningRequestsConnection
-
- """Collection of Salesforce UserProvisioningRequestShare"""
- userProvisioningRequestShares(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceUserProvisioningRequestShareConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceUserProvisioningRequestShareSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceUserProvisioningRequestShareSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """
- Number of UserProvisioningRequestShares to fetch. Defaults to 10. Maximum is 60.
- """
- first: Int
- ): SalesforceUserProvisioningRequestSharesConnection
-
- """Collection of Salesforce UserRole"""
- userRoles(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceUserRoleConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceUserRoleSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceUserRoleSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of UserRoles to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceUserRolesConnection
-
- """Collection of Salesforce UserShare"""
- userShares(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceUserShareConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceUserShareSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceUserShareSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of UserShares to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceUserSharesConnection
-
- """Collection of Salesforce UserShare"""
- shares(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceUserShareConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceUserShareSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceUserShareSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of UserShares to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceUserSharesConnection
-
- """Collection of Salesforce VerificationHistory"""
- verificationHistories(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceVerificationHistoryConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceVerificationHistorySortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceVerificationHistorySortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """
- Number of VerificationHistories to fetch. Defaults to 10. Maximum is 60.
- """
- first: Int
- ): SalesforceVerificationHistorysConnection
-
- """Collection of Salesforce Vote"""
- votes(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceVoteConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceVoteSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceVoteSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of Votes to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceVotesConnection
-
- """Collection of Salesforce WaveCompatibilityCheckItem"""
- waveCompatibilityCheckItems(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceWaveCompatibilityCheckItemConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceWaveCompatibilityCheckItemSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceWaveCompatibilityCheckItemSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """
- Number of WaveCompatibilityCheckItems to fetch. Defaults to 10. Maximum is 60.
- """
- first: Int
- ): SalesforceWaveCompatibilityCheckItemsConnection
-
- """Collection of Salesforce WebLink"""
- webLinks(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceWebLinkConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceWebLinkSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceWebLinkSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of WebLinks to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceWebLinksConnection
- customFields(
- """
- List of custom fields to return. By default, returns all custom fields.
- """
- fields: [String!]
- ): JSON!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-"""Address for a salesforce object"""
-type SalesforceAddress {
- """
- Accuracy level of the geocode for the address. For example, this field is known as MailingGeocodeAccuracy on Contact.
- """
- accuracy: String
-
- """
- The city detail for the address. For example, this field is known as MailingCity on Contact.
- """
- city: String
-
- """
- The country detail for the address. For example, this field is known as MailingCountry on Contact.
- """
- country: String
-
- """
- The ISO country code for the address. For example, this field is known as MailingCountryCode on Contact. CountryCode is always available on compound address fields, whether or not state and country picklists are enabled in your organization.
- """
- countryCode: String
-
- """
- Used with Longitude to specify the precise geolocation of the address. For example, this field is known as MailingLatitude on Contact.
- """
- latitude: Float
-
- """
- Used with Latitude to specify the precise geolocation of the address. For example, this field is known as MailingLongitude on Contact.
- """
- longitude: Float
-
- """
- The postal code for the address. For example, this field is known as MailingPostalCode on Contact.
- """
- postalCode: String
-
- """
- The state detail for the address. For example, this field is known as MailingState on Contact.
- """
- state: String
-
- """
- The ISO state code for the address. For example, this field is known as MailingStateCode on Contact. StateCode is always available on compound address fields, whether or not state and country picklists are enabled in your organization.
- """
- stateCode: String
-
- """
- The street detail for the address. For example, this field is known as MailingStreet on Contact.
- """
- street: String
-}
-
-"""Contact"""
-type SalesforceContact implements OneGraphNode {
- """Linked Stripe customer"""
- stripeCustomer: StripeCustomer
-
- """Linked Intercom user"""
- intercomUser: IntercomUser
-
- """Linked Zendesk user"""
- zendeskUser: ZendeskUser
-
- """Contact ID"""
- id: String!
-
- """Deleted"""
- isDeleted: Boolean!
-
- """Master Record ID"""
- masterRecordId: String
-
- """Master Record ID"""
- masterRecord: SalesforceContact
-
- """Account ID"""
- accountId: String
-
- """Account ID"""
- account: SalesforceAccount
-
- """Last Name"""
- lastName: String!
-
- """First Name"""
- firstName: String
-
- """Salutation"""
- salutation: String
-
- """Full Name"""
- name: String!
-
- """Other Street"""
- otherStreet: String
-
- """Other City"""
- otherCity: String
-
- """Other State/Province"""
- otherState: String
-
- """Other Zip/Postal Code"""
- otherPostalCode: String
-
- """Other Country"""
- otherCountry: String
-
- """Other Latitude"""
- otherLatitude: Float
-
- """Other Longitude"""
- otherLongitude: Float
-
- """Other Geocode Accuracy"""
- otherGeocodeAccuracy: String
-
- """Other Address"""
- otherAddress: SalesforceAddress
-
- """Mailing Street"""
- mailingStreet: String
-
- """Mailing City"""
- mailingCity: String
-
- """Mailing State/Province"""
- mailingState: String
-
- """Mailing Zip/Postal Code"""
- mailingPostalCode: String
-
- """Mailing Country"""
- mailingCountry: String
-
- """Mailing Latitude"""
- mailingLatitude: Float
-
- """Mailing Longitude"""
- mailingLongitude: Float
-
- """Mailing Geocode Accuracy"""
- mailingGeocodeAccuracy: String
-
- """Mailing Address"""
- mailingAddress: SalesforceAddress
-
- """Business Phone"""
- phone: String
-
- """Business Fax"""
- fax: String
-
- """Mobile Phone"""
- mobilePhone: String
-
- """Home Phone"""
- homePhone: String
-
- """Other Phone"""
- otherPhone: String
-
- """Asst. Phone"""
- assistantPhone: String
-
- """Reports To ID"""
- reportsToId: String
-
- """Reports To ID"""
- reportsTo: SalesforceContact
-
- """Email"""
- email: String
-
- """Title"""
- title: String
-
- """Department"""
- department: String
-
- """Assistant's Name"""
- assistantName: String
-
- """Lead Source"""
- leadSource: String
-
- """Birthdate"""
- birthdate: String
-
- """Contact Description"""
- description: String
-
- """Owner ID"""
- ownerId: String!
-
- """Owner ID"""
- owner: SalesforceUser!
-
- """Created Date"""
- createdDate: String!
-
- """Created By ID"""
- createdById: String!
-
- """Created By ID"""
- createdBy: SalesforceUser!
-
- """Last Modified Date"""
- lastModifiedDate: String!
-
- """Last Modified By ID"""
- lastModifiedById: String!
-
- """Last Modified By ID"""
- lastModifiedBy: SalesforceUser!
-
- """System Modstamp"""
- systemModstamp: String!
-
- """Last Activity"""
- lastActivityDate: String
-
- """Last Stay-in-Touch Request Date"""
- lastCuRequestDate: String
-
- """Last Stay-in-Touch Save Date"""
- lastCuUpdateDate: String
-
- """Last Viewed Date"""
- lastViewedDate: String
-
- """Last Referenced Date"""
- lastReferencedDate: String
-
- """Email Bounced Reason"""
- emailBouncedReason: String
-
- """Email Bounced Date"""
- emailBouncedDate: String
-
- """Is Email Bounced"""
- isEmailBounced: Boolean!
-
- """Photo URL"""
- photoUrl: String
-
- """Data.com Key"""
- jigsaw: String
-
- """Jigsaw Contact ID"""
- jigsawContactId: String
-
- """Clean Status"""
- cleanStatus: String
-
- """Collection of Salesforce AcceptedEventRelation"""
- acceptedEventRelations(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceAcceptedEventRelationConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceAcceptedEventRelationSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceAcceptedEventRelationSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """
- Number of AcceptedEventRelations to fetch. Defaults to 10. Maximum is 60.
- """
- first: Int
- ): SalesforceAcceptedEventRelationsConnection
-
- """Collection of Salesforce AccountContactRole"""
- accountContactRoles(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceAccountContactRoleConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceAccountContactRoleSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceAccountContactRoleSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of AccountContactRoles to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceAccountContactRolesConnection
-
- """Collection of Salesforce Asset"""
- assets(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceAssetConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceAssetSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceAssetSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of Assets to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceAssetsConnection
-
- """Collection of Salesforce Attachment"""
- attachments(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceAttachmentConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceAttachmentSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceAttachmentSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of Attachments to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceAttachmentsConnection
-
- """Collection of Salesforce CampaignMember"""
- campaignMembers(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceCampaignMemberConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceCampaignMemberSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceCampaignMemberSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of CampaignMembers to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceCampaignMembersConnection
-
- """Collection of Salesforce Case"""
- cases(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceCaseConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceCaseSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceCaseSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of Cases to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceCasesConnection
-
- """Collection of Salesforce CaseContactRole"""
- caseContactRoles(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceCaseContactRoleConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceCaseContactRoleSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceCaseContactRoleSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of CaseContactRoles to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceCaseContactRolesConnection
-
- """Collection of Salesforce CaseTeamMember"""
- caseTeamMembers(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceCaseTeamMemberConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceCaseTeamMemberSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceCaseTeamMemberSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of CaseTeamMembers to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceCaseTeamMembersConnection
-
- """Collection of Salesforce CaseTeamTemplateMember"""
- caseTeamTemplateMembers(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceCaseTeamTemplateMemberConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceCaseTeamTemplateMemberSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceCaseTeamTemplateMemberSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """
- Number of CaseTeamTemplateMembers to fetch. Defaults to 10. Maximum is 60.
- """
- first: Int
- ): SalesforceCaseTeamTemplateMembersConnection
-
- """Collection of Salesforce CollaborationGroupRecord"""
- recordAssociatedGroups(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceCollaborationGroupRecordConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceCollaborationGroupRecordSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceCollaborationGroupRecordSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """
- Number of CollaborationGroupRecords to fetch. Defaults to 10. Maximum is 60.
- """
- first: Int
- ): SalesforceCollaborationGroupRecordsConnection
-
- """Collection of Salesforce Contact"""
- contacts(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceContactConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceContactSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceContactSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of Contacts to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceContactsConnection
-
- """Collection of Salesforce ContactCleanInfo"""
- contactCleanInfos(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceContactCleanInfoConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceContactCleanInfoSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceContactCleanInfoSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of ContactCleanInfos to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceContactCleanInfosConnection
-
- """Collection of Salesforce ContactFeed"""
- feeds(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceContactFeedConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceContactFeedSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceContactFeedSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of ContactFeeds to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceContactFeedsConnection
-
- """Collection of Salesforce ContactHistory"""
- histories(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceContactHistoryConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceContactHistorySortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceContactHistorySortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of ContactHistories to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceContactHistorysConnection
-
- """Collection of Salesforce ContactShare"""
- shares(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceContactShareConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceContactShareSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceContactShareSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of ContactShares to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceContactSharesConnection
-
- """Collection of Salesforce ContentDistribution"""
- contentDistributions(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceContentDistributionConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceContentDistributionSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceContentDistributionSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """
- Number of ContentDistributions to fetch. Defaults to 10. Maximum is 60.
- """
- first: Int
- ): SalesforceContentDistributionsConnection
-
- """Collection of Salesforce ContentDocumentLink"""
- contentDocumentLinks(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceContentDocumentLinkConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceContentDocumentLinkSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceContentDocumentLinkSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """
- Number of ContentDocumentLinks to fetch. Defaults to 10. Maximum is 60.
- """
- first: Int
- ): SalesforceContentDocumentLinksConnection
-
- """Collection of Salesforce ContentVersion"""
- contentVersions(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceContentVersionConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceContentVersionSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceContentVersionSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of ContentVersions to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceContentVersionsConnection
-
- """Collection of Salesforce Contract"""
- contractsSigned(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceContractConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceContractSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceContractSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of Contracts to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceContractsConnection
-
- """Collection of Salesforce ContractContactRole"""
- contractContactRoles(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceContractContactRoleConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceContractContactRoleSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceContractContactRoleSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """
- Number of ContractContactRoles to fetch. Defaults to 10. Maximum is 60.
- """
- first: Int
- ): SalesforceContractContactRolesConnection
-
- """Collection of Salesforce DeclinedEventRelation"""
- declinedEventRelations(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceDeclinedEventRelationConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceDeclinedEventRelationSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceDeclinedEventRelationSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """
- Number of DeclinedEventRelations to fetch. Defaults to 10. Maximum is 60.
- """
- first: Int
- ): SalesforceDeclinedEventRelationsConnection
-
- """Collection of Salesforce DuplicateRecordItem"""
- duplicateRecordItems(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceDuplicateRecordItemConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceDuplicateRecordItemSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceDuplicateRecordItemSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """
- Number of DuplicateRecordItems to fetch. Defaults to 10. Maximum is 60.
- """
- first: Int
- ): SalesforceDuplicateRecordItemsConnection
-
- """Collection of Salesforce EmailMessageRelation"""
- emailMessageRelations(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceEmailMessageRelationConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceEmailMessageRelationSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceEmailMessageRelationSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """
- Number of EmailMessageRelations to fetch. Defaults to 10. Maximum is 60.
- """
- first: Int
- ): SalesforceEmailMessageRelationsConnection
-
- """Collection of Salesforce EntitySubscription"""
- feedSubscriptionsForEntity(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceEntitySubscriptionConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceEntitySubscriptionSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceEntitySubscriptionSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of EntitySubscriptions to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceEntitySubscriptionsConnection
-
- """Collection of Salesforce Event"""
- events(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceEventConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceEventSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceEventSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of Events to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceEventsConnection
-
- """Collection of Salesforce EventRelation"""
- eventRelations(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceEventRelationConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceEventRelationSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceEventRelationSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of EventRelations to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceEventRelationsConnection
-
- """Collection of Salesforce FeedComment"""
- feedComments(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceFeedCommentConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceFeedCommentSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceFeedCommentSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of FeedComments to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceFeedCommentsConnection
-
- """Collection of Salesforce FeedItem"""
- feedItems(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceFeedItemConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceFeedItemSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceFeedItemSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of FeedItems to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceFeedItemsConnection
-
- """Collection of Salesforce FlowRecordRelation"""
- flowRecordRelations(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceFlowRecordRelationConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceFlowRecordRelationSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceFlowRecordRelationsConnection
-
- """Collection of Salesforce Lead"""
- leads(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceLeadConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceLeadSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceLeadSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of Leads to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceLeadsConnection
-
- """Collection of Salesforce Note"""
- notes(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceNoteConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceNoteSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceNoteSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of Notes to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceNotesConnection
-
- """Collection of Salesforce OpportunityContactRole"""
- opportunityContactRoles(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceOpportunityContactRoleConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceOpportunityContactRoleSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceOpportunityContactRoleSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """
- Number of OpportunityContactRoles to fetch. Defaults to 10. Maximum is 60.
- """
- first: Int
- ): SalesforceOpportunityContactRolesConnection
-
- """Collection of Salesforce Order"""
- orders(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceOrderConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceOrderSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceOrderSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of Orders to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceOrdersConnection
-
- """Collection of Salesforce ProcessInstance"""
- processInstances(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceProcessInstanceConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceProcessInstanceSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceProcessInstanceSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of ProcessInstances to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceProcessInstancesConnection
-
- """Collection of Salesforce Task"""
- tasks(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceTaskConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceTaskSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceTaskSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of Tasks to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceTasksConnection
-
- """Collection of Salesforce TopicAssignment"""
- topicAssignments(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceTopicAssignmentConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceTopicAssignmentSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceTopicAssignmentSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of TopicAssignments to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceTopicAssignmentsConnection
-
- """Collection of Salesforce UndecidedEventRelation"""
- undecidedEventRelations(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceUndecidedEventRelationConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceUndecidedEventRelationSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceUndecidedEventRelationSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """
- Number of UndecidedEventRelations to fetch. Defaults to 10. Maximum is 60.
- """
- first: Int
- ): SalesforceUndecidedEventRelationsConnection
-
- """Collection of Salesforce User"""
- users(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceUserConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceUserSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceUserSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of Users to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceUsersConnection
- customFields(
- """
- List of custom fields to return. By default, returns all custom fields.
- """
- fields: [String!]
- ): JSON!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-type ZendeskUser {
- """Linked Stripe customer"""
- stripeCustomer: StripeCustomer
-
- """Linked Salesforce Lead"""
- salesforceLead: SalesforceLead
-
- """Linked Salesforce Contact"""
- salesforceContact: SalesforceContact
-
- """Linked Salesforce Account"""
- salesforceAccount: SalesforceAccount
-
- """Linked Intercom user"""
- intercomUser: IntercomUser
-
- """"""
- id: String
-
- """"""
- email: String
-
- """"""
- name: String!
-
- """"""
- createdAt: String
-
- """"""
- locale: String
-
- """"""
- localeId: Int
-
- """"""
- organizationId: Int
-
- """"""
- phone: String
-
- """"""
- sharedPhoneNumber: Boolean
-
- """"""
- role: String
-
- """"""
- timeZone: String
-
- """"""
- updatedAt: String
-
- """"""
- url: String
-
- """"""
- verified: Boolean
- requestedTickets(sortOrder: ZendeskSearchSortOrder, sortBy: ZendeskTicketsSortBy, last: Int, first: Int, before: String, after: String): ZendeskTicketsConnection
- ccdTickets(sortOrder: ZendeskSearchSortOrder, sortBy: ZendeskTicketsSortBy, last: Int, first: Int, before: String, after: String): ZendeskTicketsConnection
- assignedTickets(sortOrder: ZendeskSearchSortOrder, sortBy: ZendeskTicketsSortBy, last: Int, first: Int, before: String, after: String): ZendeskTicketsConnection
-}
-
-"""Lead"""
-type SalesforceLead implements OneGraphNode {
- """Linked Stripe customer"""
- stripeCustomer: StripeCustomer
-
- """Linked Intercom user"""
- intercomUser: IntercomUser
-
- """Linked Zendesk user"""
- zendeskUser: ZendeskUser
-
- """Lead ID"""
- id: String!
-
- """Deleted"""
- isDeleted: Boolean!
-
- """Master Record ID"""
- masterRecordId: String
-
- """Master Record ID"""
- masterRecord: SalesforceLead
-
- """Last Name"""
- lastName: String!
-
- """First Name"""
- firstName: String
-
- """Salutation"""
- salutation: String
-
- """Full Name"""
- name: String!
-
- """Title"""
- title: String
-
- """Company"""
- company: String!
-
- """Street"""
- street: String
-
- """City"""
- city: String
-
- """State/Province"""
- state: String
-
- """Zip/Postal Code"""
- postalCode: String
-
- """Country"""
- country: String
-
- """Latitude"""
- latitude: Float
-
- """Longitude"""
- longitude: Float
-
- """Geocode Accuracy"""
- geocodeAccuracy: String
-
- """Address"""
- address: SalesforceAddress
-
- """Phone"""
- phone: String
-
- """Mobile Phone"""
- mobilePhone: String
-
- """Fax"""
- fax: String
-
- """Email"""
- email: String
-
- """Website"""
- website: String
-
- """Photo URL"""
- photoUrl: String
-
- """Description"""
- description: String
-
- """Lead Source"""
- leadSource: String
-
- """Status"""
- status: String!
-
- """Industry"""
- industry: String
-
- """Rating"""
- rating: String
-
- """Annual Revenue"""
- annualRevenue: Float
-
- """Employees"""
- numberOfEmployees: Int
-
- """Owner ID"""
- ownerId: String!
-
- """Owner ID"""
- owner: SalesforceLeadOwnerUnion!
-
- """Converted"""
- isConverted: Boolean!
-
- """Converted Date"""
- convertedDate: String
-
- """Converted Account ID"""
- convertedAccountId: String
-
- """Converted Account ID"""
- convertedAccount: SalesforceAccount
-
- """Converted Contact ID"""
- convertedContactId: String
-
- """Converted Contact ID"""
- convertedContact: SalesforceContact
-
- """Converted Opportunity ID"""
- convertedOpportunityId: String
-
- """Converted Opportunity ID"""
- convertedOpportunity: SalesforceOpportunity
-
- """Unread By Owner"""
- isUnreadByOwner: Boolean!
-
- """Created Date"""
- createdDate: String!
-
- """Created By ID"""
- createdById: String!
-
- """Created By ID"""
- createdBy: SalesforceUser!
-
- """Last Modified Date"""
- lastModifiedDate: String!
-
- """Last Modified By ID"""
- lastModifiedById: String!
-
- """Last Modified By ID"""
- lastModifiedBy: SalesforceUser!
-
- """System Modstamp"""
- systemModstamp: String!
-
- """Last Activity"""
- lastActivityDate: String
-
- """Last Viewed Date"""
- lastViewedDate: String
-
- """Last Referenced Date"""
- lastReferencedDate: String
-
- """Data.com Key"""
- jigsaw: String
-
- """Jigsaw Contact ID"""
- jigsawContactId: String
-
- """Clean Status"""
- cleanStatus: String
-
- """Company D-U-N-S Number"""
- companyDunsNumber: String
-
- """D&B Company ID"""
- dandbCompanyId: String
-
- """D&B Company ID"""
- dandbCompany: SalesforceDandBCompany
-
- """Email Bounced Reason"""
- emailBouncedReason: String
-
- """Email Bounced Date"""
- emailBouncedDate: String
-
- """Collection of Salesforce AcceptedEventRelation"""
- acceptedEventRelations(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceAcceptedEventRelationConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceAcceptedEventRelationSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceAcceptedEventRelationSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """
- Number of AcceptedEventRelations to fetch. Defaults to 10. Maximum is 60.
- """
- first: Int
- ): SalesforceAcceptedEventRelationsConnection
-
- """Collection of Salesforce Attachment"""
- attachments(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceAttachmentConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceAttachmentSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceAttachmentSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of Attachments to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceAttachmentsConnection
-
- """Collection of Salesforce CampaignMember"""
- campaignMembers(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceCampaignMemberConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceCampaignMemberSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceCampaignMemberSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of CampaignMembers to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceCampaignMembersConnection
-
- """Collection of Salesforce CollaborationGroupRecord"""
- recordAssociatedGroups(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceCollaborationGroupRecordConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceCollaborationGroupRecordSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceCollaborationGroupRecordSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """
- Number of CollaborationGroupRecords to fetch. Defaults to 10. Maximum is 60.
- """
- first: Int
- ): SalesforceCollaborationGroupRecordsConnection
-
- """Collection of Salesforce ContentDistribution"""
- contentDistributions(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceContentDistributionConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceContentDistributionSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceContentDistributionSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """
- Number of ContentDistributions to fetch. Defaults to 10. Maximum is 60.
- """
- first: Int
- ): SalesforceContentDistributionsConnection
-
- """Collection of Salesforce ContentDocumentLink"""
- contentDocumentLinks(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceContentDocumentLinkConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceContentDocumentLinkSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceContentDocumentLinkSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """
- Number of ContentDocumentLinks to fetch. Defaults to 10. Maximum is 60.
- """
- first: Int
- ): SalesforceContentDocumentLinksConnection
-
- """Collection of Salesforce ContentVersion"""
- contentVersions(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceContentVersionConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceContentVersionSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceContentVersionSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of ContentVersions to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceContentVersionsConnection
-
- """Collection of Salesforce DeclinedEventRelation"""
- declinedEventRelations(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceDeclinedEventRelationConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceDeclinedEventRelationSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceDeclinedEventRelationSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """
- Number of DeclinedEventRelations to fetch. Defaults to 10. Maximum is 60.
- """
- first: Int
- ): SalesforceDeclinedEventRelationsConnection
-
- """Collection of Salesforce DuplicateRecordItem"""
- duplicateRecordItems(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceDuplicateRecordItemConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceDuplicateRecordItemSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceDuplicateRecordItemSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """
- Number of DuplicateRecordItems to fetch. Defaults to 10. Maximum is 60.
- """
- first: Int
- ): SalesforceDuplicateRecordItemsConnection
-
- """Collection of Salesforce EmailMessageRelation"""
- emailMessageRelations(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceEmailMessageRelationConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceEmailMessageRelationSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceEmailMessageRelationSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """
- Number of EmailMessageRelations to fetch. Defaults to 10. Maximum is 60.
- """
- first: Int
- ): SalesforceEmailMessageRelationsConnection
-
- """Collection of Salesforce EntitySubscription"""
- feedSubscriptionsForEntity(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceEntitySubscriptionConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceEntitySubscriptionSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceEntitySubscriptionSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of EntitySubscriptions to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceEntitySubscriptionsConnection
-
- """Collection of Salesforce Event"""
- events(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceEventConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceEventSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceEventSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of Events to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceEventsConnection
-
- """Collection of Salesforce EventRelation"""
- eventRelations(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceEventRelationConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceEventRelationSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceEventRelationSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of EventRelations to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceEventRelationsConnection
-
- """Collection of Salesforce FeedComment"""
- feedComments(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceFeedCommentConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceFeedCommentSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceFeedCommentSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of FeedComments to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceFeedCommentsConnection
-
- """Collection of Salesforce FeedItem"""
- feedItems(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceFeedItemConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceFeedItemSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceFeedItemSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of FeedItems to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceFeedItemsConnection
-
- """Collection of Salesforce FlowRecordRelation"""
- flowRecordRelations(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceFlowRecordRelationConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceFlowRecordRelationSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceFlowRecordRelationsConnection
-
- """Collection of Salesforce LeadCleanInfo"""
- leadCleanInfos(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceLeadCleanInfoConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceLeadCleanInfoSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceLeadCleanInfoSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of LeadCleanInfos to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceLeadCleanInfosConnection
-
- """Collection of Salesforce LeadFeed"""
- feeds(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceLeadFeedConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceLeadFeedSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceLeadFeedSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of LeadFeeds to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceLeadFeedsConnection
-
- """Collection of Salesforce LeadHistory"""
- histories(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceLeadHistoryConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceLeadHistorySortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceLeadHistorySortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of LeadHistories to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceLeadHistorysConnection
-
- """Collection of Salesforce LeadShare"""
- shares(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceLeadShareConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceLeadShareSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceLeadShareSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of LeadShares to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceLeadSharesConnection
-
- """Collection of Salesforce Note"""
- notes(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceNoteConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceNoteSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceNoteSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of Notes to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceNotesConnection
-
- """Collection of Salesforce ProcessInstance"""
- processInstances(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceProcessInstanceConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceProcessInstanceSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceProcessInstanceSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of ProcessInstances to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceProcessInstancesConnection
-
- """Collection of Salesforce Task"""
- tasks(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceTaskConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceTaskSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceTaskSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of Tasks to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceTasksConnection
-
- """Collection of Salesforce TopicAssignment"""
- topicAssignments(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceTopicAssignmentConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceTopicAssignmentSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceTopicAssignmentSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of TopicAssignments to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceTopicAssignmentsConnection
-
- """Collection of Salesforce UndecidedEventRelation"""
- undecidedEventRelations(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceUndecidedEventRelationConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceUndecidedEventRelationSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceUndecidedEventRelationSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """
- Number of UndecidedEventRelations to fetch. Defaults to 10. Maximum is 60.
- """
- first: Int
- ): SalesforceUndecidedEventRelationsConnection
- customFields(
- """
- List of custom fields to return. By default, returns all custom fields.
- """
- fields: [String!]
- ): JSON!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-"""Segment object"""
-type IntercomSegment {
- """value is segment'"""
- type: String
-
- """The id representing the segment"""
- id: String
-
- """The name of the segment"""
- name: String
-
- """The time the segment was created"""
- createdAt: Int
-
- """The time the segment was updated"""
- updatedAt: Int
-
- """Type of the record: user or lead."""
- personType: String
-
- """
- The number of items in the user segment. It's returned when include_count=true is included in the request.
- """
- count: Int
-}
-
-"""Social profile object"""
-type IntercomSocialProfile {
- """Value is 'social_profile'"""
- type: String
-
- """The name of the service (e.g., twitter, facebook)"""
- name: String
-
- """User name or handle on the service"""
- username: String
-
- """The user homepage on the service"""
- url: String
-
- """Optional. User ID on the service"""
- id: String
-}
-
-"""User-defined company plan"""
-type IntercomCompanyPlan {
- """Will always be of type 'plan'"""
- type: String
-
- """The plan ID"""
- id: String
-
- """
- The name of the plan, note that this is the only field that can be set via the API.
- """
- name: String
-}
-
-"""What field to sort the results by"""
-enum IntercomUsersSortByField {
- CREATED_AT
- UPDATED_AT
- LAST_REQUEST_AT
- SIGNED_UP_AT
-}
-
-"""Order that items should be sorted"""
-enum IntercomSortOrderBy {
- ASC
- DESC
-}
-
-""""""
-type PageInfo {
- """hasNextPage"""
- hasNextPage: Boolean!
-
- """hasPreviousPage"""
- hasPreviousPage: Boolean!
-
- """startCursor"""
- startCursor: String
-
- """endCursor"""
- endCursor: String
-}
-
-"""An edge in a connection."""
-type IntercomUserEdge {
- """The item at the end of the edge"""
- node: IntercomUser!
-
- """A cursor for use in pagination."""
- cursor: String!
-}
-
-"""Users on Intercom"""
-type IntercomUsersConnection {
- """Users"""
- nodes: [IntercomUser!]!
-
- """A list of edges"""
- edges: [IntercomUserEdge!]!
-
- """Total number of users."""
- totalCount: Int!
-
- """Page info"""
- pageInfo: PageInfo!
-}
-
-"""Tag object"""
-type IntercomTag {
- """value is 'tag'"""
- type: String
-
- """The id of the tag"""
- id: String
-
- """The name of the tag"""
- name: String
-
- """Users with this tag."""
- users(
- """Limit results to users that were created in that last number of days"""
- createdDaysAgo: Int
-
- """What field to sort the results by. Defaults to CREATED_AT."""
- sortByField: IntercomUsersSortByField
-
- """Return the users in ascending or descending order. Defaults to DESC."""
- orderBy: IntercomSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor."""
- after: String
-
- """Number of user to fetch, maximum is 60"""
- first: Int
- ): IntercomUsersConnection
-}
-
-"""Company object"""
-type IntercomCompany {
- """value is 'company'"""
- type: String
-
- """The Intercom defined id representing the company"""
- id: String
-
- """The time the company was added to Intercom"""
- createdAt: Int
-
- """The time the company was created by you"""
- remoteCreatedAt: Int
-
- """The last time the company was updated"""
- updatedAt: Int
-
- """The time the company last recorded making a request"""
- lastRequestAt: Int
-
- """The company id you have defined for the company"""
- companyId: String
-
- """The name of the company"""
- name: String
-
- """The custom attributes you have set on the company"""
- customAttributes: JSON
-
- """A list of tags associated with the company"""
- tags: [IntercomTag!]
-
- """How many sessions the company has recorded"""
- sessionCount: Int
-
- """How much revenue the company generates for your business"""
- monthlySpend: Float
-
- """The number of users in the company"""
- userCount: Int
-
- """The name of the plan you have associated with the company."""
- plan: IntercomCompanyPlan
-
- """The number of employees in the company"""
- size: Int
-
- """The URL for the company website"""
- website: String
-
- """The industry that the company operates in"""
- industry: String
-}
-
-"""Location object"""
-type IntercomLocation {
- """Value is 'location_data'"""
- type: String
-
- """Optional. A city name"""
- cityName: String
-
- """Optional. A continent code"""
- continentCode: String
-
- """Optional. An ISO 3166 country code"""
- countryCode: String
-
- """Optional. The country name"""
- countryName: String
-
- """Optional. The latitude"""
- latitude: Float
-
- """Optional. The longitude"""
- longitude: Float
-
- """Optional. A postal code"""
- postalCode: String
-
- """Optional. A region name"""
- regionName: String
-
- """Optional. An ISO 8601 timezone"""
- timezone: String
-}
-
-"""Avatar object"""
-type IntercomAvatar {
- """Value is 'avatar'"""
- type: String
-
- """An avatar image URL. note: the image url needs to be https."""
- imageUrl: String
-}
-
-"""A user on Intercom"""
-type IntercomUser implements IntercomAuthor {
- """Value is 'user' or 'contact'"""
- type: String
-
- """
- The Intercom defined id representing the user
- This value is read only
- """
- id: String
-
- """
- The time (in seconds) the user was added to Intercom
- This value is read only
- """
- createdAt: Int
-
- """The time (in seconds) the user signed up"""
- signedUpAt: Int
-
- """
- The last time the user was updated
- This value is read only
- """
- updatedAt: Int
-
- """
- The user id you have defined for the user. (Max limit of 255 UTF-8 characters, and should not have trailing or leading spaces)
- """
- userId: String
-
- """
- The email you have defined for the user. (Max limit of 255 UTF-8 characters, and should not have trailing or leading spaces)
- """
- email: String
-
- """The phone number of the user"""
- phone: String
-
- """The custom attributes you have set on the user (case sensitive)."""
- customAttributes: JSON
-
- """The time the user last recorded making a request"""
- lastRequestAt: Int
-
- """
- How many sessions the user has recorded
- This value is read only
- """
- sessionCount: Int
-
- """An avatar object for the user."""
- avatar: IntercomAvatar
-
- """Whether the user is unsubscribed from emails"""
- unsubscribedFromEmails: Boolean
-
- """
- A Location Object relating to the user
- To update location data send in a value for last_seen_ip and the IP will be used to populate location data
- """
- locationData: IntercomLocation
-
- """The URL of the page the user was last on"""
- referrer: String
-
- """Identifies which site sent the traffic"""
- utmSource: String
-
- """Identifies what type of link was used"""
- utmMedium: String
-
- """Identifies a specific product promotion or strategic campaign"""
- utmCampaign: String
-
- """Identifies search terms"""
- utmTerm: String
-
- """Identifies what specifically was clicked to bring the user to the site"""
- utmContent: String
-
- """
- Data about the last user agent the user was seen using
-
- To update this value use last\\_seen\\_user\\_agent
- """
- userAgentData: String
-
- """
- An ip address (e.g. "1.2.3.4") representing the last ip address the user visited your application from. (Used for updating location_data)
- """
- lastSeenIp: String
-
- """
- The pseudonym used if this user was previously a Lead (http://docs.intercom.io/Intercom-for-customer-communication/the-intercom-messenger)
- """
- pseudonym: String
-
- """
- Whether or not this is a Lead. Always false
-
- This value is read only
- """
- anonymous: Boolean
-
- """A list of companies for the user"""
- companies: [IntercomCompany!]
-
- """
- A list of social profiles associated with the user
-
- This value is read only
- """
- socialProfiles: [IntercomSocialProfile!]
-
- """A list of segments associated with the user"""
- segments: [IntercomSegment!]
-
- """A list of tags associated with the user"""
- tags: [IntercomTag!]
-
- """The full name of the user"""
- name: String
-
- """The app id of the Intercom app that the user belongs to"""
- appId: String
-
- """Linked Stripe customer"""
- stripeCustomer: StripeCustomer
-
- """Linked Salesforce Lead"""
- salesforceLead: SalesforceLead
-
- """Linked Salesforce Contact"""
- salesforceContact: SalesforceContact
-
- """Linked Salesforce Account"""
- salesforceAccount: SalesforceAccount
-
- """Linked Zendesk user"""
- zendeskUser: ZendeskUser
-
- """Summary of events for this user"""
- eventSummary: [IntercomEventSummary!]
-
- """List of events for this user."""
- events(
- """Returns the elements in the list that come after the specified cursor."""
- after: String
-
- """Number of events to fetch, defaults to 50"""
- first: Int
- ): IntercomEventssConnection
-
- """
- Conversations for this user.
-
- Conversation are how you can communicate with users in Intercom.
- """
- conversations(
- """
- When true, retrieves conversation messages in plain text. Defaults to false.
- """
- displayAsPlaintext: Boolean
-
- """Defaults to false. When true, fetches just unread conversations."""
- unread: Boolean
-
- """What field to sort the results by. Defaults to UPDATED_AT."""
- sortByField: IntercomConversationSortByField
-
- """
- Return the conversations in ascending or descending order. Defaults to DESC.
- """
- orderBy: IntercomSortOrderBy
- ): IntercomConversationsConnection
-}
-
-"""Account"""
-type SalesforceAccount implements OneGraphNode {
- """Linked Stripe customer"""
- stripeCustomer: StripeCustomer
-
- """Linked Intercom user"""
- intercomUser: IntercomUser
-
- """Linked Zendesk user"""
- zendeskUser: ZendeskUser
-
- """Account ID"""
- id: String!
-
- """Deleted"""
- isDeleted: Boolean!
-
- """Master Record ID"""
- masterRecordId: String
-
- """Master Record ID"""
- masterRecord: SalesforceAccount
-
- """Account Name"""
- name: String!
-
- """Account Type"""
- type: String
-
- """Parent Account ID"""
- parentId: String
-
- """Parent Account ID"""
- parent: SalesforceAccount
-
- """Billing Street"""
- billingStreet: String
-
- """Billing City"""
- billingCity: String
-
- """Billing State/Province"""
- billingState: String
-
- """Billing Zip/Postal Code"""
- billingPostalCode: String
-
- """Billing Country"""
- billingCountry: String
-
- """Billing Latitude"""
- billingLatitude: Float
-
- """Billing Longitude"""
- billingLongitude: Float
-
- """Billing Geocode Accuracy"""
- billingGeocodeAccuracy: String
-
- """Billing Address"""
- billingAddress: SalesforceAddress
-
- """Shipping Street"""
- shippingStreet: String
-
- """Shipping City"""
- shippingCity: String
-
- """Shipping State/Province"""
- shippingState: String
-
- """Shipping Zip/Postal Code"""
- shippingPostalCode: String
-
- """Shipping Country"""
- shippingCountry: String
-
- """Shipping Latitude"""
- shippingLatitude: Float
-
- """Shipping Longitude"""
- shippingLongitude: Float
-
- """Shipping Geocode Accuracy"""
- shippingGeocodeAccuracy: String
-
- """Shipping Address"""
- shippingAddress: SalesforceAddress
-
- """Account Phone"""
- phone: String
-
- """Account Fax"""
- fax: String
-
- """Account Number"""
- accountNumber: String
-
- """Website"""
- website: String
-
- """Photo URL"""
- photoUrl: String
-
- """SIC Code"""
- sic: String
-
- """Industry"""
- industry: String
-
- """Annual Revenue"""
- annualRevenue: Float
-
- """Employees"""
- numberOfEmployees: Int
-
- """Ownership"""
- ownership: String
-
- """Ticker Symbol"""
- tickerSymbol: String
-
- """Account Description"""
- description: String
-
- """Account Rating"""
- rating: String
-
- """Account Site"""
- site: String
-
- """Owner ID"""
- ownerId: String!
-
- """Owner ID"""
- owner: SalesforceUser!
-
- """Created Date"""
- createdDate: String!
-
- """Created By ID"""
- createdById: String!
-
- """Created By ID"""
- createdBy: SalesforceUser!
-
- """Last Modified Date"""
- lastModifiedDate: String!
-
- """Last Modified By ID"""
- lastModifiedById: String!
-
- """Last Modified By ID"""
- lastModifiedBy: SalesforceUser!
-
- """System Modstamp"""
- systemModstamp: String!
-
- """Last Activity"""
- lastActivityDate: String
-
- """Last Viewed Date"""
- lastViewedDate: String
-
- """Last Referenced Date"""
- lastReferencedDate: String
-
- """Data.com Key"""
- jigsaw: String
-
- """Jigsaw Company ID"""
- jigsawCompanyId: String
-
- """Clean Status"""
- cleanStatus: String
-
- """Account Source"""
- accountSource: String
-
- """D-U-N-S Number"""
- dunsNumber: String
-
- """Tradestyle"""
- tradestyle: String
-
- """NAICS Code"""
- naicsCode: String
-
- """NAICS Description"""
- naicsDesc: String
-
- """Year Started"""
- yearStarted: String
-
- """SIC Description"""
- sicDesc: String
-
- """D&B Company ID"""
- dandbCompanyId: String
-
- """D&B Company ID"""
- dandbCompany: SalesforceDandBCompany
-
- """Collection of Salesforce Account"""
- childAccounts(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceAccountConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceAccountSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceAccountSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of Accounts to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceAccountsConnection
-
- """Collection of Salesforce AccountCleanInfo"""
- accountCleanInfos(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceAccountCleanInfoConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceAccountCleanInfoSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceAccountCleanInfoSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of AccountCleanInfos to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceAccountCleanInfosConnection
-
- """Collection of Salesforce AccountContactRole"""
- accountContactRoles(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceAccountContactRoleConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceAccountContactRoleSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceAccountContactRoleSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of AccountContactRoles to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceAccountContactRolesConnection
-
- """Collection of Salesforce AccountFeed"""
- feeds(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceAccountFeedConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceAccountFeedSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceAccountFeedSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of AccountFeeds to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceAccountFeedsConnection
-
- """Collection of Salesforce AccountHistory"""
- histories(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceAccountHistoryConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceAccountHistorySortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceAccountHistorySortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of AccountHistories to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceAccountHistorysConnection
-
- """Collection of Salesforce AccountPartner"""
- accountPartnersFrom(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceAccountPartnerConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceAccountPartnerSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceAccountPartnerSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of AccountPartners to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceAccountPartnersConnection
-
- """Collection of Salesforce AccountPartner"""
- accountPartnersTo(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceAccountPartnerConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceAccountPartnerSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceAccountPartnerSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of AccountPartners to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceAccountPartnersConnection
-
- """Collection of Salesforce AccountShare"""
- shares(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceAccountShareConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceAccountShareSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceAccountShareSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of AccountShares to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceAccountSharesConnection
-
- """Collection of Salesforce Asset"""
- assets(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceAssetConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceAssetSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceAssetSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of Assets to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceAssetsConnection
-
- """Collection of Salesforce Asset"""
- providedAssets(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceAssetConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceAssetSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceAssetSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of Assets to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceAssetsConnection
-
- """Collection of Salesforce Asset"""
- servicedAssets(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceAssetConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceAssetSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceAssetSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of Assets to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceAssetsConnection
-
- """Collection of Salesforce Attachment"""
- attachments(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceAttachmentConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceAttachmentSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceAttachmentSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of Attachments to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceAttachmentsConnection
-
- """Collection of Salesforce Case"""
- cases(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceCaseConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceCaseSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceCaseSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of Cases to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceCasesConnection
-
- """Collection of Salesforce CollaborationGroupRecord"""
- recordAssociatedGroups(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceCollaborationGroupRecordConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceCollaborationGroupRecordSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceCollaborationGroupRecordSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """
- Number of CollaborationGroupRecords to fetch. Defaults to 10. Maximum is 60.
- """
- first: Int
- ): SalesforceCollaborationGroupRecordsConnection
-
- """Collection of Salesforce Contact"""
- contacts(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceContactConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceContactSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceContactSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of Contacts to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceContactsConnection
-
- """Collection of Salesforce ContentDistribution"""
- contentDistributions(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceContentDistributionConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceContentDistributionSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceContentDistributionSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """
- Number of ContentDistributions to fetch. Defaults to 10. Maximum is 60.
- """
- first: Int
- ): SalesforceContentDistributionsConnection
-
- """Collection of Salesforce ContentDocumentLink"""
- contentDocumentLinks(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceContentDocumentLinkConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceContentDocumentLinkSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceContentDocumentLinkSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """
- Number of ContentDocumentLinks to fetch. Defaults to 10. Maximum is 60.
- """
- first: Int
- ): SalesforceContentDocumentLinksConnection
-
- """Collection of Salesforce ContentVersion"""
- contentVersions(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceContentVersionConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceContentVersionSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceContentVersionSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of ContentVersions to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceContentVersionsConnection
-
- """Collection of Salesforce Contract"""
- contracts(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceContractConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceContractSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceContractSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of Contracts to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceContractsConnection
-
- """Collection of Salesforce DuplicateRecordItem"""
- duplicateRecordItems(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceDuplicateRecordItemConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceDuplicateRecordItemSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceDuplicateRecordItemSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """
- Number of DuplicateRecordItems to fetch. Defaults to 10. Maximum is 60.
- """
- first: Int
- ): SalesforceDuplicateRecordItemsConnection
-
- """Collection of Salesforce EmailMessage"""
- emails(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceEmailMessageConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceEmailMessageSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceEmailMessageSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of EmailMessages to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceEmailMessagesConnection
-
- """Collection of Salesforce EntitySubscription"""
- feedSubscriptionsForEntity(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceEntitySubscriptionConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceEntitySubscriptionSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceEntitySubscriptionSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of EntitySubscriptions to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceEntitySubscriptionsConnection
-
- """Collection of Salesforce Event"""
- events(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceEventConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceEventSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceEventSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of Events to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceEventsConnection
-
- """Collection of Salesforce FeedComment"""
- feedComments(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceFeedCommentConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceFeedCommentSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceFeedCommentSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of FeedComments to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceFeedCommentsConnection
-
- """Collection of Salesforce FeedItem"""
- feedItems(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceFeedItemConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceFeedItemSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceFeedItemSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of FeedItems to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceFeedItemsConnection
-
- """Collection of Salesforce FlowRecordRelation"""
- flowRecordRelations(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceFlowRecordRelationConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceFlowRecordRelationSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceFlowRecordRelationsConnection
-
- """Collection of Salesforce Lead"""
- leads(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceLeadConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceLeadSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceLeadSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of Leads to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceLeadsConnection
-
- """Collection of Salesforce Note"""
- notes(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceNoteConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceNoteSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceNoteSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of Notes to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceNotesConnection
-
- """Collection of Salesforce Opportunity"""
- opportunities(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceOpportunityConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceOpportunitySortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceOpportunitySortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of Opportunities to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceOpportunitysConnection
-
- """Collection of Salesforce OpportunityPartner"""
- opportunityPartnersTo(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceOpportunityPartnerConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceOpportunityPartnerSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceOpportunityPartnerSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of OpportunityPartners to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceOpportunityPartnersConnection
-
- """Collection of Salesforce Order"""
- orders(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceOrderConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceOrderSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceOrderSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of Orders to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceOrdersConnection
-
- """Collection of Salesforce Partner"""
- partnersFrom(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforcePartnerConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforcePartnerSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforcePartnerSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of Partners to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforcePartnersConnection
-
- """Collection of Salesforce Partner"""
- partnersTo(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforcePartnerConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforcePartnerSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforcePartnerSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of Partners to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforcePartnersConnection
-
- """Collection of Salesforce ProcessInstance"""
- processInstances(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceProcessInstanceConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceProcessInstanceSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceProcessInstanceSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of ProcessInstances to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceProcessInstancesConnection
-
- """Collection of Salesforce Task"""
- tasks(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceTaskConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceTaskSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceTaskSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of Tasks to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceTasksConnection
-
- """Collection of Salesforce TopicAssignment"""
- topicAssignments(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceTopicAssignmentConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceTopicAssignmentSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceTopicAssignmentSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of TopicAssignments to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceTopicAssignmentsConnection
-
- """Collection of Salesforce User"""
- users(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceUserConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceUserSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceUserSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of Users to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceUsersConnection
-
- """Collection of Salesforce UserRole"""
- userRoles(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceUserRoleConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceUserRoleSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceUserRoleSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of UserRoles to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceUserRolesConnection
- customFields(
- """
- List of custom fields to return. By default, returns all custom fields.
- """
- fields: [String!]
- ): JSON!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-""""""
-type StripeCustomer {
- """Linked Salesforce Account"""
- salesforceAccount: SalesforceAccount
-
- """Linked Salesforce Contact"""
- salesforceContact: SalesforceContact
-
- """Linked Salesforce Lead"""
- salesforceLead: SalesforceLead
-
- """Linked Intercom user"""
- intercomUser: IntercomUser
-
- """Linked Zendesk user"""
- zendeskUser: ZendeskUser
-
- """The customer's payment sources, if any."""
- sources: StripeCustomerSources!
-
- """
- String representing the object's type. Objects of the same type share the same value.
- """
- object: StripeCustomerObjectEnum!
-
- """
- Time at which the object was created. Measured in seconds since the Unix epoch.
- """
- created: Int!
-
- """
- Current balance, if any, being stored on the customer. If negative, the customer has credit to apply to their next invoice. If positive, the customer has an amount owed that will be added to their next invoice. The balance does not refer to any unpaid invoices; it solely takes into account amounts that have yet to be successfully applied to any invoice. This balance is only taken into account as invoices are finalized.
- """
- balance: Int
-
- """
- Describes the current discount active on the customer, if there is one.
- """
- discount: StripeDiscount
-
- """The customer's preferred locales (languages), ordered by preference."""
- preferredLocales: [String!]
-
- """The customer's tax IDs."""
- taxIds: StripeCustomerTaxIds
-
- """
- Three-letter [ISO code for the currency](https://stripe.com/docs/currencies) the customer can be charged in for recurring billing purposes.
- """
- currency: String
-
- """
- When the customer's latest invoice is billed by charging automatically, delinquent is true if the invoice's latest charge is failed. When the customer's latest invoice is billed by sending an invoice, delinquent is true if the invoice is not paid by its due date.
- """
- delinquent: Boolean
-
- """The prefix for the customer used to generate unique invoice numbers."""
- invoicePrefix: String
-
- """Unique identifier for the object."""
- id: String!
-
- """The customer's email address."""
- email: String
-
- """ID of the default payment source for the customer."""
- defaultSource: StripeCustomerDefaultSourceUnion
-
- """The customer's full name or business name."""
- name: String
-
- """
- Describes the status of looking up the tax ID provided in `tax_info`. This field has been deprecated and will be removed in a future API version, for further information view the [migration guide](https://stripe.com/docs/billing/migration/taxes#moving-from-taxinfo-to-customer-tax-ids).
- """
- taxInfoVerification: StripeTaxInfoVerification
-
- """The customer's address."""
- address: StripeAddress
-
- """
- Set of key-value pairs that you can attach to an object. This can be useful for storing additional information about the object in a structured format.
- """
- metadata: String
-
- """
- Has the value `true` if the object exists in live mode or the value `false` if the object exists in test mode.
- """
- livemode: Boolean!
-
- """The customer's phone number."""
- phone: String
-
- """
- Mailing and shipping address for the customer. Appears on invoices emailed to this customer.
- """
- shipping: StripeShipping
-
- """
- The customer's tax information. Appears on invoices emailed to this customer. This field has been deprecated and will be removed in a future API version, for further information view the [migration guide](https://stripe.com/docs/billing/migration/taxes#moving-from-taxinfo-to-customer-tax-ids).
- """
- taxInfo: StripeTaxInfo
-
- """
- Describes the customer's tax exemption status. One of `none`, `exempt`, or `reverse`. When set to `reverse`, invoice and receipt PDFs include the text **"Reverse charge"**.
- """
- taxExempt: StripeCustomerTaxExemptEnum
-
- """"""
- invoiceSettings: StripeInvoiceSettingCustomerSetting
-
- """
- An arbitrary string attached to the object. Often useful for displaying to users.
- """
- description: String
-
- """The customer's current subscriptions, if any."""
- subscriptions: StripeCustomerSubscriptions
- accountBalance: Int @deprecated(reason: "Use `balance` field")
- charges(after: String, before: String, first: Int): StripeChargesConnection
- invoices(after: String, before: String, first: Int): StripeInvoicesConnection
- paymentIntents(after: String, before: String, first: Int): StripePaymentIntentsConnection
-}
-
-""""""
-type StripePaymentMethodDetailsCardPresentReceipt {
- """EMV tag 9F26, cryptogram generated by the integrated circuit chip."""
- applicationCryptogram: String
-
- """Mnenomic of the Application Identifier."""
- applicationPreferredName: String
-
- """Identifier for this transaction."""
- authorizationCode: String
-
- """EMV tag 8A. A code returned by the card issuer."""
- authorizationResponseCode: String
-
- """How the cardholder verified ownership of the card."""
- cardholderVerificationMethod: String
-
- """
- EMV tag 84. Similar to the application identifier stored on the integrated circuit chip.
- """
- dedicatedFileName: String
-
- """The outcome of a series of EMV functions performed by the card reader."""
- terminalVerificationResults: String
-
- """
- An indication of various EMV functions performed during the transaction.
- """
- transactionStatusInformation: String
-}
-
-""""""
-type StripePaymentMethodDetailsCardPresent {
- """Four-digit number representing the card's expiration year."""
- expYear: Int
-
- """The last four digits of the card."""
- last4: String
-
- """
- How were card details read in this transaction. Can be contact_emv, contactless_emv, magnetic_stripe_fallback, magnetic_stripe_track2, or contactless_magstripe_mode
- """
- readMethod: String
-
- """
- Two-letter ISO code representing the country of the card. You could use this attribute to get a sense of the international breakdown of cards you've collected.
- """
- country: String
-
- """
- Card brand. Can be `amex`, `diners`, `discover`, `jcb`, `mastercard`, `unionpay`, `visa`, or `unknown`.
- """
- brand: String
-
- """
- Uniquely identifies this particular card number. You can use this attribute to check whether two customers who've signed up with you are using the same card number, for example.
- """
- fingerprint: String
-
- """Authorization response cryptogram."""
- emvAuthData: String
-
- """
- A collection of fields required to be displayed on receipts. Only required for EMV transactions.
- """
- receipt: StripePaymentMethodDetailsCardPresentReceipt
-
- """Two-digit number representing the card's expiration month."""
- expMonth: Int
-
- """
- ID of a card PaymentMethod generated from the card_present PaymentMethod that may be attached to a Customer for future transactions. Only present if it was possible to generate a card PaymentMethod.
- """
- generatedCard: String
-
- """Card funding type. Can be `credit`, `debit`, `prepaid`, or `unknown`."""
- funding: String
-}
-
-""""""
-type StripePaymentMethodDetailsP24 {
- """Unique reference for this Przelewy24 payment."""
- reference: String
-
- """
- Owner's verified full name. Values are verified or provided by Przelewy24 directly
- (if supported) at the time of authorization or settlement. They cannot be set or mutated.
- """
- verifiedName: String
-}
-
-""""""
-type StripePaymentMethodDetailsMultibanco {
- """Entity number associated with this Multibanco payment."""
- entity: String
-
- """Reference number associated with this Multibanco payment."""
- reference: String
-}
-
-enum StripePaymentMethodDetailsBancontactPreferredLanguageEnum {
- de
- en
- fr
- nl
-}
-
-""""""
-type StripePaymentMethodDetailsBancontact {
- """Bank code of bank associated with the bank account."""
- bankCode: String
-
- """Name of the bank associated with the bank account."""
- bankName: String
-
- """Bank Identifier Code of the bank associated with the bank account."""
- bic: String
-
- """Last four characters of the IBAN."""
- ibanLast4: String
-
- """
- Preferred language of the Bancontact authorization page that the customer is redirected to.
- Can be one of `en`, `de`, `fr`, or `nl`
- """
- preferredLanguage: StripePaymentMethodDetailsBancontactPreferredLanguageEnum
-
- """
- Owner's verified full name. Values are verified or provided by Bancontact directly
- (if supported) at the time of authorization or settlement. They cannot be set or mutated.
- """
- verifiedName: String
-}
-
-""""""
-type StripePaymentMethodDetailsCardChecks {
- """
- If a address line1 was provided, results of the check, one of 'pass', 'failed', 'unavailable' or 'unchecked'.
- """
- addressLine1Check: String
-
- """
- If a address postal code was provided, results of the check, one of 'pass', 'failed', 'unavailable' or 'unchecked'.
- """
- addressPostalCodeCheck: String
-
- """
- If a CVC was provided, results of the check, one of 'pass', 'failed', 'unavailable' or 'unchecked'.
- """
- cvcCheck: String
-}
-
-""""""
-type StripePaymentMethodDetailsCardWalletVisaCheckout {
- """
- Owner's verified billing address. Values are verified or provided by the wallet directly (if supported) at the time of authorization or settlement. They cannot be set or mutated.
- """
- billingAddress: StripeAddress
-
- """
- Owner's verified email. Values are verified or provided by the wallet directly (if supported) at the time of authorization or settlement. They cannot be set or mutated.
- """
- email: String
-
- """
- Owner's verified full name. Values are verified or provided by the wallet directly (if supported) at the time of authorization or settlement. They cannot be set or mutated.
- """
- name: String
-
- """
- Owner's verified shipping address. Values are verified or provided by the wallet directly (if supported) at the time of authorization or settlement. They cannot be set or mutated.
- """
- shippingAddress: StripeAddress
-}
-
-enum StripePaymentMethodDetailsCardWalletTypeEnum {
- amex_express_checkout
- apple_pay
- google_pay
- masterpass
- samsung_pay
- visa_checkout
-}
-
-""""""
-type StripePaymentMethodDetailsCardWalletMasterpass {
- """
- Owner's verified billing address. Values are verified or provided by the wallet directly (if supported) at the time of authorization or settlement. They cannot be set or mutated.
- """
- billingAddress: StripeAddress
-
- """
- Owner's verified email. Values are verified or provided by the wallet directly (if supported) at the time of authorization or settlement. They cannot be set or mutated.
- """
- email: String
-
- """
- Owner's verified full name. Values are verified or provided by the wallet directly (if supported) at the time of authorization or settlement. They cannot be set or mutated.
- """
- name: String
-
- """
- Owner's verified shipping address. Values are verified or provided by the wallet directly (if supported) at the time of authorization or settlement. They cannot be set or mutated.
- """
- shippingAddress: StripeAddress
-}
-
-""""""
-type StripePaymentMethodDetailsCardWallet {
- """
- (For tokenized numbers only.) The last four digits of the device account number.
- """
- dynamicLast4: String
-
- """"""
- masterpass: StripePaymentMethodDetailsCardWalletMasterpass
-
- """
- The type of the card wallet, one of `amex_express_checkout`, `apple_pay`, `google_pay`, `masterpass`, `samsung_pay`, or `visa_checkout`. An additional hash is included on the Wallet subhash with a name matching this value. It contains additional information specific to the card wallet type.
- """
- type: StripePaymentMethodDetailsCardWalletTypeEnum!
-
- """"""
- visaCheckout: StripePaymentMethodDetailsCardWalletVisaCheckout
-}
-
-""""""
-type StripeThreeDSecureDetails {
- """
- Whether or not authentication was performed. 3D Secure will succeed without authentication when the card is not enrolled.
- """
- authenticated: Boolean!
-
- """Whether or not 3D Secure succeeded."""
- succeeded: Boolean!
-
- """The version of 3D Secure that was used for this payment."""
- version: String!
-}
-
-""""""
-type StripePaymentMethodDetailsCard {
- """Four-digit number representing the card's expiration year."""
- expYear: Int
-
- """Populated if this transaction used 3D Secure authentication."""
- threeDSecure: StripeThreeDSecureDetails
-
- """The last four digits of the card."""
- last4: String
-
- """
- Two-letter ISO code representing the country of the card. You could use this attribute to get a sense of the international breakdown of cards you've collected.
- """
- country: String
-
- """
- If this Card is part of a card wallet, this contains the details of the card wallet.
- """
- wallet: StripePaymentMethodDetailsCardWallet
-
- """
- Card brand. Can be `amex`, `diners`, `discover`, `jcb`, `mastercard`, `unionpay`, `visa`, or `unknown`.
- """
- brand: String
-
- """
- Check results by Card networks on Card address and CVC at time of payment.
- """
- checks: StripePaymentMethodDetailsCardChecks
-
- """
- Uniquely identifies this particular card number. You can use this attribute to check whether two customers who've signed up with you are using the same card number, for example.
- """
- fingerprint: String
-
- """Two-digit number representing the card's expiration month."""
- expMonth: Int
-
- """Card funding type. Can be `credit`, `debit`, `prepaid`, or `unknown`."""
- funding: String
-}
-
-""""""
-type StripePaymentMethodDetailsAchCreditTransfer {
- """Account number to transfer funds to."""
- accountNumber: String
-
- """Name of the bank associated with the routing number."""
- bankName: String
-
- """Routing transit number for the bank account to transfer funds to."""
- routingNumber: String
-
- """SWIFT code of the bank associated with the routing number."""
- swiftCode: String
-}
-
-enum StripePaymentMethodDetailsAchDebitAccountHolderTypeEnum {
- company
- individual
-}
-
-""""""
-type StripePaymentMethodDetailsAchDebit {
- """
- Type of entity that holds the account. This can be either `individual` or `company`.
- """
- accountHolderType: StripePaymentMethodDetailsAchDebitAccountHolderTypeEnum
-
- """Name of the bank associated with the bank account."""
- bankName: String
-
- """
- Two-letter ISO code representing the country the bank account is located in.
- """
- country: String
-
- """
- Uniquely identifies this particular bank account. You can use this attribute to check whether two bank accounts are the same.
- """
- fingerprint: String
-
- """Last four digits of the bank account number."""
- last4: String
-
- """Routing transit number of the bank account."""
- routingNumber: String
-}
-
-""""""
-type StripePaymentMethodDetailsSofort {
- """Bank code of bank associated with the bank account."""
- bankCode: String
-
- """Name of the bank associated with the bank account."""
- bankName: String
-
- """Bank Identifier Code of the bank associated with the bank account."""
- bic: String
-
- """
- Two-letter ISO code representing the country the bank account is located in.
- """
- country: String
-
- """Last four characters of the IBAN."""
- ibanLast4: String
-
- """
- Owner's verified full name. Values are verified or provided by SOFORT directly
- (if supported) at the time of authorization or settlement. They cannot be set or mutated.
- """
- verifiedName: String
-}
-
-""""""
-type StripePaymentMethodDetailsSepaDebit {
- """Bank code of bank associated with the bank account."""
- bankCode: String
-
- """Branch code of bank associated with the bank account."""
- branchCode: String
-
- """
- Two-letter ISO code representing the country the bank account is located in.
- """
- country: String
-
- """
- Uniquely identifies this particular bank account. You can use this attribute to check whether two bank accounts are the same.
- """
- fingerprint: String
-
- """Last four characters of the IBAN."""
- last4: String
-
- """ID of the mandate used to make this payment."""
- mandate: String
-}
-
-""""""
-type StripePaymentMethodDetailsEps {
- """
- Owner's verified full name. Values are verified or provided by EPS directly
- (if supported) at the time of authorization or settlement. They cannot be set or mutated.
- """
- verifiedName: String
-}
-
-""""""
-type StripePaymentMethodDetailsGiropay {
- """Bank code of bank associated with the bank account."""
- bankCode: String
-
- """Name of the bank associated with the bank account."""
- bankName: String
-
- """Bank Identifier Code of the bank associated with the bank account."""
- bic: String
-
- """
- Owner's verified full name. Values are verified or provided by Giropay directly
- (if supported) at the time of authorization or settlement. They cannot be set or mutated.
- """
- verifiedName: String
-}
-
-enum StripePaymentMethodDetailsIdealBicEnum {
- ABNANL2A
- ASNBNL21
- BUNQNL2A
- FVLBNL22
- HANDNL2A
- INGBNL2A
- KNABNL2H
- MOYONL21
- RABONL2U
- RBRBNL21
- SNSBNL2A
- TRIONL2U
-}
-
-enum StripePaymentMethodDetailsIdealBankEnum {
- abn_amro
- asn_bank
- bunq
- handelsbanken
- ing
- knab
- moneyou
- rabobank
- regiobank
- sns_bank
- triodos_bank
- van_lanschot
-}
-
-""""""
-type StripePaymentMethodDetailsIdeal {
- """
- The customer's bank. Can be one of `abn_amro`, `asn_bank`, `bunq`, `handelsbanken`, `ing`, `knab`, `moneyou`, `rabobank`, `regiobank`, `sns_bank`, `triodos_bank`, or `van_lanschot`.
- """
- bank: StripePaymentMethodDetailsIdealBankEnum
-
- """The Bank Identifier Code of the customer's bank."""
- bic: StripePaymentMethodDetailsIdealBicEnum
-
- """Last four characters of the IBAN."""
- ibanLast4: String
-
- """
- Owner's verified full name. Values are verified or provided by iDEAL directly
- (if supported) at the time of authorization or settlement. They cannot be set or mutated.
- """
- verifiedName: String
-}
-
-""""""
-type StripePaymentMethodDetails {
- """"""
- ideal: StripePaymentMethodDetailsIdeal
-
- """"""
- giropay: StripePaymentMethodDetailsGiropay
-
- """"""
- eps: StripePaymentMethodDetailsEps
-
- """"""
- sepaDebit: StripePaymentMethodDetailsSepaDebit
-
- """"""
- sofort: StripePaymentMethodDetailsSofort
-
- """"""
- achDebit: StripePaymentMethodDetailsAchDebit
-
- """"""
- achCreditTransfer: StripePaymentMethodDetailsAchCreditTransfer
-
- """
- The type of transaction-specific details of the payment method used in the payment, one of `ach_credit_transfer`, `ach_debit`, `alipay`, `bancontact`, `card`, `card_present`, `eps`, `giropay`, `ideal`, `klarna`, `multibanco`, `p24`, `sepa_debit`, `sofort`, `stripe_account`, or `wechat`.
- An additional hash is included on `payment_method_details` with a name matching this value.
- It contains information specific to the payment method.
- """
- type: String!
-
- """"""
- card: StripePaymentMethodDetailsCard
-
- """"""
- bancontact: StripePaymentMethodDetailsBancontact
-
- """"""
- multibanco: StripePaymentMethodDetailsMultibanco
-
- """"""
- p24: StripePaymentMethodDetailsP24
-
- """"""
- cardPresent: StripePaymentMethodDetailsCardPresent
-}
-
-""""""
-type StripePaymentMethodCardGeneratedCard {
- """The charge that created this object."""
- charge: String
-
- """
- Transaction-specific details of the payment method used in the payment.
- """
- paymentMethodDetails: StripePaymentMethodDetails
-}
-
-""""""
-type StripePaymentMethodCardChecks {
- """
- If a address line1 was provided, results of the check, one of 'pass', 'failed', 'unavailable' or 'unchecked'.
- """
- addressLine1Check: String
-
- """
- If a address postal code was provided, results of the check, one of 'pass', 'failed', 'unavailable' or 'unchecked'.
- """
- addressPostalCodeCheck: String
-
- """
- If a CVC was provided, results of the check, one of 'pass', 'failed', 'unavailable' or 'unchecked'.
- """
- cvcCheck: String
-}
-
-""""""
-type StripeThreeDSecureUsage {
- """Whether 3D Secure is supported on this card."""
- supported: Boolean!
-}
-
-""""""
-type StripePaymentMethodCardWalletVisaCheckout {
- """
- Owner's verified billing address. Values are verified or provided by the wallet directly (if supported) at the time of authorization or settlement. They cannot be set or mutated.
- """
- billingAddress: StripeAddress
-
- """
- Owner's verified email. Values are verified or provided by the wallet directly (if supported) at the time of authorization or settlement. They cannot be set or mutated.
- """
- email: String
-
- """
- Owner's verified full name. Values are verified or provided by the wallet directly (if supported) at the time of authorization or settlement. They cannot be set or mutated.
- """
- name: String
-
- """
- Owner's verified shipping address. Values are verified or provided by the wallet directly (if supported) at the time of authorization or settlement. They cannot be set or mutated.
- """
- shippingAddress: StripeAddress
-}
-
-enum StripePaymentMethodCardWalletTypeEnum {
- amex_express_checkout
- apple_pay
- google_pay
- masterpass
- samsung_pay
- visa_checkout
-}
-
-""""""
-type StripePaymentMethodCardWalletMasterpass {
- """
- Owner's verified billing address. Values are verified or provided by the wallet directly (if supported) at the time of authorization or settlement. They cannot be set or mutated.
- """
- billingAddress: StripeAddress
-
- """
- Owner's verified email. Values are verified or provided by the wallet directly (if supported) at the time of authorization or settlement. They cannot be set or mutated.
- """
- email: String
-
- """
- Owner's verified full name. Values are verified or provided by the wallet directly (if supported) at the time of authorization or settlement. They cannot be set or mutated.
- """
- name: String
-
- """
- Owner's verified shipping address. Values are verified or provided by the wallet directly (if supported) at the time of authorization or settlement. They cannot be set or mutated.
- """
- shippingAddress: StripeAddress
-}
-
-""""""
-type StripePaymentMethodCardWallet {
- """
- (For tokenized numbers only.) The last four digits of the device account number.
- """
- dynamicLast4: String
-
- """"""
- masterpass: StripePaymentMethodCardWalletMasterpass
-
- """
- The type of the card wallet, one of `amex_express_checkout`, `apple_pay`, `google_pay`, `masterpass`, `samsung_pay`, or `visa_checkout`. An additional hash is included on the Wallet subhash with a name matching this value. It contains additional information specific to the card wallet type.
- """
- type: StripePaymentMethodCardWalletTypeEnum!
-
- """"""
- visaCheckout: StripePaymentMethodCardWalletVisaCheckout
-}
-
-""""""
-type StripePaymentMethodCard {
- """Four-digit number representing the card's expiration year."""
- expYear: Int!
-
- """The last four digits of the card."""
- last4: String!
-
- """
- Two-letter ISO code representing the country of the card. You could use this attribute to get a sense of the international breakdown of cards you've collected.
- """
- country: String
-
- """
- If this Card is part of a card wallet, this contains the details of the card wallet.
- """
- wallet: StripePaymentMethodCardWallet
-
- """
- Card brand. Can be `amex`, `diners`, `discover`, `jcb`, `mastercard`, `unionpay`, `visa`, or `unknown`.
- """
- brand: String!
-
- """
- Contains details on how this Card maybe be used for 3D Secure authentication.
- """
- threeDSecureUsage: StripeThreeDSecureUsage
-
- """Checks on Card address and CVC if provided."""
- checks: StripePaymentMethodCardChecks
-
- """
- Uniquely identifies this particular card number. You can use this attribute to check whether two customers who've signed up with you are using the same card number, for example.
- """
- fingerprint: String
-
- """Details of the original PaymentMethod that created this object."""
- generatedFrom: StripePaymentMethodCardGeneratedCard
-
- """Two-digit number representing the card's expiration month."""
- expMonth: Int!
-
- """Card funding type. Can be `credit`, `debit`, `prepaid`, or `unknown`."""
- funding: String!
-}
-
-enum StripePaymentMethodTypeEnum {
- card
- card_present
-}
-
-enum StripePaymentMethodObjectEnum {
- payment_method
-}
-
-""""""
-type StripePaymentMethod {
- """
- String representing the object's type. Objects of the same type share the same value.
- """
- object: StripePaymentMethodObjectEnum!
-
- """
- Time at which the object was created. Measured in seconds since the Unix epoch.
- """
- created: Int!
-
- """Unique identifier for the object."""
- id: String!
-
- """
- Set of key-value pairs that you can attach to an object. This can be useful for storing additional information about the object in a structured format.
- """
- metadata: String!
-
- """
- Has the value `true` if the object exists in live mode or the value `false` if the object exists in test mode.
- """
- livemode: Boolean!
-
- """
- The type of the PaymentMethod. An additional hash is included on the PaymentMethod with a name matching this value. It contains additional information specific to the PaymentMethod type.
- """
- type: StripePaymentMethodTypeEnum!
-
- """"""
- card: StripePaymentMethodCard
-
- """
- The ID of the Customer to which this PaymentMethod is saved. This will not be set when the PaymentMethod has not been saved to a Customer.
- """
- customer: StripeCustomer
-
- """"""
- billingDetails: StripeBillingDetails!
-}
-
-""""""
-type StripeInvoiceItemThresholdReason {
- """The IDs of the line items that triggered the threshold invoice."""
- lineItemIds: [String!]!
-
- """The quantity threshold boundary that applied to the given line item."""
- usageGte: Int!
-}
-
-""""""
-type StripeInvoiceThresholdReason {
- """
- The total invoice amount threshold boundary if it triggered the threshold invoice.
- """
- amountGte: Int
-
- """Indicates which line items triggered a threshold invoice."""
- itemReasons: [StripeInvoiceItemThresholdReason!]!
-}
-
-enum StripeInvoiceObjectEnum {
- invoice
-}
-
-enum StripeInvoiceBillingReasonEnum {
- automatic_pending_invoice_item_invoice
- manual
- subscription
- subscription_create
- subscription_cycle
- subscription_threshold
- subscription_update
- upcoming
-}
-
-""""""
-type StripeAddress {
- """City/District/Suburb/Town/Village."""
- city: String
-
- """2-letter country code."""
- country: String
-
- """Address line 1 (Street address/PO Box/Company name)."""
- line1: String
-
- """Address line 2 (Apartment/Suite/Unit/Building)."""
- line2: String
-
- """ZIP or postal code."""
- postalCode: String
-
- """State/County/Province/Region."""
- state: String
-}
-
-""""""
-type StripeShipping {
- """"""
- address: StripeAddress
-
- """
- The delivery service that shipped a physical product, such as Fedex, UPS, USPS, etc.
- """
- carrier: String
-
- """Recipient name."""
- name: String
-
- """Recipient phone (including extension)."""
- phone: String
-
- """
- The tracking number for a physical product, obtained from the delivery service. If multiple tracking numbers were generated for this purchase, please separate them with commas.
- """
- trackingNumber: String
-}
-
-""""""
-type StripeInvoice {
- """Total after discounts and taxes."""
- total: Int!
-
- """
- The customer's shipping information. Until the invoice is finalized, this field will equal `customer.shipping`. Once the invoice is finalized, this field will no longer be updated.
- """
- customerShipping: StripeShipping
-
- """
- Indicates the reason why the invoice was created. `subscription_cycle` indicates an invoice created by a subscription advancing into a new period. `subscription_create` indicates an invoice created due to creating a subscription. `subscription_update` indicates an invoice created due to updating a subscription. `subscription` is set for all old invoices to indicate either a change to a subscription or a period advancement. `manual` is set for all invoices unrelated to a subscription (for example: created via the invoice editor). The `upcoming` value is reserved for simulated invoices per the upcoming invoice endpoint. `subscription_threshold` indicates an invoice created due to a billing threshold being reached.
- """
- billingReason: StripeInvoiceBillingReasonEnum
-
- """
- String representing the object's type. Objects of the same type share the same value.
- """
- object: StripeInvoiceObjectEnum!
-
- """
- Time at which the object was created. Measured in seconds since the Unix epoch.
- """
- created: Int!
-
- """"""
- thresholdReason: StripeInvoiceThresholdReason
-
- """
- The date on which payment for this invoice is due. This value will be `null` for invoices where `collection_method=charge_automatically`.
- """
- dueDate: Int
-
- """
- ID of the default payment method for the invoice. It must belong to the customer associated with the invoice. If not set, defaults to the subscription's default payment method, if any, or to the default payment method in the customer's invoice settings.
- """
- defaultPaymentMethod: StripePaymentMethod
-
- """
- The PaymentIntent associated with this invoice. The PaymentIntent is generated when the invoice is finalized, and can then be used to pay the invoice. Note that voiding an invoice will cancel the PaymentIntent.
- """
- paymentIntent: StripePaymentIntent
-
- """
- Only set for upcoming invoices that preview prorations. The time used to calculate prorations.
- """
- subscriptionProrationDate: Int
-
- """
- Controls whether Stripe will perform [automatic collection](https://stripe.com/docs/billing/invoices/workflow/#auto_advance) of the invoice. When `false`, the invoice's state will not automatically advance without an explicit action.
- """
- autoAdvance: Boolean
-
- """The amount remaining, in %s, that is due."""
- amountRemaining: Int!
-
- """"""
- discount: StripeDiscount
-
- """
- This is the transaction number that appears on email receipts sent for this invoice.
- """
- receiptNumber: String
-
- """
- The individual line items that make up the invoice. `lines` is sorted as follows: invoice items in reverse chronological order, followed by the subscription, if any.
- """
- lines: StripeInvoiceLines!
-
- """
- Whether payment was successfully collected for this invoice. An invoice can be paid (most commonly) with a charge or with credit from the customer's account balance.
- """
- paid: Boolean!
-
- """
- The customer's email. Until the invoice is finalized, this field will equal `customer.email`. Once the invoice is finalized, this field will no longer be updated.
- """
- customerEmail: String
-
- """
- Three-letter [ISO currency code](https://www.iso.org/iso-4217-currency-codes.html), in lowercase. Must be a [supported currency](https://stripe.com/docs/currencies).
- """
- currency: String!
-
- """
- The public name of the business associated with this invoice, most often the business creating the invoice.
- """
- accountName: String
-
- """
- The URL for the hosted invoice page, which allows customers to view and pay an invoice. If the invoice has not been finalized yet, this will be null.
- """
- hostedInvoiceUrl: String
-
- """The amount, in %s, that was paid."""
- amountPaid: Int!
-
- """"""
- statusTransitions: StripeInvoicesStatusTransitions!
-
- """
- The time at which webhooks for this invoice were successfully delivered (if the invoice had no webhooks to deliver, this will match `created`). Invoice payment is delayed until webhooks are delivered, or until all webhook delivery attempts have been exhausted.
- """
- webhooksDeliveredAt: Int
-
- """
- Start of the usage period during which invoice items were added to this invoice.
- """
- periodStart: Int!
-
- """Unique identifier for the object."""
- id: String
-
- """Footer displayed on the invoice."""
- footer: String
-
- """
- The customer's tax IDs. Until the invoice is finalized, this field will contain the same tax IDs as `customer.tax_ids`. Once the invoice is finalized, this field will no longer be updated.
- """
- customerTaxIds: [StripeInvoicesResourceInvoiceTaxId!]
-
- """
- ID of the default payment source for the invoice. It must belong to the customer associated with the invoice and be in a chargeable state. If not set, defaults to the subscription's default source, if any, or to the customer's default source.
- """
- defaultSource: StripeInvoiceDefaultSourceUnion
-
- """
- The link to download the PDF for the invoice. If the invoice has not been finalized yet, this will be null.
- """
- invoicePdf: String
-
- """ID of the latest charge generated for this invoice, if any."""
- charge: StripeCharge
-
- """
- Whether an attempt has been made to pay the invoice. An invoice is not attempted until 1 hour after the `invoice.created` webhook, for example, so you might not want to display that invoice as unpaid to your users.
- """
- attempted: Boolean!
-
- """
- End of the usage period during which invoice items were added to this invoice.
- """
- periodEnd: Int!
-
- """
- The customer's address. Until the invoice is finalized, this field will equal `customer.address`. Once the invoice is finalized, this field will no longer be updated.
- """
- customerAddress: StripeAddress
-
- """
- Final amount due at this time for this invoice. If the invoice's total is smaller than the minimum charge amount, for example, or if there is account credit that can be applied to the invoice, the `amount_due` may be 0. If there is a positive `starting_balance` for the invoice (the customer owes money), the `amount_due` will also take that into account. The charge that gets generated for the invoice will be for the amount specified in `amount_due`.
- """
- amountDue: Int!
-
- """
- The status of the invoice, one of `draft`, `open`, `paid`, `uncollectible`, or `void`. [Learn more](https://stripe.com/docs/billing/invoices/workflow#workflow-overview)
- """
- status: StripeInvoiceStatusEnum
-
- """Custom fields displayed on the invoice."""
- customFields: [StripeInvoiceSettingCustomField!]
-
- """The subscription that this invoice was prepared for, if any."""
- subscription: StripeSubscription
-
- """
- Either `charge_automatically`, or `send_invoice`. When charging automatically, Stripe will attempt to pay this invoice using the default source attached to the customer. When sending an invoice, Stripe will email this invoice to the customer with payment instructions.
- """
- collectionMethod: StripeInvoiceCollectionMethodEnum
-
- """
- A unique, identifying string that appears on emails sent to the customer for this invoice. This starts with the customer's unique invoice_prefix if it is specified.
- """
- number: String
-
- """
- Starting customer balance before the invoice is finalized. If the invoice has not been finalized yet, this will be the current customer balance.
- """
- startingBalance: Int!
-
- """The tax rates applied to this invoice, if any."""
- defaultTaxRates: [StripeTaxRate!]
-
- """
- Set of key-value pairs that you can attach to an object. This can be useful for storing additional information about the object in a structured format.
- """
- metadata: String
-
- """
- The country of the business associated with this invoice, most often the business creating the invoice.
- """
- accountCountry: String
-
- """
- The customer's phone number. Until the invoice is finalized, this field will equal `customer.phone`. Once the invoice is finalized, this field will no longer be updated.
- """
- customerPhone: String
-
- """
- Ending customer balance after the invoice is finalized. Invoices are finalized approximately an hour after successful webhook delivery or when payment collection is attempted for the invoice. If the invoice has not been finalized yet, this will be null.
- """
- endingBalance: Int
-
- """Total amount of all post-payment credit notes issued for this invoice."""
- postPaymentCreditNotesAmount: Int!
-
- """
- Extra information about an invoice for the customer's credit card statement.
- """
- statementDescriptor: String
-
- """
- Has the value `true` if the object exists in live mode or the value `false` if the object exists in test mode.
- """
- livemode: Boolean!
-
- """
- Total of all subscriptions, invoice items, and prorations on the invoice before any discount or tax is applied.
- """
- subtotal: Int!
-
- """Total amount of all pre-payment credit notes issued for this invoice."""
- prePaymentCreditNotesAmount: Int!
-
- """
- The customer's name. Until the invoice is finalized, this field will equal `customer.name`. Once the invoice is finalized, this field will no longer be updated.
- """
- customerName: String
-
- """
- Number of payment attempts made for this invoice, from the perspective of the payment retry schedule. Any payment attempt counts as the first attempt, and subsequently only automatic retries increment the attempt count. In other words, manual payment attempts after the first attempt do not affect the retry schedule.
- """
- attemptCount: Int!
-
- """The aggregate amounts calculated per tax rate for all line items."""
- totalTaxAmounts: [StripeInvoiceTaxAmount!]
-
- """
- The amount of tax on this invoice. This is the sum of all the tax amounts on this invoice.
- """
- tax: Int
-
- """
- The customer's tax exempt status. Until the invoice is finalized, this field will equal `customer.tax_exempt`. Once the invoice is finalized, this field will no longer be updated.
- """
- customerTaxExempt: StripeInvoiceCustomerTaxExemptEnum
-
- """"""
- customer: StripeInvoiceCustomerUnion!
-
- """
- The fee in %s that will be applied to the invoice and transferred to the application owner's Stripe account when the invoice is paid.
- """
- applicationFeeAmount: Int
-
- """
- An arbitrary string attached to the object. Often useful for displaying to users. Referenced as 'memo' in the Dashboard.
- """
- description: String
-
- """
- This percentage of the subtotal has been added to the total amount of the invoice, including invoice line items and discounts. This field is inherited from the subscription's `tax_percent` field, but can be changed before the invoice is paid. This field defaults to null.
- """
- taxPercent: Float
-
- """
- The time at which payment will next be attempted. This value will be `null` for invoices where `collection_method=send_invoice`.
- """
- nextPaymentAttempt: Int
-}
-
-""""""
-type StripeTransferData {
- """
- A positive integer representing how much to charge in the [smallest currency unit](https://stripe.com/docs/currencies#zero-decimal) (e.g., 100 cents to charge $1.00 or 100 to charge ¥100, a zero-decimal currency). The minimum amount is $0.50 US or [equivalent in charge currency](https://stripe.com/docs/currencies#minimum-and-maximum-charge-amounts). The amount value supports up to eight digits (e.g., a value of 99999999 for a USD charge of $999,999.99).
- """
- amount: Int
-
- """
- The account (if any) the payment will be attributed to for tax
- reporting, and where funds from the payment will be transferred to upon
- payment success.
- """
- destination: StripeAccount!
-}
-
-enum StripePaymentIntentPaymentMethodOptionsCardRequestThreeDSecureEnum {
- any
- automatic
- challenge_only
-}
-
-""""""
-type StripePaymentIntentPaymentMethodOptionsCard {
- """
- We strongly recommend that you rely on our SCA Engine to automatically prompt your customers for authentication based on risk level and [other requirements](https://stripe.com/docs/strong-customer-authentication). However, if you wish to request 3D Secure based on logic from your own fraud engine, provide this option. Permitted values include: `automatic` or `any`. If not provided, defaults to `automatic`. Read our guide on [manually requesting 3D Secure](https://stripe.com/docs/payments/3d-secure#manual-three-ds) for more information on how this configuration interacts with Radar and our SCA Engine.
- """
- requestThreeDSecure: StripePaymentIntentPaymentMethodOptionsCardRequestThreeDSecureEnum
-}
-
-""""""
-type StripePaymentIntentPaymentMethodOptions {
- """"""
- card: StripePaymentIntentPaymentMethodOptionsCard
-}
-
-enum StripePaymentIntentObjectEnum {
- payment_intent
-}
-
-""""""
-type StripePaymentIntent {
- """
- The account (if any) for which the funds of the PaymentIntent are intended. See the PaymentIntents [use case for connected accounts](https://stripe.com/docs/payments/payment-intents/use-cases#connected-accounts) for details.
- """
- onBehalfOf: StripeAccount
-
- """
- String representing the object's type. Objects of the same type share the same value.
- """
- object: StripePaymentIntentObjectEnum!
-
- """
- Email address that the receipt for the resulting payment will be sent to.
- """
- receiptEmail: String
-
- """
- Time at which the object was created. Measured in seconds since the Unix epoch.
- """
- created: Int!
-
- """Payment-method-specific configuration for this PaymentIntent."""
- paymentMethodOptions: StripePaymentIntentPaymentMethodOptions
-
- """
- A string that identifies the resulting payment as part of a group. See the PaymentIntents [use case for connected accounts](https://stripe.com/docs/payments/payment-intents/use-cases#connected-accounts) for details.
- """
- transferGroup: String
-
- """
- The data with which to automatically create a Transfer when the payment is finalized. See the PaymentIntents [use case for connected accounts](https://stripe.com/docs/payments/payment-intents/use-cases#connected-accounts) for details.
- """
- transferData: StripeTransferData
-
- """ID of the review associated with this PaymentIntent, if any."""
- review: StripeReview
-
- """
- Provides information about a card payment that customers see on their statements. Concatenated with the prefix (shortened descriptor) or statement descriptor that’s set on the account to form the complete statement descriptor. Maximum 22 characters for the concatenated descriptor.
- """
- statementDescriptorSuffix: String
-
- """Amount that can be captured from this PaymentIntent."""
- amountCapturable: Int
-
- """ID of the invoice that created this PaymentIntent, if it exists."""
- invoice: StripeInvoice
-
- """
- Three-letter [ISO currency code](https://www.iso.org/iso-4217-currency-codes.html), in lowercase. Must be a [supported currency](https://stripe.com/docs/currencies).
- """
- currency: String!
-
- """ID of the payment method used in this PaymentIntent."""
- paymentMethod: StripePaymentMethod
-
- """Unique identifier for the object."""
- id: String!
-
- """Charges that were created by this PaymentIntent, if any."""
- charges: StripePaymentIntentCharges
-
- """
- The list of payment method types (e.g. card) that this PaymentIntent is allowed to use.
- """
- paymentMethodTypes: [String!]!
-
- """
- One of `automatic` (default) or `manual`.
-
- When the confirmation method is `automatic`, a PaymentIntent can be confirmed using a publishable key. After `next_action`s are handled, no additional confirmation is required to complete the payment.
-
- When the confirmation method is `manual`, all payment attempts must be made using a secret key. The PaymentIntent returns to the `requires_confirmation` state after handling `next_action`s, and requires your server to initiate each payment attempt with an explicit confirmation.
-
- Learn more about the different [confirmation flows](https://stripe.com/docs/payments/payment-intents/use-cases#one-time-payments).
- """
- confirmationMethod: StripePaymentIntentConfirmationMethodEnum!
-
- """ID of the Connect application that created the PaymentIntent."""
- application: StripeApplication
-
- """
- Status of this PaymentIntent, one of `requires_payment_method`, `requires_confirmation`, `requires_action`, `processing`, `requires_capture`, `canceled`, or `succeeded`. Read more about each PaymentIntent [status](https://stripe.com/docs/payments/intents#intent-statuses).
- """
- status: StripePaymentIntentStatusEnum!
-
- """
- Set of key-value pairs that you can attach to an object. This can be useful for storing additional information about the object in a structured format. For more information, see the [documentation](https://stripe.com/docs/payments/payment-intents/creating-payment-intents#storing-information-in-metadata).
- """
- metadata: String
-
- """
- One of `automatic` (default) or `manual`.
-
- When the capture method is `automatic`, Stripe automatically captures funds when the customer authorizes the payment.
-
- Change `capture_method` to manual if you wish to [separate authorization and capture](https://stripe.com/docs/payments/payment-intents/creating-payment-intents#separate-authorization-and-capture) for payment methods that support this.
- """
- captureMethod: StripePaymentIntentCaptureMethodEnum!
-
- """
- Reason for cancellation of this PaymentIntent, either user-provided (`duplicate`, `fraudulent`, `requested_by_customer`, or `abandoned`) or generated by Stripe internally (`failed_invoice`, `void_invoice`, or `automatic`).
- """
- cancellationReason: StripePaymentIntentCancellationReasonEnum
-
- """
- For non-card charges, you can use this value as the complete description that appears on your customers’ statements. Must contain at least one letter, maximum 22 characters.
- """
- statementDescriptor: String
-
- """
- Has the value `true` if the object exists in live mode or the value `false` if the object exists in test mode.
- """
- livemode: Boolean!
-
- """Amount intended to be collected by this PaymentIntent."""
- amount: Int!
-
- """Shipping information for this PaymentIntent."""
- shipping: StripeShipping
-
- """
- ID of the Customer this PaymentIntent belongs to, if one exists.
-
- If present, payment methods used with this PaymentIntent can only be attached to this Customer, and payment methods attached to other Customers cannot be used with this PaymentIntent.
- """
- customer: StripePaymentIntentCustomerUnion
-
- """
- The client secret of this PaymentIntent. Used for client-side retrieval using a publishable key.
-
- The client secret can be used to complete a payment from your frontend. It should not be stored, logged, embedded in URLs, or exposed to anyone other than the customer. Make sure that you have TLS enabled on any page that includes the client secret.
-
- Please refer to our [quickstart guide](https://stripe.com/docs/payments/payment-intents/web) to learn about how `client_secret` should be handled.
- """
- clientSecret: String
-
- """Amount that was collected by this PaymentIntent."""
- amountReceived: Int
-
- """
- The amount of the application fee (if any) for the resulting payment. See the PaymentIntents [use case for connected accounts](https://stripe.com/docs/payments/payment-intents/use-cases#connected-accounts) for details.
- """
- applicationFeeAmount: Int
-
- """
- The payment error encountered in the previous PaymentIntent confirmation.
- """
- lastPaymentError: StripeApiErrors
-
- """
- An arbitrary string attached to the object. Often useful for displaying to users.
- """
- description: String
-
- """
- Indicates that you intend to make future payments with this PaymentIntent's payment method.
-
- If present, the payment method used with this PaymentIntent can be [attached](https://stripe.com/docs/api/payment_methods/attach) to a Customer, even after the transaction completes.
-
- Use `on_session` if you intend to only reuse the payment method when your customer is present in your checkout flow. Use `off_session` if your customer may or may not be in your checkout flow. See [Saving card details after a payment](https://stripe.com/docs/payments/cards/saving-cards-after-payment) to learn more.
-
- Stripe uses `setup_future_usage` to dynamically optimize your payment flow and comply with regional legislation and network rules. For example, if your customer is impacted by [SCA](https://stripe.com/docs/strong-customer-authentication), using `off_session` will ensure that they are authenticated while processing this PaymentIntent. You will then be able to collect [off-session payments](https://stripe.com/docs/payments/cards/charging-saved-cards#off-session-payments-with-saved-cards) for this customer.
- """
- setupFutureUsage: String
-
- """
- Populated when `status` is `canceled`, this is the time at which the PaymentIntent was canceled. Measured in seconds since the Unix epoch.
- """
- canceledAt: Int
-}
-
-enum StripeReviewObjectEnum {
- review
-}
-
-enum StripeReviewClosedReasonEnum {
- approved
- disputed
- refunded
- refunded_as_fraud
-}
-
-""""""
-type StripeReview {
- """
- The reason the review was closed, or null if it has not yet been closed. One of `approved`, `refunded`, `refunded_as_fraud`, or `disputed`.
- """
- closedReason: StripeReviewClosedReasonEnum
-
- """
- String representing the object's type. Objects of the same type share the same value.
- """
- object: StripeReviewObjectEnum!
-
- """
- Time at which the object was created. Measured in seconds since the Unix epoch.
- """
- created: Int!
-
- """The PaymentIntent ID associated with this review, if one exists."""
- paymentIntent: StripePaymentIntent
-
- """The reason the review was opened. One of `rule` or `manual`."""
- openedReason: StripeReviewOpenedReasonEnum!
-
- """
- Information related to the location of the payment. Note that this information is an approximation and attempts to locate the nearest population center - it should not be used to determine a specific address.
- """
- ipAddressLocation: StripeRadarReviewResourceLocation
-
- """Unique identifier for the object."""
- id: String!
-
- """The charge associated with this review."""
- charge: StripeCharge
-
- """
- Has the value `true` if the object exists in live mode or the value `false` if the object exists in test mode.
- """
- livemode: Boolean!
-
- """The ZIP or postal code of the card used, if applicable."""
- billingZip: String
-
- """
- The reason the review is currently open or closed. One of `rule`, `manual`, `approved`, `refunded`, `refunded_as_fraud`, or `disputed`.
- """
- reason: String!
-
- """
- Information related to the browsing session of the user who initiated the payment.
- """
- session: StripeRadarReviewResourceSession
-
- """The IP address where the payment originated."""
- ipAddress: String
-
- """If `true`, the review needs action."""
- open: Boolean!
-}
-
-""""""
-type StripeChargeTransferData {
- """
- The amount transferred to the destination account, if specified. By default, the entire charge amount is transferred to the destination account.
- """
- amount: Int
-
- """
- ID of an existing, connected Stripe account to transfer funds to if `transfer_data` was specified in the charge request.
- """
- destination: StripeAccount!
-}
-
-enum StripeChargeObjectEnum {
- charge
-}
-
-""""""
-type StripeCharge {
- """
- The account (if any) the charge was made on behalf of without triggering an automatic transfer. See the [Connect documentation](https://stripe.com/docs/connect/charges-transfers) for details.
- """
- onBehalfOf: StripeAccount
-
- """
- String representing the object's type. Objects of the same type share the same value.
- """
- object: StripeChargeObjectEnum!
-
- """
- This is the email address that the receipt for this charge was sent to.
- """
- receiptEmail: String
-
- """
- ID of the balance transaction that describes the impact of this charge on your account balance (not including refunds or disputes).
- """
- balanceTransaction: StripeBalanceTransaction
-
- """
- Time at which the object was created. Measured in seconds since the Unix epoch.
- """
- created: Int!
-
- """ID of the PaymentIntent associated with this charge, if one exists."""
- paymentIntent: String
-
- """
- A string that identifies this transaction as part of a group. See the [Connect documentation](https://stripe.com/docs/connect/charges-transfers#grouping-transactions) for details.
- """
- transferGroup: String
-
- """
- This is the transaction number that appears on email receipts sent for this charge. This attribute will be `null` until a receipt has been sent.
- """
- receiptNumber: String
-
- """
- An optional dictionary including the account to automatically transfer to as part of a destination charge. [See the Connect documentation](https://stripe.com/docs/connect/destination-charges) for details.
- """
- transferData: StripeChargeTransferData
-
- """ID of the review associated with this charge if one exists."""
- review: StripeReview
-
- """
- Provides information about the charge that customers see on their statements. Concatenated with the prefix (shortened descriptor) or statement descriptor that’s set on the account to form the complete statement descriptor. Maximum 22 characters for the concatenated descriptor.
- """
- statementDescriptorSuffix: String
-
- """
- `true` if the charge succeeded, or was successfully authorized for later capture.
- """
- paid: Boolean!
-
- """ID of the invoice this charge is for if one exists."""
- invoice: StripeInvoice
-
- """
- Three-letter [ISO currency code](https://www.iso.org/iso-4217-currency-codes.html), in lowercase. Must be a [supported currency](https://stripe.com/docs/currencies).
- """
- currency: String!
-
- """ID of the payment method used in this charge."""
- paymentMethod: String
-
- """
- This is the URL to view the receipt for this charge. The receipt is kept up-to-date to the latest state of the charge, including any refunds. If the charge is for an Invoice, the receipt will be stylized as an Invoice receipt.
- """
- receiptUrl: String!
-
- """
- Error code explaining reason for charge failure if available (see [the errors section](https://stripe.com/docs/api#errors) for a list of codes).
- """
- failureCode: String
-
- """Unique identifier for the object."""
- id: String!
-
- """
- Message to user further explaining reason for charge failure if available.
- """
- failureMessage: String
-
- """Details about the payment method at the time of the transaction."""
- paymentMethodDetails: StripePaymentMethodDetails
-
- """
- The application fee (if any) for the charge. [See the Connect documentation](https://stripe.com/docs/connect/direct-charges#collecting-fees) for details.
- """
- applicationFee: StripeApplicationFee
-
- """ID of the Connect application that created the charge."""
- application: StripeApplication
-
- """
- The status of the payment is either `succeeded`, `pending`, or `failed`.
- """
- status: String!
-
- """Details about the dispute if the charge has been disputed."""
- dispute: StripeDispute
-
- """
- Set of key-value pairs that you can attach to an object. This can be useful for storing additional information about the object in a structured format.
- """
- metadata: String!
-
- """
- ID of the transfer to the `destination` account (only applicable if the charge was created using the `destination` parameter).
- """
- transfer: StripeTransfer
-
- """
- If the charge was created without capturing, this Boolean represents whether it is still uncaptured or has since been captured.
- """
- captured: Boolean!
-
- """ID of the order this charge is for if one exists."""
- order: StripeOrder
-
- """
- Whether the charge has been fully refunded. If the charge is only partially refunded, this attribute will still be false.
- """
- refunded: Boolean!
-
- """
- For card charges, use `statement_descriptor_suffix` instead. Otherwise, you can use this value as the complete description of a charge on your customers’ statements. Must contain at least one letter, maximum 22 characters.
- """
- statementDescriptor: String
-
- """
- Has the value `true` if the object exists in live mode or the value `false` if the object exists in test mode.
- """
- livemode: Boolean!
-
- """
- A positive integer representing how much to charge in the [smallest currency unit](https://stripe.com/docs/currencies#zero-decimal) (e.g., 100 cents to charge $1.00 or 100 to charge ¥100, a zero-decimal currency). The minimum amount is $0.50 US or [equivalent in charge currency](https://stripe.com/docs/currencies#minimum-and-maximum-charge-amounts). The amount value supports up to eight digits (e.g., a value of 99999999 for a USD charge of $999,999.99).
- """
- amount: Int!
-
- """
- Amount in %s refunded (can be less than the amount attribute on the charge if a partial refund was issued).
- """
- amountRefunded: Int!
-
- """Shipping information for the charge."""
- shipping: StripeShipping
-
- """
- The transfer ID which created this charge. Only present if the charge came from another Stripe account. [See the Connect documentation](https://stripe.com/docs/connect/destination-charges) for details.
- """
- sourceTransfer: StripeTransfer
-
- """ID of the customer this charge is for if one exists."""
- customer: StripeChargeCustomerUnion
-
- """"""
- billingDetails: StripeBillingDetails!
-
- """
- The amount of the application fee (if any) for the charge. [See the Connect documentation](https://stripe.com/docs/connect/direct-charges#collecting-fees) for details.
- """
- applicationFeeAmount: Int
-
- """
- Details about whether the payment was accepted, and why. See [understanding declines](https://stripe.com/docs/declines) for details.
- """
- outcome: StripeChargeOutcome
-
- """
- An arbitrary string attached to the object. Often useful for displaying to users.
- """
- description: String
- refunds(after: String, before: String, first: Int): StripeRefundsConnection
-}
-
-enum StripeTransferReversalsObjectEnum {
- list
-}
-
-""""""
-type StripeTransferReversals {
- """"""
- data: [StripeTransferReversal!]!
-
- """
- True if this list has another page of items after this one that can be fetched.
- """
- hasMore: Boolean!
-
- """
- String representing the object's type. Objects of the same type share the same value. Always has the value `list`.
- """
- object: StripeTransferReversalsObjectEnum!
-
- """The URL where this list can be accessed."""
- url: String!
-}
-
-enum StripeTransferObjectEnum {
- transfer
-}
-
-""""""
-type StripeTransfer {
- """
- String representing the object's type. Objects of the same type share the same value.
- """
- object: StripeTransferObjectEnum!
-
- """
- Balance transaction that describes the impact of this transfer on your account balance.
- """
- balanceTransaction: StripeBalanceTransaction
-
- """Time that this record of the transfer was first created."""
- created: Int!
-
- """
- Whether the transfer has been fully reversed. If the transfer is only partially reversed, this attribute will still be false.
- """
- reversed: Boolean!
-
- """
- A string that identifies this transaction as part of a group. See the [Connect documentation](https://stripe.com/docs/connect/charges-transfers#grouping-transactions) for details.
- """
- transferGroup: String
-
- """ID of the Stripe account the transfer was sent to."""
- destination: StripeAccount
-
- """
- Three-letter [ISO currency code](https://www.iso.org/iso-4217-currency-codes.html), in lowercase. Must be a [supported currency](https://stripe.com/docs/currencies).
- """
- currency: String!
-
- """
- The source balance this transfer came from. One of `card` or `bank_account`.
- """
- sourceType: String
-
- """Unique identifier for the object."""
- id: String!
-
- """A list of reversals that have been applied to the transfer."""
- reversals: StripeTransferReversals!
-
- """
- ID of the charge or payment that was used to fund the transfer. If null, the transfer was funded from the available balance.
- """
- sourceTransaction: StripeCharge
-
- """
- A set of key-value pairs that you can attach to a transfer object. It can be useful for storing additional information about the transfer in a structured format.
- """
- metadata: String!
-
- """
- If the destination is a Stripe account, this will be the ID of the payment that the destination account received for the transfer.
- """
- destinationPayment: StripeCharge
-
- """
- Has the value `true` if the object exists in live mode or the value `false` if the object exists in test mode.
- """
- livemode: Boolean!
-
- """Amount in %s to be transferred."""
- amount: Int!
-
- """
- Amount in %s reversed (can be less than the amount attribute on the transfer if a partial reversal was issued).
- """
- amountReversed: Int!
-
- """
- An arbitrary string attached to the object. Often useful for displaying to users.
- """
- description: String
-}
-
-enum StripeTransferReversalObjectEnum {
- transfer_reversal
-}
-
-""""""
-type StripeTransferReversal {
- """
- String representing the object's type. Objects of the same type share the same value.
- """
- object: StripeTransferReversalObjectEnum!
-
- """Balance transaction that describes the impact on your account balance."""
- balanceTransaction: StripeBalanceTransaction
-
- """Linked payment refund for the transfer reversal."""
- destinationPaymentRefund: StripeRefund
-
- """
- Time at which the object was created. Measured in seconds since the Unix epoch.
- """
- created: Int!
-
- """ID of the refund responsible for the transfer reversal."""
- sourceRefund: StripeRefund
-
- """
- Three-letter [ISO currency code](https://www.iso.org/iso-4217-currency-codes.html), in lowercase. Must be a [supported currency](https://stripe.com/docs/currencies).
- """
- currency: String!
-
- """Unique identifier for the object."""
- id: String!
-
- """
- Set of key-value pairs that you can attach to an object. This can be useful for storing additional information about the object in a structured format.
- """
- metadata: String!
-
- """ID of the transfer that was reversed."""
- transfer: StripeTransfer!
-
- """Amount, in %s."""
- amount: Int!
-}
-
-union StripeBalanceTransactionSourceUnion = StripeTransferReversal | StripeTransfer | StripeTopup | StripeTaxDeductedAtSource | StripeReserveTransaction | StripeRefund | StripePlatformTaxFee | StripePayout | StripeIssuingTransaction | StripeIssuingAuthorization | StripeFeeRefund | StripeDispute | StripeConnectCollectionTransfer | StripeCharge | StripeApplicationFee
-
-enum StripeBalanceTransactionObjectEnum {
- balance_transaction
-}
-
-""""""
-type StripeBalanceTransaction {
- """
- The date the transaction's net funds will become available in the Stripe balance.
- """
- availableOn: Int!
-
- """
- String representing the object's type. Objects of the same type share the same value.
- """
- object: StripeBalanceTransactionObjectEnum!
-
- """
- Time at which the object was created. Measured in seconds since the Unix epoch.
- """
- created: Int!
-
- """
- Three-letter [ISO currency code](https://www.iso.org/iso-4217-currency-codes.html), in lowercase. Must be a [supported currency](https://stripe.com/docs/currencies).
- """
- currency: String!
-
- """Unique identifier for the object."""
- id: String!
-
- """Net amount of the transaction, in %s."""
- net: Int!
-
- """
- If the transaction's net funds are available in the Stripe balance yet. Either `available` or `pending`.
- """
- status: String!
-
- """"""
- exchangeRate: Float
-
- """Fees (in %s) paid for this transaction."""
- fee: Int!
-
- """The Stripe object to which this transaction is related."""
- source: StripeBalanceTransactionSourceUnion
-
- """
- Transaction type: `adjustment`, `advance`, `advance_funding`, `application_fee`, `application_fee_refund`, `charge`, `connect_collection_transfer`, `issuing_authorization_hold`, `issuing_authorization_release`, `issuing_transaction`, `payment`, `payment_failure_refund`, `payment_refund`, `payout`, `payout_cancel`, `payout_failure`, `refund`, `refund_failure`, `reserve_transaction`, `reserved_funds`, `stripe_fee`, `stripe_fx_fee`, `tax_fee`, `topup`, `topup_reversal`, `transfer`, `transfer_cancel`, `transfer_failure`, or `transfer_refund`. [Learn more](https://stripe.com/docs/reports/balance-transaction-types) about balance transaction types and what they represent.
- """
- type: StripeBalanceTransactionTypeEnum!
-
- """Gross amount of the transaction, in %s."""
- amount: Int!
-
- """Detailed breakdown of fees (in %s) paid for this transaction."""
- feeDetails: [StripeFee!]!
-
- """
- An arbitrary string attached to the object. Often useful for displaying to users.
- """
- description: String
-}
-
-enum StripeRefundObjectEnum {
- refund
-}
-
-""""""
-type StripeRefund {
- """Linked Salesforce Case"""
- salesforceCase: SalesforceCase
-
- """
- String representing the object's type. Objects of the same type share the same value.
- """
- object: StripeRefundObjectEnum!
-
- """Balance transaction that describes the impact on your account balance."""
- balanceTransaction: StripeBalanceTransaction
-
- """
- Time at which the object was created. Measured in seconds since the Unix epoch.
- """
- created: Int!
-
- """
- If the refund failed, the reason for refund failure if known. Possible values are `lost_or_stolen_card`, `expired_or_canceled_card`, or `unknown`.
- """
- failureReason: String
-
- """
- This is the transaction number that appears on email receipts sent for this refund.
- """
- receiptNumber: String
-
- """
- Three-letter [ISO currency code](https://www.iso.org/iso-4217-currency-codes.html), in lowercase. Must be a [supported currency](https://stripe.com/docs/currencies).
- """
- currency: String!
-
- """Unique identifier for the object."""
- id: String!
-
- """ID of the charge that was refunded."""
- charge: StripeCharge
-
- """
- The transfer reversal that is associated with the refund. Only present if the charge came from another Stripe account. See the Connect documentation for details.
- """
- sourceTransferReversal: StripeTransferReversal
-
- """
- Status of the refund. For credit card refunds, this can be `pending`, `succeeded`, or `failed`. For other types of refunds, it can be `pending`, `succeeded`, `failed`, or `canceled`. Refer to our [refunds](https://stripe.com/docs/refunds#failed-refunds) documentation for more details.
- """
- status: String
-
- """
- If the accompanying transfer was reversed, the transfer reversal object. Only applicable if the charge was created using the destination parameter.
- """
- transferReversal: StripeTransferReversal
-
- """
- Set of key-value pairs that you can attach to an object. This can be useful for storing additional information about the object in a structured format.
- """
- metadata: String!
-
- """Amount, in %s."""
- amount: Int!
-
- """
- Reason for the refund. If set, possible values are `duplicate`, `fraudulent`, and `requested_by_customer`.
- """
- reason: String
-
- """
- If the refund failed, this balance transaction describes the adjustment made on your account balance that reverses the initial balance transaction.
- """
- failureBalanceTransaction: StripeBalanceTransaction
-
- """
- An arbitrary string attached to the object. Often useful for displaying to users. (Available on non-card refunds only)
- """
- description: String
-}
-
-"""Case"""
-type SalesforceCase implements OneGraphNode {
- """Linked Stripe refund"""
- stripeRefund: StripeRefund
-
- """Linked Github Issue"""
- gitHubIssue: GitHubIssue
-
- """Case ID"""
- id: String!
-
- """Deleted"""
- isDeleted: Boolean!
-
- """Case Number"""
- caseNumber: String!
-
- """Contact ID"""
- contactId: String
-
- """Contact ID"""
- contact: SalesforceContact
-
- """Account ID"""
- accountId: String
-
- """Account ID"""
- account: SalesforceAccount
-
- """Asset ID"""
- assetId: String
-
- """Asset ID"""
- asset: SalesforceAsset
-
- """Parent Case ID"""
- parentId: String
-
- """Parent Case ID"""
- parent: SalesforceCase
-
- """Name"""
- suppliedName: String
-
- """Email Address"""
- suppliedEmail: String
-
- """Phone"""
- suppliedPhone: String
-
- """Company"""
- suppliedCompany: String
-
- """Case Type"""
- type: String
-
- """Status"""
- status: String
-
- """Case Reason"""
- reason: String
-
- """Case Origin"""
- origin: String
-
- """Subject"""
- subject: String
-
- """Priority"""
- priority: String
-
- """Description"""
- description: String
-
- """Closed"""
- isClosed: Boolean!
-
- """Closed Date"""
- closedDate: String
-
- """Escalated"""
- isEscalated: Boolean!
-
- """Owner ID"""
- ownerId: String!
-
- """Owner ID"""
- owner: SalesforceCaseOwnerUnion!
-
- """Created Date"""
- createdDate: String!
-
- """Created By ID"""
- createdById: String!
-
- """Created By ID"""
- createdBy: SalesforceUser!
-
- """Last Modified Date"""
- lastModifiedDate: String!
-
- """Last Modified By ID"""
- lastModifiedById: String!
-
- """Last Modified By ID"""
- lastModifiedBy: SalesforceUser!
-
- """System Modstamp"""
- systemModstamp: String!
-
- """Contact Phone"""
- contactPhone: String
-
- """Contact Mobile"""
- contactMobile: String
-
- """Contact Email"""
- contactEmail: String
-
- """Contact Fax"""
- contactFax: String
-
- """Last Viewed Date"""
- lastViewedDate: String
-
- """Last Referenced Date"""
- lastReferencedDate: String
-
- """Collection of Salesforce Attachment"""
- attachments(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceAttachmentConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceAttachmentSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceAttachmentSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of Attachments to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceAttachmentsConnection
-
- """Collection of Salesforce Case"""
- cases(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceCaseConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceCaseSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceCaseSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of Cases to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceCasesConnection
-
- """Collection of Salesforce CaseComment"""
- caseComments(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceCaseCommentConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceCaseCommentSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceCaseCommentSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of CaseComments to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceCaseCommentsConnection
-
- """Collection of Salesforce CaseContactRole"""
- caseContactRoles(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceCaseContactRoleConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceCaseContactRoleSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceCaseContactRoleSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of CaseContactRoles to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceCaseContactRolesConnection
-
- """Collection of Salesforce CaseFeed"""
- feeds(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceCaseFeedConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceCaseFeedSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceCaseFeedSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of CaseFeeds to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceCaseFeedsConnection
-
- """Collection of Salesforce CaseHistory"""
- histories(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceCaseHistoryConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceCaseHistorySortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceCaseHistorySortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of CaseHistories to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceCaseHistorysConnection
-
- """Collection of Salesforce CaseShare"""
- shares(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceCaseShareConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceCaseShareSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceCaseShareSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of CaseShares to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceCaseSharesConnection
-
- """Collection of Salesforce CaseSolution"""
- caseSolutions(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceCaseSolutionConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceCaseSolutionSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceCaseSolutionSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of CaseSolutions to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceCaseSolutionsConnection
-
- """Collection of Salesforce CaseTeamMember"""
- teamMembers(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceCaseTeamMemberConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceCaseTeamMemberSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceCaseTeamMemberSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of CaseTeamMembers to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceCaseTeamMembersConnection
-
- """Collection of Salesforce CaseTeamTemplateRecord"""
- teamTemplateRecords(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceCaseTeamTemplateRecordConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceCaseTeamTemplateRecordSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceCaseTeamTemplateRecordSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """
- Number of CaseTeamTemplateRecords to fetch. Defaults to 10. Maximum is 60.
- """
- first: Int
- ): SalesforceCaseTeamTemplateRecordsConnection
-
- """Collection of Salesforce CollaborationGroupRecord"""
- recordAssociatedGroups(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceCollaborationGroupRecordConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceCollaborationGroupRecordSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceCollaborationGroupRecordSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """
- Number of CollaborationGroupRecords to fetch. Defaults to 10. Maximum is 60.
- """
- first: Int
- ): SalesforceCollaborationGroupRecordsConnection
-
- """Collection of Salesforce ContentDistribution"""
- contentDistributions(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceContentDistributionConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceContentDistributionSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceContentDistributionSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """
- Number of ContentDistributions to fetch. Defaults to 10. Maximum is 60.
- """
- first: Int
- ): SalesforceContentDistributionsConnection
-
- """Collection of Salesforce ContentDocumentLink"""
- contentDocumentLinks(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceContentDocumentLinkConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceContentDocumentLinkSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceContentDocumentLinkSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """
- Number of ContentDocumentLinks to fetch. Defaults to 10. Maximum is 60.
- """
- first: Int
- ): SalesforceContentDocumentLinksConnection
-
- """Collection of Salesforce ContentVersion"""
- contentVersions(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceContentVersionConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceContentVersionSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceContentVersionSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of ContentVersions to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceContentVersionsConnection
-
- """Collection of Salesforce EmailMessage"""
- emailMessages(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceEmailMessageConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceEmailMessageSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceEmailMessageSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of EmailMessages to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceEmailMessagesConnection
-
- """Collection of Salesforce EmailMessage"""
- emails(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceEmailMessageConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceEmailMessageSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceEmailMessageSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of EmailMessages to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceEmailMessagesConnection
-
- """Collection of Salesforce EntitySubscription"""
- feedSubscriptionsForEntity(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceEntitySubscriptionConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceEntitySubscriptionSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceEntitySubscriptionSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of EntitySubscriptions to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceEntitySubscriptionsConnection
-
- """Collection of Salesforce Event"""
- events(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceEventConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceEventSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceEventSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of Events to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceEventsConnection
-
- """Collection of Salesforce FeedComment"""
- feedComments(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceFeedCommentConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceFeedCommentSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceFeedCommentSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of FeedComments to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceFeedCommentsConnection
-
- """Collection of Salesforce FeedItem"""
- feedItems(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceFeedItemConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceFeedItemSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceFeedItemSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of FeedItems to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceFeedItemsConnection
-
- """Collection of Salesforce FlowRecordRelation"""
- flowRecordRelations(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceFlowRecordRelationConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceFlowRecordRelationSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceFlowRecordRelationSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of FlowRecordRelations to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceFlowRecordRelationsConnection
-
- """Collection of Salesforce ProcessInstance"""
- processInstances(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceProcessInstanceConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceProcessInstanceSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceProcessInstanceSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of ProcessInstances to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceProcessInstancesConnection
-
- """Collection of Salesforce Task"""
- tasks(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceTaskConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceTaskSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceTaskSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of Tasks to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceTasksConnection
-
- """Collection of Salesforce TopicAssignment"""
- topicAssignments(
- """
- A filter to be used in determining which values should be returned by the collection.
- """
- filter: SalesforceTopicAssignmentConnectionFilter
-
- """
- Custom field to sort the results by. Only provide one of `sortByField` or `sortByCustomField`.
- """
- sortByCustomField: SalesforceTopicAssignmentSortByFieldEnum
-
- """Field to sort the results by. Defaults to Id."""
- sortByField: SalesforceTopicAssignmentSortByFieldEnum
-
- """
- Whether elements should be sorted in ascending or descending order. Default is ascending.
- """
- orderBy: SalesforceSortOrderBy
-
- """Returns the elements in the list that come after the specified cursor"""
- after: String
-
- """Number of TopicAssignments to fetch. Defaults to 10. Maximum is 60."""
- first: Int
- ): SalesforceTopicAssignmentsConnection
- customFields(
- """
- List of custom fields to return. By default, returns all custom fields.
- """
- fields: [String!]
- ): JSON!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-enum GitHubIssueTimelineItemsItemType {
- """Represents a comment on an Issue."""
- ISSUE_COMMENT
-
- """Represents a mention made by one issue or pull request to another."""
- CROSS_REFERENCED_EVENT
-
- """
- Represents a 'added_to_project' event on a given issue or pull request.
- """
- ADDED_TO_PROJECT_EVENT
-
- """Represents an 'assigned' event on any assignable object."""
- ASSIGNED_EVENT
-
- """Represents a 'closed' event on any `Closable`."""
- CLOSED_EVENT
-
- """Represents a 'comment_deleted' event on a given issue or pull request."""
- COMMENT_DELETED_EVENT
-
- """Represents a 'connected' event on a given issue or pull request."""
- CONNECTED_EVENT
-
- """
- Represents a 'converted_note_to_issue' event on a given issue or pull request.
- """
- CONVERTED_NOTE_TO_ISSUE_EVENT
-
- """Represents a 'demilestoned' event on a given issue or pull request."""
- DEMILESTONED_EVENT
-
- """Represents a 'disconnected' event on a given issue or pull request."""
- DISCONNECTED_EVENT
-
- """Represents a 'labeled' event on a given issue or pull request."""
- LABELED_EVENT
-
- """Represents a 'locked' event on a given issue or pull request."""
- LOCKED_EVENT
-
- """
- Represents a 'marked_as_duplicate' event on a given issue or pull request.
- """
- MARKED_AS_DUPLICATE_EVENT
-
- """Represents a 'mentioned' event on a given issue or pull request."""
- MENTIONED_EVENT
-
- """Represents a 'milestoned' event on a given issue or pull request."""
- MILESTONED_EVENT
-
- """
- Represents a 'moved_columns_in_project' event on a given issue or pull request.
- """
- MOVED_COLUMNS_IN_PROJECT_EVENT
-
- """Represents a 'pinned' event on a given issue or pull request."""
- PINNED_EVENT
-
- """Represents a 'referenced' event on a given `ReferencedSubject`."""
- REFERENCED_EVENT
-
- """
- Represents a 'removed_from_project' event on a given issue or pull request.
- """
- REMOVED_FROM_PROJECT_EVENT
-
- """Represents a 'renamed' event on a given issue or pull request"""
- RENAMED_TITLE_EVENT
-
- """Represents a 'reopened' event on any `Closable`."""
- REOPENED_EVENT
-
- """Represents a 'subscribed' event on a given `Subscribable`."""
- SUBSCRIBED_EVENT
-
- """Represents a 'transferred' event on a given issue or pull request."""
- TRANSFERRED_EVENT
-
- """Represents an 'unassigned' event on any assignable object."""
- UNASSIGNED_EVENT
-
- """Represents an 'unlabeled' event on a given issue or pull request."""
- UNLABELED_EVENT
-
- """Represents an 'unlocked' event on a given issue or pull request."""
- UNLOCKED_EVENT
-
- """Represents a 'user_blocked' event on a given user."""
- USER_BLOCKED_EVENT
-
- """
- Represents an 'unmarked_as_duplicate' event on a given issue or pull request.
- """
- UNMARKED_AS_DUPLICATE_EVENT
-
- """Represents an 'unpinned' event on a given issue or pull request."""
- UNPINNED_EVENT
-
- """Represents an 'unsubscribed' event on a given `Subscribable`."""
- UNSUBSCRIBED_EVENT
-}
-
-"""An edge in a connection."""
-type GitHubIssueTimelineItemsEdge {
- """A cursor for use in pagination."""
- cursor: String!
-
- """The item at the end of the edge."""
- node: GitHubIssueTimelineItems
-}
-
-"""The connection type for IssueTimelineItems."""
-type GitHubIssueTimelineItemsConnection {
- """A list of edges."""
- edges: [GitHubIssueTimelineItemsEdge]
-
- """
- Identifies the count of items after applying `before` and `after` filters.
- """
- filteredCount: Int!
-
- """A list of nodes."""
- nodes: [GitHubIssueTimelineItems]
-
- """
- Identifies the count of items after applying `before`/`after` filters and `first`/`last`/`skip` slicing.
- """
- pageCount: Int!
-
- """Information to aid in pagination."""
- pageInfo: GitHubPageInfo!
-
- """Identifies the total count of items in the connection."""
- totalCount: Int!
-
- """Identifies the date and time when the timeline was last updated."""
- updatedAt: String!
-}
-
-"""Represents a 'base_ref_force_pushed' event on a given pull request."""
-type GitHubBaseRefForcePushedEvent implements OneGraphNode & GitHubNode {
- """Identifies the actor who performed the event."""
- actor: GitHubActor
-
- """Identifies the after commit SHA for the 'base_ref_force_pushed' event."""
- afterCommit: GitHubCommit
-
- """
- Identifies the before commit SHA for the 'base_ref_force_pushed' event.
- """
- beforeCommit: GitHubCommit
-
- """Identifies the date and time when the object was created."""
- createdAt: String!
-
- """"""
- id: ID!
-
- """PullRequest referenced by event."""
- pullRequest: GitHubPullRequest!
-
- """
- Identifies the fully qualified ref name for the 'base_ref_force_pushed' event.
- """
- ref: GitHubRef
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-"""Represents a commit comment thread part of a pull request."""
-type GitHubPullRequestCommitCommentThread implements OneGraphNode & GitHubRepositoryNode & GitHubNode {
- """The comments that exist in this thread."""
- comments(
- """Returns the last _n_ elements from the list."""
- last: Int
-
- """Returns the first _n_ elements from the list."""
- first: Int
-
- """
- Returns the elements in the list that come before the specified cursor.
- """
- before: String
-
- """Returns the elements in the list that come after the specified cursor."""
- after: String
- ): GitHubCommitCommentConnection!
-
- """The commit the comments were made on."""
- commit: GitHubCommit!
-
- """"""
- id: ID!
-
- """The file the comments were made on."""
- path: String
-
- """The position in the diff for the commit that the comment was made on."""
- position: Int
-
- """The pull request this commit comment thread belongs to"""
- pullRequest: GitHubPullRequest!
-
- """The repository associated with this node."""
- repository: GitHubRepository!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-enum GitHubSecurityVulnerabilityOrderField {
- """Order vulnerability by update time"""
- UPDATED_AT
-}
-
-"""Ordering options for security vulnerability connections"""
-input GitHubSecurityVulnerabilityOrder {
- """The ordering direction."""
- direction: GitHubOrderDirection!
-
- """The field to order security vulnerabilities by."""
- field: GitHubSecurityVulnerabilityOrderField!
-}
-
-enum GitHubSecurityAdvisoryEcosystem {
- """Ruby gems hosted at RubyGems.org"""
- RUBYGEMS
-
- """JavaScript packages hosted at npmjs.com"""
- NPM
-
- """Python packages hosted at PyPI.org"""
- PIP
-
- """Java artifacts hosted at the Maven central repository"""
- MAVEN
-
- """.NET packages hosted at the NuGet Gallery"""
- NUGET
-
- """PHP packages hosted at packagist.org"""
- COMPOSER
-}
-
-"""An individual package"""
-type GitHubSecurityAdvisoryPackage {
- """The ecosystem the package belongs to, e.g. RUBYGEMS, NPM"""
- ecosystem: GitHubSecurityAdvisoryEcosystem!
-
- """The package name"""
- name: String!
-}
-
-"""An individual package version"""
-type GitHubSecurityAdvisoryPackageVersion {
- """The package name or version"""
- identifier: String!
-}
-
-"""An individual vulnerability within an Advisory"""
-type GitHubSecurityVulnerability {
- """The Advisory associated with this Vulnerability"""
- advisory: GitHubSecurityAdvisory!
-
- """The first version containing a fix for the vulnerability"""
- firstPatchedVersion: GitHubSecurityAdvisoryPackageVersion
-
- """A description of the vulnerable package"""
- package: GitHubSecurityAdvisoryPackage!
-
- """The severity of the vulnerability within this package"""
- severity: GitHubSecurityAdvisorySeverity!
-
- """When the vulnerability was last updated"""
- updatedAt: String!
-
- """
- A string that describes the vulnerable package versions.
- This string follows a basic syntax with a few forms.
- + `= 0.2.0` denotes a single vulnerable version.
- + `<= 1.0.8` denotes a version range up to and including the specified version
- + `< 0.1.11` denotes a version range up to, but excluding, the specified version
- + `>= 4.3.0, < 4.3.5` denotes a version range with a known minimum and maximum version.
- + `>= 0.0.1` denotes a version range with a known minimum, but no known maximum
-
- """
- vulnerableVersionRange: String!
-}
-
-"""An edge in a connection."""
-type GitHubSecurityVulnerabilityEdge {
- """A cursor for use in pagination."""
- cursor: String!
-
- """The item at the end of the edge."""
- node: GitHubSecurityVulnerability
-}
-
-"""The connection type for SecurityVulnerability."""
-type GitHubSecurityVulnerabilityConnection {
- """A list of edges."""
- edges: [GitHubSecurityVulnerabilityEdge]
-
- """A list of nodes."""
- nodes: [GitHubSecurityVulnerability]
-
- """Information to aid in pagination."""
- pageInfo: GitHubPageInfo!
-
- """Identifies the total count of items in the connection."""
- totalCount: Int!
-}
-
-enum GitHubSecurityAdvisorySeverity {
- """Low."""
- LOW
-
- """Moderate."""
- MODERATE
-
- """High."""
- HIGH
-
- """Critical."""
- CRITICAL
-}
-
-"""A GitHub Security Advisory Reference"""
-type GitHubSecurityAdvisoryReference {
- """A publicly accessible reference"""
- url: String!
-}
-
-"""A GitHub Security Advisory Identifier"""
-type GitHubSecurityAdvisoryIdentifier {
- """The identifier type, e.g. GHSA, CVE"""
- type: String!
-
- """The identifier"""
- value: String!
-}
-
-"""A GitHub Security Advisory"""
-type GitHubSecurityAdvisory implements OneGraphNode & GitHubNode {
- """Identifies the primary key from the database."""
- databaseId: Int
-
- """This is a long plaintext description of the advisory"""
- description: String!
-
- """The GitHub Security Advisory ID"""
- ghsaId: String!
-
- """"""
- id: ID!
-
- """A list of identifiers for this advisory"""
- identifiers: [GitHubSecurityAdvisoryIdentifier!]!
-
- """The organization that originated the advisory"""
- origin: String!
-
- """The permalink for the advisory"""
- permalink: String
-
- """When the advisory was published"""
- publishedAt: String!
-
- """A list of references for this advisory"""
- references: [GitHubSecurityAdvisoryReference!]!
-
- """The severity of the advisory"""
- severity: GitHubSecurityAdvisorySeverity!
-
- """A short plaintext summary of the advisory"""
- summary: String!
-
- """When the advisory was last updated"""
- updatedAt: String!
-
- """Vulnerabilities associated with this Advisory"""
- vulnerabilities(
- """Returns the last _n_ elements from the list."""
- last: Int
-
- """Returns the first _n_ elements from the list."""
- first: Int
-
- """
- Returns the elements in the list that come before the specified cursor.
- """
- before: String
-
- """Returns the elements in the list that come after the specified cursor."""
- after: String
-
- """A list of severities to filter vulnerabilities by."""
- severities: [GitHubSecurityAdvisorySeverity!]
-
- """A package name to filter vulnerabilities by."""
- package: String
-
- """An ecosystem to filter vulnerabilities by."""
- ecosystem: GitHubSecurityAdvisoryEcosystem
-
- """Ordering options for the returned topics."""
- orderBy: GitHubSecurityVulnerabilityOrder
- ): GitHubSecurityVulnerabilityConnection!
-
- """When the advisory was withdrawn, if it has been withdrawn"""
- withdrawnAt: String
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-"""A alert for a repository with an affected vulnerability."""
-type GitHubRepositoryVulnerabilityAlert implements OneGraphNode & GitHubRepositoryNode & GitHubNode {
- """The affected version"""
- affectedRange: String! @deprecated(reason: "advisory specific fields are being removed from repositoryVulnerabilityAlert objects Use `securityVulnerability.vulnerableVersionRange` instead. Removal on 2019-10-01 UTC.")
-
- """When was the alert created?"""
- createdAt: String!
-
- """The reason the alert was dismissed"""
- dismissReason: String
-
- """When was the alert dimissed?"""
- dismissedAt: String
-
- """The user who dismissed the alert"""
- dismisser: GitHubUser
-
- """The external identifier for the vulnerability"""
- externalIdentifier: String @deprecated(reason: "advisory specific fields are being removed from repositoryVulnerabilityAlert objects Use `securityAdvisory.identifiers` instead. Removal on 2019-10-01 UTC.")
-
- """The external reference for the vulnerability"""
- externalReference: String! @deprecated(reason: "advisory specific fields are being removed from repositoryVulnerabilityAlert objects Use `securityAdvisory.references` instead. Removal on 2019-10-01 UTC.")
-
- """The fixed version"""
- fixedIn: String @deprecated(reason: "advisory specific fields are being removed from repositoryVulnerabilityAlert objects Use `securityVulnerability.firstPatchedVersion` instead. Removal on 2019-10-01 UTC.")
-
- """"""
- id: ID!
-
- """The affected package"""
- packageName: String! @deprecated(reason: "advisory specific fields are being removed from repositoryVulnerabilityAlert objects Use `securityVulnerability.package` instead. Removal on 2019-10-01 UTC.")
-
- """The associated repository"""
- repository: GitHubRepository!
-
- """The associated security advisory"""
- securityAdvisory: GitHubSecurityAdvisory
-
- """The associated security vulnerablity"""
- securityVulnerability: GitHubSecurityVulnerability
-
- """The vulnerable manifest filename"""
- vulnerableManifestFilename: String!
-
- """The vulnerable manifest path"""
- vulnerableManifestPath: String!
-
- """The vulnerable requirements"""
- vulnerableRequirements: String
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-"""Represents a object that belongs to a repository."""
-interface GitHubRepositoryNode {
- """The repository associated with this node."""
- repository: GitHubRepository!
-}
-
-"""A thread of comments on a commit."""
-type GitHubCommitCommentThread implements OneGraphNode & GitHubRepositoryNode & GitHubNode {
- """The comments that exist in this thread."""
- comments(
- """Returns the last _n_ elements from the list."""
- last: Int
-
- """Returns the first _n_ elements from the list."""
- first: Int
-
- """
- Returns the elements in the list that come before the specified cursor.
- """
- before: String
-
- """Returns the elements in the list that come after the specified cursor."""
- after: String
- ): GitHubCommitCommentConnection!
-
- """The commit the comments were made on."""
- commit: GitHubCommit
-
- """"""
- id: ID!
-
- """The file the comments were made on."""
- path: String
-
- """The position in the diff for the commit that the comment was made on."""
- position: Int
-
- """The repository associated with this node."""
- repository: GitHubRepository!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-"""Represents a 'deployed' event on a given pull request."""
-type GitHubDeployedEvent implements OneGraphNode & GitHubNode {
- """Identifies the actor who performed the event."""
- actor: GitHubActor
-
- """Identifies the date and time when the object was created."""
- createdAt: String!
-
- """Identifies the primary key from the database."""
- databaseId: Int
-
- """The deployment associated with the 'deployed' event."""
- deployment: GitHubDeployment!
-
- """"""
- id: ID!
-
- """PullRequest referenced by event."""
- pullRequest: GitHubPullRequest!
-
- """The ref associated with the 'deployed' event."""
- ref: GitHubRef
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-enum GitHubDeploymentStatusState {
- """The deployment is pending."""
- PENDING
-
- """The deployment was successful."""
- SUCCESS
-
- """The deployment has failed."""
- FAILURE
-
- """The deployment is inactive."""
- INACTIVE
-
- """The deployment experienced an error."""
- ERROR
-
- """The deployment is queued"""
- QUEUED
-
- """The deployment is in progress."""
- IN_PROGRESS
-}
-
-"""An edge in a connection."""
-type GitHubDeploymentStatusEdge {
- """A cursor for use in pagination."""
- cursor: String!
-
- """The item at the end of the edge."""
- node: GitHubDeploymentStatus
-}
-
-"""The connection type for DeploymentStatus."""
-type GitHubDeploymentStatusConnection {
- """A list of edges."""
- edges: [GitHubDeploymentStatusEdge]
-
- """A list of nodes."""
- nodes: [GitHubDeploymentStatus]
-
- """Information to aid in pagination."""
- pageInfo: GitHubPageInfo!
-
- """Identifies the total count of items in the connection."""
- totalCount: Int!
-}
-
-enum GitHubDeploymentState {
- """The pending deployment was not updated after 30 minutes."""
- ABANDONED
-
- """The deployment is currently active."""
- ACTIVE
-
- """An inactive transient deployment."""
- DESTROYED
-
- """The deployment experienced an error."""
- ERROR
-
- """The deployment has failed."""
- FAILURE
-
- """The deployment is inactive."""
- INACTIVE
-
- """The deployment is pending."""
- PENDING
-
- """The deployment has queued"""
- QUEUED
-
- """The deployment is in progress."""
- IN_PROGRESS
-}
-
-"""Represents triggered deployment instance."""
-type GitHubDeployment implements OneGraphNode & GitHubNode {
- """Identifies the commit sha of the deployment."""
- commit: GitHubCommit
-
- """
- Identifies the oid of the deployment commit, even if the commit has been deleted.
- """
- commitOid: String!
-
- """Identifies the date and time when the object was created."""
- createdAt: String!
-
- """Identifies the actor who triggered the deployment."""
- creator: GitHubActor!
-
- """Identifies the primary key from the database."""
- databaseId: Int
-
- """The deployment description."""
- description: String
-
- """The latest environment to which this deployment was made."""
- environment: String
-
- """"""
- id: ID!
-
- """The latest environment to which this deployment was made."""
- latestEnvironment: String
-
- """The latest status of this deployment."""
- latestStatus: GitHubDeploymentStatus
-
- """The original environment to which this deployment was made."""
- originalEnvironment: String
-
- """Extra information that a deployment system might need."""
- payload: String
-
- """
- Identifies the Ref of the deployment, if the deployment was created by ref.
- """
- ref: GitHubRef
-
- """Identifies the repository associated with the deployment."""
- repository: GitHubRepository!
-
- """The current state of the deployment."""
- state: GitHubDeploymentState
-
- """A list of statuses associated with the deployment."""
- statuses(
- """Returns the last _n_ elements from the list."""
- last: Int
-
- """Returns the first _n_ elements from the list."""
- first: Int
-
- """
- Returns the elements in the list that come before the specified cursor.
- """
- before: String
-
- """Returns the elements in the list that come after the specified cursor."""
- after: String
- ): GitHubDeploymentStatusConnection
-
- """The deployment task."""
- task: String
-
- """Identifies the date and time when the object was last updated."""
- updatedAt: String!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-"""Describes the status of a given deployment attempt."""
-type GitHubDeploymentStatus implements OneGraphNode & GitHubNode {
- """Identifies the date and time when the object was created."""
- createdAt: String!
-
- """Identifies the actor who triggered the deployment."""
- creator: GitHubActor!
-
- """Identifies the deployment associated with status."""
- deployment: GitHubDeployment!
-
- """Identifies the description of the deployment."""
- description: String
-
- """Identifies the environment URL of the deployment."""
- environmentUrl: String
-
- """"""
- id: ID!
-
- """Identifies the log URL of the deployment."""
- logUrl: String
-
- """Identifies the current state of the deployment."""
- state: GitHubDeploymentStatusState!
-
- """Identifies the date and time when the object was last updated."""
- updatedAt: String!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-"""
-Represents a 'deployment_environment_changed' event on a given pull request.
-"""
-type GitHubDeploymentEnvironmentChangedEvent implements OneGraphNode & GitHubNode {
- """Identifies the actor who performed the event."""
- actor: GitHubActor
-
- """Identifies the date and time when the object was created."""
- createdAt: String!
-
- """The deployment status that updated the deployment environment."""
- deploymentStatus: GitHubDeploymentStatus!
-
- """"""
- id: ID!
-
- """PullRequest referenced by event."""
- pullRequest: GitHubPullRequest!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-"""Represents a 'head_ref_deleted' event on a given pull request."""
-type GitHubHeadRefDeletedEvent implements OneGraphNode & GitHubNode {
- """Identifies the actor who performed the event."""
- actor: GitHubActor
-
- """Identifies the date and time when the object was created."""
- createdAt: String!
-
- """Identifies the Ref associated with the `head_ref_deleted` event."""
- headRef: GitHubRef
-
- """
- Identifies the name of the Ref associated with the `head_ref_deleted` event.
- """
- headRefName: String!
-
- """"""
- id: ID!
-
- """PullRequest referenced by event."""
- pullRequest: GitHubPullRequest!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-"""Represents a 'head_ref_force_pushed' event on a given pull request."""
-type GitHubHeadRefForcePushedEvent implements OneGraphNode & GitHubNode {
- """Identifies the actor who performed the event."""
- actor: GitHubActor
-
- """Identifies the after commit SHA for the 'head_ref_force_pushed' event."""
- afterCommit: GitHubCommit
-
- """
- Identifies the before commit SHA for the 'head_ref_force_pushed' event.
- """
- beforeCommit: GitHubCommit
-
- """Identifies the date and time when the object was created."""
- createdAt: String!
-
- """"""
- id: ID!
-
- """PullRequest referenced by event."""
- pullRequest: GitHubPullRequest!
-
- """
- Identifies the fully qualified ref name for the 'head_ref_force_pushed' event.
- """
- ref: GitHubRef
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-"""Represents a 'head_ref_restored' event on a given pull request."""
-type GitHubHeadRefRestoredEvent implements OneGraphNode & GitHubNode {
- """Identifies the actor who performed the event."""
- actor: GitHubActor
-
- """Identifies the date and time when the object was created."""
- createdAt: String!
-
- """"""
- id: ID!
-
- """PullRequest referenced by event."""
- pullRequest: GitHubPullRequest!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-"""Represents a 'merged' event on a given pull request."""
-type GitHubMergedEvent implements OneGraphNode & GitHubUniformResourceLocatable & GitHubNode {
- """Identifies the actor who performed the event."""
- actor: GitHubActor
-
- """Identifies the commit associated with the `merge` event."""
- commit: GitHubCommit
-
- """Identifies the date and time when the object was created."""
- createdAt: String!
-
- """"""
- id: ID!
-
- """Identifies the Ref associated with the `merge` event."""
- mergeRef: GitHubRef
-
- """Identifies the name of the Ref associated with the `merge` event."""
- mergeRefName: String!
-
- """PullRequest referenced by event."""
- pullRequest: GitHubPullRequest!
-
- """The HTTP path for this merged event."""
- resourcePath: String!
-
- """The HTTP URL for this merged event."""
- url: String!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-enum GitHubDiffSide {
- """The left side of the diff."""
- LEFT
-
- """The right side of the diff."""
- RIGHT
-}
-
-"""A threaded list of comments for a given pull request."""
-type GitHubPullRequestReviewThread implements OneGraphNode & GitHubNode {
- """A list of pull request comments associated with the thread."""
- comments(
- """Skips the first _n_ elements in the list."""
- skip: Int
-
- """Returns the last _n_ elements from the list."""
- last: Int
-
- """Returns the first _n_ elements from the list."""
- first: Int
-
- """
- Returns the elements in the list that come before the specified cursor.
- """
- before: String
-
- """Returns the elements in the list that come after the specified cursor."""
- after: String
- ): GitHubPullRequestReviewCommentConnection!
-
- """The side of the diff on which this thread was placed."""
- diffSide: GitHubDiffSide!
-
- """"""
- id: ID!
-
- """Whether this thread has been resolved"""
- isResolved: Boolean!
-
- """The line in the file to which this thread refers"""
- line: Int
-
- """The original line in the file to which this thread refers."""
- originalLine: Int
-
- """
- The original start line in the file to which this thread refers (multi-line only).
- """
- originalStartLine: Int
-
- """Identifies the pull request associated with this thread."""
- pullRequest: GitHubPullRequest!
-
- """Identifies the repository associated with this thread."""
- repository: GitHubRepository!
-
- """The user who resolved this thread"""
- resolvedBy: GitHubUser
-
- """
- The side of the diff that the first line of the thread starts on (multi-line only)
- """
- startDiffSide: GitHubDiffSide
-
- """
- The start line in the file to which this thread refers (multi-line only)
- """
- startLine: Int
-
- """Whether or not the viewer can resolve this thread"""
- viewerCanResolve: Boolean!
-
- """Whether or not the viewer can unresolve this thread"""
- viewerCanUnresolve: Boolean!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-"""Represents an 'review_request_removed' event on a given pull request."""
-type GitHubReviewRequestRemovedEvent implements OneGraphNode & GitHubNode {
- """Identifies the actor who performed the event."""
- actor: GitHubActor
-
- """Identifies the date and time when the object was created."""
- createdAt: String!
-
- """"""
- id: ID!
-
- """PullRequest referenced by event."""
- pullRequest: GitHubPullRequest!
-
- """Identifies the reviewer whose review request was removed."""
- requestedReviewer: GitHubRequestedReviewer
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-"""Represents an 'review_requested' event on a given pull request."""
-type GitHubReviewRequestedEvent implements OneGraphNode & GitHubNode {
- """Identifies the actor who performed the event."""
- actor: GitHubActor
-
- """Identifies the date and time when the object was created."""
- createdAt: String!
-
- """"""
- id: ID!
-
- """PullRequest referenced by event."""
- pullRequest: GitHubPullRequest!
-
- """Identifies the reviewer whose review was requested."""
- requestedReviewer: GitHubRequestedReviewer
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-"""
-Represents a 'added_to_project' event on a given issue or pull request.
-"""
-type GitHubAddedToProjectEvent implements OneGraphNode & GitHubNode {
- """Identifies the actor who performed the event."""
- actor: GitHubActor
-
- """Identifies the date and time when the object was created."""
- createdAt: String!
-
- """Identifies the primary key from the database."""
- databaseId: Int
-
- """"""
- id: ID!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-"""Represents an 'assigned' event on any assignable object."""
-type GitHubAssignedEvent implements OneGraphNode & GitHubNode {
- """Identifies the actor who performed the event."""
- actor: GitHubActor
-
- """Identifies the assignable associated with the event."""
- assignable: GitHubAssignable!
-
- """Identifies the user or mannequin that was assigned."""
- assignee: GitHubAssignee
-
- """Identifies the date and time when the object was created."""
- createdAt: String!
-
- """"""
- id: ID!
-
- """Identifies the user who was assigned."""
- user: GitHubUser @deprecated(reason: "Assignees can now be mannequins. Use the `assignee` field instead. Removal on 2020-01-01 UTC.")
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-"""The object which triggered a `ClosedEvent`."""
-union GitHubCloser = GitHubPullRequest | GitHubCommit
-
-"""Represents a 'closed' event on any `Closable`."""
-type GitHubClosedEvent implements OneGraphNode & GitHubUniformResourceLocatable & GitHubNode {
- """Identifies the actor who performed the event."""
- actor: GitHubActor
-
- """Object that was closed."""
- closable: GitHubClosable!
-
- """Object which triggered the creation of this event."""
- closer: GitHubCloser
-
- """Identifies the date and time when the object was created."""
- createdAt: String!
-
- """"""
- id: ID!
-
- """The HTTP path for this closed event."""
- resourcePath: String!
-
- """The HTTP URL for this closed event."""
- url: String!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-"""Represents a 'comment_deleted' event on a given issue or pull request."""
-type GitHubCommentDeletedEvent implements OneGraphNode & GitHubNode {
- """Identifies the actor who performed the event."""
- actor: GitHubActor
-
- """Identifies the date and time when the object was created."""
- createdAt: String!
-
- """Identifies the primary key from the database."""
- databaseId: Int
-
- """"""
- id: ID!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-"""Represents a 'connected' event on a given issue or pull request."""
-type GitHubConnectedEvent implements OneGraphNode & GitHubNode {
- """Identifies the actor who performed the event."""
- actor: GitHubActor
-
- """Identifies the date and time when the object was created."""
- createdAt: String!
-
- """"""
- id: ID!
-
- """Reference originated in a different repository."""
- isCrossRepository: Boolean!
-
- """Issue or pull request that made the reference."""
- source: GitHubReferencedSubject!
-
- """Issue or pull request which was connected."""
- subject: GitHubReferencedSubject!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-"""
-Represents a 'converted_note_to_issue' event on a given issue or pull request.
-"""
-type GitHubConvertedNoteToIssueEvent implements OneGraphNode & GitHubNode {
- """Identifies the actor who performed the event."""
- actor: GitHubActor
-
- """Identifies the date and time when the object was created."""
- createdAt: String!
-
- """Identifies the primary key from the database."""
- databaseId: Int
-
- """"""
- id: ID!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-"""Represents a mention made by one issue or pull request to another."""
-type GitHubCrossReferencedEvent implements OneGraphNode & GitHubUniformResourceLocatable & GitHubNode {
- """Identifies the actor who performed the event."""
- actor: GitHubActor
-
- """Identifies the date and time when the object was created."""
- createdAt: String!
-
- """"""
- id: ID!
-
- """Reference originated in a different repository."""
- isCrossRepository: Boolean!
-
- """Identifies when the reference was made."""
- referencedAt: String!
-
- """The HTTP path for this pull request."""
- resourcePath: String!
-
- """Issue or pull request that made the reference."""
- source: GitHubReferencedSubject!
-
- """Issue or pull request to which the reference was made."""
- target: GitHubReferencedSubject!
-
- """The HTTP URL for this pull request."""
- url: String!
-
- """Checks if the target will be closed when the source is merged."""
- willCloseTarget: Boolean!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-"""Represents a 'demilestoned' event on a given issue or pull request."""
-type GitHubDemilestonedEvent implements OneGraphNode & GitHubNode {
- """Identifies the actor who performed the event."""
- actor: GitHubActor
-
- """Identifies the date and time when the object was created."""
- createdAt: String!
-
- """"""
- id: ID!
-
- """
- Identifies the milestone title associated with the 'demilestoned' event.
- """
- milestoneTitle: String!
-
- """Object referenced by event."""
- subject: GitHubMilestoneItem!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-"""Represents a 'disconnected' event on a given issue or pull request."""
-type GitHubDisconnectedEvent implements OneGraphNode & GitHubNode {
- """Identifies the actor who performed the event."""
- actor: GitHubActor
-
- """Identifies the date and time when the object was created."""
- createdAt: String!
-
- """"""
- id: ID!
-
- """Reference originated in a different repository."""
- isCrossRepository: Boolean!
-
- """Issue or pull request from which the issue was disconnected."""
- source: GitHubReferencedSubject!
-
- """Issue or pull request which was disconnected."""
- subject: GitHubReferencedSubject!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-"""Represents a 'labeled' event on a given issue or pull request."""
-type GitHubLabeledEvent implements OneGraphNode & GitHubNode {
- """Identifies the actor who performed the event."""
- actor: GitHubActor
-
- """Identifies the date and time when the object was created."""
- createdAt: String!
-
- """"""
- id: ID!
-
- """Identifies the label associated with the 'labeled' event."""
- label: GitHubLabel!
-
- """Identifies the `Labelable` associated with the event."""
- labelable: GitHubLabelable!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-"""Represents a 'locked' event on a given issue or pull request."""
-type GitHubLockedEvent implements OneGraphNode & GitHubNode {
- """Identifies the actor who performed the event."""
- actor: GitHubActor
-
- """Identifies the date and time when the object was created."""
- createdAt: String!
-
- """"""
- id: ID!
-
- """Reason that the conversation was locked (optional)."""
- lockReason: GitHubLockReason
-
- """Object that was locked."""
- lockable: GitHubLockable!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-"""
-Represents a 'marked_as_duplicate' event on a given issue or pull request.
-"""
-type GitHubMarkedAsDuplicateEvent implements OneGraphNode & GitHubNode {
- """Identifies the actor who performed the event."""
- actor: GitHubActor
-
- """Identifies the date and time when the object was created."""
- createdAt: String!
-
- """"""
- id: ID!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-"""Represents a 'mentioned' event on a given issue or pull request."""
-type GitHubMentionedEvent implements OneGraphNode & GitHubNode {
- """Identifies the actor who performed the event."""
- actor: GitHubActor
-
- """Identifies the date and time when the object was created."""
- createdAt: String!
-
- """Identifies the primary key from the database."""
- databaseId: Int
-
- """"""
- id: ID!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-"""Types that can be inside a Milestone."""
-union GitHubMilestoneItem = GitHubPullRequest | GitHubIssue
-
-"""Represents a 'milestoned' event on a given issue or pull request."""
-type GitHubMilestonedEvent implements OneGraphNode & GitHubNode {
- """Identifies the actor who performed the event."""
- actor: GitHubActor
-
- """Identifies the date and time when the object was created."""
- createdAt: String!
-
- """"""
- id: ID!
-
- """Identifies the milestone title associated with the 'milestoned' event."""
- milestoneTitle: String!
-
- """Object referenced by event."""
- subject: GitHubMilestoneItem!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-"""
-Represents a 'moved_columns_in_project' event on a given issue or pull request.
-"""
-type GitHubMovedColumnsInProjectEvent implements OneGraphNode & GitHubNode {
- """Identifies the actor who performed the event."""
- actor: GitHubActor
-
- """Identifies the date and time when the object was created."""
- createdAt: String!
-
- """Identifies the primary key from the database."""
- databaseId: Int
-
- """"""
- id: ID!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-"""Represents a 'pinned' event on a given issue or pull request."""
-type GitHubPinnedEvent implements OneGraphNode & GitHubNode {
- """Identifies the actor who performed the event."""
- actor: GitHubActor
-
- """Identifies the date and time when the object was created."""
- createdAt: String!
-
- """"""
- id: ID!
-
- """Identifies the issue associated with the event."""
- issue: GitHubIssue!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-"""Any referencable object"""
-union GitHubReferencedSubject = GitHubPullRequest | GitHubIssue
-
-"""Represents a 'referenced' event on a given `ReferencedSubject`."""
-type GitHubReferencedEvent implements OneGraphNode & GitHubNode {
- """Identifies the actor who performed the event."""
- actor: GitHubActor
-
- """Identifies the commit associated with the 'referenced' event."""
- commit: GitHubCommit
-
- """Identifies the repository associated with the 'referenced' event."""
- commitRepository: GitHubRepository!
-
- """Identifies the date and time when the object was created."""
- createdAt: String!
-
- """"""
- id: ID!
-
- """Reference originated in a different repository."""
- isCrossRepository: Boolean!
-
- """
- Checks if the commit message itself references the subject. Can be false in the case of a commit comment reference.
- """
- isDirectReference: Boolean!
-
- """Object referenced by event."""
- subject: GitHubReferencedSubject!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-"""
-Represents a 'removed_from_project' event on a given issue or pull request.
-"""
-type GitHubRemovedFromProjectEvent implements OneGraphNode & GitHubNode {
- """Identifies the actor who performed the event."""
- actor: GitHubActor
-
- """Identifies the date and time when the object was created."""
- createdAt: String!
-
- """Identifies the primary key from the database."""
- databaseId: Int
-
- """"""
- id: ID!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-"""An object which has a renamable title"""
-union GitHubRenamedTitleSubject = GitHubPullRequest | GitHubIssue
-
-"""Represents a 'renamed' event on a given issue or pull request"""
-type GitHubRenamedTitleEvent implements OneGraphNode & GitHubNode {
- """Identifies the actor who performed the event."""
- actor: GitHubActor
-
- """Identifies the date and time when the object was created."""
- createdAt: String!
-
- """Identifies the current title of the issue or pull request."""
- currentTitle: String!
-
- """"""
- id: ID!
-
- """Identifies the previous title of the issue or pull request."""
- previousTitle: String!
-
- """Subject that was renamed."""
- subject: GitHubRenamedTitleSubject!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-"""Represents a 'reopened' event on any `Closable`."""
-type GitHubReopenedEvent implements OneGraphNode & GitHubNode {
- """Identifies the actor who performed the event."""
- actor: GitHubActor
-
- """Object that was reopened."""
- closable: GitHubClosable!
-
- """Identifies the date and time when the object was created."""
- createdAt: String!
-
- """"""
- id: ID!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-"""Represents a 'subscribed' event on a given `Subscribable`."""
-type GitHubSubscribedEvent implements OneGraphNode & GitHubNode {
- """Identifies the actor who performed the event."""
- actor: GitHubActor
-
- """Identifies the date and time when the object was created."""
- createdAt: String!
-
- """"""
- id: ID!
-
- """Object referenced by event."""
- subscribable: GitHubSubscribable!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-"""Represents a 'transferred' event on a given issue or pull request."""
-type GitHubTransferredEvent implements OneGraphNode & GitHubNode {
- """Identifies the actor who performed the event."""
- actor: GitHubActor
-
- """Identifies the date and time when the object was created."""
- createdAt: String!
-
- """The repository this came from"""
- fromRepository: GitHubRepository
-
- """"""
- id: ID!
-
- """Identifies the issue associated with the event."""
- issue: GitHubIssue!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-"""Types that can be assigned to issues."""
-union GitHubAssignee = GitHubUser | GitHubOrganization | GitHubMannequin | GitHubBot
-
-"""An object that can have users assigned to it."""
-interface GitHubAssignable {
- """A list of Users assigned to this object."""
- assignees(
- """Returns the last _n_ elements from the list."""
- last: Int
-
- """Returns the first _n_ elements from the list."""
- first: Int
-
- """
- Returns the elements in the list that come before the specified cursor.
- """
- before: String
-
- """Returns the elements in the list that come after the specified cursor."""
- after: String
- ): GitHubUserConnection!
-}
-
-"""Represents an 'unassigned' event on any assignable object."""
-type GitHubUnassignedEvent implements OneGraphNode & GitHubNode {
- """Identifies the actor who performed the event."""
- actor: GitHubActor
-
- """Identifies the assignable associated with the event."""
- assignable: GitHubAssignable!
-
- """Identifies the user or mannequin that was unassigned."""
- assignee: GitHubAssignee
-
- """Identifies the date and time when the object was created."""
- createdAt: String!
-
- """"""
- id: ID!
-
- """Identifies the subject (user) who was unassigned."""
- user: GitHubUser @deprecated(reason: "Assignees can now be mannequins. Use the `assignee` field instead. Removal on 2020-01-01 UTC.")
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-"""
-Represents an 'unmarked_as_duplicate' event on a given issue or pull request.
-"""
-type GitHubUnmarkedAsDuplicateEvent implements OneGraphNode & GitHubNode {
- """Identifies the actor who performed the event."""
- actor: GitHubActor
-
- """Identifies the date and time when the object was created."""
- createdAt: String!
-
- """"""
- id: ID!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-"""Represents an 'unpinned' event on a given issue or pull request."""
-type GitHubUnpinnedEvent implements OneGraphNode & GitHubNode {
- """Identifies the actor who performed the event."""
- actor: GitHubActor
-
- """Identifies the date and time when the object was created."""
- createdAt: String!
-
- """"""
- id: ID!
-
- """Identifies the issue associated with the event."""
- issue: GitHubIssue!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-"""An item in an issue timeline"""
-union GitHubIssueTimelineItems = GitHubUserBlockedEvent | GitHubUnsubscribedEvent | GitHubUnpinnedEvent | GitHubUnmarkedAsDuplicateEvent | GitHubUnlockedEvent | GitHubUnlabeledEvent | GitHubUnassignedEvent | GitHubTransferredEvent | GitHubSubscribedEvent | GitHubReopenedEvent | GitHubRenamedTitleEvent | GitHubRemovedFromProjectEvent | GitHubReferencedEvent | GitHubPinnedEvent | GitHubMovedColumnsInProjectEvent | GitHubMilestonedEvent | GitHubMentionedEvent | GitHubMarkedAsDuplicateEvent | GitHubLockedEvent | GitHubLabeledEvent | GitHubIssueComment | GitHubDisconnectedEvent | GitHubDemilestonedEvent | GitHubCrossReferencedEvent | GitHubConvertedNoteToIssueEvent | GitHubConnectedEvent | GitHubCommentDeletedEvent | GitHubClosedEvent | GitHubAssignedEvent | GitHubAddedToProjectEvent
-
-"""An object that can have labels assigned to it."""
-interface GitHubLabelable {
- """A list of labels associated with the object."""
- labels(
- """Returns the last _n_ elements from the list."""
- last: Int
-
- """Returns the first _n_ elements from the list."""
- first: Int
-
- """
- Returns the elements in the list that come before the specified cursor.
- """
- before: String
-
- """Returns the elements in the list that come after the specified cursor."""
- after: String
-
- """Ordering options for labels returned from the connection."""
- orderBy: GitHubLabelOrder
- ): GitHubLabelConnection
-}
-
-"""Represents an 'unlabeled' event on a given issue or pull request."""
-type GitHubUnlabeledEvent implements OneGraphNode & GitHubNode {
- """Identifies the actor who performed the event."""
- actor: GitHubActor
-
- """Identifies the date and time when the object was created."""
- createdAt: String!
-
- """"""
- id: ID!
-
- """Identifies the label associated with the 'unlabeled' event."""
- label: GitHubLabel!
-
- """Identifies the `Labelable` associated with the event."""
- labelable: GitHubLabelable!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-"""An item in an pull request timeline"""
-union GitHubPullRequestTimelineItem = GitHubUserBlockedEvent | GitHubUnsubscribedEvent | GitHubUnlockedEvent | GitHubUnlabeledEvent | GitHubUnassignedEvent | GitHubSubscribedEvent | GitHubReviewRequestedEvent | GitHubReviewRequestRemovedEvent | GitHubReviewDismissedEvent | GitHubReopenedEvent | GitHubRenamedTitleEvent | GitHubReferencedEvent | GitHubPullRequestReviewThread | GitHubPullRequestReviewComment | GitHubPullRequestReview | GitHubMilestonedEvent | GitHubMergedEvent | GitHubLockedEvent | GitHubLabeledEvent | GitHubIssueComment | GitHubHeadRefRestoredEvent | GitHubHeadRefForcePushedEvent | GitHubHeadRefDeletedEvent | GitHubDeploymentEnvironmentChangedEvent | GitHubDeployedEvent | GitHubDemilestonedEvent | GitHubCrossReferencedEvent | GitHubCommitCommentThread | GitHubCommit | GitHubClosedEvent | GitHubBaseRefForcePushedEvent | GitHubAssignedEvent
-
-"""An object that can be locked."""
-interface GitHubLockable {
- """Reason that the conversation was locked."""
- activeLockReason: GitHubLockReason
-
- """`true` if the object is locked"""
- locked: Boolean!
-}
-
-"""Represents an 'unlocked' event on a given issue or pull request."""
-type GitHubUnlockedEvent implements OneGraphNode & GitHubNode {
- """Identifies the actor who performed the event."""
- actor: GitHubActor
-
- """Identifies the date and time when the object was created."""
- createdAt: String!
-
- """"""
- id: ID!
-
- """Object that was unlocked."""
- lockable: GitHubLockable!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-"""An item in an issue timeline"""
-union GitHubIssueTimelineItem = GitHubUserBlockedEvent | GitHubUnsubscribedEvent | GitHubUnlockedEvent | GitHubUnlabeledEvent | GitHubUnassignedEvent | GitHubTransferredEvent | GitHubSubscribedEvent | GitHubReopenedEvent | GitHubRenamedTitleEvent | GitHubReferencedEvent | GitHubMilestonedEvent | GitHubLockedEvent | GitHubLabeledEvent | GitHubIssueComment | GitHubDemilestonedEvent | GitHubCrossReferencedEvent | GitHubCommit | GitHubClosedEvent | GitHubAssignedEvent
-
-"""An edge in a connection."""
-type GitHubIssueTimelineItemEdge {
- """A cursor for use in pagination."""
- cursor: String!
-
- """The item at the end of the edge."""
- node: GitHubIssueTimelineItem
-}
-
-"""The connection type for IssueTimelineItem."""
-type GitHubIssueTimelineConnection {
- """A list of edges."""
- edges: [GitHubIssueTimelineItemEdge]
-
- """A list of nodes."""
- nodes: [GitHubIssueTimelineItem]
-
- """Information to aid in pagination."""
- pageInfo: GitHubPageInfo!
-
- """Identifies the total count of items in the connection."""
- totalCount: Int!
-}
-
-"""Represents a comment."""
-interface GitHubComment {
- """The actor who authored the comment."""
- author: GitHubActor
-
- """Author's association with the subject of the comment."""
- authorAssociation: GitHubCommentAuthorAssociation!
-
- """The body as Markdown."""
- body: String!
-
- """The body rendered to HTML."""
- bodyHTML: String!
-
- """The body rendered to text."""
- bodyText: String!
-
- """Identifies the date and time when the object was created."""
- createdAt: String!
-
- """Check if this comment was created via an email reply."""
- createdViaEmail: Boolean!
-
- """The actor who edited the comment."""
- editor: GitHubActor
-
- """"""
- id: ID!
-
- """
- Check if this comment was edited and includes an edit with the creation data
- """
- includesCreatedEdit: Boolean!
-
- """The moment the editor made the last edit"""
- lastEditedAt: String
-
- """Identifies when the comment was published at."""
- publishedAt: String
-
- """Identifies the date and time when the object was last updated."""
- updatedAt: String!
-
- """A list of edits to this content."""
- userContentEdits(
- """Returns the last _n_ elements from the list."""
- last: Int
-
- """Returns the first _n_ elements from the list."""
- first: Int
-
- """
- Returns the elements in the list that come before the specified cursor.
- """
- before: String
-
- """Returns the elements in the list that come after the specified cursor."""
- after: String
- ): GitHubUserContentEditConnection
-
- """Did the viewer author this comment."""
- viewerDidAuthor: Boolean!
-}
-
-"""Entities that can be deleted."""
-interface GitHubDeletable {
- """Check if the current viewer can delete this object."""
- viewerCanDelete: Boolean!
-}
-
-"""Entities that can be minimized."""
-interface GitHubMinimizable {
- """Returns whether or not a comment has been minimized."""
- isMinimized: Boolean!
-
- """Returns why the comment was minimized."""
- minimizedReason: String
-
- """Check if the current viewer can minimize this object."""
- viewerCanMinimize: Boolean!
-}
-
-"""Types that can be pinned to a profile page."""
-union GitHubPinnableItem = GitHubRepository | GitHubGist
-
-"""A topic aggregates entities that are related to a subject."""
-type GitHubTopic implements OneGraphNode & GitHubStarrable & GitHubNode {
- """"""
- id: ID!
-
- """The topic's name."""
- name: String!
-
- """
- A list of related topics, including aliases of this topic, sorted with the most relevant
- first. Returns up to 10 Topics.
-
- """
- relatedTopics(
- """How many topics to return."""
- first: Int
- ): [GitHubTopic!]!
-
- """A list of users who have starred this starrable."""
- stargazers(
- """Order for connection"""
- orderBy: GitHubStarOrder
-
- """Returns the last _n_ elements from the list."""
- last: Int
-
- """Returns the first _n_ elements from the list."""
- first: Int
-
- """
- Returns the elements in the list that come before the specified cursor.
- """
- before: String
-
- """Returns the elements in the list that come after the specified cursor."""
- after: String
- ): GitHubStargazerConnection!
-
- """
- Returns a boolean indicating whether the viewing user has starred this starrable.
- """
- viewerHasStarred: Boolean!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-"""Things that can be starred."""
-interface GitHubStarrable {
- """"""
- id: ID!
-
- """A list of users who have starred this starrable."""
- stargazers(
- """Order for connection"""
- orderBy: GitHubStarOrder
-
- """Returns the last _n_ elements from the list."""
- last: Int
-
- """Returns the first _n_ elements from the list."""
- first: Int
-
- """
- Returns the elements in the list that come before the specified cursor.
- """
- before: String
-
- """Returns the elements in the list that come after the specified cursor."""
- after: String
- ): GitHubStargazerConnection!
-
- """
- Returns a boolean indicating whether the viewing user has starred this starrable.
- """
- viewerHasStarred: Boolean!
-}
-
-enum GitHubStarOrderField {
- """Allows ordering a list of stars by when they were created."""
- STARRED_AT
-}
-
-"""Ways in which star connections can be ordered."""
-input GitHubStarOrder {
- """The direction in which to order nodes."""
- direction: GitHubOrderDirection!
-
- """The field in which to order nodes by."""
- field: GitHubStarOrderField!
-}
-
-"""Represents a user that's starred a repository."""
-type GitHubStargazerEdge {
- """A cursor for use in pagination."""
- cursor: String!
-
- """"""
- node: GitHubUser!
-
- """Identifies when the item was starred."""
- starredAt: String!
-}
-
-"""The connection type for User."""
-type GitHubStargazerConnection {
- """A list of edges."""
- edges: [GitHubStargazerEdge]
-
- """A list of nodes."""
- nodes: [GitHubUser]
-
- """Information to aid in pagination."""
- pageInfo: GitHubPageInfo!
-
- """Identifies the total count of items in the connection."""
- totalCount: Int!
-}
-
-"""Represents an owner of a Repository."""
-interface GitHubRepositoryOwner {
- """A URL pointing to the owner's public avatar."""
- avatarUrl(
- """The size of the resulting square image."""
- size: Int
- ): String!
-
- """"""
- id: ID!
-
- """The username used to login."""
- login: String!
-
- """A list of repositories this user has pinned to their profile"""
- pinnedRepositories(
- """Returns the last _n_ elements from the list."""
- last: Int
-
- """Returns the first _n_ elements from the list."""
- first: Int
-
- """
- Returns the elements in the list that come before the specified cursor.
- """
- before: String
-
- """Returns the elements in the list that come after the specified cursor."""
- after: String
-
- """
- If non-null, filters repositories according to whether they have been locked
- """
- isLocked: Boolean
-
- """
- Array of owner's affiliation options for repositories returned from the connection. For example, OWNER will include only repositories that the organization or user being viewed owns.
- """
- ownerAffiliations: [GitHubRepositoryAffiliation]
-
- """
- Array of viewer's affiliation options for repositories returned from the connection. For example, OWNER will include only repositories that the current viewer owns.
- """
- affiliations: [GitHubRepositoryAffiliation]
-
- """Ordering options for repositories returned from the connection"""
- orderBy: GitHubRepositoryOrder
-
- """If non-null, filters repositories according to privacy"""
- privacy: GitHubRepositoryPrivacy
- ): GitHubRepositoryConnection! @deprecated(reason: "pinnedRepositories will be removed Use ProfileOwner.pinnedItems instead. Removal on 2019-10-01 UTC.")
-
- """A list of repositories that the user owns."""
- repositories(
- """
- If non-null, filters repositories according to whether they are forks of another repository
- """
- isFork: Boolean
-
- """Returns the last _n_ elements from the list."""
- last: Int
-
- """Returns the first _n_ elements from the list."""
- first: Int
-
- """
- Returns the elements in the list that come before the specified cursor.
- """
- before: String
-
- """Returns the elements in the list that come after the specified cursor."""
- after: String
-
- """
- If non-null, filters repositories according to whether they have been locked
- """
- isLocked: Boolean
-
- """
- Array of owner's affiliation options for repositories returned from the connection. For example, OWNER will include only repositories that the organization or user being viewed owns.
- """
- ownerAffiliations: [GitHubRepositoryAffiliation]
-
- """
- Array of viewer's affiliation options for repositories returned from the connection. For example, OWNER will include only repositories that the current viewer owns.
- """
- affiliations: [GitHubRepositoryAffiliation]
-
- """Ordering options for repositories returned from the connection"""
- orderBy: GitHubRepositoryOrder
-
- """If non-null, filters repositories according to privacy"""
- privacy: GitHubRepositoryPrivacy
- ): GitHubRepositoryConnection!
-
- """Find Repository."""
- repository(
- """Name of Repository to find."""
- name: String!
- ): GitHubRepository
-
- """The HTTP URL for the owner."""
- resourcePath: String!
-
- """The HTTP URL for the owner."""
- url: String!
-}
-
-enum GitHubGistOrderField {
- """Order gists by creation time"""
- CREATED_AT
-
- """Order gists by update time"""
- UPDATED_AT
-
- """Order gists by push time"""
- PUSHED_AT
-}
-
-"""Ordering options for gist connections"""
-input GitHubGistOrder {
- """The ordering direction."""
- direction: GitHubOrderDirection!
-
- """The field to order repositories by."""
- field: GitHubGistOrderField!
-}
-
-"""An edge in a connection."""
-type GitHubGistEdge {
- """A cursor for use in pagination."""
- cursor: String!
-
- """The item at the end of the edge."""
- node: GitHubGist
-}
-
-"""The connection type for Gist."""
-type GitHubGistConnection {
- """A list of edges."""
- edges: [GitHubGistEdge]
-
- """A list of nodes."""
- nodes: [GitHubGist]
-
- """Information to aid in pagination."""
- pageInfo: GitHubPageInfo!
-
- """Identifies the total count of items in the connection."""
- totalCount: Int!
-}
-
-"""Represents a given language found in repositories."""
-type GitHubLanguage implements OneGraphNode & GitHubNode {
- """The color defined for the current language."""
- color: String
-
- """"""
- id: ID!
-
- """The name of the current language."""
- name: String!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-"""A file in a gist."""
-type GitHubGistFile {
- """
- The file name encoded to remove characters that are invalid in URL paths.
- """
- encodedName: String
-
- """The gist file encoding."""
- encoding: String
-
- """The file extension from the file name."""
- extension: String
-
- """Indicates if this file is an image."""
- isImage: Boolean!
-
- """Whether the file's contents were truncated."""
- isTruncated: Boolean!
-
- """The programming language this file is written in."""
- language: GitHubLanguage
-
- """The gist file name."""
- name: String
-
- """The gist file size in bytes."""
- size: Int
-
- """UTF8 text data or null if the file is binary"""
- text(
- """Optionally truncate the returned file to this length."""
- truncate: Int
- ): String
-}
-
-"""An edge in a connection."""
-type GitHubGistCommentEdge {
- """A cursor for use in pagination."""
- cursor: String!
-
- """The item at the end of the edge."""
- node: GitHubGistComment
-}
-
-"""The connection type for GistComment."""
-type GitHubGistCommentConnection {
- """A list of edges."""
- edges: [GitHubGistCommentEdge]
-
- """A list of nodes."""
- nodes: [GitHubGistComment]
-
- """Information to aid in pagination."""
- pageInfo: GitHubPageInfo!
-
- """Identifies the total count of items in the connection."""
- totalCount: Int!
-}
-
-"""A Gist."""
-type GitHubGist implements OneGraphNode & GitHubUniformResourceLocatable & GitHubStarrable & GitHubNode {
- """A list of comments associated with the gist"""
- comments(
- """Returns the last _n_ elements from the list."""
- last: Int
-
- """Returns the first _n_ elements from the list."""
- first: Int
-
- """
- Returns the elements in the list that come before the specified cursor.
- """
- before: String
-
- """Returns the elements in the list that come after the specified cursor."""
- after: String
- ): GitHubGistCommentConnection!
-
- """Identifies the date and time when the object was created."""
- createdAt: String!
-
- """The gist description."""
- description: String
-
- """The files in this gist."""
- files(
- """The oid of the files to return"""
- oid: String
-
- """The maximum number of files to return."""
- limit: Int
- ): [GitHubGistFile]
-
- """A list of forks associated with the gist"""
- forks(
- """Ordering options for gists returned from the connection"""
- orderBy: GitHubGistOrder
-
- """Returns the last _n_ elements from the list."""
- last: Int
-
- """Returns the first _n_ elements from the list."""
- first: Int
-
- """
- Returns the elements in the list that come before the specified cursor.
- """
- before: String
-
- """Returns the elements in the list that come after the specified cursor."""
- after: String
- ): GitHubGistConnection!
-
- """"""
- id: ID!
-
- """Identifies if the gist is a fork."""
- isFork: Boolean!
-
- """Whether the gist is public or not."""
- isPublic: Boolean!
-
- """The gist name."""
- name: String!
-
- """The gist owner."""
- owner: GitHubRepositoryOwner
-
- """Identifies when the gist was last pushed to."""
- pushedAt: String
-
- """The HTML path to this resource."""
- resourcePath: String!
-
- """A list of users who have starred this starrable."""
- stargazers(
- """Order for connection"""
- orderBy: GitHubStarOrder
-
- """Returns the last _n_ elements from the list."""
- last: Int
-
- """Returns the first _n_ elements from the list."""
- first: Int
-
- """
- Returns the elements in the list that come before the specified cursor.
- """
- before: String
-
- """Returns the elements in the list that come after the specified cursor."""
- after: String
- ): GitHubStargazerConnection!
-
- """Identifies the date and time when the object was last updated."""
- updatedAt: String!
-
- """The HTTP URL for this Gist."""
- url: String!
-
- """
- Returns a boolean indicating whether the viewing user has starred this starrable.
- """
- viewerHasStarred: Boolean!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-"""Represents a comment on an Gist."""
-type GitHubGistComment implements OneGraphNode & GitHubUpdatableComment & GitHubUpdatable & GitHubNode & GitHubMinimizable & GitHubDeletable & GitHubComment {
- """The actor who authored the comment."""
- author: GitHubActor
-
- """Author's association with the gist."""
- authorAssociation: GitHubCommentAuthorAssociation!
-
- """Identifies the comment body."""
- body: String!
-
- """The body rendered to HTML."""
- bodyHTML: String!
-
- """The body rendered to text."""
- bodyText: String!
-
- """Identifies the date and time when the object was created."""
- createdAt: String!
-
- """Check if this comment was created via an email reply."""
- createdViaEmail: Boolean!
-
- """Identifies the primary key from the database."""
- databaseId: Int
-
- """The actor who edited the comment."""
- editor: GitHubActor
-
- """The associated gist."""
- gist: GitHubGist!
-
- """"""
- id: ID!
-
- """
- Check if this comment was edited and includes an edit with the creation data
- """
- includesCreatedEdit: Boolean!
-
- """Returns whether or not a comment has been minimized."""
- isMinimized: Boolean!
-
- """The moment the editor made the last edit"""
- lastEditedAt: String
-
- """Returns why the comment was minimized."""
- minimizedReason: String
-
- """Identifies when the comment was published at."""
- publishedAt: String
-
- """Identifies the date and time when the object was last updated."""
- updatedAt: String!
-
- """A list of edits to this content."""
- userContentEdits(
- """Returns the last _n_ elements from the list."""
- last: Int
-
- """Returns the first _n_ elements from the list."""
- first: Int
-
- """
- Returns the elements in the list that come before the specified cursor.
- """
- before: String
-
- """Returns the elements in the list that come after the specified cursor."""
- after: String
- ): GitHubUserContentEditConnection
-
- """Check if the current viewer can delete this object."""
- viewerCanDelete: Boolean!
-
- """Check if the current viewer can minimize this object."""
- viewerCanMinimize: Boolean!
-
- """Check if the current viewer can update this object."""
- viewerCanUpdate: Boolean!
-
- """Reasons why the current viewer can not update this comment."""
- viewerCannotUpdateReasons: [GitHubCommentCannotUpdateReason!]!
-
- """Did the viewer author this comment."""
- viewerDidAuthor: Boolean!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-"""Entities that can be updated."""
-interface GitHubUpdatable {
- """Check if the current viewer can update this object."""
- viewerCanUpdate: Boolean!
-}
-
-enum GitHubProjectState {
- """The project is open."""
- OPEN
-
- """The project is closed."""
- CLOSED
-}
-
-"""Represents an owner of a Project."""
-interface GitHubProjectOwner {
- """"""
- id: ID!
-
- """Find project by number."""
- project(
- """The project number to find."""
- number: Int!
- ): GitHubProject
-
- """A list of projects under the owner."""
- projects(
- """Returns the last _n_ elements from the list."""
- last: Int
-
- """Returns the first _n_ elements from the list."""
- first: Int
-
- """
- Returns the elements in the list that come before the specified cursor.
- """
- before: String
-
- """Returns the elements in the list that come after the specified cursor."""
- after: String
-
- """A list of states to filter the projects by."""
- states: [GitHubProjectState!]
-
- """Query to search projects by, currently only searching by name."""
- search: String
-
- """Ordering options for projects returned from the connection"""
- orderBy: GitHubProjectOrder
- ): GitHubProjectConnection!
-
- """The HTTP path listing owners projects"""
- projectsResourcePath: String!
-
- """The HTTP URL listing owners projects"""
- projectsUrl: String!
-
- """Can the current viewer create new projects on this owner."""
- viewerCanCreateProjects: Boolean!
-}
-
-enum GitHubProjectColumnPurpose {
- """The column contains cards still to be worked on"""
- TODO
-
- """The column contains cards which are currently being worked on"""
- IN_PROGRESS
-
- """The column contains cards which are complete"""
- DONE
-}
-
-enum GitHubProjectCardArchivedState {
- """A project card that is archived"""
- ARCHIVED
-
- """A project card that is not archived"""
- NOT_ARCHIVED
-}
-
-enum GitHubProjectCardState {
- """The card has content only."""
- CONTENT_ONLY
-
- """The card has a note only."""
- NOTE_ONLY
-
- """The card is redacted."""
- REDACTED
-}
-
-"""Types that can be inside Project Cards."""
-union GitHubProjectCardItem = GitHubPullRequest | GitHubIssue
-
-"""A card in a project."""
-type GitHubProjectCard implements OneGraphNode & GitHubNode {
- """
- The project column this card is associated under. A card may only belong to one
- project column at a time. The column field will be null if the card is created
- in a pending state and has yet to be associated with a column. Once cards are
- associated with a column, they will not become pending in the future.
-
- """
- column: GitHubProjectColumn
-
- """The card content item"""
- content: GitHubProjectCardItem
-
- """Identifies the date and time when the object was created."""
- createdAt: String!
-
- """The actor who created this card"""
- creator: GitHubActor
-
- """Identifies the primary key from the database."""
- databaseId: Int
-
- """"""
- id: ID!
-
- """Whether the card is archived"""
- isArchived: Boolean!
-
- """The card note"""
- note: String
-
- """The project that contains this card."""
- project: GitHubProject!
-
- """The HTTP path for this card"""
- resourcePath: String!
-
- """The state of ProjectCard"""
- state: GitHubProjectCardState
-
- """Identifies the date and time when the object was last updated."""
- updatedAt: String!
-
- """The HTTP URL for this card"""
- url: String!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-"""An edge in a connection."""
-type GitHubProjectCardEdge {
- """A cursor for use in pagination."""
- cursor: String!
-
- """The item at the end of the edge."""
- node: GitHubProjectCard
-}
-
-"""The connection type for ProjectCard."""
-type GitHubProjectCardConnection {
- """A list of edges."""
- edges: [GitHubProjectCardEdge]
-
- """A list of nodes."""
- nodes: [GitHubProjectCard]
-
- """Information to aid in pagination."""
- pageInfo: GitHubPageInfo!
-
- """Identifies the total count of items in the connection."""
- totalCount: Int!
-}
-
-"""A column inside a project."""
-type GitHubProjectColumn implements OneGraphNode & GitHubNode {
- """List of cards in the column"""
- cards(
- """A list of archived states to filter the cards by"""
- archivedStates: [GitHubProjectCardArchivedState]
-
- """Returns the last _n_ elements from the list."""
- last: Int
-
- """Returns the first _n_ elements from the list."""
- first: Int
-
- """
- Returns the elements in the list that come before the specified cursor.
- """
- before: String
-
- """Returns the elements in the list that come after the specified cursor."""
- after: String
- ): GitHubProjectCardConnection!
-
- """Identifies the date and time when the object was created."""
- createdAt: String!
-
- """Identifies the primary key from the database."""
- databaseId: Int
-
- """"""
- id: ID!
-
- """The project column's name."""
- name: String!
-
- """The project that contains this column."""
- project: GitHubProject!
-
- """The semantic purpose of the column"""
- purpose: GitHubProjectColumnPurpose
-
- """The HTTP path for this project column"""
- resourcePath: String!
-
- """Identifies the date and time when the object was last updated."""
- updatedAt: String!
-
- """The HTTP URL for this project column"""
- url: String!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-"""An edge in a connection."""
-type GitHubProjectColumnEdge {
- """A cursor for use in pagination."""
- cursor: String!
-
- """The item at the end of the edge."""
- node: GitHubProjectColumn
-}
-
-"""The connection type for ProjectColumn."""
-type GitHubProjectColumnConnection {
- """A list of edges."""
- edges: [GitHubProjectColumnEdge]
-
- """A list of nodes."""
- nodes: [GitHubProjectColumn]
-
- """Information to aid in pagination."""
- pageInfo: GitHubPageInfo!
-
- """Identifies the total count of items in the connection."""
- totalCount: Int!
-}
-
-"""
-Projects manage issues, pull requests and notes within a project owner.
-"""
-type GitHubProject implements OneGraphNode & GitHubUpdatable & GitHubNode & GitHubClosable {
- """The project's description body."""
- body: String
-
- """The projects description body rendered to HTML."""
- bodyHTML: String!
-
- """
- `true` if the object is closed (definition of closed may depend on type)
- """
- closed: Boolean!
-
- """Identifies the date and time when the object was closed."""
- closedAt: String
-
- """List of columns in the project"""
- columns(
- """Returns the last _n_ elements from the list."""
- last: Int
-
- """Returns the first _n_ elements from the list."""
- first: Int
-
- """
- Returns the elements in the list that come before the specified cursor.
- """
- before: String
-
- """Returns the elements in the list that come after the specified cursor."""
- after: String
- ): GitHubProjectColumnConnection!
-
- """Identifies the date and time when the object was created."""
- createdAt: String!
-
- """The actor who originally created the project."""
- creator: GitHubActor
-
- """Identifies the primary key from the database."""
- databaseId: Int
-
- """"""
- id: ID!
-
- """The project's name."""
- name: String!
-
- """The project's number."""
- number: Int!
-
- """
- The project's owner. Currently limited to repositories, organizations, and users.
- """
- owner: GitHubProjectOwner!
-
- """List of pending cards in this project"""
- pendingCards(
- """A list of archived states to filter the cards by"""
- archivedStates: [GitHubProjectCardArchivedState]
-
- """Returns the last _n_ elements from the list."""
- last: Int
-
- """Returns the first _n_ elements from the list."""
- first: Int
-
- """
- Returns the elements in the list that come before the specified cursor.
- """
- before: String
-
- """Returns the elements in the list that come after the specified cursor."""
- after: String
- ): GitHubProjectCardConnection!
-
- """The HTTP path for this project"""
- resourcePath: String!
-
- """Whether the project is open or closed."""
- state: GitHubProjectState!
-
- """Identifies the date and time when the object was last updated."""
- updatedAt: String!
-
- """The HTTP URL for this project"""
- url: String!
-
- """Check if the current viewer can update this object."""
- viewerCanUpdate: Boolean!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-"""An object that can be closed"""
-interface GitHubClosable {
- """
- `true` if the object is closed (definition of closed may depend on type)
- """
- closed: Boolean!
-
- """Identifies the date and time when the object was closed."""
- closedAt: String
-}
-
-enum GitHubMilestoneState {
- """A milestone that is still open."""
- OPEN
-
- """A milestone that has been closed."""
- CLOSED
-}
-
-"""Represents a Milestone object on a given repository."""
-type GitHubMilestone implements OneGraphNode & GitHubUniformResourceLocatable & GitHubNode & GitHubClosable {
- """
- `true` if the object is closed (definition of closed may depend on type)
- """
- closed: Boolean!
-
- """Identifies the date and time when the object was closed."""
- closedAt: String
-
- """Identifies the date and time when the object was created."""
- createdAt: String!
-
- """Identifies the actor who created the milestone."""
- creator: GitHubActor
-
- """Identifies the description of the milestone."""
- description: String
-
- """Identifies the due date of the milestone."""
- dueOn: String
-
- """"""
- id: ID!
-
- """Just for debugging on review-lab"""
- issuePrioritiesDebug: String!
-
- """A list of issues associated with the milestone."""
- issues(
- """Returns the last _n_ elements from the list."""
- last: Int
-
- """Returns the first _n_ elements from the list."""
- first: Int
-
- """
- Returns the elements in the list that come before the specified cursor.
- """
- before: String
-
- """Returns the elements in the list that come after the specified cursor."""
- after: String
-
- """Filtering options for issues returned from the connection."""
- filterBy: GitHubIssueFilters
-
- """A list of states to filter the issues by."""
- states: [GitHubIssueState!]
-
- """A list of label names to filter the pull requests by."""
- labels: [String!]
-
- """Ordering options for issues returned from the connection."""
- orderBy: GitHubIssueOrder
- ): GitHubIssueConnection!
-
- """Identifies the number of the milestone."""
- number: Int!
-
- """A list of pull requests associated with the milestone."""
- pullRequests(
- """Returns the last _n_ elements from the list."""
- last: Int
-
- """Returns the first _n_ elements from the list."""
- first: Int
-
- """
- Returns the elements in the list that come before the specified cursor.
- """
- before: String
-
- """Returns the elements in the list that come after the specified cursor."""
- after: String
-
- """Ordering options for pull requests returned from the connection."""
- orderBy: GitHubIssueOrder
-
- """The base ref name to filter the pull requests by."""
- baseRefName: String
-
- """The head ref name to filter the pull requests by."""
- headRefName: String
-
- """A list of label names to filter the pull requests by."""
- labels: [String!]
-
- """A list of states to filter the pull requests by."""
- states: [GitHubPullRequestState!]
- ): GitHubPullRequestConnection!
-
- """The repository associated with this milestone."""
- repository: GitHubRepository!
-
- """The HTTP path for this milestone"""
- resourcePath: String!
-
- """Identifies the state of the milestone."""
- state: GitHubMilestoneState!
-
- """Identifies the title of the milestone."""
- title: String!
-
- """Identifies the date and time when the object was last updated."""
- updatedAt: String!
-
- """The HTTP URL for this milestone"""
- url: String!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-enum GitHubLabelOrderField {
- """Order labels by name """
- NAME
-
- """Order labels by creation time"""
- CREATED_AT
-}
-
-"""Ways in which lists of labels can be ordered upon return."""
-input GitHubLabelOrder {
- """The direction in which to order labels by the specified field."""
- direction: GitHubOrderDirection!
-
- """The field in which to order labels by."""
- field: GitHubLabelOrderField!
-}
-
-"""Ways in which to filter lists of issues."""
-input GitHubIssueFilters {
- """List issues subscribed to by viewer."""
- viewerSubscribed: Boolean
-
- """List issues filtered by the list of states given."""
- states: [GitHubIssueState!]
-
- """List issues that have been updated at or after the given date."""
- since: String
-
- """
- List issues by given milestone argument. If an string representation of an integer is passed, it should refer to a milestone by its number field. Pass in `null` for issues with no milestone, and `*` for issues that are assigned to any milestone.
- """
- milestone: String
-
- """List issues where the given name is mentioned in the issue."""
- mentioned: String
-
- """List issues where the list of label names exist on the issue."""
- labels: [String!]
-
- """List issues created by given name."""
- createdBy: String
-
- """
- List issues assigned to given name. Pass in `null` for issues with no assigned user, and `*` for issues assigned to any user.
- """
- assignee: String
-}
-
-enum GitHubIssueState {
- """An issue that is still open"""
- OPEN
-
- """An issue that has been closed"""
- CLOSED
-}
-
-"""An edge in a connection."""
-type GitHubIssueEdge {
- """A cursor for use in pagination."""
- cursor: String!
-
- """The item at the end of the edge."""
- node: GitHubIssue
-}
-
-"""The connection type for Issue."""
-type GitHubIssueConnection {
- """A list of edges."""
- edges: [GitHubIssueEdge]
-
- """A list of nodes."""
- nodes: [GitHubIssue]
-
- """Information to aid in pagination."""
- pageInfo: GitHubPageInfo!
-
- """Identifies the total count of items in the connection."""
- totalCount: Int!
-}
-
-"""A label for categorizing Issues or Milestones with a given Repository."""
-type GitHubLabel implements OneGraphNode & GitHubNode {
- """Identifies the label color."""
- color: String!
-
- """Identifies the date and time when the label was created."""
- createdAt: String
-
- """A brief description of this label."""
- description: String
-
- """"""
- id: ID!
-
- """Indicates whether or not this is a default label."""
- isDefault: Boolean!
-
- """A list of issues associated with this label."""
- issues(
- """Returns the last _n_ elements from the list."""
- last: Int
-
- """Returns the first _n_ elements from the list."""
- first: Int
-
- """
- Returns the elements in the list that come before the specified cursor.
- """
- before: String
-
- """Returns the elements in the list that come after the specified cursor."""
- after: String
-
- """Filtering options for issues returned from the connection."""
- filterBy: GitHubIssueFilters
-
- """A list of states to filter the issues by."""
- states: [GitHubIssueState!]
-
- """A list of label names to filter the pull requests by."""
- labels: [String!]
-
- """Ordering options for issues returned from the connection."""
- orderBy: GitHubIssueOrder
- ): GitHubIssueConnection!
-
- """Identifies the label name."""
- name: String!
-
- """A list of pull requests associated with this label."""
- pullRequests(
- """Returns the last _n_ elements from the list."""
- last: Int
-
- """Returns the first _n_ elements from the list."""
- first: Int
-
- """
- Returns the elements in the list that come before the specified cursor.
- """
- before: String
-
- """Returns the elements in the list that come after the specified cursor."""
- after: String
-
- """Ordering options for pull requests returned from the connection."""
- orderBy: GitHubIssueOrder
-
- """The base ref name to filter the pull requests by."""
- baseRefName: String
-
- """The head ref name to filter the pull requests by."""
- headRefName: String
-
- """A list of label names to filter the pull requests by."""
- labels: [String!]
-
- """A list of states to filter the pull requests by."""
- states: [GitHubPullRequestState!]
- ): GitHubPullRequestConnection!
-
- """The repository associated with this label."""
- repository: GitHubRepository!
-
- """The HTTP path for this label."""
- resourcePath: String!
-
- """Identifies the date and time when the label was last updated."""
- updatedAt: String
-
- """The HTTP URL for this label."""
- url: String!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-"""An edge in a connection."""
-type GitHubLabelEdge {
- """A cursor for use in pagination."""
- cursor: String!
-
- """The item at the end of the edge."""
- node: GitHubLabel
-}
-
-"""The connection type for Label."""
-type GitHubLabelConnection {
- """A list of edges."""
- edges: [GitHubLabelEdge]
-
- """A list of nodes."""
- nodes: [GitHubLabel]
-
- """Information to aid in pagination."""
- pageInfo: GitHubPageInfo!
-
- """Identifies the total count of items in the connection."""
- totalCount: Int!
-}
-
-"""A generic hovercard context with a message and icon"""
-type GitHubGenericHovercardContext implements GitHubHovercardContext {
- """A string describing this context"""
- message: String!
-
- """An octicon to accompany this context"""
- octicon: String!
-}
-
-"""An organization teams hovercard context"""
-type GitHubOrganizationTeamsHovercardContext implements GitHubHovercardContext {
- """A string describing this context"""
- message: String!
-
- """An octicon to accompany this context"""
- octicon: String!
-
- """Teams in this organization the user is a member of that are relevant"""
- relevantTeams(
- """Returns the last _n_ elements from the list."""
- last: Int
-
- """Returns the first _n_ elements from the list."""
- first: Int
-
- """
- Returns the elements in the list that come before the specified cursor.
- """
- before: String
-
- """Returns the elements in the list that come after the specified cursor."""
- after: String
- ): GitHubTeamConnection!
-
- """The path for the full team list for this user"""
- teamsResourcePath: String!
-
- """The URL for the full team list for this user"""
- teamsUrl: String!
-
- """The total number of teams the user is on in the organization"""
- totalTeamCount: Int!
-}
-
-"""An edge in a connection."""
-type GitHubOrganizationEdge {
- """A cursor for use in pagination."""
- cursor: String!
-
- """The item at the end of the edge."""
- node: GitHubOrganization
-}
-
-"""The connection type for Organization."""
-type GitHubOrganizationConnection {
- """A list of edges."""
- edges: [GitHubOrganizationEdge]
-
- """A list of nodes."""
- nodes: [GitHubOrganization]
-
- """Information to aid in pagination."""
- pageInfo: GitHubPageInfo!
-
- """Identifies the total count of items in the connection."""
- totalCount: Int!
-}
-
-"""An organization list hovercard context"""
-type GitHubOrganizationsHovercardContext implements GitHubHovercardContext {
- """A string describing this context"""
- message: String!
-
- """An octicon to accompany this context"""
- octicon: String!
-
- """Organizations this user is a member of that are relevant"""
- relevantOrganizations(
- """Returns the last _n_ elements from the list."""
- last: Int
-
- """Returns the first _n_ elements from the list."""
- first: Int
-
- """
- Returns the elements in the list that come before the specified cursor.
- """
- before: String
-
- """Returns the elements in the list that come after the specified cursor."""
- after: String
- ): GitHubOrganizationConnection!
-
- """The total number of organizations this user is in"""
- totalOrganizationCount: Int!
-}
-
-enum GitHubPullRequestReviewDecision {
- """Changes have been requested on the pull request."""
- CHANGES_REQUESTED
-
- """The pull request has received an approving review."""
- APPROVED
-
- """A review is required before the pull request can be merged."""
- REVIEW_REQUIRED
-}
-
-"""
-A hovercard context with a message describing the current code review state of the pull
-request.
-
-"""
-type GitHubReviewStatusHovercardContext implements GitHubHovercardContext {
- """A string describing this context"""
- message: String!
-
- """An octicon to accompany this context"""
- octicon: String!
-
- """The current status of the pull request with respect to code review."""
- reviewDecision: GitHubPullRequestReviewDecision
-}
-
-"""
-A hovercard context with a message describing how the viewer is related.
-"""
-type GitHubViewerHovercardContext implements GitHubHovercardContext {
- """A string describing this context"""
- message: String!
-
- """An octicon to accompany this context"""
- octicon: String!
-
- """Identifies the user who is related to this context."""
- viewer: GitHubUser!
-}
-
-"""An individual line of a hovercard"""
-interface GitHubHovercardContext {
- """A string describing this context"""
- message: String!
-
- """An octicon to accompany this context"""
- octicon: String!
-}
-
-"""Detail needed to display a hovercard for a user"""
-type GitHubHovercard {
- """Each of the contexts for this hovercard"""
- contexts: [GitHubHovercardContext!]!
-}
-
-"""An edge in a connection."""
-type GitHubIssueCommentEdge {
- """A cursor for use in pagination."""
- cursor: String!
-
- """The item at the end of the edge."""
- node: GitHubIssueComment
-}
-
-"""The connection type for IssueComment."""
-type GitHubIssueCommentConnection {
- """A list of edges."""
- edges: [GitHubIssueCommentEdge]
-
- """A list of nodes."""
- nodes: [GitHubIssueComment]
-
- """Information to aid in pagination."""
- pageInfo: GitHubPageInfo!
-
- """Identifies the total count of items in the connection."""
- totalCount: Int!
-}
-
-"""
-An Issue is a place to discuss ideas, enhancements, tasks, and bugs for a project.
-"""
-type GitHubIssue implements OneGraphNode & GitHubUpdatableComment & GitHubUpdatable & GitHubUniformResourceLocatable & GitHubSubscribable & GitHubRepositoryNode & GitHubReactable & GitHubNode & GitHubLockable & GitHubLabelable & GitHubComment & GitHubClosable & GitHubAssignable {
- """Reason that the conversation was locked."""
- activeLockReason: GitHubLockReason
-
- """A list of Users assigned to this object."""
- assignees(
- """Returns the last _n_ elements from the list."""
- last: Int
-
- """Returns the first _n_ elements from the list."""
- first: Int
-
- """
- Returns the elements in the list that come before the specified cursor.
- """
- before: String
-
- """Returns the elements in the list that come after the specified cursor."""
- after: String
- ): GitHubUserConnection!
-
- """The actor who authored the comment."""
- author: GitHubActor
-
- """Author's association with the subject of the comment."""
- authorAssociation: GitHubCommentAuthorAssociation!
-
- """Identifies the body of the issue."""
- body: String!
-
- """The body rendered to HTML."""
- bodyHTML: String!
-
- """Identifies the body of the issue rendered to text."""
- bodyText: String!
-
- """
- `true` if the object is closed (definition of closed may depend on type)
- """
- closed: Boolean!
-
- """Identifies the date and time when the object was closed."""
- closedAt: String
-
- """A list of comments associated with the Issue."""
- comments(
- """Returns the last _n_ elements from the list."""
- last: Int
-
- """Returns the first _n_ elements from the list."""
- first: Int
-
- """
- Returns the elements in the list that come before the specified cursor.
- """
- before: String
-
- """Returns the elements in the list that come after the specified cursor."""
- after: String
- ): GitHubIssueCommentConnection!
-
- """Identifies the date and time when the object was created."""
- createdAt: String!
-
- """Check if this comment was created via an email reply."""
- createdViaEmail: Boolean!
-
- """Identifies the primary key from the database."""
- databaseId: Int
-
- """The actor who edited the comment."""
- editor: GitHubActor
-
- """The hovercard information for this issue"""
- hovercard(
- """Whether or not to include notification contexts"""
- includeNotificationContexts: Boolean
- ): GitHubHovercard!
-
- """"""
- id: ID!
-
- """
- Check if this comment was edited and includes an edit with the creation data
- """
- includesCreatedEdit: Boolean!
-
- """A list of labels associated with the object."""
- labels(
- """Returns the last _n_ elements from the list."""
- last: Int
-
- """Returns the first _n_ elements from the list."""
- first: Int
-
- """
- Returns the elements in the list that come before the specified cursor.
- """
- before: String
-
- """Returns the elements in the list that come after the specified cursor."""
- after: String
-
- """Ordering options for labels returned from the connection."""
- orderBy: GitHubLabelOrder
- ): GitHubLabelConnection
-
- """The moment the editor made the last edit"""
- lastEditedAt: String
-
- """`true` if the object is locked"""
- locked: Boolean!
-
- """Identifies the milestone associated with the issue."""
- milestone: GitHubMilestone
-
- """Identifies the issue number."""
- number: Int!
-
- """A list of Users that are participating in the Issue conversation."""
- participants(
- """Returns the last _n_ elements from the list."""
- last: Int
-
- """Returns the first _n_ elements from the list."""
- first: Int
-
- """
- Returns the elements in the list that come before the specified cursor.
- """
- before: String
-
- """Returns the elements in the list that come after the specified cursor."""
- after: String
- ): GitHubUserConnection!
-
- """List of project cards associated with this issue."""
- projectCards(
- """A list of archived states to filter the cards by"""
- archivedStates: [GitHubProjectCardArchivedState]
-
- """Returns the last _n_ elements from the list."""
- last: Int
-
- """Returns the first _n_ elements from the list."""
- first: Int
-
- """
- Returns the elements in the list that come before the specified cursor.
- """
- before: String
-
- """Returns the elements in the list that come after the specified cursor."""
- after: String
- ): GitHubProjectCardConnection!
-
- """Identifies when the comment was published at."""
- publishedAt: String
-
- """A list of reactions grouped by content left on the subject."""
- reactionGroups: [GitHubReactionGroup!]
-
- """A list of Reactions left on the Issue."""
- reactions(
- """Allows specifying the order in which reactions are returned."""
- orderBy: GitHubReactionOrder
-
- """Allows filtering Reactions by emoji."""
- content: GitHubReactionContent
-
- """Returns the last _n_ elements from the list."""
- last: Int
-
- """Returns the first _n_ elements from the list."""
- first: Int
-
- """
- Returns the elements in the list that come before the specified cursor.
- """
- before: String
-
- """Returns the elements in the list that come after the specified cursor."""
- after: String
- ): GitHubReactionConnection!
-
- """The repository associated with this node."""
- repository: GitHubRepository!
-
- """The HTTP path for this issue"""
- resourcePath: String!
-
- """Identifies the state of the issue."""
- state: GitHubIssueState!
-
- """A list of events, comments, commits, etc. associated with the issue."""
- timeline(
- """Returns the last _n_ elements from the list."""
- last: Int
-
- """Returns the first _n_ elements from the list."""
- first: Int
-
- """
- Returns the elements in the list that come before the specified cursor.
- """
- before: String
-
- """Returns the elements in the list that come after the specified cursor."""
- after: String
-
- """Allows filtering timeline events by a `since` timestamp."""
- since: String
- ): GitHubIssueTimelineConnection! @deprecated(reason: "`timeline` will be removed Use Issue.timelineItems instead. Removal on 2019-10-01 UTC.")
-
- """A list of events, comments, commits, etc. associated with the issue."""
- timelineItems(
- """Returns the last _n_ elements from the list."""
- last: Int
-
- """Returns the first _n_ elements from the list."""
- first: Int
-
- """
- Returns the elements in the list that come before the specified cursor.
- """
- before: String
-
- """Returns the elements in the list that come after the specified cursor."""
- after: String
-
- """Filter timeline items by type."""
- itemTypes: [GitHubIssueTimelineItemsItemType!]
-
- """Skips the first _n_ elements in the list."""
- skip: Int
-
- """Filter timeline items by a `since` timestamp."""
- since: String
- ): GitHubIssueTimelineItemsConnection!
-
- """Identifies the issue title."""
- title: String!
-
- """Identifies the date and time when the object was last updated."""
- updatedAt: String!
-
- """The HTTP URL for this issue"""
- url: String!
-
- """A list of edits to this content."""
- userContentEdits(
- """Returns the last _n_ elements from the list."""
- last: Int
-
- """Returns the first _n_ elements from the list."""
- first: Int
-
- """
- Returns the elements in the list that come before the specified cursor.
- """
- before: String
-
- """Returns the elements in the list that come after the specified cursor."""
- after: String
- ): GitHubUserContentEditConnection
-
- """Can user react to this subject"""
- viewerCanReact: Boolean!
-
- """
- Check if the viewer is able to change their subscription status for the repository.
- """
- viewerCanSubscribe: Boolean!
-
- """Check if the current viewer can update this object."""
- viewerCanUpdate: Boolean!
-
- """Reasons why the current viewer can not update this comment."""
- viewerCannotUpdateReasons: [GitHubCommentCannotUpdateReason!]!
-
- """Did the viewer author this comment."""
- viewerDidAuthor: Boolean!
-
- """
- Identifies if the viewer is watching, not watching, or ignoring the subscribable entity.
- """
- viewerSubscription: GitHubSubscriptionState
-
- """Linked Salesforce Case"""
- salesforceCase: SalesforceCase
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-"""Represents a comment on an Issue."""
-type GitHubIssueComment implements OneGraphNode & GitHubUpdatableComment & GitHubUpdatable & GitHubRepositoryNode & GitHubReactable & GitHubNode & GitHubMinimizable & GitHubDeletable & GitHubComment {
- """The actor who authored the comment."""
- author: GitHubActor
-
- """Author's association with the subject of the comment."""
- authorAssociation: GitHubCommentAuthorAssociation!
-
- """The body as Markdown."""
- body: String!
-
- """The body rendered to HTML."""
- bodyHTML: String!
-
- """The body rendered to text."""
- bodyText: String!
-
- """Identifies the date and time when the object was created."""
- createdAt: String!
-
- """Check if this comment was created via an email reply."""
- createdViaEmail: Boolean!
-
- """Identifies the primary key from the database."""
- databaseId: Int
-
- """The actor who edited the comment."""
- editor: GitHubActor
-
- """"""
- id: ID!
-
- """
- Check if this comment was edited and includes an edit with the creation data
- """
- includesCreatedEdit: Boolean!
-
- """Returns whether or not a comment has been minimized."""
- isMinimized: Boolean!
-
- """Identifies the issue associated with the comment."""
- issue: GitHubIssue!
-
- """The moment the editor made the last edit"""
- lastEditedAt: String
-
- """Returns why the comment was minimized."""
- minimizedReason: String
-
- """Identifies when the comment was published at."""
- publishedAt: String
-
- """
- Returns the pull request associated with the comment, if this comment was made on a
- pull request.
-
- """
- pullRequest: GitHubPullRequest
-
- """A list of reactions grouped by content left on the subject."""
- reactionGroups: [GitHubReactionGroup!]
-
- """A list of Reactions left on the Issue."""
- reactions(
- """Allows specifying the order in which reactions are returned."""
- orderBy: GitHubReactionOrder
-
- """Allows filtering Reactions by emoji."""
- content: GitHubReactionContent
-
- """Returns the last _n_ elements from the list."""
- last: Int
-
- """Returns the first _n_ elements from the list."""
- first: Int
-
- """
- Returns the elements in the list that come before the specified cursor.
- """
- before: String
-
- """Returns the elements in the list that come after the specified cursor."""
- after: String
- ): GitHubReactionConnection!
-
- """The repository associated with this node."""
- repository: GitHubRepository!
-
- """The HTTP path for this issue comment"""
- resourcePath: String!
-
- """Identifies the date and time when the object was last updated."""
- updatedAt: String!
-
- """The HTTP URL for this issue comment"""
- url: String!
-
- """A list of edits to this content."""
- userContentEdits(
- """Returns the last _n_ elements from the list."""
- last: Int
-
- """Returns the first _n_ elements from the list."""
- first: Int
-
- """
- Returns the elements in the list that come before the specified cursor.
- """
- before: String
-
- """Returns the elements in the list that come after the specified cursor."""
- after: String
- ): GitHubUserContentEditConnection
-
- """Check if the current viewer can delete this object."""
- viewerCanDelete: Boolean!
-
- """Check if the current viewer can minimize this object."""
- viewerCanMinimize: Boolean!
-
- """Can user react to this subject"""
- viewerCanReact: Boolean!
-
- """Check if the current viewer can update this object."""
- viewerCanUpdate: Boolean!
-
- """Reasons why the current viewer can not update this comment."""
- viewerCannotUpdateReasons: [GitHubCommentCannotUpdateReason!]!
-
- """Did the viewer author this comment."""
- viewerDidAuthor: Boolean!
-
- """Linked Salesforce CaseComment"""
- salesforceCaseComment: SalesforceCaseComment
-
- """Linked Salesforce FeedComment"""
- salesforceFeedComment: SalesforceFeedComment
-
- """Linked Salesforce FeedItem"""
- salesforceFeedItem: SalesforceFeedItem
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-"""Comments that can be updated."""
-interface GitHubUpdatableComment {
- """Reasons why the current viewer can not update this comment."""
- viewerCannotUpdateReasons: [GitHubCommentCannotUpdateReason!]!
-}
-
-enum GitHubCommentCannotUpdateReason {
- """Unable to create comment because repository is archived."""
- ARCHIVED
-
- """
- You must be the author or have write access to this repository to update this comment.
- """
- INSUFFICIENT_ACCESS
-
- """Unable to create comment because issue is locked."""
- LOCKED
-
- """You must be logged in to update this comment."""
- LOGIN_REQUIRED
-
- """Repository is under maintenance."""
- MAINTENANCE
-
- """At least one email address must be verified to update this comment."""
- VERIFIED_EMAIL_REQUIRED
-
- """You cannot update this comment"""
- DENIED
-}
-
-"""An edge in a connection."""
-type GitHubUserContentEditEdge {
- """A cursor for use in pagination."""
- cursor: String!
-
- """The item at the end of the edge."""
- node: GitHubUserContentEdit
-}
-
-"""A list of edits to content."""
-type GitHubUserContentEditConnection {
- """A list of edges."""
- edges: [GitHubUserContentEditEdge]
-
- """A list of nodes."""
- nodes: [GitHubUserContentEdit]
-
- """Information to aid in pagination."""
- pageInfo: GitHubPageInfo!
-
- """Identifies the total count of items in the connection."""
- totalCount: Int!
-}
-
-enum GitHubReactionOrderField {
- """Allows ordering a list of reactions by when they were created."""
- CREATED_AT
-}
-
-"""Ways in which lists of reactions can be ordered upon return."""
-input GitHubReactionOrder {
- """The direction in which to order reactions by the specified field."""
- direction: GitHubOrderDirection!
-
- """The field in which to order reactions by."""
- field: GitHubReactionOrderField!
-}
-
-"""An emoji reaction to a particular piece of content."""
-type GitHubReaction implements OneGraphNode & GitHubNode {
- """Identifies the emoji reaction."""
- content: GitHubReactionContent!
-
- """Identifies the date and time when the object was created."""
- createdAt: String!
-
- """Identifies the primary key from the database."""
- databaseId: Int
-
- """"""
- id: ID!
-
- """The reactable piece of content"""
- reactable: GitHubReactable!
-
- """Identifies the user who created this reaction."""
- user: GitHubUser
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-"""An edge in a connection."""
-type GitHubReactionEdge {
- """A cursor for use in pagination."""
- cursor: String!
-
- """The item at the end of the edge."""
- node: GitHubReaction
-}
-
-"""A list of reactions that have been left on the subject."""
-type GitHubReactionConnection {
- """A list of edges."""
- edges: [GitHubReactionEdge]
-
- """A list of nodes."""
- nodes: [GitHubReaction]
-
- """Information to aid in pagination."""
- pageInfo: GitHubPageInfo!
-
- """Identifies the total count of items in the connection."""
- totalCount: Int!
-
- """
- Whether or not the authenticated user has left a reaction on the subject.
- """
- viewerHasReacted: Boolean!
-}
-
-"""An edge in a connection."""
-type GitHubPullRequestReviewCommentEdge {
- """A cursor for use in pagination."""
- cursor: String!
-
- """The item at the end of the edge."""
- node: GitHubPullRequestReviewComment
-}
-
-"""The connection type for PullRequestReviewComment."""
-type GitHubPullRequestReviewCommentConnection {
- """A list of edges."""
- edges: [GitHubPullRequestReviewCommentEdge]
-
- """A list of nodes."""
- nodes: [GitHubPullRequestReviewComment]
-
- """Information to aid in pagination."""
- pageInfo: GitHubPageInfo!
-
- """Identifies the total count of items in the connection."""
- totalCount: Int!
-}
-
-"""A review object for a given pull request."""
-type GitHubPullRequestReview implements OneGraphNode & GitHubUpdatableComment & GitHubUpdatable & GitHubRepositoryNode & GitHubReactable & GitHubNode & GitHubDeletable & GitHubComment {
- """The actor who authored the comment."""
- author: GitHubActor
-
- """Author's association with the subject of the comment."""
- authorAssociation: GitHubCommentAuthorAssociation!
-
- """Identifies the pull request review body."""
- body: String!
-
- """The body rendered to HTML."""
- bodyHTML: String!
-
- """The body of this review rendered as plain text."""
- bodyText: String!
-
- """A list of review comments for the current pull request review."""
- comments(
- """Returns the last _n_ elements from the list."""
- last: Int
-
- """Returns the first _n_ elements from the list."""
- first: Int
-
- """
- Returns the elements in the list that come before the specified cursor.
- """
- before: String
-
- """Returns the elements in the list that come after the specified cursor."""
- after: String
- ): GitHubPullRequestReviewCommentConnection!
-
- """Identifies the commit associated with this pull request review."""
- commit: GitHubCommit
-
- """Identifies the date and time when the object was created."""
- createdAt: String!
-
- """Check if this comment was created via an email reply."""
- createdViaEmail: Boolean!
-
- """Identifies the primary key from the database."""
- databaseId: Int
-
- """The actor who edited the comment."""
- editor: GitHubActor
-
- """"""
- id: ID!
-
- """
- Check if this comment was edited and includes an edit with the creation data
- """
- includesCreatedEdit: Boolean!
-
- """The moment the editor made the last edit"""
- lastEditedAt: String
-
- """A list of teams that this review was made on behalf of."""
- onBehalfOf(
- """Returns the last _n_ elements from the list."""
- last: Int
-
- """Returns the first _n_ elements from the list."""
- first: Int
-
- """
- Returns the elements in the list that come before the specified cursor.
- """
- before: String
-
- """Returns the elements in the list that come after the specified cursor."""
- after: String
- ): GitHubTeamConnection!
-
- """Identifies when the comment was published at."""
- publishedAt: String
-
- """Identifies the pull request associated with this pull request review."""
- pullRequest: GitHubPullRequest!
-
- """A list of reactions grouped by content left on the subject."""
- reactionGroups: [GitHubReactionGroup!]
-
- """A list of Reactions left on the Issue."""
- reactions(
- """Allows specifying the order in which reactions are returned."""
- orderBy: GitHubReactionOrder
-
- """Allows filtering Reactions by emoji."""
- content: GitHubReactionContent
-
- """Returns the last _n_ elements from the list."""
- last: Int
-
- """Returns the first _n_ elements from the list."""
- first: Int
-
- """
- Returns the elements in the list that come before the specified cursor.
- """
- before: String
-
- """Returns the elements in the list that come after the specified cursor."""
- after: String
- ): GitHubReactionConnection!
-
- """The repository associated with this node."""
- repository: GitHubRepository!
-
- """The HTTP path permalink for this PullRequestReview."""
- resourcePath: String!
-
- """Identifies the current state of the pull request review."""
- state: GitHubPullRequestReviewState!
-
- """Identifies when the Pull Request Review was submitted"""
- submittedAt: String
-
- """Identifies the date and time when the object was last updated."""
- updatedAt: String!
-
- """The HTTP URL permalink for this PullRequestReview."""
- url: String!
-
- """A list of edits to this content."""
- userContentEdits(
- """Returns the last _n_ elements from the list."""
- last: Int
-
- """Returns the first _n_ elements from the list."""
- first: Int
-
- """
- Returns the elements in the list that come before the specified cursor.
- """
- before: String
-
- """Returns the elements in the list that come after the specified cursor."""
- after: String
- ): GitHubUserContentEditConnection
-
- """Check if the current viewer can delete this object."""
- viewerCanDelete: Boolean!
-
- """Can user react to this subject"""
- viewerCanReact: Boolean!
-
- """Check if the current viewer can update this object."""
- viewerCanUpdate: Boolean!
-
- """Reasons why the current viewer can not update this comment."""
- viewerCannotUpdateReasons: [GitHubCommentCannotUpdateReason!]!
-
- """Did the viewer author this comment."""
- viewerDidAuthor: Boolean!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-"""Represents a Git commit part of a pull request."""
-type GitHubPullRequestCommit implements OneGraphNode & GitHubUniformResourceLocatable & GitHubNode {
- """The Git commit object"""
- commit: GitHubCommit!
-
- """"""
- id: ID!
-
- """The pull request this commit belongs to"""
- pullRequest: GitHubPullRequest!
-
- """The HTTP path for this pull request commit"""
- resourcePath: String!
-
- """The HTTP URL for this pull request commit"""
- url: String!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-enum GitHubPullRequestReviewState {
- """A review that has not yet been submitted."""
- PENDING
-
- """An informational review."""
- COMMENTED
-
- """A review allowing the pull request to merge."""
- APPROVED
-
- """A review blocking the pull request from merging."""
- CHANGES_REQUESTED
-
- """A review that has been dismissed."""
- DISMISSED
-}
-
-"""
-Represents a 'review_dismissed' event on a given issue or pull request.
-"""
-type GitHubReviewDismissedEvent implements OneGraphNode & GitHubUniformResourceLocatable & GitHubNode {
- """Identifies the actor who performed the event."""
- actor: GitHubActor
-
- """Identifies the date and time when the object was created."""
- createdAt: String!
-
- """Identifies the primary key from the database."""
- databaseId: Int
-
- """
- Identifies the optional message associated with the 'review_dismissed' event.
- """
- dismissalMessage: String
-
- """
- Identifies the optional message associated with the event, rendered to HTML.
- """
- dismissalMessageHTML: String
-
- """"""
- id: ID!
-
- """
- Identifies the previous state of the review with the 'review_dismissed' event.
- """
- previousReviewState: GitHubPullRequestReviewState!
-
- """PullRequest referenced by event."""
- pullRequest: GitHubPullRequest!
-
- """Identifies the commit which caused the review to become stale."""
- pullRequestCommit: GitHubPullRequestCommit
-
- """The HTTP path for this review dismissed event."""
- resourcePath: String!
-
- """Identifies the review associated with the 'review_dismissed' event."""
- review: GitHubPullRequestReview
-
- """The HTTP URL for this review dismissed event."""
- url: String!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-"""Represents a type that can be retrieved by a URL."""
-interface GitHubUniformResourceLocatable {
- """The HTML path to this resource."""
- resourcePath: String!
-
- """The URL to this resource."""
- url: String!
-}
-
-"""A placeholder user for attribution of imported data on GitHub."""
-type GitHubMannequin implements OneGraphNode & GitHubUniformResourceLocatable & GitHubNode & GitHubActor {
- """A URL pointing to the GitHub App's public avatar."""
- avatarUrl(
- """The size of the resulting square image."""
- size: Int
- ): String!
-
- """Identifies the date and time when the object was created."""
- createdAt: String!
-
- """Identifies the primary key from the database."""
- databaseId: Int
-
- """The mannequin's email on the source instance."""
- email: String
-
- """"""
- id: ID!
-
- """The username of the actor."""
- login: String!
-
- """The HTML path to this resource."""
- resourcePath: String!
-
- """Identifies the date and time when the object was last updated."""
- updatedAt: String!
-
- """The URL to this resource."""
- url: String!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-"""Types that can be requested reviewers."""
-union GitHubRequestedReviewer = GitHubUser | GitHubTeam | GitHubMannequin
-
-"""Types that can be an actor."""
-union GitHubReviewDismissalAllowanceActor = GitHubUser | GitHubTeam
-
-enum GitHubSubscriptionState {
- """The User is only notified when participating or @mentioned."""
- UNSUBSCRIBED
-
- """The User is notified of all conversations."""
- SUBSCRIBED
-
- """The User is never notified."""
- IGNORED
-}
-
-enum GitHubTeamRepositoryOrderField {
- """Order repositories by creation time"""
- CREATED_AT
-
- """Order repositories by update time"""
- UPDATED_AT
-
- """Order repositories by push time"""
- PUSHED_AT
-
- """Order repositories by name"""
- NAME
-
- """Order repositories by permission"""
- PERMISSION
-
- """Order repositories by number of stargazers"""
- STARGAZERS
-}
-
-"""Ordering options for team repository connections"""
-input GitHubTeamRepositoryOrder {
- """The ordering direction."""
- direction: GitHubOrderDirection!
-
- """The field to order repositories by."""
- field: GitHubTeamRepositoryOrderField!
-}
-
-enum GitHubRepositoryPermission {
- """
- Can read, clone, and push to this repository. Can also manage issues, pull requests, and repository settings, including adding collaborators
- """
- ADMIN
-
- """
- Can read, clone, and push to this repository. They can also manage issues, pull requests, and some repository settings
- """
- MAINTAIN
-
- """
- Can read, clone, and push to this repository. Can also manage issues and pull requests
- """
- WRITE
-
- """
- Can read and clone this repository. Can also manage issues and pull requests
- """
- TRIAGE
-
- """
- Can read and clone this repository. Can also open and comment on issues and pull requests
- """
- READ
-}
-
-"""Represents a team repository."""
-type GitHubTeamRepositoryEdge {
- """A cursor for use in pagination."""
- cursor: String!
-
- """"""
- node: GitHubRepository!
-
- """The permission level the team has on the repository"""
- permission: GitHubRepositoryPermission!
-}
-
-"""The connection type for Repository."""
-type GitHubTeamRepositoryConnection {
- """A list of edges."""
- edges: [GitHubTeamRepositoryEdge]
-
- """A list of nodes."""
- nodes: [GitHubRepository]
-
- """Information to aid in pagination."""
- pageInfo: GitHubPageInfo!
-
- """Identifies the total count of items in the connection."""
- totalCount: Int!
-}
-
-enum GitHubTeamPrivacy {
- """A secret team can only be seen by its members."""
- SECRET
-
- """
- A visible team can be seen and @mentioned by every member of the organization.
- """
- VISIBLE
-}
-
-enum GitHubTeamMemberOrderField {
- """Order team members by login"""
- LOGIN
-
- """Order team members by creation time"""
- CREATED_AT
-}
-
-"""Ordering options for team member connections"""
-input GitHubTeamMemberOrder {
- """The ordering direction."""
- direction: GitHubOrderDirection!
-
- """The field to order team members by."""
- field: GitHubTeamMemberOrderField!
-}
-
-enum GitHubTeamMembershipType {
- """Includes only immediate members of the team."""
- IMMEDIATE
-
- """Includes only child team members for the team."""
- CHILD_TEAM
-
- """Includes immediate and child team members for the team."""
- ALL
-}
-
-enum GitHubTeamMemberRole {
- """A team maintainer has permission to add and remove team members."""
- MAINTAINER
-
- """A team member has no administrative permissions on the team."""
- MEMBER
-}
-
-"""Represents a user who is a member of a team."""
-type GitHubTeamMemberEdge {
- """A cursor for use in pagination."""
- cursor: String!
-
- """The HTTP path to the organization's member access page."""
- memberAccessResourcePath: String!
-
- """The HTTP URL to the organization's member access page."""
- memberAccessUrl: String!
-
- """"""
- node: GitHubUser!
-
- """The role the member has on the team."""
- role: GitHubTeamMemberRole!
-}
-
-"""The connection type for User."""
-type GitHubTeamMemberConnection {
- """A list of edges."""
- edges: [GitHubTeamMemberEdge]
-
- """A list of nodes."""
- nodes: [GitHubUser]
-
- """Information to aid in pagination."""
- pageInfo: GitHubPageInfo!
-
- """Identifies the total count of items in the connection."""
- totalCount: Int!
-}
-
-enum GitHubUserStatusOrderField {
- """Order user statuses by when they were updated."""
- UPDATED_AT
-}
-
-"""Ordering options for user status connections."""
-input GitHubUserStatusOrder {
- """The ordering direction."""
- direction: GitHubOrderDirection!
-
- """The field to order user statuses by."""
- field: GitHubUserStatusOrderField!
-}
-
-"""An edge in a connection."""
-type GitHubUserStatusEdge {
- """A cursor for use in pagination."""
- cursor: String!
-
- """The item at the end of the edge."""
- node: GitHubUserStatus
-}
-
-"""The connection type for UserStatus."""
-type GitHubUserStatusConnection {
- """A list of edges."""
- edges: [GitHubUserStatusEdge]
-
- """A list of nodes."""
- nodes: [GitHubUserStatus]
-
- """Information to aid in pagination."""
- pageInfo: GitHubPageInfo!
-
- """Identifies the total count of items in the connection."""
- totalCount: Int!
-}
-
-enum GitHubOrganizationInvitationRole {
- """The user is invited to be a direct member of the organization."""
- DIRECT_MEMBER
-
- """The user is invited to be an admin of the organization."""
- ADMIN
-
- """The user is invited to be a billing manager of the organization."""
- BILLING_MANAGER
-
- """The user's previous role will be reinstated."""
- REINSTATE
-}
-
-enum GitHubOrganizationInvitationType {
- """The invitation was to an existing user."""
- USER
-
- """The invitation was to an email address."""
- EMAIL
-}
-
-"""An Invitation for a user to an organization."""
-type GitHubOrganizationInvitation implements OneGraphNode & GitHubNode {
- """Identifies the date and time when the object was created."""
- createdAt: String!
-
- """The email address of the user invited to the organization."""
- email: String
-
- """"""
- id: ID!
-
- """The type of invitation that was sent (e.g. email, user)."""
- invitationType: GitHubOrganizationInvitationType!
-
- """The user who was invited to the organization."""
- invitee: GitHubUser
-
- """The user who created the invitation."""
- inviter: GitHubUser!
-
- """The organization the invite is for"""
- organization: GitHubOrganization!
-
- """The user's pending role in the organization (e.g. member, owner)."""
- role: GitHubOrganizationInvitationRole!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-"""An edge in a connection."""
-type GitHubOrganizationInvitationEdge {
- """A cursor for use in pagination."""
- cursor: String!
-
- """The item at the end of the edge."""
- node: GitHubOrganizationInvitation
-}
-
-"""The connection type for OrganizationInvitation."""
-type GitHubOrganizationInvitationConnection {
- """A list of edges."""
- edges: [GitHubOrganizationInvitationEdge]
-
- """A list of nodes."""
- nodes: [GitHubOrganizationInvitation]
-
- """Information to aid in pagination."""
- pageInfo: GitHubPageInfo!
-
- """Identifies the total count of items in the connection."""
- totalCount: Int!
-}
-
-enum GitHubTeamDiscussionOrderField {
- """Allows chronological ordering of team discussions."""
- CREATED_AT
-}
-
-"""Ways in which team discussion connections can be ordered."""
-input GitHubTeamDiscussionOrder {
- """The direction in which to order nodes."""
- direction: GitHubOrderDirection!
-
- """The field by which to order nodes."""
- field: GitHubTeamDiscussionOrderField!
-}
-
-"""An edge in a connection."""
-type GitHubTeamDiscussionEdge {
- """A cursor for use in pagination."""
- cursor: String!
-
- """The item at the end of the edge."""
- node: GitHubTeamDiscussion
-}
-
-"""The connection type for TeamDiscussion."""
-type GitHubTeamDiscussionConnection {
- """A list of edges."""
- edges: [GitHubTeamDiscussionEdge]
-
- """A list of nodes."""
- nodes: [GitHubTeamDiscussion]
-
- """Information to aid in pagination."""
- pageInfo: GitHubPageInfo!
-
- """Identifies the total count of items in the connection."""
- totalCount: Int!
-}
-
-enum GitHubTeamOrderField {
- """Allows ordering a list of teams by name."""
- NAME
-}
-
-"""Ways in which team connections can be ordered."""
-input GitHubTeamOrder {
- """The direction in which to order nodes."""
- direction: GitHubOrderDirection!
-
- """The field in which to order nodes by."""
- field: GitHubTeamOrderField!
-}
-
-"""An edge in a connection."""
-type GitHubTeamEdge {
- """A cursor for use in pagination."""
- cursor: String!
-
- """The item at the end of the edge."""
- node: GitHubTeam
-}
-
-"""The connection type for Team."""
-type GitHubTeamConnection {
- """A list of edges."""
- edges: [GitHubTeamEdge]
-
- """A list of nodes."""
- nodes: [GitHubTeam]
-
- """Information to aid in pagination."""
- pageInfo: GitHubPageInfo!
-
- """Identifies the total count of items in the connection."""
- totalCount: Int!
-}
-
-"""A team of users in an organization."""
-type GitHubTeam implements OneGraphNode & GitHubSubscribable & GitHubNode & GitHubMemberStatusable {
- """A list of teams that are ancestors of this team."""
- ancestors(
- """Returns the last _n_ elements from the list."""
- last: Int
-
- """Returns the first _n_ elements from the list."""
- first: Int
-
- """
- Returns the elements in the list that come before the specified cursor.
- """
- before: String
-
- """Returns the elements in the list that come after the specified cursor."""
- after: String
- ): GitHubTeamConnection!
-
- """A URL pointing to the team's avatar."""
- avatarUrl(
- """The size in pixels of the resulting square image."""
- size: Int
- ): String
-
- """List of child teams belonging to this team"""
- childTeams(
- """Returns the last _n_ elements from the list."""
- last: Int
-
- """Returns the first _n_ elements from the list."""
- first: Int
-
- """
- Returns the elements in the list that come before the specified cursor.
- """
- before: String
-
- """Returns the elements in the list that come after the specified cursor."""
- after: String
-
- """Whether to list immediate child teams or all descendant child teams."""
- immediateOnly: Boolean
-
- """User logins to filter by"""
- userLogins: [String!]
-
- """Order for connection"""
- orderBy: GitHubTeamOrder
- ): GitHubTeamConnection!
-
- """The slug corresponding to the organization and team."""
- combinedSlug: String!
-
- """Identifies the date and time when the object was created."""
- createdAt: String!
-
- """The description of the team."""
- description: String
-
- """Find a team discussion by its number."""
- discussion(
- """The sequence number of the discussion to find."""
- number: Int!
- ): GitHubTeamDiscussion
-
- """A list of team discussions."""
- discussions(
- """Order for connection"""
- orderBy: GitHubTeamDiscussionOrder
-
- """
- If provided, filters discussions according to whether or not they are pinned.
- """
- isPinned: Boolean
-
- """Returns the last _n_ elements from the list."""
- last: Int
-
- """Returns the first _n_ elements from the list."""
- first: Int
-
- """
- Returns the elements in the list that come before the specified cursor.
- """
- before: String
-
- """Returns the elements in the list that come after the specified cursor."""
- after: String
- ): GitHubTeamDiscussionConnection!
-
- """The HTTP path for team discussions"""
- discussionsResourcePath: String!
-
- """The HTTP URL for team discussions"""
- discussionsUrl: String!
-
- """The HTTP path for editing this team"""
- editTeamResourcePath: String!
-
- """The HTTP URL for editing this team"""
- editTeamUrl: String!
-
- """"""
- id: ID!
-
- """A list of pending invitations for users to this team"""
- invitations(
- """Returns the last _n_ elements from the list."""
- last: Int
-
- """Returns the first _n_ elements from the list."""
- first: Int
-
- """
- Returns the elements in the list that come before the specified cursor.
- """
- before: String
-
- """Returns the elements in the list that come after the specified cursor."""
- after: String
- ): GitHubOrganizationInvitationConnection
-
- """
- Get the status messages members of this entity have set that are either public or visible only to the organization.
- """
- memberStatuses(
- """Ordering options for user statuses returned from the connection."""
- orderBy: GitHubUserStatusOrder
-
- """Returns the last _n_ elements from the list."""
- last: Int
-
- """Returns the first _n_ elements from the list."""
- first: Int
-
- """
- Returns the elements in the list that come before the specified cursor.
- """
- before: String
-
- """Returns the elements in the list that come after the specified cursor."""
- after: String
- ): GitHubUserStatusConnection!
-
- """A list of users who are members of this team."""
- members(
- """Order for the connection."""
- orderBy: GitHubTeamMemberOrder
-
- """Filter by team member role"""
- role: GitHubTeamMemberRole
-
- """Filter by membership type"""
- membership: GitHubTeamMembershipType
-
- """The search string to look for."""
- query: String
-
- """Returns the last _n_ elements from the list."""
- last: Int
-
- """Returns the first _n_ elements from the list."""
- first: Int
-
- """
- Returns the elements in the list that come before the specified cursor.
- """
- before: String
-
- """Returns the elements in the list that come after the specified cursor."""
- after: String
- ): GitHubTeamMemberConnection!
-
- """The HTTP path for the team' members"""
- membersResourcePath: String!
-
- """The HTTP URL for the team' members"""
- membersUrl: String!
-
- """The name of the team."""
- name: String!
-
- """The HTTP path creating a new team"""
- newTeamResourcePath: String!
-
- """The HTTP URL creating a new team"""
- newTeamUrl: String!
-
- """The organization that owns this team."""
- organization: GitHubOrganization!
-
- """The parent team of the team."""
- parentTeam: GitHubTeam
-
- """The level of privacy the team has."""
- privacy: GitHubTeamPrivacy!
-
- """A list of repositories this team has access to."""
- repositories(
- """Order for the connection."""
- orderBy: GitHubTeamRepositoryOrder
-
- """The search string to look for."""
- query: String
-
- """Returns the last _n_ elements from the list."""
- last: Int
-
- """Returns the first _n_ elements from the list."""
- first: Int
-
- """
- Returns the elements in the list that come before the specified cursor.
- """
- before: String
-
- """Returns the elements in the list that come after the specified cursor."""
- after: String
- ): GitHubTeamRepositoryConnection!
-
- """The HTTP path for this team's repositories"""
- repositoriesResourcePath: String!
-
- """The HTTP URL for this team's repositories"""
- repositoriesUrl: String!
-
- """The HTTP path for this team"""
- resourcePath: String!
-
- """The slug corresponding to the team."""
- slug: String!
-
- """The HTTP path for this team's teams"""
- teamsResourcePath: String!
-
- """The HTTP URL for this team's teams"""
- teamsUrl: String!
-
- """Identifies the date and time when the object was last updated."""
- updatedAt: String!
-
- """The HTTP URL for this team"""
- url: String!
-
- """Team is adminable by the viewer."""
- viewerCanAdminister: Boolean!
-
- """
- Check if the viewer is able to change their subscription status for the repository.
- """
- viewerCanSubscribe: Boolean!
-
- """
- Identifies if the viewer is watching, not watching, or ignoring the subscribable entity.
- """
- viewerSubscription: GitHubSubscriptionState
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-"""Types that can be an actor."""
-union GitHubPushAllowanceActor = GitHubUser | GitHubTeam | GitHubApp
-
-"""A team, user or app who has the ability to push to a protected branch."""
-type GitHubPushAllowance implements OneGraphNode & GitHubNode {
- """The actor that can push."""
- actor: GitHubPushAllowanceActor
-
- """
- Identifies the branch protection rule associated with the allowed user or team.
- """
- branchProtectionRule: GitHubBranchProtectionRule
-
- """"""
- id: ID!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-"""An edge in a connection."""
-type GitHubPushAllowanceEdge {
- """A cursor for use in pagination."""
- cursor: String!
-
- """The item at the end of the edge."""
- node: GitHubPushAllowance
-}
-
-"""The connection type for PushAllowance."""
-type GitHubPushAllowanceConnection {
- """A list of edges."""
- edges: [GitHubPushAllowanceEdge]
-
- """A list of nodes."""
- nodes: [GitHubPushAllowance]
-
- """Information to aid in pagination."""
- pageInfo: GitHubPageInfo!
-
- """Identifies the total count of items in the connection."""
- totalCount: Int!
-}
-
-"""An edge in a connection."""
-type GitHubRefEdge {
- """A cursor for use in pagination."""
- cursor: String!
-
- """The item at the end of the edge."""
- node: GitHubRef
-}
-
-"""The connection type for Ref."""
-type GitHubRefConnection {
- """A list of edges."""
- edges: [GitHubRefEdge]
-
- """A list of nodes."""
- nodes: [GitHubRef]
-
- """Information to aid in pagination."""
- pageInfo: GitHubPageInfo!
-
- """Identifies the total count of items in the connection."""
- totalCount: Int!
-}
-
-"""A conflict between two branch protection rules."""
-type GitHubBranchProtectionRuleConflict {
- """Identifies the branch protection rule."""
- branchProtectionRule: GitHubBranchProtectionRule
-
- """Identifies the conflicting branch protection rule."""
- conflictingBranchProtectionRule: GitHubBranchProtectionRule
-
- """Identifies the branch ref that has conflicting rules"""
- ref: GitHubRef
-}
-
-"""An edge in a connection."""
-type GitHubBranchProtectionRuleConflictEdge {
- """A cursor for use in pagination."""
- cursor: String!
-
- """The item at the end of the edge."""
- node: GitHubBranchProtectionRuleConflict
-}
-
-"""The connection type for BranchProtectionRuleConflict."""
-type GitHubBranchProtectionRuleConflictConnection {
- """A list of edges."""
- edges: [GitHubBranchProtectionRuleConflictEdge]
-
- """A list of nodes."""
- nodes: [GitHubBranchProtectionRuleConflict]
-
- """Information to aid in pagination."""
- pageInfo: GitHubPageInfo!
-
- """Identifies the total count of items in the connection."""
- totalCount: Int!
-}
-
-"""A branch protection rule."""
-type GitHubBranchProtectionRule implements OneGraphNode & GitHubNode {
- """
- A list of conflicts matching branches protection rule and other branch protection rules
- """
- branchProtectionRuleConflicts(
- """Returns the last _n_ elements from the list."""
- last: Int
-
- """Returns the first _n_ elements from the list."""
- first: Int
-
- """
- Returns the elements in the list that come before the specified cursor.
- """
- before: String
-
- """Returns the elements in the list that come after the specified cursor."""
- after: String
- ): GitHubBranchProtectionRuleConflictConnection!
-
- """The actor who created this branch protection rule."""
- creator: GitHubActor
-
- """Identifies the primary key from the database."""
- databaseId: Int
-
- """
- Will new commits pushed to matching branches dismiss pull request review approvals.
- """
- dismissesStaleReviews: Boolean!
-
- """"""
- id: ID!
-
- """Can admins overwrite branch protection."""
- isAdminEnforced: Boolean!
-
- """Repository refs that are protected by this rule"""
- matchingRefs(
- """Returns the last _n_ elements from the list."""
- last: Int
-
- """Returns the first _n_ elements from the list."""
- first: Int
-
- """
- Returns the elements in the list that come before the specified cursor.
- """
- before: String
-
- """Returns the elements in the list that come after the specified cursor."""
- after: String
-
- """Filters refs with query on name"""
- query: String
- ): GitHubRefConnection!
-
- """Identifies the protection rule pattern."""
- pattern: String!
-
- """A list push allowances for this branch protection rule."""
- pushAllowances(
- """Returns the last _n_ elements from the list."""
- last: Int
-
- """Returns the first _n_ elements from the list."""
- first: Int
-
- """
- Returns the elements in the list that come before the specified cursor.
- """
- before: String
-
- """Returns the elements in the list that come after the specified cursor."""
- after: String
- ): GitHubPushAllowanceConnection!
-
- """The repository associated with this branch protection rule."""
- repository: GitHubRepository
-
- """Number of approving reviews required to update matching branches."""
- requiredApprovingReviewCount: Int
-
- """
- List of required status check contexts that must pass for commits to be accepted to matching branches.
- """
- requiredStatusCheckContexts: [String]
-
- """Are approving reviews required to update matching branches."""
- requiresApprovingReviews: Boolean!
-
- """Are reviews from code owners required to update matching branches."""
- requiresCodeOwnerReviews: Boolean!
-
- """Are commits required to be signed."""
- requiresCommitSignatures: Boolean!
-
- """Are status checks required to update matching branches."""
- requiresStatusChecks: Boolean!
-
- """Are branches required to be up to date before merging."""
- requiresStrictStatusChecks: Boolean!
-
- """Is pushing to matching branches restricted."""
- restrictsPushes: Boolean!
-
- """Is dismissal of pull request reviews restricted."""
- restrictsReviewDismissals: Boolean!
-
- """A list review dismissal allowances for this branch protection rule."""
- reviewDismissalAllowances(
- """Returns the last _n_ elements from the list."""
- last: Int
-
- """Returns the first _n_ elements from the list."""
- first: Int
-
- """
- Returns the elements in the list that come before the specified cursor.
- """
- before: String
-
- """Returns the elements in the list that come after the specified cursor."""
- after: String
- ): GitHubReviewDismissalAllowanceConnection!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-"""An edge in a connection."""
-type GitHubBranchProtectionRuleEdge {
- """A cursor for use in pagination."""
- cursor: String!
-
- """The item at the end of the edge."""
- node: GitHubBranchProtectionRule
-}
-
-"""The connection type for BranchProtectionRule."""
-type GitHubBranchProtectionRuleConnection {
- """A list of edges."""
- edges: [GitHubBranchProtectionRuleEdge]
-
- """A list of nodes."""
- nodes: [GitHubBranchProtectionRule]
-
- """Information to aid in pagination."""
- pageInfo: GitHubPageInfo!
-
- """Identifies the total count of items in the connection."""
- totalCount: Int!
-}
-
-"""A repository contains the content for a project."""
-type GitHubRepository implements OneGraphNode & GitHubUniformResourceLocatable & GitHubSubscribable & GitHubStarrable & GitHubRepositoryInfo & GitHubRegistryPackageSearch & GitHubRegistryPackageOwner & GitHubProjectOwner & GitHubNode {
- """A list of users that can be assigned to issues in this repository."""
- assignableUsers(
- """Returns the last _n_ elements from the list."""
- last: Int
-
- """Returns the first _n_ elements from the list."""
- first: Int
-
- """
- Returns the elements in the list that come before the specified cursor.
- """
- before: String
-
- """Returns the elements in the list that come after the specified cursor."""
- after: String
-
- """Filters users with query on user name and login"""
- query: String
- ): GitHubUserConnection!
-
- """A list of branch protection rules for this repository."""
- branchProtectionRules(
- """Returns the last _n_ elements from the list."""
- last: Int
-
- """Returns the first _n_ elements from the list."""
- first: Int
-
- """
- Returns the elements in the list that come before the specified cursor.
- """
- before: String
-
- """Returns the elements in the list that come after the specified cursor."""
- after: String
- ): GitHubBranchProtectionRuleConnection!
-
- """Returns the code of conduct for this repository"""
- codeOfConduct: GitHubCodeOfConduct
-
- """A list of collaborators associated with the repository."""
- collaborators(
- """Returns the last _n_ elements from the list."""
- last: Int
-
- """Returns the first _n_ elements from the list."""
- first: Int
-
- """
- Returns the elements in the list that come before the specified cursor.
- """
- before: String
-
- """Returns the elements in the list that come after the specified cursor."""
- after: String
-
- """Filters users with query on user name and login"""
- query: String
-
- """Collaborators affiliation level with a repository."""
- affiliation: GitHubCollaboratorAffiliation
- ): GitHubRepositoryCollaboratorConnection
-
- """A list of commit comments associated with the repository."""
- commitComments(
- """Returns the last _n_ elements from the list."""
- last: Int
-
- """Returns the first _n_ elements from the list."""
- first: Int
-
- """
- Returns the elements in the list that come before the specified cursor.
- """
- before: String
-
- """Returns the elements in the list that come after the specified cursor."""
- after: String
- ): GitHubCommitCommentConnection!
-
- """Identifies the date and time when the object was created."""
- createdAt: String!
-
- """Identifies the primary key from the database."""
- databaseId: Int
-
- """The Ref associated with the repository's default branch."""
- defaultBranchRef: GitHubRef
-
- """
- Whether or not branches are automatically deleted when merged in this repository.
- """
- deleteBranchOnMerge: Boolean!
-
- """A list of deploy keys that are on this repository."""
- deployKeys(
- """Returns the last _n_ elements from the list."""
- last: Int
-
- """Returns the first _n_ elements from the list."""
- first: Int
-
- """
- Returns the elements in the list that come before the specified cursor.
- """
- before: String
-
- """Returns the elements in the list that come after the specified cursor."""
- after: String
- ): GitHubDeployKeyConnection!
-
- """Deployments associated with the repository"""
- deployments(
- """Returns the last _n_ elements from the list."""
- last: Int
-
- """Returns the first _n_ elements from the list."""
- first: Int
-
- """
- Returns the elements in the list that come before the specified cursor.
- """
- before: String
-
- """Returns the elements in the list that come after the specified cursor."""
- after: String
-
- """Ordering options for deployments returned from the connection."""
- orderBy: GitHubDeploymentOrder
-
- """Environments to list deployments for"""
- environments: [String!]
- ): GitHubDeploymentConnection!
-
- """The description of the repository."""
- description: String
-
- """The description of the repository rendered to HTML."""
- descriptionHTML: String!
-
- """The number of kilobytes this repository occupies on disk."""
- diskUsage: Int
-
- """
- Returns how many forks there are of this repository in the whole network.
- """
- forkCount: Int!
-
- """A list of direct forked repositories."""
- forks(
- """Returns the last _n_ elements from the list."""
- last: Int
-
- """Returns the first _n_ elements from the list."""
- first: Int
-
- """
- Returns the elements in the list that come before the specified cursor.
- """
- before: String
-
- """Returns the elements in the list that come after the specified cursor."""
- after: String
-
- """
- If non-null, filters repositories according to whether they have been locked
- """
- isLocked: Boolean
-
- """
- Array of owner's affiliation options for repositories returned from the connection. For example, OWNER will include only repositories that the organization or user being viewed owns.
- """
- ownerAffiliations: [GitHubRepositoryAffiliation]
-
- """
- Array of viewer's affiliation options for repositories returned from the connection. For example, OWNER will include only repositories that the current viewer owns.
- """
- affiliations: [GitHubRepositoryAffiliation]
-
- """Ordering options for repositories returned from the connection"""
- orderBy: GitHubRepositoryOrder
-
- """If non-null, filters repositories according to privacy"""
- privacy: GitHubRepositoryPrivacy
- ): GitHubRepositoryConnection!
-
- """The funding links for this repository"""
- fundingLinks: [GitHubFundingLink!]!
-
- """Indicates if the repository has issues feature enabled."""
- hasIssuesEnabled: Boolean!
-
- """Indicates if the repository has the Projects feature enabled."""
- hasProjectsEnabled: Boolean!
-
- """Indicates if the repository has wiki feature enabled."""
- hasWikiEnabled: Boolean!
-
- """The repository's URL."""
- homepageUrl: String
-
- """"""
- id: ID!
-
- """Indicates if the repository is unmaintained."""
- isArchived: Boolean!
-
- """Returns whether or not this repository disabled."""
- isDisabled: Boolean!
-
- """Identifies if the repository is a fork."""
- isFork: Boolean!
-
- """Indicates if the repository has been locked or not."""
- isLocked: Boolean!
-
- """Identifies if the repository is a mirror."""
- isMirror: Boolean!
-
- """Identifies if the repository is private."""
- isPrivate: Boolean!
-
- """
- Identifies if the repository is a template that can be used to generate new repositories.
- """
- isTemplate: Boolean!
-
- """Returns a single issue from the current repository by number."""
- issue(
- """The number for the issue to be returned."""
- number: Int!
- ): GitHubIssue
-
- """
- Returns a single issue-like object from the current repository by number.
- """
- issueOrPullRequest(
- """The number for the issue to be returned."""
- number: Int!
- ): GitHubIssueOrPullRequest
-
- """A list of issues that have been opened in the repository."""
- issues(
- """Returns the last _n_ elements from the list."""
- last: Int
-
- """Returns the first _n_ elements from the list."""
- first: Int
-
- """
- Returns the elements in the list that come before the specified cursor.
- """
- before: String
-
- """Returns the elements in the list that come after the specified cursor."""
- after: String
-
- """Filtering options for issues returned from the connection."""
- filterBy: GitHubIssueFilters
-
- """A list of states to filter the issues by."""
- states: [GitHubIssueState!]
-
- """A list of label names to filter the pull requests by."""
- labels: [String!]
-
- """Ordering options for issues returned from the connection."""
- orderBy: GitHubIssueOrder
- ): GitHubIssueConnection!
-
- """Returns a single label by name"""
- label(
- """Label name"""
- name: String!
- ): GitHubLabel
-
- """A list of labels associated with the repository."""
- labels(
- """If provided, searches labels by name and description."""
- query: String
-
- """Returns the last _n_ elements from the list."""
- last: Int
-
- """Returns the first _n_ elements from the list."""
- first: Int
-
- """
- Returns the elements in the list that come before the specified cursor.
- """
- before: String
-
- """Returns the elements in the list that come after the specified cursor."""
- after: String
-
- """Ordering options for labels returned from the connection."""
- orderBy: GitHubLabelOrder
- ): GitHubLabelConnection
-
- """
- A list containing a breakdown of the language composition of the repository.
- """
- languages(
- """Order for connection"""
- orderBy: GitHubLanguageOrder
-
- """Returns the last _n_ elements from the list."""
- last: Int
-
- """Returns the first _n_ elements from the list."""
- first: Int
-
- """
- Returns the elements in the list that come before the specified cursor.
- """
- before: String
-
- """Returns the elements in the list that come after the specified cursor."""
- after: String
- ): GitHubLanguageConnection
-
- """The license associated with the repository"""
- licenseInfo: GitHubLicense
-
- """The reason the repository has been locked."""
- lockReason: GitHubRepositoryLockReason
-
- """
- A list of Users that can be mentioned in the context of the repository.
- """
- mentionableUsers(
- """Returns the last _n_ elements from the list."""
- last: Int
-
- """Returns the first _n_ elements from the list."""
- first: Int
-
- """
- Returns the elements in the list that come before the specified cursor.
- """
- before: String
-
- """Returns the elements in the list that come after the specified cursor."""
- after: String
-
- """Filters users with query on user name and login"""
- query: String
- ): GitHubUserConnection!
-
- """Whether or not PRs are merged with a merge commit on this repository."""
- mergeCommitAllowed: Boolean!
-
- """Returns a single milestone from the current repository by number."""
- milestone(
- """The number for the milestone to be returned."""
- number: Int!
- ): GitHubMilestone
-
- """A list of milestones associated with the repository."""
- milestones(
- """Ordering options for milestones."""
- orderBy: GitHubMilestoneOrder
-
- """Filter by the state of the milestones."""
- states: [GitHubMilestoneState!]
-
- """Returns the last _n_ elements from the list."""
- last: Int
-
- """Returns the first _n_ elements from the list."""
- first: Int
-
- """
- Returns the elements in the list that come before the specified cursor.
- """
- before: String
-
- """Returns the elements in the list that come after the specified cursor."""
- after: String
- ): GitHubMilestoneConnection
-
- """The repository's original mirror URL."""
- mirrorUrl: String
-
- """The name of the repository."""
- name: String!
-
- """The repository's name with owner."""
- nameWithOwner: String!
-
- """A Git object in the repository"""
- object(
- """A Git revision expression suitable for rev-parse"""
- expression: String
-
- """The Git object ID"""
- oid: String
- ): GitHubGitObject
-
- """The image used to represent this repository in Open Graph data."""
- openGraphImageUrl: String!
-
- """The User owner of the repository."""
- owner: GitHubRepositoryOwner!
-
- """The repository parent, if this is a fork."""
- parent: GitHubRepository
-
- """The primary language of the repository's code."""
- primaryLanguage: GitHubLanguage
-
- """Find project by number."""
- project(
- """The project number to find."""
- number: Int!
- ): GitHubProject
-
- """A list of projects under the owner."""
- projects(
- """Returns the last _n_ elements from the list."""
- last: Int
-
- """Returns the first _n_ elements from the list."""
- first: Int
-
- """
- Returns the elements in the list that come before the specified cursor.
- """
- before: String
-
- """Returns the elements in the list that come after the specified cursor."""
- after: String
-
- """A list of states to filter the projects by."""
- states: [GitHubProjectState!]
-
- """Query to search projects by, currently only searching by name."""
- search: String
-
- """Ordering options for projects returned from the connection"""
- orderBy: GitHubProjectOrder
- ): GitHubProjectConnection!
-
- """The HTTP path listing the repository's projects"""
- projectsResourcePath: String!
-
- """The HTTP URL listing the repository's projects"""
- projectsUrl: String!
-
- """Returns a single pull request from the current repository by number."""
- pullRequest(
- """The number for the pull request to be returned."""
- number: Int!
- ): GitHubPullRequest
-
- """A list of pull requests that have been opened in the repository."""
- pullRequests(
- """Returns the last _n_ elements from the list."""
- last: Int
-
- """Returns the first _n_ elements from the list."""
- first: Int
-
- """
- Returns the elements in the list that come before the specified cursor.
- """
- before: String
-
- """Returns the elements in the list that come after the specified cursor."""
- after: String
-
- """Ordering options for pull requests returned from the connection."""
- orderBy: GitHubIssueOrder
-
- """The base ref name to filter the pull requests by."""
- baseRefName: String
-
- """The head ref name to filter the pull requests by."""
- headRefName: String
-
- """A list of label names to filter the pull requests by."""
- labels: [String!]
-
- """A list of states to filter the pull requests by."""
- states: [GitHubPullRequestState!]
- ): GitHubPullRequestConnection!
-
- """Identifies when the repository was last pushed to."""
- pushedAt: String
-
- """Whether or not rebase-merging is enabled on this repository."""
- rebaseMergeAllowed: Boolean!
-
- """Fetch a given ref from the repository"""
- ref(
- """
- The ref to retrieve. Fully qualified matches are checked in order (`refs/heads/master`) before falling back onto checks for short name matches (`master`).
- """
- qualifiedName: String!
- ): GitHubRef
-
- """Fetch a list of refs from the repository"""
- refs(
- """Ordering options for refs returned from the connection."""
- orderBy: GitHubRefOrder
-
- """DEPRECATED: use orderBy. The ordering direction."""
- direction: GitHubOrderDirection
-
- """A ref name prefix like `refs/heads/`, `refs/tags/`, etc."""
- refPrefix: String!
-
- """Returns the last _n_ elements from the list."""
- last: Int
-
- """Returns the first _n_ elements from the list."""
- first: Int
-
- """
- Returns the elements in the list that come before the specified cursor.
- """
- before: String
-
- """Returns the elements in the list that come after the specified cursor."""
- after: String
-
- """Filters refs with query on name"""
- query: String
- ): GitHubRefConnection
-
- """A list of registry packages under the owner."""
- registryPackages(
- """Filter registry package by whether it is publicly visible"""
- publicOnly: Boolean
-
- """Filter registry package by type (string)."""
- registryPackageType: String
-
- """Filter registry package by type."""
- packageType: GitHubRegistryPackageType
-
- """Find registry packages in a repository."""
- repositoryId: ID
-
- """Find registry packages by their names."""
- names: [String]
-
- """Find registry package by name."""
- name: String
-
- """Returns the last _n_ elements from the list."""
- last: Int
-
- """Returns the first _n_ elements from the list."""
- first: Int
-
- """
- Returns the elements in the list that come before the specified cursor.
- """
- before: String
-
- """Returns the elements in the list that come after the specified cursor."""
- after: String
- ): GitHubRegistryPackageConnection! @deprecated(reason: "Renaming GitHub Packages fields and objects. Use the `PackageOwner` object instead. Removal on 2020-04-01 UTC.")
-
- """A list of registry packages for a particular search query."""
- registryPackagesForQuery(
- """Filter registry package by type."""
- packageType: GitHubRegistryPackageType
-
- """Find registry package by search query."""
- query: String
-
- """Returns the last _n_ elements from the list."""
- last: Int
-
- """Returns the first _n_ elements from the list."""
- first: Int
-
- """
- Returns the elements in the list that come before the specified cursor.
- """
- before: String
-
- """Returns the elements in the list that come after the specified cursor."""
- after: String
- ): GitHubRegistryPackageConnection! @deprecated(reason: "Renaming GitHub Packages fields and objects. Use the `PackageSearch` object instead. Removal on 2020-04-01 UTC.")
-
- """Lookup a single release given various criteria."""
- release(
- """The name of the Tag the Release was created from"""
- tagName: String!
- ): GitHubRelease
-
- """List of releases which are dependent on this repository."""
- releases(
- """Order for connection"""
- orderBy: GitHubReleaseOrder
-
- """Returns the last _n_ elements from the list."""
- last: Int
-
- """Returns the first _n_ elements from the list."""
- first: Int
-
- """
- Returns the elements in the list that come before the specified cursor.
- """
- before: String
-
- """Returns the elements in the list that come after the specified cursor."""
- after: String
- ): GitHubReleaseConnection!
-
- """A list of applied repository-topic associations for this repository."""
- repositoryTopics(
- """Returns the last _n_ elements from the list."""
- last: Int
-
- """Returns the first _n_ elements from the list."""
- first: Int
-
- """
- Returns the elements in the list that come before the specified cursor.
- """
- before: String
-
- """Returns the elements in the list that come after the specified cursor."""
- after: String
- ): GitHubRepositoryTopicConnection!
-
- """The HTTP path for this repository"""
- resourcePath: String!
-
- """
- A description of the repository, rendered to HTML without any links in it.
- """
- shortDescriptionHTML(
- """How many characters to return."""
- limit: Int
- ): String!
-
- """Whether or not squash-merging is enabled on this repository."""
- squashMergeAllowed: Boolean!
-
- """The SSH URL to clone this repository"""
- sshUrl: String!
-
- """A list of users who have starred this starrable."""
- stargazers(
- """Order for connection"""
- orderBy: GitHubStarOrder
-
- """Returns the last _n_ elements from the list."""
- last: Int
-
- """Returns the first _n_ elements from the list."""
- first: Int
-
- """
- Returns the elements in the list that come before the specified cursor.
- """
- before: String
-
- """Returns the elements in the list that come after the specified cursor."""
- after: String
- ): GitHubStargazerConnection!
-
- """
- Returns a list of all submodules in this repository parsed from the .gitmodules file as of the default branch's HEAD commit.
- """
- submodules(
- """Returns the last _n_ elements from the list."""
- last: Int
-
- """Returns the first _n_ elements from the list."""
- first: Int
-
- """
- Returns the elements in the list that come before the specified cursor.
- """
- before: String
-
- """Returns the elements in the list that come after the specified cursor."""
- after: String
- ): GitHubSubmoduleConnection!
-
- """Temporary authentication token for cloning this repository."""
- tempCloneToken: String
-
- """The repository from which this repository was generated, if any."""
- templateRepository: GitHubRepository
-
- """Identifies the date and time when the object was last updated."""
- updatedAt: String!
-
- """The HTTP URL for this repository"""
- url: String!
-
- """
- Whether this repository has a custom image to use with Open Graph as opposed to being represented by the owner's avatar.
- """
- usesCustomOpenGraphImage: Boolean!
-
- """Indicates whether the viewer has admin permissions on this repository."""
- viewerCanAdminister: Boolean!
-
- """Can the current viewer create new projects on this owner."""
- viewerCanCreateProjects: Boolean!
-
- """
- Check if the viewer is able to change their subscription status for the repository.
- """
- viewerCanSubscribe: Boolean!
-
- """Indicates whether the viewer can update the topics of this repository."""
- viewerCanUpdateTopics: Boolean!
-
- """
- Returns a boolean indicating whether the viewing user has starred this starrable.
- """
- viewerHasStarred: Boolean!
-
- """
- The users permission level on the repository. Will return null if authenticated as an GitHub App.
- """
- viewerPermission: GitHubRepositoryPermission
-
- """
- Identifies if the viewer is watching, not watching, or ignoring the subscribable entity.
- """
- viewerSubscription: GitHubSubscriptionState
-
- """A list of vulnerability alerts that are on this repository."""
- vulnerabilityAlerts(
- """Returns the last _n_ elements from the list."""
- last: Int
-
- """Returns the first _n_ elements from the list."""
- first: Int
-
- """
- Returns the elements in the list that come before the specified cursor.
- """
- before: String
-
- """Returns the elements in the list that come after the specified cursor."""
- after: String
- ): GitHubRepositoryVulnerabilityAlertConnection
-
- """A list of users watching the repository."""
- watchers(
- """Returns the last _n_ elements from the list."""
- last: Int
-
- """Returns the first _n_ elements from the list."""
- first: Int
-
- """
- Returns the elements in the list that come before the specified cursor.
- """
- before: String
-
- """Returns the elements in the list that come after the specified cursor."""
- after: String
- ): GitHubUserConnection!
-
- """
- Lists contributors to the specified repository and sorts them by the number of commits per contributor in descending order. This endpoint may return information that is a few hours old because the GitHub REST API v3 caches contributor data to improve performance.
-
- Note that GitHub identifies contributors by author email address. This field groups contribution counts by GitHub user, which includes all associated email addresses. To improve performance, only the first 500 author email addresses in the repository link to GitHub users. The rest will appear as anonymous contributors without associated GitHub user information.
- """
- contributors_oneGraph(
- """The pagination cursor used to control which results you want"""
- after: String
- includeAnonymousContributors: Boolean
- ): GitHubRepositoryContributorConnection! @deprecated(reason: "*Temporary mutation until GitHub implemements their own `contributors` field for a repostiory.*")
-
- """Whether a the current user is a collaborator on this repository"""
- viewerIsCollaborator_oneGraph: Boolean! @deprecated(reason: "*Temporary mutation until GitHub implemements their own `viewerIsCollaborator` field for a repository.*")
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-enum GitHubOrderDirection {
- """Specifies an ascending order for a given `orderBy` argument."""
- ASC
-
- """Specifies a descending order for a given `orderBy` argument."""
- DESC
-}
-
-enum GitHubIssueOrderField {
- """Order issues by creation time"""
- CREATED_AT
-
- """Order issues by update time"""
- UPDATED_AT
-
- """Order issues by comment count"""
- COMMENTS
-}
-
-"""Ways in which lists of issues can be ordered upon return."""
-input GitHubIssueOrder {
- """The direction in which to order issues by the specified field."""
- direction: GitHubOrderDirection!
-
- """The field in which to order issues by."""
- field: GitHubIssueOrderField!
-}
-
-enum GitHubPullRequestState {
- """A pull request that is still open."""
- OPEN
-
- """A pull request that has been closed without being merged."""
- CLOSED
-
- """A pull request that has been closed by being merged."""
- MERGED
-}
-
-"""Represents a Git reference."""
-type GitHubRef implements OneGraphNode & GitHubNode {
- """A list of pull requests with this ref as the head ref."""
- associatedPullRequests(
- """Returns the last _n_ elements from the list."""
- last: Int
-
- """Returns the first _n_ elements from the list."""
- first: Int
-
- """
- Returns the elements in the list that come before the specified cursor.
- """
- before: String
-
- """Returns the elements in the list that come after the specified cursor."""
- after: String
-
- """Ordering options for pull requests returned from the connection."""
- orderBy: GitHubIssueOrder
-
- """The base ref name to filter the pull requests by."""
- baseRefName: String
-
- """The head ref name to filter the pull requests by."""
- headRefName: String
-
- """A list of label names to filter the pull requests by."""
- labels: [String!]
-
- """A list of states to filter the pull requests by."""
- states: [GitHubPullRequestState!]
- ): GitHubPullRequestConnection!
-
- """"""
- id: ID!
-
- """The ref name."""
- name: String!
-
- """The ref's prefix, such as `refs/heads/` or `refs/tags/`."""
- prefix: String!
-
- """The repository the ref belongs to."""
- repository: GitHubRepository!
-
- """The object the ref points to."""
- target: GitHubGitObject!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-"""Information about pagination in a connection."""
-type GitHubPageInfo {
- """When paginating forwards, the cursor to continue."""
- endCursor: String
-
- """When paginating forwards, are there more items?"""
- hasNextPage: Boolean!
-
- """When paginating backwards, are there more items?"""
- hasPreviousPage: Boolean!
-
- """When paginating backwards, the cursor to continue."""
- startCursor: String
-}
-
-"""Represents a user."""
-type GitHubUserEdge {
- """A cursor for use in pagination."""
- cursor: String!
-
- """The item at the end of the edge."""
- node: GitHubUser
-}
-
-"""The connection type for User."""
-type GitHubUserConnection {
- """A list of edges."""
- edges: [GitHubUserEdge]
-
- """A list of nodes."""
- nodes: [GitHubUser]
-
- """Information to aid in pagination."""
- pageInfo: GitHubPageInfo!
-
- """Identifies the total count of items in the connection."""
- totalCount: Int!
-}
-
-enum GitHubLockReason {
- """
- The issue or pull request was locked because the conversation was off-topic.
- """
- OFF_TOPIC
-
- """
- The issue or pull request was locked because the conversation was too heated.
- """
- TOO_HEATED
-
- """
- The issue or pull request was locked because the conversation was resolved.
- """
- RESOLVED
-
- """
- The issue or pull request was locked because the conversation was spam.
- """
- SPAM
-}
-
-"""A repository pull request."""
-type GitHubPullRequest implements OneGraphNode & GitHubUpdatableComment & GitHubUpdatable & GitHubUniformResourceLocatable & GitHubSubscribable & GitHubRepositoryNode & GitHubReactable & GitHubNode & GitHubLockable & GitHubLabelable & GitHubComment & GitHubClosable & GitHubAssignable {
- """Reason that the conversation was locked."""
- activeLockReason: GitHubLockReason
-
- """The number of additions in this pull request."""
- additions: Int!
-
- """A list of Users assigned to this object."""
- assignees(
- """Returns the last _n_ elements from the list."""
- last: Int
-
- """Returns the first _n_ elements from the list."""
- first: Int
-
- """
- Returns the elements in the list that come before the specified cursor.
- """
- before: String
-
- """Returns the elements in the list that come after the specified cursor."""
- after: String
- ): GitHubUserConnection!
-
- """The actor who authored the comment."""
- author: GitHubActor
-
- """Author's association with the subject of the comment."""
- authorAssociation: GitHubCommentAuthorAssociation!
-
- """Identifies the base Ref associated with the pull request."""
- baseRef: GitHubRef
-
- """
- Identifies the name of the base Ref associated with the pull request, even if the ref has been deleted.
- """
- baseRefName: String!
-
- """
- Identifies the oid of the base ref associated with the pull request, even if the ref has been deleted.
- """
- baseRefOid: String!
-
- """The repository associated with this pull request's base Ref."""
- baseRepository: GitHubRepository
-
- """The body as Markdown."""
- body: String!
-
- """The body rendered to HTML."""
- bodyHTML: String!
-
- """The body rendered to text."""
- bodyText: String!
-
- """The number of changed files in this pull request."""
- changedFiles: Int!
-
- """The HTTP path for the checks of this pull request."""
- checksResourcePath: String!
-
- """The HTTP URL for the checks of this pull request."""
- checksUrl: String!
-
- """`true` if the pull request is closed"""
- closed: Boolean!
-
- """Identifies the date and time when the object was closed."""
- closedAt: String
-
- """A list of comments associated with the pull request."""
- comments(
- """Returns the last _n_ elements from the list."""
- last: Int
-
- """Returns the first _n_ elements from the list."""
- first: Int
-
- """
- Returns the elements in the list that come before the specified cursor.
- """
- before: String
-
- """Returns the elements in the list that come after the specified cursor."""
- after: String
- ): GitHubIssueCommentConnection!
-
- """
- A list of commits present in this pull request's head branch not present in the base branch.
- """
- commits(
- """Returns the last _n_ elements from the list."""
- last: Int
-
- """Returns the first _n_ elements from the list."""
- first: Int
-
- """
- Returns the elements in the list that come before the specified cursor.
- """
- before: String
-
- """Returns the elements in the list that come after the specified cursor."""
- after: String
- ): GitHubPullRequestCommitConnection!
-
- """Identifies the date and time when the object was created."""
- createdAt: String!
-
- """Check if this comment was created via an email reply."""
- createdViaEmail: Boolean!
-
- """Identifies the primary key from the database."""
- databaseId: Int
-
- """The number of deletions in this pull request."""
- deletions: Int!
-
- """The actor who edited this pull request's body."""
- editor: GitHubActor
-
- """Lists the files changed within this pull request."""
- files(
- """Returns the last _n_ elements from the list."""
- last: Int
-
- """Returns the first _n_ elements from the list."""
- first: Int
-
- """
- Returns the elements in the list that come before the specified cursor.
- """
- before: String
-
- """Returns the elements in the list that come after the specified cursor."""
- after: String
- ): GitHubPullRequestChangedFileConnection
-
- """Identifies the head Ref associated with the pull request."""
- headRef: GitHubRef
-
- """
- Identifies the name of the head Ref associated with the pull request, even if the ref has been deleted.
- """
- headRefName: String!
-
- """
- Identifies the oid of the head ref associated with the pull request, even if the ref has been deleted.
- """
- headRefOid: String!
-
- """The repository associated with this pull request's head Ref."""
- headRepository: GitHubRepository
-
- """
- The owner of the repository associated with this pull request's head Ref.
- """
- headRepositoryOwner: GitHubRepositoryOwner
-
- """The hovercard information for this issue"""
- hovercard(
- """Whether or not to include notification contexts"""
- includeNotificationContexts: Boolean
- ): GitHubHovercard!
-
- """"""
- id: ID!
-
- """
- Check if this comment was edited and includes an edit with the creation data
- """
- includesCreatedEdit: Boolean!
-
- """The head and base repositories are different."""
- isCrossRepository: Boolean!
-
- """Identifies if the pull request is a draft."""
- isDraft: Boolean!
-
- """A list of labels associated with the object."""
- labels(
- """Returns the last _n_ elements from the list."""
- last: Int
-
- """Returns the first _n_ elements from the list."""
- first: Int
-
- """
- Returns the elements in the list that come before the specified cursor.
- """
- before: String
-
- """Returns the elements in the list that come after the specified cursor."""
- after: String
-
- """Ordering options for labels returned from the connection."""
- orderBy: GitHubLabelOrder
- ): GitHubLabelConnection
-
- """The moment the editor made the last edit"""
- lastEditedAt: String
-
- """`true` if the pull request is locked"""
- locked: Boolean!
-
- """Indicates whether maintainers can modify the pull request."""
- maintainerCanModify: Boolean!
-
- """The commit that was created when this pull request was merged."""
- mergeCommit: GitHubCommit
-
- """
- Whether or not the pull request can be merged based on the existence of merge conflicts.
- """
- mergeable: GitHubMergeableState!
-
- """Whether or not the pull request was merged."""
- merged: Boolean!
-
- """The date and time that the pull request was merged."""
- mergedAt: String
-
- """The actor who merged the pull request."""
- mergedBy: GitHubActor
-
- """Identifies the milestone associated with the pull request."""
- milestone: GitHubMilestone
-
- """Identifies the pull request number."""
- number: Int!
-
- """
- A list of Users that are participating in the Pull Request conversation.
- """
- participants(
- """Returns the last _n_ elements from the list."""
- last: Int
-
- """Returns the first _n_ elements from the list."""
- first: Int
-
- """
- Returns the elements in the list that come before the specified cursor.
- """
- before: String
-
- """Returns the elements in the list that come after the specified cursor."""
- after: String
- ): GitHubUserConnection!
-
- """The permalink to the pull request."""
- permalink: String!
-
- """
- The commit that GitHub automatically generated to test if this pull request could be merged. This field will not return a value if the pull request is merged, or if the test merge commit is still being generated. See the `mergeable` field for more details on the mergeability of the pull request.
- """
- potentialMergeCommit: GitHubCommit
-
- """List of project cards associated with this pull request."""
- projectCards(
- """A list of archived states to filter the cards by"""
- archivedStates: [GitHubProjectCardArchivedState]
-
- """Returns the last _n_ elements from the list."""
- last: Int
-
- """Returns the first _n_ elements from the list."""
- first: Int
-
- """
- Returns the elements in the list that come before the specified cursor.
- """
- before: String
-
- """Returns the elements in the list that come after the specified cursor."""
- after: String
- ): GitHubProjectCardConnection!
-
- """Identifies when the comment was published at."""
- publishedAt: String
-
- """A list of reactions grouped by content left on the subject."""
- reactionGroups: [GitHubReactionGroup!]
-
- """A list of Reactions left on the Issue."""
- reactions(
- """Allows specifying the order in which reactions are returned."""
- orderBy: GitHubReactionOrder
-
- """Allows filtering Reactions by emoji."""
- content: GitHubReactionContent
-
- """Returns the last _n_ elements from the list."""
- last: Int
-
- """Returns the first _n_ elements from the list."""
- first: Int
-
- """
- Returns the elements in the list that come before the specified cursor.
- """
- before: String
-
- """Returns the elements in the list that come after the specified cursor."""
- after: String
- ): GitHubReactionConnection!
-
- """The repository associated with this node."""
- repository: GitHubRepository!
-
- """The HTTP path for this pull request."""
- resourcePath: String!
-
- """The HTTP path for reverting this pull request."""
- revertResourcePath: String!
-
- """The HTTP URL for reverting this pull request."""
- revertUrl: String!
-
- """The current status of this pull request with respect to code review."""
- reviewDecision: GitHubPullRequestReviewDecision
-
- """A list of review requests associated with the pull request."""
- reviewRequests(
- """Returns the last _n_ elements from the list."""
- last: Int
-
- """Returns the first _n_ elements from the list."""
- first: Int
-
- """
- Returns the elements in the list that come before the specified cursor.
- """
- before: String
-
- """Returns the elements in the list that come after the specified cursor."""
- after: String
- ): GitHubReviewRequestConnection
-
- """The list of all review threads for this pull request."""
- reviewThreads(
- """Returns the last _n_ elements from the list."""
- last: Int
-
- """Returns the first _n_ elements from the list."""
- first: Int
-
- """
- Returns the elements in the list that come before the specified cursor.
- """
- before: String
-
- """Returns the elements in the list that come after the specified cursor."""
- after: String
- ): GitHubPullRequestReviewThreadConnection!
-
- """A list of reviews associated with the pull request."""
- reviews(
- """Filter by author of the review."""
- author: String
-
- """A list of states to filter the reviews."""
- states: [GitHubPullRequestReviewState!]
-
- """Returns the last _n_ elements from the list."""
- last: Int
-
- """Returns the first _n_ elements from the list."""
- first: Int
-
- """
- Returns the elements in the list that come before the specified cursor.
- """
- before: String
-
- """Returns the elements in the list that come after the specified cursor."""
- after: String
- ): GitHubPullRequestReviewConnection
-
- """Identifies the state of the pull request."""
- state: GitHubPullRequestState!
-
- """
- A list of reviewer suggestions based on commit history and past review comments.
- """
- suggestedReviewers: [GitHubSuggestedReviewer]!
-
- """
- A list of events, comments, commits, etc. associated with the pull request.
- """
- timeline(
- """Returns the last _n_ elements from the list."""
- last: Int
-
- """Returns the first _n_ elements from the list."""
- first: Int
-
- """
- Returns the elements in the list that come before the specified cursor.
- """
- before: String
-
- """Returns the elements in the list that come after the specified cursor."""
- after: String
-
- """Allows filtering timeline events by a `since` timestamp."""
- since: String
- ): GitHubPullRequestTimelineConnection! @deprecated(reason: "`timeline` will be removed Use PullRequest.timelineItems instead. Removal on 2019-10-01 UTC.")
-
- """
- A list of events, comments, commits, etc. associated with the pull request.
- """
- timelineItems(
- """Returns the last _n_ elements from the list."""
- last: Int
-
- """Returns the first _n_ elements from the list."""
- first: Int
-
- """
- Returns the elements in the list that come before the specified cursor.
- """
- before: String
-
- """Returns the elements in the list that come after the specified cursor."""
- after: String
-
- """Filter timeline items by type."""
- itemTypes: [GitHubPullRequestTimelineItemsItemType!]
-
- """Skips the first _n_ elements in the list."""
- skip: Int
-
- """Filter timeline items by a `since` timestamp."""
- since: String
- ): GitHubPullRequestTimelineItemsConnection!
-
- """Identifies the pull request title."""
- title: String!
-
- """Identifies the date and time when the object was last updated."""
- updatedAt: String!
-
- """The HTTP URL for this pull request."""
- url: String!
-
- """A list of edits to this content."""
- userContentEdits(
- """Returns the last _n_ elements from the list."""
- last: Int
-
- """Returns the first _n_ elements from the list."""
- first: Int
-
- """
- Returns the elements in the list that come before the specified cursor.
- """
- before: String
-
- """Returns the elements in the list that come after the specified cursor."""
- after: String
- ): GitHubUserContentEditConnection
-
- """Whether or not the viewer can apply suggestion."""
- viewerCanApplySuggestion: Boolean!
-
- """Can user react to this subject"""
- viewerCanReact: Boolean!
-
- """
- Check if the viewer is able to change their subscription status for the repository.
- """
- viewerCanSubscribe: Boolean!
-
- """Check if the current viewer can update this object."""
- viewerCanUpdate: Boolean!
-
- """Reasons why the current viewer can not update this comment."""
- viewerCannotUpdateReasons: [GitHubCommentCannotUpdateReason!]!
-
- """Did the viewer author this comment."""
- viewerDidAuthor: Boolean!
-
- """
- Identifies if the viewer is watching, not watching, or ignoring the subscribable entity.
- """
- viewerSubscription: GitHubSubscriptionState
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-"""An edge in a connection."""
-type GitHubPullRequestEdge {
- """A cursor for use in pagination."""
- cursor: String!
-
- """The item at the end of the edge."""
- node: GitHubPullRequest
-}
-
-"""The connection type for PullRequest."""
-type GitHubPullRequestConnection {
- """A list of edges."""
- edges: [GitHubPullRequestEdge]
-
- """A list of nodes."""
- nodes: [GitHubPullRequest]
-
- """Information to aid in pagination."""
- pageInfo: GitHubPageInfo!
-
- """Identifies the total count of items in the connection."""
- totalCount: Int!
-}
-
-"""Represents a Git commit."""
-type GitHubCommit implements OneGraphNode & GitHubUniformResourceLocatable & GitHubSubscribable & GitHubNode & GitHubGitObject {
- """An abbreviated version of the Git object ID"""
- abbreviatedOid: String!
-
- """The number of additions in this commit."""
- additions: Int!
-
- """The pull requests associated with a commit"""
- associatedPullRequests(
- """Ordering options for pull requests."""
- orderBy: GitHubPullRequestOrder
-
- """Returns the last _n_ elements from the list."""
- last: Int
-
- """Returns the first _n_ elements from the list."""
- first: Int
-
- """
- Returns the elements in the list that come before the specified cursor.
- """
- before: String
-
- """Returns the elements in the list that come after the specified cursor."""
- after: String
- ): GitHubPullRequestConnection
-
- """Authorship details of the commit."""
- author: GitHubGitActor
-
- """Check if the committer and the author match."""
- authoredByCommitter: Boolean!
-
- """The datetime when this commit was authored."""
- authoredDate: String!
-
- """Fetches `git blame` information."""
- blame(
- """The file whose Git blame information you want."""
- path: String!
- ): GitHubBlame!
-
- """The number of changed files in this commit."""
- changedFiles: Int!
-
- """Comments made on the commit."""
- comments(
- """Returns the last _n_ elements from the list."""
- last: Int
-
- """Returns the first _n_ elements from the list."""
- first: Int
-
- """
- Returns the elements in the list that come before the specified cursor.
- """
- before: String
-
- """Returns the elements in the list that come after the specified cursor."""
- after: String
- ): GitHubCommitCommentConnection!
-
- """The HTTP path for this Git object"""
- commitResourcePath: String!
-
- """The HTTP URL for this Git object"""
- commitUrl: String!
-
- """The datetime when this commit was committed."""
- committedDate: String!
-
- """Check if commited via GitHub web UI."""
- committedViaWeb: Boolean!
-
- """Committership details of the commit."""
- committer: GitHubGitActor
-
- """The number of deletions in this commit."""
- deletions: Int!
-
- """The deployments associated with a commit."""
- deployments(
- """Returns the last _n_ elements from the list."""
- last: Int
-
- """Returns the first _n_ elements from the list."""
- first: Int
-
- """
- Returns the elements in the list that come before the specified cursor.
- """
- before: String
-
- """Returns the elements in the list that come after the specified cursor."""
- after: String
-
- """Ordering options for deployments returned from the connection."""
- orderBy: GitHubDeploymentOrder
-
- """Environments to list deployments for"""
- environments: [String!]
- ): GitHubDeploymentConnection
-
- """
- The linear commit history starting from (and including) this commit, in the same order as `git log`.
- """
- history(
- """Allows specifying an ending time or date for fetching commits."""
- until: String
-
- """Allows specifying a beginning time or date for fetching commits."""
- since: String
-
- """
- If non-null, filters history to only show commits with matching authorship.
- """
- author: GitHubCommitAuthor
-
- """
- If non-null, filters history to only show commits touching files under this path.
- """
- path: String
-
- """Returns the last _n_ elements from the list."""
- last: Int
-
- """Returns the first _n_ elements from the list."""
- first: Int
-
- """
- Returns the elements in the list that come before the specified cursor.
- """
- before: String
-
- """Returns the elements in the list that come after the specified cursor."""
- after: String
- ): GitHubCommitHistoryConnection!
-
- """"""
- id: ID!
-
- """The Git commit message"""
- message: String!
-
- """The Git commit message body"""
- messageBody: String!
-
- """The commit message body rendered to HTML."""
- messageBodyHTML: String!
-
- """The Git commit message headline"""
- messageHeadline: String!
-
- """The commit message headline rendered to HTML."""
- messageHeadlineHTML: String!
-
- """The Git object ID"""
- oid: String!
-
- """The organization this commit was made on behalf of."""
- onBehalfOf: GitHubOrganization
-
- """The parents of a commit."""
- parents(
- """Returns the last _n_ elements from the list."""
- last: Int
-
- """Returns the first _n_ elements from the list."""
- first: Int
-
- """
- Returns the elements in the list that come before the specified cursor.
- """
- before: String
-
- """Returns the elements in the list that come after the specified cursor."""
- after: String
- ): GitHubCommitConnection!
-
- """The datetime when this commit was pushed."""
- pushedDate: String
-
- """The Repository this commit belongs to"""
- repository: GitHubRepository!
-
- """The HTTP path for this commit"""
- resourcePath: String!
-
- """Commit signing information, if present."""
- signature: GitHubGitSignature
-
- """Status information for this commit"""
- status: GitHubStatus
-
- """Check and Status rollup information for this commit."""
- statusCheckRollup: GitHubStatusCheckRollup
-
- """
- Returns a list of all submodules in this repository as of this Commit parsed from the .gitmodules file.
- """
- submodules(
- """Returns the last _n_ elements from the list."""
- last: Int
-
- """Returns the first _n_ elements from the list."""
- first: Int
-
- """
- Returns the elements in the list that come before the specified cursor.
- """
- before: String
-
- """Returns the elements in the list that come after the specified cursor."""
- after: String
- ): GitHubSubmoduleConnection!
-
- """
- Returns a URL to download a tarball archive for a repository.
- Note: For private repositories, these links are temporary and expire after five minutes.
- """
- tarballUrl: String!
-
- """Commit's root Tree"""
- tree: GitHubTree!
-
- """The HTTP path for the tree of this commit"""
- treeResourcePath: String!
-
- """The HTTP URL for the tree of this commit"""
- treeUrl: String!
-
- """The HTTP URL for this commit"""
- url: String!
-
- """
- Check if the viewer is able to change their subscription status for the repository.
- """
- viewerCanSubscribe: Boolean!
-
- """
- Identifies if the viewer is watching, not watching, or ignoring the subscribable entity.
- """
- viewerSubscription: GitHubSubscriptionState
-
- """
- Returns a URL to download a zipball archive for a repository.
- Note: For private repositories, these links are temporary and expire after five minutes.
- """
- zipballUrl: String!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-"""A review comment associated with a given repository pull request."""
-type GitHubPullRequestReviewComment implements OneGraphNode & GitHubUpdatableComment & GitHubUpdatable & GitHubRepositoryNode & GitHubReactable & GitHubNode & GitHubMinimizable & GitHubDeletable & GitHubComment {
- """The actor who authored the comment."""
- author: GitHubActor
-
- """Author's association with the subject of the comment."""
- authorAssociation: GitHubCommentAuthorAssociation!
-
- """The comment body of this review comment."""
- body: String!
-
- """The body rendered to HTML."""
- bodyHTML: String!
-
- """The comment body of this review comment rendered as plain text."""
- bodyText: String!
-
- """Identifies the commit associated with the comment."""
- commit: GitHubCommit
-
- """Identifies when the comment was created."""
- createdAt: String!
-
- """Check if this comment was created via an email reply."""
- createdViaEmail: Boolean!
-
- """Identifies the primary key from the database."""
- databaseId: Int
-
- """The diff hunk to which the comment applies."""
- diffHunk: String!
-
- """Identifies when the comment was created in a draft state."""
- draftedAt: String!
-
- """The actor who edited the comment."""
- editor: GitHubActor
-
- """"""
- id: ID!
-
- """
- Check if this comment was edited and includes an edit with the creation data
- """
- includesCreatedEdit: Boolean!
-
- """Returns whether or not a comment has been minimized."""
- isMinimized: Boolean!
-
- """The moment the editor made the last edit"""
- lastEditedAt: String
-
- """Returns why the comment was minimized."""
- minimizedReason: String
-
- """Identifies the original commit associated with the comment."""
- originalCommit: GitHubCommit
-
- """The original line index in the diff to which the comment applies."""
- originalPosition: Int!
-
- """Identifies when the comment body is outdated"""
- outdated: Boolean!
-
- """The path to which the comment applies."""
- path: String!
-
- """The line index in the diff to which the comment applies."""
- position: Int
-
- """Identifies when the comment was published at."""
- publishedAt: String
-
- """The pull request associated with this review comment."""
- pullRequest: GitHubPullRequest!
-
- """The pull request review associated with this review comment."""
- pullRequestReview: GitHubPullRequestReview
-
- """A list of reactions grouped by content left on the subject."""
- reactionGroups: [GitHubReactionGroup!]
-
- """A list of Reactions left on the Issue."""
- reactions(
- """Allows specifying the order in which reactions are returned."""
- orderBy: GitHubReactionOrder
-
- """Allows filtering Reactions by emoji."""
- content: GitHubReactionContent
-
- """Returns the last _n_ elements from the list."""
- last: Int
-
- """Returns the first _n_ elements from the list."""
- first: Int
-
- """
- Returns the elements in the list that come before the specified cursor.
- """
- before: String
-
- """Returns the elements in the list that come after the specified cursor."""
- after: String
- ): GitHubReactionConnection!
-
- """The comment this is a reply to."""
- replyTo: GitHubPullRequestReviewComment
-
- """The repository associated with this node."""
- repository: GitHubRepository!
-
- """The HTTP path permalink for this review comment."""
- resourcePath: String!
-
- """Identifies the state of the comment."""
- state: GitHubPullRequestReviewCommentState!
-
- """Identifies when the comment was last updated."""
- updatedAt: String!
-
- """The HTTP URL permalink for this review comment."""
- url: String!
-
- """A list of edits to this content."""
- userContentEdits(
- """Returns the last _n_ elements from the list."""
- last: Int
-
- """Returns the first _n_ elements from the list."""
- first: Int
-
- """
- Returns the elements in the list that come before the specified cursor.
- """
- before: String
-
- """Returns the elements in the list that come after the specified cursor."""
- after: String
- ): GitHubUserContentEditConnection
-
- """Check if the current viewer can delete this object."""
- viewerCanDelete: Boolean!
-
- """Check if the current viewer can minimize this object."""
- viewerCanMinimize: Boolean!
-
- """Can user react to this subject"""
- viewerCanReact: Boolean!
-
- """Check if the current viewer can update this object."""
- viewerCanUpdate: Boolean!
-
- """Reasons why the current viewer can not update this comment."""
- viewerCannotUpdateReasons: [GitHubCommentCannotUpdateReason!]!
-
- """Did the viewer author this comment."""
- viewerDidAuthor: Boolean!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-"""Represents a subject that can be reacted on."""
-interface GitHubReactable {
- """Identifies the primary key from the database."""
- databaseId: Int
-
- """"""
- id: ID!
-
- """A list of reactions grouped by content left on the subject."""
- reactionGroups: [GitHubReactionGroup!]
-
- """A list of Reactions left on the Issue."""
- reactions(
- """Allows specifying the order in which reactions are returned."""
- orderBy: GitHubReactionOrder
-
- """Allows filtering Reactions by emoji."""
- content: GitHubReactionContent
-
- """Returns the last _n_ elements from the list."""
- last: Int
-
- """Returns the first _n_ elements from the list."""
- first: Int
-
- """
- Returns the elements in the list that come before the specified cursor.
- """
- before: String
-
- """Returns the elements in the list that come after the specified cursor."""
- after: String
- ): GitHubReactionConnection!
-
- """Can user react to this subject"""
- viewerCanReact: Boolean!
-}
-
-enum GitHubReactionContent {
- """Represents the `:+1:` emoji."""
- THUMBS_UP
-
- """Represents the `:-1:` emoji."""
- THUMBS_DOWN
-
- """Represents the `:laugh:` emoji."""
- LAUGH
-
- """Represents the `:hooray:` emoji."""
- HOORAY
-
- """Represents the `:confused:` emoji."""
- CONFUSED
-
- """Represents the `:heart:` emoji."""
- HEART
-
- """Represents the `:rocket:` emoji."""
- ROCKET
-
- """Represents the `:eyes:` emoji."""
- EYES
-}
-
-"""A group of emoji reactions to a particular piece of content."""
-type GitHubReactionGroup {
- """Identifies the emoji reaction."""
- content: GitHubReactionContent!
-
- """Identifies when the reaction was created."""
- createdAt: String
-
- """The subject that was reacted to."""
- subject: GitHubReactable!
-
- """
- Users who have reacted to the reaction subject with the emotion represented by this reaction group
- """
- users(
- """Returns the last _n_ elements from the list."""
- last: Int
-
- """Returns the first _n_ elements from the list."""
- first: Int
-
- """
- Returns the elements in the list that come before the specified cursor.
- """
- before: String
-
- """Returns the elements in the list that come after the specified cursor."""
- after: String
- ): GitHubReactingUserConnection!
-
- """
- Whether or not the authenticated user has left a reaction on the subject.
- """
- viewerHasReacted: Boolean!
-}
-
-"""A comment on a team discussion."""
-type GitHubTeamDiscussionComment implements OneGraphNode & GitHubUpdatableComment & GitHubUpdatable & GitHubUniformResourceLocatable & GitHubReactable & GitHubNode & GitHubDeletable & GitHubComment {
- """The actor who authored the comment."""
- author: GitHubActor
-
- """Author's association with the comment's team."""
- authorAssociation: GitHubCommentAuthorAssociation!
-
- """The body as Markdown."""
- body: String!
-
- """The body rendered to HTML."""
- bodyHTML: String!
-
- """The body rendered to text."""
- bodyText: String!
-
- """The current version of the body content."""
- bodyVersion: String!
-
- """Identifies the date and time when the object was created."""
- createdAt: String!
-
- """Check if this comment was created via an email reply."""
- createdViaEmail: Boolean!
-
- """Identifies the primary key from the database."""
- databaseId: Int
-
- """The discussion this comment is about."""
- discussion: GitHubTeamDiscussion!
-
- """The actor who edited the comment."""
- editor: GitHubActor
-
- """"""
- id: ID!
-
- """
- Check if this comment was edited and includes an edit with the creation data
- """
- includesCreatedEdit: Boolean!
-
- """The moment the editor made the last edit"""
- lastEditedAt: String
-
- """Identifies the comment number."""
- number: Int!
-
- """Identifies when the comment was published at."""
- publishedAt: String
-
- """A list of reactions grouped by content left on the subject."""
- reactionGroups: [GitHubReactionGroup!]
-
- """A list of Reactions left on the Issue."""
- reactions(
- """Allows specifying the order in which reactions are returned."""
- orderBy: GitHubReactionOrder
-
- """Allows filtering Reactions by emoji."""
- content: GitHubReactionContent
-
- """Returns the last _n_ elements from the list."""
- last: Int
-
- """Returns the first _n_ elements from the list."""
- first: Int
-
- """
- Returns the elements in the list that come before the specified cursor.
- """
- before: String
-
- """Returns the elements in the list that come after the specified cursor."""
- after: String
- ): GitHubReactionConnection!
-
- """The HTTP path for this comment"""
- resourcePath: String!
-
- """Identifies the date and time when the object was last updated."""
- updatedAt: String!
-
- """The HTTP URL for this comment"""
- url: String!
-
- """A list of edits to this content."""
- userContentEdits(
- """Returns the last _n_ elements from the list."""
- last: Int
-
- """Returns the first _n_ elements from the list."""
- first: Int
-
- """
- Returns the elements in the list that come before the specified cursor.
- """
- before: String
-
- """Returns the elements in the list that come after the specified cursor."""
- after: String
- ): GitHubUserContentEditConnection
-
- """Check if the current viewer can delete this object."""
- viewerCanDelete: Boolean!
-
- """Can user react to this subject"""
- viewerCanReact: Boolean!
-
- """Check if the current viewer can update this object."""
- viewerCanUpdate: Boolean!
-
- """Reasons why the current viewer can not update this comment."""
- viewerCannotUpdateReasons: [GitHubCommentCannotUpdateReason!]!
-
- """Did the viewer author this comment."""
- viewerDidAuthor: Boolean!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-"""An edge in a connection."""
-type GitHubTeamDiscussionCommentEdge {
- """A cursor for use in pagination."""
- cursor: String!
-
- """The item at the end of the edge."""
- node: GitHubTeamDiscussionComment
-}
-
-"""The connection type for TeamDiscussionComment."""
-type GitHubTeamDiscussionCommentConnection {
- """A list of edges."""
- edges: [GitHubTeamDiscussionCommentEdge]
-
- """A list of nodes."""
- nodes: [GitHubTeamDiscussionComment]
-
- """Information to aid in pagination."""
- pageInfo: GitHubPageInfo!
-
- """Identifies the total count of items in the connection."""
- totalCount: Int!
-}
-
-enum GitHubCommentAuthorAssociation {
- """Author is a member of the organization that owns the repository."""
- MEMBER
-
- """Author is the owner of the repository."""
- OWNER
-
- """Author has been invited to collaborate on the repository."""
- COLLABORATOR
-
- """Author has previously committed to the repository."""
- CONTRIBUTOR
-
- """Author has not previously committed to the repository."""
- FIRST_TIME_CONTRIBUTOR
-
- """Author has not previously committed to GitHub."""
- FIRST_TIMER
-
- """Author has no association with the repository."""
- NONE
-}
-
-"""A team discussion."""
-type GitHubTeamDiscussion implements OneGraphNode & GitHubUpdatableComment & GitHubUpdatable & GitHubUniformResourceLocatable & GitHubSubscribable & GitHubReactable & GitHubNode & GitHubDeletable & GitHubComment {
- """The actor who authored the comment."""
- author: GitHubActor
-
- """Author's association with the discussion's team."""
- authorAssociation: GitHubCommentAuthorAssociation!
-
- """The body as Markdown."""
- body: String!
-
- """The body rendered to HTML."""
- bodyHTML: String!
-
- """The body rendered to text."""
- bodyText: String!
-
- """Identifies the discussion body hash."""
- bodyVersion: String!
-
- """A list of comments on this discussion."""
- comments(
- """
- When provided, filters the connection such that results begin with the comment with this number.
- """
- fromComment: Int
-
- """Order for connection"""
- orderBy: GitHubTeamDiscussionCommentOrder
-
- """Returns the last _n_ elements from the list."""
- last: Int
-
- """Returns the first _n_ elements from the list."""
- first: Int
-
- """
- Returns the elements in the list that come before the specified cursor.
- """
- before: String
-
- """Returns the elements in the list that come after the specified cursor."""
- after: String
- ): GitHubTeamDiscussionCommentConnection!
-
- """The HTTP path for discussion comments"""
- commentsResourcePath: String!
-
- """The HTTP URL for discussion comments"""
- commentsUrl: String!
-
- """Identifies the date and time when the object was created."""
- createdAt: String!
-
- """Check if this comment was created via an email reply."""
- createdViaEmail: Boolean!
-
- """Identifies the primary key from the database."""
- databaseId: Int
-
- """The actor who edited the comment."""
- editor: GitHubActor
-
- """"""
- id: ID!
-
- """
- Check if this comment was edited and includes an edit with the creation data
- """
- includesCreatedEdit: Boolean!
-
- """Whether or not the discussion is pinned."""
- isPinned: Boolean!
-
- """
- Whether or not the discussion is only visible to team members and org admins.
- """
- isPrivate: Boolean!
-
- """The moment the editor made the last edit"""
- lastEditedAt: String
-
- """Identifies the discussion within its team."""
- number: Int!
-
- """Identifies when the comment was published at."""
- publishedAt: String
-
- """A list of reactions grouped by content left on the subject."""
- reactionGroups: [GitHubReactionGroup!]
-
- """A list of Reactions left on the Issue."""
- reactions(
- """Allows specifying the order in which reactions are returned."""
- orderBy: GitHubReactionOrder
-
- """Allows filtering Reactions by emoji."""
- content: GitHubReactionContent
-
- """Returns the last _n_ elements from the list."""
- last: Int
-
- """Returns the first _n_ elements from the list."""
- first: Int
-
- """
- Returns the elements in the list that come before the specified cursor.
- """
- before: String
-
- """Returns the elements in the list that come after the specified cursor."""
- after: String
- ): GitHubReactionConnection!
-
- """The HTTP path for this discussion"""
- resourcePath: String!
-
- """The team that defines the context of this discussion."""
- team: GitHubTeam!
-
- """The title of the discussion"""
- title: String!
-
- """Identifies the date and time when the object was last updated."""
- updatedAt: String!
-
- """The HTTP URL for this discussion"""
- url: String!
-
- """A list of edits to this content."""
- userContentEdits(
- """Returns the last _n_ elements from the list."""
- last: Int
-
- """Returns the first _n_ elements from the list."""
- first: Int
-
- """
- Returns the elements in the list that come before the specified cursor.
- """
- before: String
-
- """Returns the elements in the list that come after the specified cursor."""
- after: String
- ): GitHubUserContentEditConnection
-
- """Check if the current viewer can delete this object."""
- viewerCanDelete: Boolean!
-
- """Whether or not the current viewer can pin this discussion."""
- viewerCanPin: Boolean!
-
- """Can user react to this subject"""
- viewerCanReact: Boolean!
-
- """
- Check if the viewer is able to change their subscription status for the repository.
- """
- viewerCanSubscribe: Boolean!
-
- """Check if the current viewer can update this object."""
- viewerCanUpdate: Boolean!
-
- """Reasons why the current viewer can not update this comment."""
- viewerCannotUpdateReasons: [GitHubCommentCannotUpdateReason!]!
-
- """Did the viewer author this comment."""
- viewerDidAuthor: Boolean!
-
- """
- Identifies if the viewer is watching, not watching, or ignoring the subscribable entity.
- """
- viewerSubscription: GitHubSubscriptionState
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-"""Entities that can be subscribed to for web and email notifications."""
-interface GitHubSubscribable {
- """"""
- id: ID!
-
- """
- Check if the viewer is able to change their subscription status for the repository.
- """
- viewerCanSubscribe: Boolean!
-
- """
- Identifies if the viewer is watching, not watching, or ignoring the subscribable entity.
- """
- viewerSubscription: GitHubSubscriptionState
-}
-
-"""Represents an 'unsubscribed' event on a given `Subscribable`."""
-type GitHubUnsubscribedEvent implements OneGraphNode & GitHubNode {
- """Identifies the actor who performed the event."""
- actor: GitHubActor
-
- """Identifies the date and time when the object was created."""
- createdAt: String!
-
- """"""
- id: ID!
-
- """Object referenced by event."""
- subscribable: GitHubSubscribable!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-"""An item in a pull request timeline"""
-union GitHubPullRequestTimelineItems = GitHubUserBlockedEvent | GitHubUnsubscribedEvent | GitHubUnpinnedEvent | GitHubUnmarkedAsDuplicateEvent | GitHubUnlockedEvent | GitHubUnlabeledEvent | GitHubUnassignedEvent | GitHubTransferredEvent | GitHubSubscribedEvent | GitHubReviewRequestedEvent | GitHubReviewRequestRemovedEvent | GitHubReviewDismissedEvent | GitHubReopenedEvent | GitHubRenamedTitleEvent | GitHubRemovedFromProjectEvent | GitHubReferencedEvent | GitHubReadyForReviewEvent | GitHubPullRequestRevisionMarker | GitHubPullRequestReviewThread | GitHubPullRequestReview | GitHubPullRequestCommitCommentThread | GitHubPullRequestCommit | GitHubPinnedEvent | GitHubMovedColumnsInProjectEvent | GitHubMilestonedEvent | GitHubMergedEvent | GitHubMentionedEvent | GitHubMarkedAsDuplicateEvent | GitHubLockedEvent | GitHubLabeledEvent | GitHubIssueComment | GitHubHeadRefRestoredEvent | GitHubHeadRefForcePushedEvent | GitHubHeadRefDeletedEvent | GitHubDisconnectedEvent | GitHubDeploymentEnvironmentChangedEvent | GitHubDeployedEvent | GitHubDemilestonedEvent | GitHubCrossReferencedEvent | GitHubConvertedNoteToIssueEvent | GitHubConnectedEvent | GitHubCommentDeletedEvent | GitHubClosedEvent | GitHubBaseRefForcePushedEvent | GitHubBaseRefChangedEvent | GitHubAssignedEvent | GitHubAddedToProjectEvent
-
-enum GitHubUserBlockDuration {
- """The user was blocked for 1 day"""
- ONE_DAY
-
- """The user was blocked for 3 days"""
- THREE_DAYS
-
- """The user was blocked for 7 days"""
- ONE_WEEK
-
- """The user was blocked for 30 days"""
- ONE_MONTH
-
- """The user was blocked permanently"""
- PERMANENT
-}
-
-"""Represents a 'user_blocked' event on a given user."""
-type GitHubUserBlockedEvent implements OneGraphNode & GitHubNode {
- """Identifies the actor who performed the event."""
- actor: GitHubActor
-
- """Number of days that the user was blocked for."""
- blockDuration: GitHubUserBlockDuration!
-
- """Identifies the date and time when the object was created."""
- createdAt: String!
-
- """"""
- id: ID!
-
- """The user who was blocked."""
- subject: GitHubUser
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-"""An edit on user content"""
-type GitHubUserContentEdit implements OneGraphNode & GitHubNode {
- """Identifies the date and time when the object was created."""
- createdAt: String!
-
- """Identifies the date and time when the object was deleted."""
- deletedAt: String
-
- """The actor who deleted this content"""
- deletedBy: GitHubActor
-
- """A summary of the changes for this edit"""
- diff: String
-
- """When this content was edited"""
- editedAt: String!
-
- """The actor who edited this content"""
- editor: GitHubActor
-
- """"""
- id: ID!
-
- """Identifies the date and time when the object was last updated."""
- updatedAt: String!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-"""An object with an ID."""
-interface GitHubNode {
- """ID of the object."""
- id: ID!
-}
-
-"""Filter linked nodes by __typename."""
-input OneGraphLinkedNodesTypenameFilter {
- """
- Checks for linked nodes where the __typename is in the list of the provided values.
- """
- in: [String!]
-
- """
- Checks for linked nodes where the __typename is equal to the provided value.
- """
- equalTo: String
-}
-
-"""Services supported by OneGraph."""
-enum OneGraphServiceEnumArg {
- BOX
- DEV_TO
- DRIBBBLE
- DROPBOX
- CONTENTFUL
- EGGHEADIO
- EVENTIL
- FACEBOOK
- GITHUB
- GMAIL
- GOOGLE
- GOOGLE_ANALYTICS
- GOOGLE_CALENDAR
- GOOGLE_COMPUTE
- GOOGLE_DOCS
- GOOGLE_TRANSLATE
- HUBSPOT
- INTERCOM
- MAILCHIMP
- MEETUP
- NETLIFY
- PRODUCT_HUNT
- QUICKBOOKS
- SALESFORCE
- SLACK
- SPOTIFY
- STRIPE
- TRELLO
- TWILIO
- TWITTER
- TWITCH_TV
- YOUTUBE
- ZEIT
- ZENDESK
- AIRTABLE
- BREX
- BUNDLEPHOBIA
- CRUNCHBASE
- CLEARBIT
- CLOUDFLARE
- FEDEX
- GOOGLE_MAPS
- IMMIGRATION_GRAPH
- UPS
- USPS
- NPM
- LOGDNA
- MIXPANEL
- ONEGRAPH
-}
-
-"""Filter linked nodes by service."""
-input OneGraphLinkedNodesServiceFilter {
- """
- Checks for linked nodes where the service is in the list of the provided values.
- """
- in: [OneGraphServiceEnumArg!]
-
- """
- Checks for linked nodes where the service is equal to the provided value.
- """
- equalTo: OneGraphServiceEnumArg
-}
-
-input OneGraphLinkedNodesConnectionFilter {
- """Filter connections by their GraphQL __typename"""
- typename: OneGraphLinkedNodesTypenameFilter
-
- """Filter connections by service"""
- service: OneGraphLinkedNodesServiceFilter
-}
-
-"""The user's description of what they're currently doing."""
-type GitHubUserStatus implements OneGraphNode & GitHubNode {
- """Identifies the date and time when the object was created."""
- createdAt: String!
-
- """An emoji summarizing the user's status."""
- emoji: String
-
- """The status emoji as HTML."""
- emojiHTML: String
-
- """If set, the status will not be shown after this date."""
- expiresAt: String
-
- """ID of the object."""
- id: ID!
-
- """
- Whether this status indicates the user is not fully available on GitHub.
- """
- indicatesLimitedAvailability: Boolean!
-
- """A brief message describing what the user is doing."""
- message: String
-
- """
- The organization whose members can see this status. If null, this status is publicly visible.
- """
- organization: GitHubOrganization
-
- """Identifies the date and time when the object was last updated."""
- updatedAt: String!
-
- """The user who has this status."""
- user: GitHubUser!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-"""An object with a globally unique id across all of OneGraph"""
-interface OneGraphNode {
- """The id of the object."""
- oneGraphId: ID!
-
- """List of OneGraphNodes that are linked from this node."""
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-}
-
-"""List of OneGraphNodes that are linked from this node."""
-type OneGraphLinkedNodesConnection {
- """List of OneGraphNodes that are linked from this node."""
- nodes: [OneGraphNode!]!
-}
-
-"""A special type of user which takes actions on behalf of GitHub Apps."""
-type GitHubBot implements OneGraphNode & GitHubUniformResourceLocatable & GitHubNode & GitHubActor {
- """A URL pointing to the GitHub App's public avatar."""
- avatarUrl(
- """The size of the resulting square image."""
- size: Int
- ): String!
-
- """Identifies the date and time when the object was created."""
- createdAt: String!
-
- """Identifies the primary key from the database."""
- databaseId: Int
-
- """"""
- id: ID!
-
- """The username of the actor."""
- login: String!
-
- """The HTTP path for this bot"""
- resourcePath: String!
-
- """Identifies the date and time when the object was last updated."""
- updatedAt: String!
-
- """The HTTP URL for this bot"""
- url: String!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-"""Types that can initiate an audit log event."""
-union GitHubAuditEntryActor = GitHubUser | GitHubOrganization | GitHubBot
-
-"""Audit log entry for a team.remove_repository event."""
-type GitHubTeamRemoveRepositoryAuditEntry implements OneGraphNode & GitHubTeamAuditEntryData & GitHubRepositoryAuditEntryData & GitHubOrganizationAuditEntryData & GitHubNode & GitHubAuditEntry {
- """The action name"""
- action: String!
-
- """The user who initiated the action"""
- actor: GitHubAuditEntryActor
-
- """The IP address of the actor"""
- actorIp: String
-
- """A readable representation of the actor's location"""
- actorLocation: GitHubActorLocation
-
- """The username of the user who initiated the action"""
- actorLogin: String
-
- """The HTTP path for the actor."""
- actorResourcePath: String
-
- """The HTTP URL for the actor."""
- actorUrl: String
-
- """The time the action was initiated"""
- createdAt: String!
-
- """"""
- id: ID!
-
- """Whether the team was mapped to an LDAP Group."""
- isLdapMapped: Boolean
-
- """The corresponding operation type for the action"""
- operationType: GitHubOperationType
-
- """The Organization associated with the Audit Entry."""
- organization: GitHubOrganization
-
- """The name of the Organization."""
- organizationName: String
-
- """The HTTP path for the organization"""
- organizationResourcePath: String
-
- """The HTTP URL for the organization"""
- organizationUrl: String
-
- """The repository associated with the action"""
- repository: GitHubRepository
-
- """The name of the repository"""
- repositoryName: String
-
- """The HTTP path for the repository"""
- repositoryResourcePath: String
-
- """The HTTP URL for the repository"""
- repositoryUrl: String
-
- """The team associated with the action"""
- team: GitHubTeam
-
- """The name of the team"""
- teamName: String
-
- """The HTTP path for this team"""
- teamResourcePath: String
-
- """The HTTP URL for this team"""
- teamUrl: String
-
- """The user affected by the action"""
- user: GitHubUser
-
- """
- For actions involving two users, the actor is the initiator and the user is the affected user.
- """
- userLogin: String
-
- """The HTTP path for the user."""
- userResourcePath: String
-
- """The HTTP URL for the user."""
- userUrl: String
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-"""An audit entry in an organization audit log."""
-union GitHubOrganizationAuditEntry = GitHubTeamRemoveRepositoryAuditEntry | GitHubTeamRemoveMemberAuditEntry | GitHubTeamChangeParentTeamAuditEntry | GitHubTeamAddRepositoryAuditEntry | GitHubTeamAddMemberAuditEntry | GitHubRepositoryVisibilityChangeEnableAuditEntry | GitHubRepositoryVisibilityChangeDisableAuditEntry | GitHubRepoRemoveTopicAuditEntry | GitHubRepoRemoveMemberAuditEntry | GitHubRepoDestroyAuditEntry | GitHubRepoCreateAuditEntry | GitHubRepoConfigUnlockAnonymousGitAccessAuditEntry | GitHubRepoConfigLockAnonymousGitAccessAuditEntry | GitHubRepoConfigEnableSockpuppetDisallowedAuditEntry | GitHubRepoConfigEnableContributorsOnlyAuditEntry | GitHubRepoConfigEnableCollaboratorsOnlyAuditEntry | GitHubRepoConfigEnableAnonymousGitAccessAuditEntry | GitHubRepoConfigDisableSockpuppetDisallowedAuditEntry | GitHubRepoConfigDisableContributorsOnlyAuditEntry | GitHubRepoConfigDisableCollaboratorsOnlyAuditEntry | GitHubRepoConfigDisableAnonymousGitAccessAuditEntry | GitHubRepoChangeMergeSettingAuditEntry | GitHubRepoArchivedAuditEntry | GitHubRepoAddTopicAuditEntry | GitHubRepoAddMemberAuditEntry | GitHubRepoAccessAuditEntry | GitHubPrivateRepositoryForkingEnableAuditEntry | GitHubPrivateRepositoryForkingDisableAuditEntry | GitHubOrgUpdateMemberRepositoryInvitationPermissionAuditEntry | GitHubOrgUpdateMemberRepositoryCreationPermissionAuditEntry | GitHubOrgUpdateMemberAuditEntry | GitHubOrgUpdateDefaultRepositoryPermissionAuditEntry | GitHubOrgUnblockUserAuditEntry | GitHubOrgRestoreMemberAuditEntry | GitHubOrgRemoveOutsideCollaboratorAuditEntry | GitHubOrgRemoveMemberAuditEntry | GitHubOrgRemoveBillingManagerAuditEntry | GitHubOrgOauthAppAccessRequestedAuditEntry | GitHubOrgOauthAppAccessDeniedAuditEntry | GitHubOrgOauthAppAccessApprovedAuditEntry | GitHubOrgInviteToBusinessAuditEntry | GitHubOrgInviteMemberAuditEntry | GitHubOrgEnableTwoFactorRequirementAuditEntry | GitHubOrgEnableSamlAuditEntry | GitHubOrgEnableOauthAppRestrictionsAuditEntry | GitHubOrgDisableTwoFactorRequirementAuditEntry | GitHubOrgDisableSamlAuditEntry | GitHubOrgDisableOauthAppRestrictionsAuditEntry | GitHubOrgCreateAuditEntry | GitHubOrgConfigEnableCollaboratorsOnlyAuditEntry | GitHubOrgConfigDisableCollaboratorsOnlyAuditEntry | GitHubOrgBlockUserAuditEntry | GitHubOrgAddMemberAuditEntry | GitHubOrgAddBillingManagerAuditEntry | GitHubOauthApplicationCreateAuditEntry | GitHubMembersCanDeleteReposEnableAuditEntry | GitHubMembersCanDeleteReposDisableAuditEntry | GitHubMembersCanDeleteReposClearAuditEntry
-
-"""An edge in a connection."""
-type GitHubOrganizationAuditEntryEdge {
- """A cursor for use in pagination."""
- cursor: String!
-
- """The item at the end of the edge."""
- node: GitHubOrganizationAuditEntry
-}
-
-"""The connection type for OrganizationAuditEntry."""
-type GitHubOrganizationAuditEntryConnection {
- """A list of edges."""
- edges: [GitHubOrganizationAuditEntryEdge]
-
- """A list of nodes."""
- nodes: [GitHubOrganizationAuditEntry]
-
- """Information to aid in pagination."""
- pageInfo: GitHubPageInfo!
-
- """Identifies the total count of items in the connection."""
- totalCount: Int!
-}
-
-"""
-An account on GitHub, with one or more owners, that has repositories, members and teams.
-"""
-type GitHubOrganization implements OneGraphNode & GitHubUniformResourceLocatable & GitHubSponsorable & GitHubRepositoryOwner & GitHubRegistryPackageSearch & GitHubRegistryPackageOwner & GitHubProjectOwner & GitHubProfileOwner & GitHubNode & GitHubMemberStatusable & GitHubActor {
- """
- Determine if this repository owner has any items that can be pinned to their profile.
- """
- anyPinnableItems(
- """Filter to only a particular kind of pinnable item."""
- type: GitHubPinnableItemType
- ): Boolean!
-
- """Audit log entries of the organization"""
- auditLog(
- """Ordering options for the returned audit log entries."""
- orderBy: GitHubAuditLogOrder
-
- """The query string to filter audit entries"""
- query: String
-
- """Returns the last _n_ elements from the list."""
- last: Int
-
- """Returns the first _n_ elements from the list."""
- first: Int
-
- """
- Returns the elements in the list that come before the specified cursor.
- """
- before: String
-
- """Returns the elements in the list that come after the specified cursor."""
- after: String
- ): GitHubOrganizationAuditEntryConnection!
-
- """A URL pointing to the organization's public avatar."""
- avatarUrl(
- """The size of the resulting square image."""
- size: Int
- ): String!
-
- """Identifies the date and time when the object was created."""
- createdAt: String!
-
- """Identifies the primary key from the database."""
- databaseId: Int
-
- """The organization's public profile description."""
- description: String
-
- """The organization's public profile description rendered to HTML."""
- descriptionHTML: String
-
- """The organization's public email."""
- email: String
-
- """"""
- id: ID!
-
- """Whether the organization has verified its profile email and website."""
- isVerified: Boolean!
-
- """
- Showcases a selection of repositories and gists that the profile owner has either curated or that have been selected automatically based on popularity.
- """
- itemShowcase: GitHubProfileItemShowcase!
-
- """The organization's public profile location."""
- location: String
-
- """The organization's login name."""
- login: String!
-
- """
- Get the status messages members of this entity have set that are either public or visible only to the organization.
- """
- memberStatuses(
- """Ordering options for user statuses returned from the connection."""
- orderBy: GitHubUserStatusOrder
-
- """Returns the last _n_ elements from the list."""
- last: Int
-
- """Returns the first _n_ elements from the list."""
- first: Int
-
- """
- Returns the elements in the list that come before the specified cursor.
- """
- before: String
-
- """Returns the elements in the list that come after the specified cursor."""
- after: String
- ): GitHubUserStatusConnection!
-
- """A list of users who are members of this organization."""
- membersWithRole(
- """Returns the last _n_ elements from the list."""
- last: Int
-
- """Returns the first _n_ elements from the list."""
- first: Int
-
- """
- Returns the elements in the list that come before the specified cursor.
- """
- before: String
-
- """Returns the elements in the list that come after the specified cursor."""
- after: String
- ): GitHubOrganizationMemberConnection!
-
- """The organization's public profile name."""
- name: String
-
- """The HTTP path creating a new team"""
- newTeamResourcePath: String!
-
- """The HTTP URL creating a new team"""
- newTeamUrl: String!
-
- """The billing email for the organization."""
- organizationBillingEmail: String
-
- """A list of users who have been invited to join this organization."""
- pendingMembers(
- """Returns the last _n_ elements from the list."""
- last: Int
-
- """Returns the first _n_ elements from the list."""
- first: Int
-
- """
- Returns the elements in the list that come before the specified cursor.
- """
- before: String
-
- """Returns the elements in the list that come after the specified cursor."""
- after: String
- ): GitHubUserConnection!
-
- """
- A list of repositories and gists this profile owner can pin to their profile.
- """
- pinnableItems(
- """Returns the last _n_ elements from the list."""
- last: Int
-
- """Returns the first _n_ elements from the list."""
- first: Int
-
- """
- Returns the elements in the list that come before the specified cursor.
- """
- before: String
-
- """Returns the elements in the list that come after the specified cursor."""
- after: String
-
- """Filter the types of pinnable items that are returned."""
- types: [GitHubPinnableItemType!]
- ): GitHubPinnableItemConnection!
-
- """
- A list of repositories and gists this profile owner has pinned to their profile
- """
- pinnedItems(
- """Returns the last _n_ elements from the list."""
- last: Int
-
- """Returns the first _n_ elements from the list."""
- first: Int
-
- """
- Returns the elements in the list that come before the specified cursor.
- """
- before: String
-
- """Returns the elements in the list that come after the specified cursor."""
- after: String
-
- """Filter the types of pinned items that are returned."""
- types: [GitHubPinnableItemType!]
- ): GitHubPinnableItemConnection!
-
- """
- Returns how many more items this profile owner can pin to their profile.
- """
- pinnedItemsRemaining: Int!
-
- """A list of repositories this user has pinned to their profile"""
- pinnedRepositories(
- """Returns the last _n_ elements from the list."""
- last: Int
-
- """Returns the first _n_ elements from the list."""
- first: Int
-
- """
- Returns the elements in the list that come before the specified cursor.
- """
- before: String
-
- """Returns the elements in the list that come after the specified cursor."""
- after: String
-
- """
- If non-null, filters repositories according to whether they have been locked
- """
- isLocked: Boolean
-
- """
- Array of owner's affiliation options for repositories returned from the connection. For example, OWNER will include only repositories that the organization or user being viewed owns.
- """
- ownerAffiliations: [GitHubRepositoryAffiliation]
-
- """
- Array of viewer's affiliation options for repositories returned from the connection. For example, OWNER will include only repositories that the current viewer owns.
- """
- affiliations: [GitHubRepositoryAffiliation]
-
- """Ordering options for repositories returned from the connection"""
- orderBy: GitHubRepositoryOrder
-
- """If non-null, filters repositories according to privacy"""
- privacy: GitHubRepositoryPrivacy
- ): GitHubRepositoryConnection! @deprecated(reason: "pinnedRepositories will be removed Use ProfileOwner.pinnedItems instead. Removal on 2019-10-01 UTC.")
-
- """Find project by number."""
- project(
- """The project number to find."""
- number: Int!
- ): GitHubProject
-
- """A list of projects under the owner."""
- projects(
- """Returns the last _n_ elements from the list."""
- last: Int
-
- """Returns the first _n_ elements from the list."""
- first: Int
-
- """
- Returns the elements in the list that come before the specified cursor.
- """
- before: String
-
- """Returns the elements in the list that come after the specified cursor."""
- after: String
-
- """A list of states to filter the projects by."""
- states: [GitHubProjectState!]
-
- """Query to search projects by, currently only searching by name."""
- search: String
-
- """Ordering options for projects returned from the connection"""
- orderBy: GitHubProjectOrder
- ): GitHubProjectConnection!
-
- """The HTTP path listing organization's projects"""
- projectsResourcePath: String!
-
- """The HTTP URL listing organization's projects"""
- projectsUrl: String!
-
- """A list of registry packages under the owner."""
- registryPackages(
- """Filter registry package by whether it is publicly visible"""
- publicOnly: Boolean
-
- """Filter registry package by type (string)."""
- registryPackageType: String
-
- """Filter registry package by type."""
- packageType: GitHubRegistryPackageType
-
- """Find registry packages in a repository."""
- repositoryId: ID
-
- """Find registry packages by their names."""
- names: [String]
-
- """Find registry package by name."""
- name: String
-
- """Returns the last _n_ elements from the list."""
- last: Int
-
- """Returns the first _n_ elements from the list."""
- first: Int
-
- """
- Returns the elements in the list that come before the specified cursor.
- """
- before: String
-
- """Returns the elements in the list that come after the specified cursor."""
- after: String
- ): GitHubRegistryPackageConnection! @deprecated(reason: "Renaming GitHub Packages fields and objects. Use the `PackageOwner` object instead. Removal on 2020-04-01 UTC.")
-
- """A list of registry packages for a particular search query."""
- registryPackagesForQuery(
- """Filter registry package by type."""
- packageType: GitHubRegistryPackageType
-
- """Find registry package by search query."""
- query: String
-
- """Returns the last _n_ elements from the list."""
- last: Int
-
- """Returns the first _n_ elements from the list."""
- first: Int
-
- """
- Returns the elements in the list that come before the specified cursor.
- """
- before: String
-
- """Returns the elements in the list that come after the specified cursor."""
- after: String
- ): GitHubRegistryPackageConnection! @deprecated(reason: "Renaming GitHub Packages fields and objects. Use the `PackageSearch` object instead. Removal on 2020-04-01 UTC.")
-
- """A list of repositories that the user owns."""
- repositories(
- """
- If non-null, filters repositories according to whether they are forks of another repository
- """
- isFork: Boolean
-
- """Returns the last _n_ elements from the list."""
- last: Int
-
- """Returns the first _n_ elements from the list."""
- first: Int
-
- """
- Returns the elements in the list that come before the specified cursor.
- """
- before: String
-
- """Returns the elements in the list that come after the specified cursor."""
- after: String
-
- """
- If non-null, filters repositories according to whether they have been locked
- """
- isLocked: Boolean
-
- """
- Array of owner's affiliation options for repositories returned from the connection. For example, OWNER will include only repositories that the organization or user being viewed owns.
- """
- ownerAffiliations: [GitHubRepositoryAffiliation]
-
- """
- Array of viewer's affiliation options for repositories returned from the connection. For example, OWNER will include only repositories that the current viewer owns.
- """
- affiliations: [GitHubRepositoryAffiliation]
-
- """Ordering options for repositories returned from the connection"""
- orderBy: GitHubRepositoryOrder
-
- """If non-null, filters repositories according to privacy"""
- privacy: GitHubRepositoryPrivacy
- ): GitHubRepositoryConnection!
-
- """Find Repository."""
- repository(
- """Name of Repository to find."""
- name: String!
- ): GitHubRepository
-
- """
- When true the organization requires all members, billing managers, and outside collaborators to enable two-factor authentication.
- """
- requiresTwoFactorAuthentication: Boolean
-
- """The HTTP path for this organization."""
- resourcePath: String!
-
- """The Organization's SAML identity providers"""
- samlIdentityProvider: GitHubOrganizationIdentityProvider
-
- """The GitHub Sponsors listing for this user."""
- sponsorsListing: GitHubSponsorsListing
-
- """This object's sponsorships as the maintainer."""
- sponsorshipsAsMaintainer(
- """
- Ordering options for sponsorships returned from this connection. If left blank, the sponsorships will be ordered based on relevancy to the viewer.
- """
- orderBy: GitHubSponsorshipOrder
-
- """Whether or not to include private sponsorships in the result set"""
- includePrivate: Boolean
-
- """Returns the last _n_ elements from the list."""
- last: Int
-
- """Returns the first _n_ elements from the list."""
- first: Int
-
- """
- Returns the elements in the list that come before the specified cursor.
- """
- before: String
-
- """Returns the elements in the list that come after the specified cursor."""
- after: String
- ): GitHubSponsorshipConnection!
-
- """This object's sponsorships as the sponsor."""
- sponsorshipsAsSponsor(
- """
- Ordering options for sponsorships returned from this connection. If left blank, the sponsorships will be ordered based on relevancy to the viewer.
- """
- orderBy: GitHubSponsorshipOrder
-
- """Returns the last _n_ elements from the list."""
- last: Int
-
- """Returns the first _n_ elements from the list."""
- first: Int
-
- """
- Returns the elements in the list that come before the specified cursor.
- """
- before: String
-
- """Returns the elements in the list that come after the specified cursor."""
- after: String
- ): GitHubSponsorshipConnection!
-
- """Find an organization's team by its slug."""
- team(
- """The name or slug of the team to find."""
- slug: String!
- ): GitHubTeam
-
- """A list of teams in this organization."""
- teams(
- """Returns the last _n_ elements from the list."""
- last: Int
-
- """Returns the first _n_ elements from the list."""
- first: Int
-
- """
- Returns the elements in the list that come before the specified cursor.
- """
- before: String
-
- """Returns the elements in the list that come after the specified cursor."""
- after: String
-
- """If true, restrict to only root teams"""
- rootTeamsOnly: Boolean
-
- """
- If true, filters teams that are mapped to an LDAP Group (Enterprise only)
- """
- ldapMapped: Boolean
-
- """Ordering options for teams returned from the connection"""
- orderBy: GitHubTeamOrder
-
- """User logins to filter by"""
- userLogins: [String!]
-
- """If non-null, filters teams with query on team name and team slug"""
- query: String
-
- """
- If non-null, filters teams according to whether the viewer is an admin or member on team
- """
- role: GitHubTeamRole
-
- """If non-null, filters teams according to privacy"""
- privacy: GitHubTeamPrivacy
- ): GitHubTeamConnection!
-
- """The HTTP path listing organization's teams"""
- teamsResourcePath: String!
-
- """The HTTP URL listing organization's teams"""
- teamsUrl: String!
-
- """Identifies the date and time when the object was last updated."""
- updatedAt: String!
-
- """The HTTP URL for this organization."""
- url: String!
-
- """Organization is adminable by the viewer."""
- viewerCanAdminister: Boolean!
-
- """Can the viewer pin repositories and gists to the profile?"""
- viewerCanChangePinnedItems: Boolean!
-
- """Can the current viewer create new projects on this owner."""
- viewerCanCreateProjects: Boolean!
-
- """Viewer can create repositories on this organization"""
- viewerCanCreateRepositories: Boolean!
-
- """Viewer can create teams on this organization."""
- viewerCanCreateTeams: Boolean!
-
- """Viewer is an active member of this organization."""
- viewerIsAMember: Boolean!
-
- """The organization's public profile URL."""
- websiteUrl: String
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-"""
-Represents an object which can take actions on GitHub. Typically a User or Bot.
-"""
-interface GitHubActor {
- """A URL pointing to the actor's public avatar."""
- avatarUrl(
- """The size of the resulting square image."""
- size: Int
- ): String!
-
- """The username of the actor."""
- login: String!
-
- """The HTTP path for this actor."""
- resourcePath: String!
-
- """The HTTP URL for this actor."""
- url: String!
-}
-
-"""Represents a comment on a given Commit."""
-type GitHubCommitComment implements OneGraphNode & GitHubUpdatableComment & GitHubUpdatable & GitHubRepositoryNode & GitHubReactable & GitHubNode & GitHubMinimizable & GitHubDeletable & GitHubComment {
- """The actor who authored the comment."""
- author: GitHubActor
-
- """Author's association with the subject of the comment."""
- authorAssociation: GitHubCommentAuthorAssociation!
-
- """Identifies the comment body."""
- body: String!
-
- """The body rendered to HTML."""
- bodyHTML: String!
-
- """The body rendered to text."""
- bodyText: String!
-
- """
- Identifies the commit associated with the comment, if the commit exists.
- """
- commit: GitHubCommit
-
- """Identifies the date and time when the object was created."""
- createdAt: String!
-
- """Check if this comment was created via an email reply."""
- createdViaEmail: Boolean!
-
- """Identifies the primary key from the database."""
- databaseId: Int
-
- """The actor who edited the comment."""
- editor: GitHubActor
-
- """"""
- id: ID!
-
- """
- Check if this comment was edited and includes an edit with the creation data
- """
- includesCreatedEdit: Boolean!
-
- """Returns whether or not a comment has been minimized."""
- isMinimized: Boolean!
-
- """The moment the editor made the last edit"""
- lastEditedAt: String
-
- """Returns why the comment was minimized."""
- minimizedReason: String
-
- """Identifies the file path associated with the comment."""
- path: String
-
- """Identifies the line position associated with the comment."""
- position: Int
-
- """Identifies when the comment was published at."""
- publishedAt: String
-
- """A list of reactions grouped by content left on the subject."""
- reactionGroups: [GitHubReactionGroup!]
-
- """A list of Reactions left on the Issue."""
- reactions(
- """Allows specifying the order in which reactions are returned."""
- orderBy: GitHubReactionOrder
-
- """Allows filtering Reactions by emoji."""
- content: GitHubReactionContent
-
- """Returns the last _n_ elements from the list."""
- last: Int
-
- """Returns the first _n_ elements from the list."""
- first: Int
-
- """
- Returns the elements in the list that come before the specified cursor.
- """
- before: String
-
- """Returns the elements in the list that come after the specified cursor."""
- after: String
- ): GitHubReactionConnection!
-
- """The repository associated with this node."""
- repository: GitHubRepository!
-
- """The HTTP path permalink for this commit comment."""
- resourcePath: String!
-
- """Identifies the date and time when the object was last updated."""
- updatedAt: String!
-
- """The HTTP URL permalink for this commit comment."""
- url: String!
-
- """A list of edits to this content."""
- userContentEdits(
- """Returns the last _n_ elements from the list."""
- last: Int
-
- """Returns the first _n_ elements from the list."""
- first: Int
-
- """
- Returns the elements in the list that come before the specified cursor.
- """
- before: String
-
- """Returns the elements in the list that come after the specified cursor."""
- after: String
- ): GitHubUserContentEditConnection
-
- """Check if the current viewer can delete this object."""
- viewerCanDelete: Boolean!
-
- """Check if the current viewer can minimize this object."""
- viewerCanMinimize: Boolean!
-
- """Can user react to this subject"""
- viewerCanReact: Boolean!
-
- """Check if the current viewer can update this object."""
- viewerCanUpdate: Boolean!
-
- """Reasons why the current viewer can not update this comment."""
- viewerCannotUpdateReasons: [GitHubCommentCannotUpdateReason!]!
-
- """Did the viewer author this comment."""
- viewerDidAuthor: Boolean!
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-"""An edge in a connection."""
-type GitHubCommitCommentEdge {
- """A cursor for use in pagination."""
- cursor: String!
-
- """The item at the end of the edge."""
- node: GitHubCommitComment
-}
-
-"""The connection type for CommitComment."""
-type GitHubCommitCommentConnection {
- """A list of edges."""
- edges: [GitHubCommitCommentEdge]
-
- """A list of nodes."""
- nodes: [GitHubCommitComment]
-
- """Information to aid in pagination."""
- pageInfo: GitHubPageInfo!
-
- """Identifies the total count of items in the connection."""
- totalCount: Int!
-}
-
-enum GitHubPinnableItemType {
- """A repository."""
- REPOSITORY
-
- """A gist."""
- GIST
-
- """An issue."""
- ISSUE
-
- """A project."""
- PROJECT
-
- """A pull request."""
- PULL_REQUEST
-
- """A user."""
- USER
-
- """An organization."""
- ORGANIZATION
-
- """A team."""
- TEAM
-}
-
-"""
-A user is an individual's account on GitHub that owns repositories and can make new content.
-"""
-type GitHubUser implements OneGraphNode & GitHubUniformResourceLocatable & GitHubSponsorable & GitHubRepositoryOwner & GitHubRegistryPackageSearch & GitHubRegistryPackageOwner & GitHubProjectOwner & GitHubProfileOwner & GitHubNode & GitHubActor {
- """
- Determine if this repository owner has any items that can be pinned to their profile.
- """
- anyPinnableItems(
- """Filter to only a particular kind of pinnable item."""
- type: GitHubPinnableItemType
- ): Boolean!
-
- """A URL pointing to the user's public avatar."""
- avatarUrl(
- """The size of the resulting square image."""
- size: Int
- ): String!
-
- """The user's public profile bio."""
- bio: String
-
- """The user's public profile bio as HTML."""
- bioHTML: String!
-
- """A list of commit comments made by this user."""
- commitComments(
- """Returns the last _n_ elements from the list."""
- last: Int
-
- """Returns the first _n_ elements from the list."""
- first: Int
-
- """
- Returns the elements in the list that come before the specified cursor.
- """
- before: String
-
- """Returns the elements in the list that come after the specified cursor."""
- after: String
- ): GitHubCommitCommentConnection!
-
- """The user's public profile company."""
- company: String
-
- """The user's public profile company as HTML."""
- companyHTML: String!
-
- """
- The collection of contributions this user has made to different repositories.
- """
- contributionsCollection(
- """
- Only contributions made before and up to and including this time will be counted. If omitted, defaults to the current time.
- """
- to: String
-
- """
- Only contributions made at this time or later will be counted. If omitted, defaults to a year ago.
- """
- from: String
-
- """The ID of the organization used to filter contributions."""
- organizationID: ID
- ): GitHubContributionsCollection!
-
- """Identifies the date and time when the object was created."""
- createdAt: String!
-
- """Identifies the primary key from the database."""
- databaseId: Int
-
- """The user's publicly visible profile email."""
- email: String!
-
- """A list of users the given user is followed by."""
- followers(
- """Returns the last _n_ elements from the list."""
- last: Int
-
- """Returns the first _n_ elements from the list."""
- first: Int
-
- """
- Returns the elements in the list that come before the specified cursor.
- """
- before: String
-
- """Returns the elements in the list that come after the specified cursor."""
- after: String
- ): GitHubFollowerConnection!
-
- """A list of users the given user is following."""
- following(
- """Returns the last _n_ elements from the list."""
- last: Int
-
- """Returns the first _n_ elements from the list."""
- first: Int
-
- """
- Returns the elements in the list that come before the specified cursor.
- """
- before: String
-
- """Returns the elements in the list that come after the specified cursor."""
- after: String
- ): GitHubFollowingConnection!
-
- """Find gist by repo name."""
- gist(
- """The gist name to find."""
- name: String!
- ): GitHubGist
-
- """A list of gist comments made by this user."""
- gistComments(
- """Returns the last _n_ elements from the list."""
- last: Int
-
- """Returns the first _n_ elements from the list."""
- first: Int
-
- """
- Returns the elements in the list that come before the specified cursor.
- """
- before: String
-
- """Returns the elements in the list that come after the specified cursor."""
- after: String
- ): GitHubGistCommentConnection!
-
- """A list of the Gists the user has created."""
- gists(
- """Returns the last _n_ elements from the list."""
- last: Int
-
- """Returns the first _n_ elements from the list."""
- first: Int
-
- """
- Returns the elements in the list that come before the specified cursor.
- """
- before: String
-
- """Returns the elements in the list that come after the specified cursor."""
- after: String
-
- """Ordering options for gists returned from the connection"""
- orderBy: GitHubGistOrder
-
- """Filters Gists according to privacy."""
- privacy: GitHubGistPrivacy
- ): GitHubGistConnection!
-
- """The hovercard information for this user in a given context"""
- hovercard(
- """The ID of the subject to get the hovercard in the context of"""
- primarySubjectId: ID
- ): GitHubHovercard!
-
- """"""
- id: ID!
-
- """
- Whether or not this user is a participant in the GitHub Security Bug Bounty.
- """
- isBountyHunter: Boolean!
-
- """
- Whether or not this user is a participant in the GitHub Campus Experts Program.
- """
- isCampusExpert: Boolean!
-
- """Whether or not this user is a GitHub Developer Program member."""
- isDeveloperProgramMember: Boolean!
-
- """Whether or not this user is a GitHub employee."""
- isEmployee: Boolean!
-
- """Whether or not the user has marked themselves as for hire."""
- isHireable: Boolean!
-
- """Whether or not this user is a site administrator."""
- isSiteAdmin: Boolean!
-
- """Whether or not this user is the viewing user."""
- isViewer: Boolean!
-
- """A list of issue comments made by this user."""
- issueComments(
- """Returns the last _n_ elements from the list."""
- last: Int
-
- """Returns the first _n_ elements from the list."""
- first: Int
-
- """
- Returns the elements in the list that come before the specified cursor.
- """
- before: String
-
- """Returns the elements in the list that come after the specified cursor."""
- after: String
- ): GitHubIssueCommentConnection!
-
- """A list of issues associated with this user."""
- issues(
- """Returns the last _n_ elements from the list."""
- last: Int
-
- """Returns the first _n_ elements from the list."""
- first: Int
-
- """
- Returns the elements in the list that come before the specified cursor.
- """
- before: String
-
- """Returns the elements in the list that come after the specified cursor."""
- after: String
-
- """Filtering options for issues returned from the connection."""
- filterBy: GitHubIssueFilters
-
- """A list of states to filter the issues by."""
- states: [GitHubIssueState!]
-
- """A list of label names to filter the pull requests by."""
- labels: [String!]
-
- """Ordering options for issues returned from the connection."""
- orderBy: GitHubIssueOrder
- ): GitHubIssueConnection!
-
- """
- Showcases a selection of repositories and gists that the profile owner has either curated or that have been selected automatically based on popularity.
- """
- itemShowcase: GitHubProfileItemShowcase!
-
- """The user's public profile location."""
- location: String
-
- """The username used to login."""
- login: String!
-
- """The user's public profile name."""
- name: String
-
- """Find an organization by its login that the user belongs to."""
- organization(
- """The login of the organization to find."""
- login: String!
- ): GitHubOrganization
-
- """A list of organizations the user belongs to."""
- organizations(
- """Returns the last _n_ elements from the list."""
- last: Int
-
- """Returns the first _n_ elements from the list."""
- first: Int
-
- """
- Returns the elements in the list that come before the specified cursor.
- """
- before: String
-
- """Returns the elements in the list that come after the specified cursor."""
- after: String
- ): GitHubOrganizationConnection!
-
- """
- A list of repositories and gists this profile owner can pin to their profile.
- """
- pinnableItems(
- """Returns the last _n_ elements from the list."""
- last: Int
-
- """Returns the first _n_ elements from the list."""
- first: Int
-
- """
- Returns the elements in the list that come before the specified cursor.
- """
- before: String
-
- """Returns the elements in the list that come after the specified cursor."""
- after: String
-
- """Filter the types of pinnable items that are returned."""
- types: [GitHubPinnableItemType!]
- ): GitHubPinnableItemConnection!
-
- """
- A list of repositories and gists this profile owner has pinned to their profile
- """
- pinnedItems(
- """Returns the last _n_ elements from the list."""
- last: Int
-
- """Returns the first _n_ elements from the list."""
- first: Int
-
- """
- Returns the elements in the list that come before the specified cursor.
- """
- before: String
-
- """Returns the elements in the list that come after the specified cursor."""
- after: String
-
- """Filter the types of pinned items that are returned."""
- types: [GitHubPinnableItemType!]
- ): GitHubPinnableItemConnection!
-
- """
- Returns how many more items this profile owner can pin to their profile.
- """
- pinnedItemsRemaining: Int!
-
- """A list of repositories this user has pinned to their profile"""
- pinnedRepositories(
- """Returns the last _n_ elements from the list."""
- last: Int
-
- """Returns the first _n_ elements from the list."""
- first: Int
-
- """
- Returns the elements in the list that come before the specified cursor.
- """
- before: String
-
- """Returns the elements in the list that come after the specified cursor."""
- after: String
-
- """
- If non-null, filters repositories according to whether they have been locked
- """
- isLocked: Boolean
-
- """
- Array of owner's affiliation options for repositories returned from the connection. For example, OWNER will include only repositories that the organization or user being viewed owns.
- """
- ownerAffiliations: [GitHubRepositoryAffiliation]
-
- """
- Array of viewer's affiliation options for repositories returned from the connection. For example, OWNER will include only repositories that the current viewer owns.
- """
- affiliations: [GitHubRepositoryAffiliation]
-
- """Ordering options for repositories returned from the connection"""
- orderBy: GitHubRepositoryOrder
-
- """If non-null, filters repositories according to privacy"""
- privacy: GitHubRepositoryPrivacy
- ): GitHubRepositoryConnection! @deprecated(reason: "pinnedRepositories will be removed Use ProfileOwner.pinnedItems instead. Removal on 2019-10-01 UTC.")
-
- """Find project by number."""
- project(
- """The project number to find."""
- number: Int!
- ): GitHubProject
-
- """A list of projects under the owner."""
- projects(
- """Returns the last _n_ elements from the list."""
- last: Int
-
- """Returns the first _n_ elements from the list."""
- first: Int
-
- """
- Returns the elements in the list that come before the specified cursor.
- """
- before: String
-
- """Returns the elements in the list that come after the specified cursor."""
- after: String
-
- """A list of states to filter the projects by."""
- states: [GitHubProjectState!]
-
- """Query to search projects by, currently only searching by name."""
- search: String
-
- """Ordering options for projects returned from the connection"""
- orderBy: GitHubProjectOrder
- ): GitHubProjectConnection!
-
- """The HTTP path listing user's projects"""
- projectsResourcePath: String!
-
- """The HTTP URL listing user's projects"""
- projectsUrl: String!
-
- """A list of public keys associated with this user."""
- publicKeys(
- """Returns the last _n_ elements from the list."""
- last: Int
-
- """Returns the first _n_ elements from the list."""
- first: Int
-
- """
- Returns the elements in the list that come before the specified cursor.
- """
- before: String
-
- """Returns the elements in the list that come after the specified cursor."""
- after: String
- ): GitHubPublicKeyConnection!
-
- """A list of pull requests associated with this user."""
- pullRequests(
- """Returns the last _n_ elements from the list."""
- last: Int
-
- """Returns the first _n_ elements from the list."""
- first: Int
-
- """
- Returns the elements in the list that come before the specified cursor.
- """
- before: String
-
- """Returns the elements in the list that come after the specified cursor."""
- after: String
-
- """Ordering options for pull requests returned from the connection."""
- orderBy: GitHubIssueOrder
-
- """The base ref name to filter the pull requests by."""
- baseRefName: String
-
- """The head ref name to filter the pull requests by."""
- headRefName: String
-
- """A list of label names to filter the pull requests by."""
- labels: [String!]
-
- """A list of states to filter the pull requests by."""
- states: [GitHubPullRequestState!]
- ): GitHubPullRequestConnection!
-
- """A list of registry packages under the owner."""
- registryPackages(
- """Filter registry package by whether it is publicly visible"""
- publicOnly: Boolean
-
- """Filter registry package by type (string)."""
- registryPackageType: String
-
- """Filter registry package by type."""
- packageType: GitHubRegistryPackageType
-
- """Find registry packages in a repository."""
- repositoryId: ID
-
- """Find registry packages by their names."""
- names: [String]
-
- """Find registry package by name."""
- name: String
-
- """Returns the last _n_ elements from the list."""
- last: Int
-
- """Returns the first _n_ elements from the list."""
- first: Int
-
- """
- Returns the elements in the list that come before the specified cursor.
- """
- before: String
-
- """Returns the elements in the list that come after the specified cursor."""
- after: String
- ): GitHubRegistryPackageConnection! @deprecated(reason: "Renaming GitHub Packages fields and objects. Use the `PackageOwner` object instead. Removal on 2020-04-01 UTC.")
-
- """A list of registry packages for a particular search query."""
- registryPackagesForQuery(
- """Filter registry package by type."""
- packageType: GitHubRegistryPackageType
-
- """Find registry package by search query."""
- query: String
-
- """Returns the last _n_ elements from the list."""
- last: Int
-
- """Returns the first _n_ elements from the list."""
- first: Int
-
- """
- Returns the elements in the list that come before the specified cursor.
- """
- before: String
-
- """Returns the elements in the list that come after the specified cursor."""
- after: String
- ): GitHubRegistryPackageConnection! @deprecated(reason: "Renaming GitHub Packages fields and objects. Use the `PackageSearch` object instead. Removal on 2020-04-01 UTC.")
-
- """A list of repositories that the user owns."""
- repositories(
- """
- If non-null, filters repositories according to whether they are forks of another repository
- """
- isFork: Boolean
-
- """Returns the last _n_ elements from the list."""
- last: Int
-
- """Returns the first _n_ elements from the list."""
- first: Int
-
- """
- Returns the elements in the list that come before the specified cursor.
- """
- before: String
-
- """Returns the elements in the list that come after the specified cursor."""
- after: String
-
- """
- If non-null, filters repositories according to whether they have been locked
- """
- isLocked: Boolean
-
- """
- Array of owner's affiliation options for repositories returned from the connection. For example, OWNER will include only repositories that the organization or user being viewed owns.
- """
- ownerAffiliations: [GitHubRepositoryAffiliation]
-
- """
- Array of viewer's affiliation options for repositories returned from the connection. For example, OWNER will include only repositories that the current viewer owns.
- """
- affiliations: [GitHubRepositoryAffiliation]
-
- """Ordering options for repositories returned from the connection"""
- orderBy: GitHubRepositoryOrder
-
- """If non-null, filters repositories according to privacy"""
- privacy: GitHubRepositoryPrivacy
- ): GitHubRepositoryConnection!
-
- """A list of repositories that the user recently contributed to."""
- repositoriesContributedTo(
- """Returns the last _n_ elements from the list."""
- last: Int
-
- """Returns the first _n_ elements from the list."""
- first: Int
-
- """
- Returns the elements in the list that come before the specified cursor.
- """
- before: String
-
- """Returns the elements in the list that come after the specified cursor."""
- after: String
-
- """
- If non-null, include only the specified types of contributions. The GitHub.com UI uses [COMMIT, ISSUE, PULL_REQUEST, REPOSITORY]
- """
- contributionTypes: [GitHubRepositoryContributionType]
-
- """If true, include user repositories"""
- includeUserRepositories: Boolean
-
- """
- If non-null, filters repositories according to whether they have been locked
- """
- isLocked: Boolean
-
- """Ordering options for repositories returned from the connection"""
- orderBy: GitHubRepositoryOrder
-
- """If non-null, filters repositories according to privacy"""
- privacy: GitHubRepositoryPrivacy
- ): GitHubRepositoryConnection!
-
- """Find Repository."""
- repository(
- """Name of Repository to find."""
- name: String!
- ): GitHubRepository
-
- """The HTTP path for this user"""
- resourcePath: String!
-
- """Replies this user has saved"""
- savedReplies(
- """The field to order saved replies by."""
- orderBy: GitHubSavedReplyOrder
-
- """Returns the last _n_ elements from the list."""
- last: Int
-
- """Returns the first _n_ elements from the list."""
- first: Int
-
- """
- Returns the elements in the list that come before the specified cursor.
- """
- before: String
-
- """Returns the elements in the list that come after the specified cursor."""
- after: String
- ): GitHubSavedReplyConnection
-
- """The GitHub Sponsors listing for this user."""
- sponsorsListing: GitHubSponsorsListing
-
- """This object's sponsorships as the maintainer."""
- sponsorshipsAsMaintainer(
- """
- Ordering options for sponsorships returned from this connection. If left blank, the sponsorships will be ordered based on relevancy to the viewer.
- """
- orderBy: GitHubSponsorshipOrder
-
- """Whether or not to include private sponsorships in the result set"""
- includePrivate: Boolean
-
- """Returns the last _n_ elements from the list."""
- last: Int
-
- """Returns the first _n_ elements from the list."""
- first: Int
-
- """
- Returns the elements in the list that come before the specified cursor.
- """
- before: String
-
- """Returns the elements in the list that come after the specified cursor."""
- after: String
- ): GitHubSponsorshipConnection!
-
- """This object's sponsorships as the sponsor."""
- sponsorshipsAsSponsor(
- """
- Ordering options for sponsorships returned from this connection. If left blank, the sponsorships will be ordered based on relevancy to the viewer.
- """
- orderBy: GitHubSponsorshipOrder
-
- """Returns the last _n_ elements from the list."""
- last: Int
-
- """Returns the first _n_ elements from the list."""
- first: Int
-
- """
- Returns the elements in the list that come before the specified cursor.
- """
- before: String
-
- """Returns the elements in the list that come after the specified cursor."""
- after: String
- ): GitHubSponsorshipConnection!
-
- """Repositories the user has starred."""
- starredRepositories(
- """Order for connection"""
- orderBy: GitHubStarOrder
-
- """
- Filters starred repositories to only return repositories owned by the viewer.
- """
- ownedByViewer: Boolean
-
- """Returns the last _n_ elements from the list."""
- last: Int
-
- """Returns the first _n_ elements from the list."""
- first: Int
-
- """
- Returns the elements in the list that come before the specified cursor.
- """
- before: String
-
- """Returns the elements in the list that come after the specified cursor."""
- after: String
- ): GitHubStarredRepositoryConnection!
-
- """The user's description of what they're currently doing."""
- status: GitHubUserStatus
-
- """
- Repositories the user has contributed to, ordered by contribution rank, plus repositories the user has created
-
- """
- topRepositories(
- """How far back in time to fetch contributed repositories"""
- since: String
-
- """Ordering options for repositories returned from the connection"""
- orderBy: GitHubRepositoryOrder!
-
- """Returns the last _n_ elements from the list."""
- last: Int
-
- """Returns the first _n_ elements from the list."""
- first: Int
-
- """
- Returns the elements in the list that come before the specified cursor.
- """
- before: String
-
- """Returns the elements in the list that come after the specified cursor."""
- after: String
- ): GitHubRepositoryConnection!
-
- """Identifies the date and time when the object was last updated."""
- updatedAt: String!
-
- """The HTTP URL for this user"""
- url: String!
-
- """Can the viewer pin repositories and gists to the profile?"""
- viewerCanChangePinnedItems: Boolean!
-
- """Can the current viewer create new projects on this owner."""
- viewerCanCreateProjects: Boolean!
-
- """Whether or not the viewer is able to follow the user."""
- viewerCanFollow: Boolean!
-
- """Whether or not this user is followed by the viewer."""
- viewerIsFollowing: Boolean!
-
- """A list of repositories the given user is watching."""
- watching(
- """Returns the last _n_ elements from the list."""
- last: Int
-
- """Returns the first _n_ elements from the list."""
- first: Int
-
- """
- Returns the elements in the list that come before the specified cursor.
- """
- before: String
-
- """Returns the elements in the list that come after the specified cursor."""
- after: String
-
- """
- If non-null, filters repositories according to whether they have been locked
- """
- isLocked: Boolean
-
- """
- Array of owner's affiliation options for repositories returned from the connection. For example, OWNER will include only repositories that the organization or user being viewed owns.
- """
- ownerAffiliations: [GitHubRepositoryAffiliation]
-
- """
- Affiliation options for repositories returned from the connection. If none specified, the results will include repositories for which the current viewer is an owner or collaborator, or member.
- """
- affiliations: [GitHubRepositoryAffiliation]
-
- """Ordering options for repositories returned from the connection"""
- orderBy: GitHubRepositoryOrder
-
- """If non-null, filters repositories according to privacy"""
- privacy: GitHubRepositoryPrivacy
- ): GitHubRepositoryConnection!
-
- """A URL pointing to the user's public website/blog."""
- websiteUrl: String
- eventilUser: EventilUser
-
- """
- If this GitHubUser is the currently logged in viewer, this field will contain a list of emails belonging to this GitHub user.
-
- See the [email address endpoint documentation](https://developer.github.com/v3/users/emails/#list-email-addresses-for-a-user) for more details.
- """
- emailsIfIsViewer_oneGraph(
- """
- Only include the GitHub has considers to be the primary email for this user
- """
- onlyPrimary: Boolean
-
- """Only include emails that GitHub has verified belong to this user"""
- onlyVerified: Boolean
- ): [GitHubUserEmail_oneGraph!] @deprecated(reason: "*Temporary field until GitHub implemements their own `emailsIfIsViewer` field for a user.*")
-
- """Linked Salesforce User"""
- salesforceUser: SalesforceUser
- oneGraphLinkedNodes(
- """Filter the connected nodes that are returned by service or typename."""
- filter: OneGraphLinkedNodesConnectionFilter
- ): OneGraphLinkedNodesConnection!
-
- """Unique id across all of OneGraph"""
- oneGraphId: ID!
-}
-
-"""A Google user"""
-type GoogleUser {
- """The Google user's ID"""
- sub: String!
-
- """The Google user's full name"""
- name: String
-
- """The Google user's given name"""
- givenName: String
-
- """The Google user's family name"""
- familyName: String
-
- """A link to the Google's """
- profile: String
-
- """The Google user's ID"""
- picture: String
-
- """The user's gender"""
- gender: String
-
- """The user's email"""
- email: String
-
- """The user's email"""
- emailVerified: Boolean
-
- """The user's locale"""
- locale: String
-}
-
-enum SpotifyContextType {
- ALBUM
- ARTIST
- PLAYLIST
-}
-
-type SpotifyContext {
- """External URLs for this context."""
- externalUrls: SpotifyExternalUrl
-
- """A link to the Web API endpoint providing full details of the track."""
- href: String
-
- """The object type, e.g. “artist”, “playlist”, “album”."""
- type: SpotifyContextType
-
- """
- The [Spotify URI](/documentation/web-api/#spotify-uris-and-ids) for the context.
- """
- uri: String
-}
-
-enum SpotifyPlayerRepeatState {
- OFF
- TRACK
- CONTEXT
-}
-
-type SpotifyDevice {
- """The device ID. This may be `null`."""
- id: String
-
- """If this device is the currently active device."""
- isActive: Boolean
-
- """If this device is currently in a private session."""
- isPrivateSession: Boolean
-
- """
- Whether controlling this device is restricted. At present if this is “true” then no Web API commands will be accepted by this device.
- """
- isRestricted: Boolean
-
- """The name of the device."""
- name: String
-
- """Device type, such as “computer”, “smartphone” or “speaker”."""
- type: String
-
- """The current volume in percent. This may be null."""
- volumePercent: Int
-}
-
-type SpotifyPlayer {
- """The device that is currently active"""
- device: SpotifyDevice
-
- """off, track, context"""
- repeatState: SpotifyPlayerRepeatState
-
- """If shuffle is on or off"""
- shuffleState: Boolean
-
- """
- A Context Object. Can be `null` (e.g. If private session is enabled this will be `null`).
- """
- context: SpotifyContext
-
- """Unix Millisecond Timestamp when data was fetched"""
- timestamp: Int
-
- """
- Progress into the currently playing track. Can be `null` (e.g. If private session is enabled this will be `null`).
- """
- progressMs: Int
-
- """If something is currently playing."""
- isPlaying: Boolean
-
- """
- The currently playing track. Can be `null` (e.g. If private session is enabled this will be `null`).
- """
- item: SpotifyTrack
-
- """
- The object type of the currently playing item. Can be one of track, episode, ad or unknown.
- """
- currentlyPlayingType: String
-}
-
-type SpotifyTrackRestriction {
- """The reason why the track is not available."""
- reason: String
-}
-
-type SpotifyExternalId {
- """International Standard Recording Code"""
- isrc: String
-
- """International Article Number"""
- ean: String
-
- """Universal Product Code"""
- upc: String
-}
-
-enum SpotifyAlbumCopyrightsType {
- C
- P
-}
-
-type SpotifyCopyright {
- """The copyright text for this album."""
- text: String
-
- """
- The type of copyright: C = the copyright, P = the sound recording (performance) copyright.
- """
- type: SpotifyAlbumCopyrightsType
-}
-
-enum SpotifyAlbumType {
- ALBUM
- SINGLE
- COMPILATION
-}
-
-type SpotifyAlbum {
- """The type of the album: `album`, `single`, or `compilation`."""
- albumType: SpotifyAlbumType
-
- """
- The artists of the album. Each artist object includes a link in `href` to more detailed information about the artist.
- """
- artists: [SpotifyArtist!]
-
- """
- The markets in which the album is available: [ISO 3166-1 alpha-2 country codes](http://en.wikipedia.org/wiki/ISO_3166-1_alpha-2). Note that an album is considered available in a market when at least 1 of its tracks is available in that market.
- """
- availableMarkets: [String!]
-
- """The copyright statements of the album."""
- copyrights: [SpotifyCopyright!]
-
- """Known external IDs for the album."""
- externalIds: SpotifyExternalId
-
- """Known external URLs for this album."""
- externalUrls: SpotifyExternalUrl
-
- """
- A list of the genres used to classify the album. For example: “Prog Rock” , “Post-Grunge”. (If not yet classified, the array is empty.)
- """
- genres: [String!]
-
- """A link to the Web API endpoint providing full details of the album."""
- href: String
-
- """The Spotify ID for the album."""
- id: String
-
- """The cover art for the album in various sizes, widest first."""
- images: [SpotifyImage!]
-
- """The label for the album."""
- label: String
-
- """
- The name of the album. In case of an album takedown, the value may be an empty string.
- """
- name: String
-
- """
- The popularity of the album. The value will be between 0 and 100, with 100 being the most popular. The popularity is calculated from the popularity of the album’s individual tracks.
- """
- popularity: Int
-
- """
- The date the album was first released, for example “1981-12-15”. Depending on the precision, it might be shown as “1981” or “1981-12”.
- """
- releaseDate: String
-
- """
- The precision with which release\\_date value is known: “year” , “month” , or “day”.
- """
- releaseDatePrecision: String
-
- """The object type: “album”"""
- type: String
-
- """The Spotify URI for the album."""
- uri: String
- tracks: [SpotifyTrack!]
-}
-
-type SpotifyArtist {
- """Known external URLs for this artist."""
- externalUrls: SpotifyExternalUrl
-
- """Information about the followers of the artist."""
- followers: SpotifyFollowers
-
- """
- A list of the genres the artist is associated with. For example: `"Prog Rock"` , `"Post-Grunge"`. (If not yet classified, the array is empty.)
- """
- genres: [String!]
-
- """A link to the Web API endpoint providing full details of the artist."""
- href: String
-
- """
- The [Spotify ID](/documentation/web-api/#spotify-uris-and-ids) for the artist.
- """
- id: String
-
- """Images of the artist in various sizes, widest first."""
- images: [SpotifyImage!]
-
- """The name of the artist."""
- name: String
-
- """
- The popularity of the artist. The value will be between 0 and 100, with 100 being the most popular. The artist’s popularity is calculated from the popularity of all the artist’s tracks.
- """
- popularity: Int
-
- """The object type: `"artist"`"""
- type: String
-
- """
- The [Spotify URI](/documentation/web-api/#spotify-uris-and-ids) for the artist.
- """
- uri: String
- albums: [SpotifyAlbum!]
-}
-
-type SpotifySimplifiedArtist {
- """Known external URLs for this artist."""
- externalUrls: SpotifyExternalUrl
-
- """A link to the Web API endpoint providing full details of the artist."""
- href: String
-
- """The Spotify ID for the artist."""
- id: String
-
- """The name of the artist."""
- name: String
-
- """The object type: 'artist'"""
- type: String
-
- """The Spotify URI for the artist."""
- uri: String
-}
-
-type SpotifySimplifiedAlbum {
- """
- The field is present when getting an artist’s albums. Possible values are “album”, “single”, “compilation”, “appears\\_on”. Compare to album\\_type this field represents relationship between the artist and the album.
- """
- albumGroup: String
-
- """The type of the album: one of “album”, “single”, or “compilation”."""
- albumType: String
-
- """
- The artists of the album. Each artist object includes a link in `href` to more detailed information about the artist.
- """
- artists: [SpotifySimplifiedArtist!]
-
- """
- The markets in which the album is available: [ISO 3166-1 alpha-2 country codes](http://en.wikipedia.org/wiki/ISO_3166-1_alpha-2). Note that an album is considered available in a market when at least 1 of its tracks is available in that market.
- """
- availableMarkets: [String!]
-
- """Known external URLs for this album."""
- externalUrls: SpotifyExternalUrl
-
- """A link to the Web API endpoint providing full details of the album."""
- href: String
-
- """
- The [Spotify ID](/documentation/web-api/#spotify-uris-and-ids) for the album.
- """
- id: String
-
- """The cover art for the album in various sizes, widest first."""
- images: [SpotifyImage!]
-
- """
- The name of the album. In case of an album takedown, the value may be an empty string.
- """
- name: String
-
- """The object type: “album”"""
- type: String
-
- """
- The [Spotify URI](/documentation/web-api/#spotify-uris-and-ids) for the album.
- """
- uri: String
-}
-
-type SpotifyTrack {
- """
- The album on which the track appears. The album object includes a link in `href` to full information about the album.
- """
- album: SpotifySimplifiedAlbum
-
- """
- The artists who performed the track. Each artist object includes a link in `href` to more detailed information about the artist.
- """
- artists: [SpotifyArtist!]
-
- """
- A list of the countries in which the track can be played, identified by their [ISO 3166-1 alpha-2](http://en.wikipedia.org/wiki/ISO_3166-1_alpha-2) code.
- """
- availableMarkets: [String!]
-
- """
- The disc number (usually `1` unless the album consists of more than one disc).
- """
- discNumber: Int
-
- """The track length in milliseconds."""
- durationMs: Int
-
- """
- Whether or not the track has explicit lyrics ( `true` = yes it does; `false` = no it does not OR unknown).
- """
- explicit: Boolean
-
- """Known external IDs for the track."""
- externalIds: SpotifyExternalId
-
- """Known external URLs for this track."""
- externalUrls: SpotifyExternalUrl
-
- """A link to the Web API endpoint providing full details of the track."""
- href: String
-
- """
- The [Spotify ID](/documentation/web-api/#spotify-uris-and-ids) for the track.
- """
- id: String
-
- """
- Part of the response when [Track Relinking](/documentation/general/guides/track-relinking-guide/) is applied. If `true` , the track is playable in the given market. Otherwise `false`.
- """
- isPlayable: Boolean
-
- """
- Part of the response when [Track Relinking](/documentation/general/guides/track-relinking-guide/) is applied, and the requested track has been replaced with different track. The track in the `linked_from` object contains information about the originally requested track.
- """
- linkedFrom: SpotifyTrack
-
- """The name of the track."""
- name: String
-
- """
- The popularity of the track. The value will be between 0 and 100, with 100 being the most popular.
- The popularity of a track is a value between 0 and 100, with 100 being the most popular. The popularity is calculated by algorithm and is based, in the most part, on the total number of plays the track has had and how recent those plays are.
- Generally speaking, songs that are being played a lot now will have a higher popularity than songs that were played a lot in the past. Duplicate tracks (e.g. the same track from a single and an album) are rated independently. Artist and album popularity is derived mathematically from track popularity. Note that the popularity value may lag actual popularity by a few days: the value is not updated in real time.
- """
- popularity: Int
-
- """A link to a 30 second preview (MP3 format) of the track. Can be `null`"""
- previewUrl: String
-
- """
- Part of the response when [Track Relinking](/documentation/general/guides/track-relinking-guide/) is applied, the original track is not available in the given market, and Spotify did not have any tracks to relink it with. The track response will still contain metadata for the original track, and a restrictions object containing the reason why the track is not available: `"restrictions" : {"reason" : "market"}`
- """
- restrictions: [SpotifyTrackRestriction!]
-
- """
- The number of the track. If an album has several discs, the track number is the number on the specified disc.
- """
- trackNumber: Int
-
- """The object type: “track”."""
- type: String
-
- """
- The [Spotify URI](/documentation/web-api/#spotify-uris-and-ids) for the track.
- """
- uri: String
-}
-
-type SpotifyPublicUser {
- """The name displayed on the user’s profile. `null` if not available."""
- displayName: String
-
- """Known public external URLs for this user."""
- externalUrls: SpotifyExternalUrl
-
- """Information about the followers of this user."""
- followers: SpotifyFollowers
-
- """A link to the Web API endpoint for this user."""
- href: String
-
- """
- The [Spotify user ID](/documentation/web-api/#spotify-uris-and-ids) for this user.
- """
- id: String
-
- """The user’s profile image."""
- images: [SpotifyImage!]
-
- """The object type: “user”"""
- type: String
-
- """
- The [Spotify URI](/documentation/web-api/#spotify-uris-and-ids) for this user.
- """
- uri: String
-}
-
-type SpotifyPlaylist {
- """`true` if the owner allows other users to modify the playlist."""
- collaborative: Boolean
-
- """Known external URLs for this playlist."""
- externalUrls: SpotifyExternalUrl
-
- """A link to the Web API endpoint providing full details of the playlist."""
- href: String
-
- """
- The [Spotify ID](/documentation/web-api/#spotify-uris-and-ids) for the playlist.
- """
- id: String
-
- """
- Images for the playlist. The array may be empty or contain up to three images. The images are returned by size in descending order. See [Working with Playlists](/documentation/general/guides/working-with-playlists/). _Note: If returned, the source URL for the image (`url`) is temporary and will expire in less than a day._
- """
- images: [SpotifyImage!]
-
- """The name of the playlist."""
- name: String
-
- """The user who owns the playlist"""
- owner: SpotifyPublicUser
-
- """
- The playlist’s public/private status: `true` the playlist is public, `false` the playlist is private, `null` the playlist status is not relevant. For more about public/private status, see [Working with Playlists](/documentation/general/guides/working-with-playlists/)
- """
- public: Boolean
-
- """
- The version identifier for the current playlist. Can be supplied in other requests to target a specific playlist version
- """
- snapshotId: String
-
- """The object type: “playlist”"""
- type: String
-
- """
- The [Spotify URI](/documentation/web-api/#spotify-uris-and-ids) for the playlist.
- """
- uri: String
- tracks: [SpotifyTrack!]
-}
-
-type SpotifyImage {
- """The image height in pixels. If unknown: `null` or not returned."""
- height: Int
-
- """The source URL of the image."""
- url: String
-
- """The image width in pixels. If unknown: `null` or not returned."""
- width: Int
-}
-
-type SpotifyFollowers {
- """
- A link to the Web API endpoint providing full details of the followers; `null` if not available.
- """
- href: String
-
- """The total number of followers."""
- total: Int
-}
-
-type SpotifyExternalUrl {
- """The Spotify URL for the object."""
- spotify: String
-}
-
-type SpotifyCurrentUserProfile {
- """
- The user’s date-of-birth. _This field is only available when the current user has granted access to the [user-read-birthdate](/documentation/general/guides/authorization-guide/#list-of-scopes) scope._
- """
- birthdate: String
-
- """
- The country of the user, as set in the user’s account profile. An [ISO 3166-1 alpha-2 country code](http://en.wikipedia.org/wiki/ISO_3166-1_alpha-2). _This field is only available when the current user has granted access to the [user-read-private](/documentation/general/guides/authorization-guide/#list-of-scopes) scope._
- """
- country: String
-
- """The name displayed on the user’s profile. `null` if not available."""
- displayName: String
-
- """
- The user’s email address, as entered by the user when creating their account. _**Important!** This email address is unverified; there is no proof that it actually belongs to the user._ _This field is only available when the current user has granted access to the [user-read-email](/documentation/general/guides/authorization-guide/#list-of-scopes) scope._
- """
- email: String
-
- """Known external URLs for this user."""
- externalUrls: SpotifyExternalUrl
-
- """Information about the followers of the user."""
- followers: SpotifyFollowers
-
- """A link to the Web API endpoint for this user."""
- href: String
-
- """
- The [Spotify user ID](/documentation/web-api/#spotify-uris-and-ids) for the user.
- """
- id: String
-
- """The user’s profile image."""
- images: [SpotifyImage!]
-
- """
- The user’s Spotify subscription level: “premium”, “free”, etc. (The subscription level “open” can be considered the same as “free”.) _This field is only available when the current user has granted access to the [user-read-private](/documentation/general/guides/authorization-guide/#list-of-scopes) scope._
- """
- product: String
-
- """The object type: “user”"""
- type: String
-
- """
- The [Spotify URI](/documentation/web-api/#spotify-uris-and-ids) for the user.
- """
- uri: String
- playlists(limit: Int): [SpotifyPlaylist!]
- player(
- """
- [Get information about the user’s current playback state, including track, track progress, and active device.](https://developer.spotify.com/documentation/web-api/reference/player/get-information-about-the-users-current-playback/)\n
- """
- market: String
- ): SpotifyPlayer
-}
-
-"""A Slack user"""
-type SlackUser {
- """The Slack user's ID"""
- id: String!
-
- """The Slack user's chosen display name"""
- displayName: String
-
- """The Slack user's email"""
- email: String
-}
-
-"""A OneGraph me TwitchTv user"""
-type TwitchTvUser {
- """The TwitchTv user's ID"""
- id: String!
-
- """The TwitchTv user's bio"""
- bio: String
-
- """The TwitchTv user's display name"""
- displayName: String
-
- """The TwitchTv user's email"""
- email: String
-
- """Whether TwitchTv has verified this user's email"""
- emailVerified: Boolean
-
- """The logo or avatar for this TwitchTv user"""
- logo: String
-
- """The TwitchTv user's name"""
- name: String
-
- """Whether this user has partnered with Twitch"""
- partnered: Boolean
-
- """Whether this user has connected Twitter to their TwitchTv account"""
- twitterConnected: Boolean
-
- """The type of this TwitchTv user"""
- type: String
-}
-
-"""List of Trello organizations, with metadata field for pagination"""
-type TrelloOrganizationsConnection {
- """List of Trello organizations"""
- nodes: [TrelloOrganization!]!
-
- """Total number of Trello organizations"""
- totalCount: Int!
-}
-
-""""""
-type TrelloEnterpriseUserTypes {
- """"""
- all: Int
-
- """"""
- member: Int
-
- """"""
- collaborator: Int
-
- """"""
- saml: Int
-
- """"""
- none: Int
-}
-
-""""""
-type TrelloEnterprisePrefsSignup {
- """"""
- message: String
-
- """"""
- confirmation: String
-
- """"""
- banner: String
-
- """"""
- bannerHtml: String
-
- """"""
- confirmationHtml: String
-
- """"""
- messageHtml: String
-}
-
-""""""
-type TrelloEnterprisePrefs {
- """"""
- ssoOnly: Boolean
-
- """"""
- signup: TrelloEnterprisePrefsSignup
-
- """"""
- mandatoryTranferDate: String
-
- """"""
- maxMembers: Int
-}
-
-""""""
-type TrelloEnterprise {
- """The id of the enterprise."""
- id: String
-
- """Short-form name of the enterprise. Example: test_enterprise."""
- name: String
-
- """
- Long-form name of the enterprise used when displaying the full name of the enterprise. Example: Trello's Enterprise
- """
- displayName: String
-
- """
- JSON Object containing information about the preferences set within the enterprise. Example:
-
- {
- "ssoOnly": false,
- "signup": {
- "message": "😁 Howdy, friends.",
- "confirmation": "We're confirming that you are a 💫.",
- "banner": "Banner Text!",
- "bannerHtml": "Banner Text!
\n",
- "confirmationHtml": "We're confirming that you are a 💫.
\n",
- "messageHtml": "😁 Howdy, friends.
\n"
- },
- "mandatoryTransferDate": null,
- "maxMembers": null
- }
- """
- prefs: TrelloEnterprisePrefs
-
- """Determines whether SSO successfully activated."""
- ssoActivationFailed: Boolean
-
- """Array of Member ids that are admins of the enterprise."""
- idAdmins: [String!]
-
- """Array of Member ids that belong to the enterprise."""
- idMembers: [String!]
-
- """Array of Organization ids that belong to the enterprise."""
- idOrganizations: [String!]
-
- """
- Object containing keys for every member type (all, member, collaborator, saml, none) and values representing the count of each type of member.
-
- For example:
-
- {
- "all": 6,
- "member": 5,
- "collaborator": 0,
- "saml": 0,
- "none": 1
- }
- """
- userTypes: TrelloEnterpriseUserTypes
- members: [TrelloMember!]
- admins: [TrelloMember!]
-}
-
-""""""
-type TrelloEnterpriseMembership {
- """"""
- enterprise: TrelloEnterprise
-
- """"""
- displayName: String
-
- """"""
- userType: String
-}
-
-"""
-List of Trello enterpriseMemberships, with metadata field for pagination
-"""
-type TrelloEnterpriseMembershipsConnection {
- """List of Trello enterpriseMemberships"""
- nodes: [TrelloEnterpriseMembership!]!
-
- """Total number of Trello enterpriseMemberships"""
- totalCount: Int!
-}
-
-"""List of Trello cards, with metadata field for pagination"""
-type TrelloCardsConnection {
- """List of Trello cards"""
- nodes: [TrelloCard!]!
-
- """Total number of Trello cards"""
- totalCount: Int!
-}
-
-""""""
-type TrelloEmojiSkinVariation {
- """"""
- unified: String
-
- """"""
- native: String
-
- """"""
- sheetX: Int
-
- """"""
- sheetY: Int
-}
-
-""""""
-type TrelloEmojiSkinVariations {
- """Light Skin Tone"""
- light: TrelloEmojiSkinVariation
-
- """Medium-Light Skin Tone"""
- mediumLight: TrelloEmojiSkinVariation
-
- """Medium Skin Tone"""
- medium: TrelloEmojiSkinVariation
-
- """Medium-Dark Skin Tone"""
- mediumDark: TrelloEmojiSkinVariation
-
- """Dark Skin Tone"""
- dark: TrelloEmojiSkinVariation
-}
-
-"""Available emojis."""
-type TrelloEmoji {
- """"""
- unified: String
-
- """"""
- name: String
-
- """"""
- native: String
-
- """"""
- shortName: String
-
- """"""
- shortNames: [String!]
-
- """"""
- text: String
-
- """"""
- texts: [String!]
-
- """"""
- category: String
-
- """"""
- sheetX: Int
-
- """"""
- sheetY: Int
-
- """"""
- skinVariations: TrelloEmojiSkinVariations
-
- """"""
- tts: String
-
- """"""
- keywords: [String!]
-}
-
-""""""
-type TrelloReaction {
- """"""
- id: String
-
- """"""
- member: TrelloMember
-
- """"""
- idMember: String
-
- """"""
- idModel: String
-
- """"""
- idEmoji: String
-
- """"""
- emoji: TrelloEmoji
-}
-
-"""List of Trello reactions, with metadata field for pagination"""
-type TrelloReactionsConnection {
- """List of Trello reactions"""
- nodes: [TrelloReaction!]!
-
- """Total number of Trello reactions"""
- totalCount: Int!
-}
-
-"""Previous data about the action"""
-type TrelloActionDataOld {
- """Previous name."""
- name: String
-
- """Previous position."""
- pos: Int
-
- """Previous closed state."""
- closed: Boolean
-
- """Previous list id."""
- idList: String
-
- """Previous description."""
- desc: String
-}
-
-"""Relevant information regarding the action"""
-type TrelloActionData {
- """The Trello list attached to the action."""
- list: TrelloList
-
- """The source Trello list for the action."""
- listBefore: TrelloList
-
- """The destincation Trello list for the action."""
- listAfter: TrelloList
-
- """The Trello board attached to the action."""
- board: TrelloBoard
-
- """The Trello card attached to the action."""
- card: TrelloCard
-
- """The Trello organization attached to the action."""
- organization: TrelloOrganization
-
- """Text for a comment"""
- text: String
-
- """Fields that changed"""
- old: TrelloActionDataOld
-}
-
-"""Filters for boards query."""
-enum TrelloBoardFilterEnumArg {
- """Returns all boards that have been closed."""
- CLOSED
-
- """Returns all boards that have visibility set to Private."""
- MEMBERS
-
- """Returns all boards that are open."""
- OPEN
-
- """Returns all boards that have visibility set to Team."""
- ORGANIZATION
-
- """Returns all boards that have visibility set to Public."""
- PUBLIC
-
- """Returns all boards that have been starred."""
- STARRED
-}
-
-"""List of Trello boards, with metadata field for pagination"""
-type TrelloBoardsConnection {
- """List of Trello boards"""
- nodes: [TrelloBoard!]!
-
- """Total number of Trello boards"""
- totalCount: Int!
-}
-
-""""""
-type TrelloOrganizationPrefsBoardVisibility {
- """"""
- private: String
-
- """"""
- org: String
-
- """"""
- public: String
-}
-
-""""""
-type TrelloOrganizationPrefs {
- """"""
- permissionLevel: String
-
- """"""
- externalMembersDisabled: Boolean
-
- """"""
- associatedDomain: String
-
- """"""
- googleAppsVersion: Int
-
- """"""
- boardVisibilityRestrict: TrelloOrganizationPrefsBoardVisibility
-}
-
-""""""
-type TrelloOrganization {
- """The id of the organization"""
- id: String
-
- """"""
- billableMemberCount: Int
-
- """The description for the team"""
- desc: String
-
- """
- If there are custom emoji in the desc this will contain information about them.
- """
- descData: JSON
-
- """The name for the team. For example: Trello Inc"""
- displayName: String
-
- """An array of board ids that are in the team"""
- idBoards: [String!]
-
- """"""
- invited: Boolean
-
- """"""
- logoHash: String
-
- """"""
- memberships: [TrelloMembership!]
-
- """The programmatic name for the team. For example: trelloinc"""
- name: String
-
- """"""
- powerUps: [Int!]
-
- """The preferences (settings) for the team"""
- prefs: TrelloOrganizationPrefs
-
- """"""
- premiumFeatures: [String!]
-
- """"""
- products: [Int!]
-
- """The URL to the team page on Trello"""
- url: String
-
- """"""
- website: String
- actions: TrelloActionsConnection
- boards(
- """
- Filter boards. Add multiple filters to include boards that pass any of the fitlers
- """
- filters: [TrelloBoardFilterEnumArg!]
- ): TrelloBoardsConnection
- members: [TrelloMember!]
-}
-
-""""""
-type TrelloChecklistCheckItem {
- """"""
- state: String
-
- """"""
- checklist: TrelloChecklist
-
- """"""
- idChecklist: String
-
- """"""
- id: String
-
- """"""
- name: String
-
- """"""
- pos: Int
-}
-
-"""Cards can have zero or more checklists on them."""
-type TrelloChecklist {
- """The id of the checklist"""
- id: String
-
- """The board the checklist is on"""
- board: TrelloBoard
-
- """The id of the board the checklist is on"""
- idBoard: String
-
- """The card the checklist is on"""
- card: TrelloCard
-
- """The id of the card the checklist is on"""
- idCard: String
-
- """The name of the checklist"""
- name: String
-
- """
- The position of the checklist on the card (relative to any other checklists on the card)
- """
- pos: Int
-
- """"""
- checkItems: [TrelloChecklistCheckItem!]
-}
-
-"""Scaled images for a sticker."""
-type TrelloImageScaled {
- """"""
- width: Int
-
- """"""
- height: Int
-
- """"""
- url: String
-
- """"""
- scaled: Boolean
-
- """"""
- id: String
-}
-
-"""Sticker on a card."""
-type TrelloSticker {
- """"""
- id: String
-
- """"""
- top: Float
-
- """"""
- left: Float
-
- """"""
- zIndex: Int
-
- """"""
- rotate: Int
-
- """"""
- image: String
-
- """"""
- imageUrl: String
-
- """"""
- imageScaled: [TrelloImageScaled!]
-}
-
-"""List of Trello stickers, with metadata field for pagination"""
-type TrelloStickersConnection {
- """List of Trello stickers"""
- nodes: [TrelloSticker!]!
-
- """Total number of Trello stickers"""
- totalCount: Int!
-}
-
-"""List of Trello members, with metadata field for pagination"""
-type TrelloMembersConnection {
- """List of Trello members"""
- nodes: [TrelloMember!]!
-
- """Total number of Trello members"""
- totalCount: Int!
-}
-
-type TrelloCardAttachmentPreview {
- """"""
- bytes: Int
-
- """"""
- url: String
-
- """"""
- height: Int
-
- """"""
- width: Int
-
- """"""
- id: String
-
- """"""
- scaled: Boolean
-}
-
-"""Attachment on a card"""
-type TrelloCardAttachment {
- """"""
- id: String
-
- """"""
- bytes: Int
-
- """"""
- date: String
-
- """"""
- edgeColor: String
-
- """"""
- idMember: String
-
- """"""
- isUpload: Boolean
-
- """"""
- mimeType: String
-
- """"""
- name: String
-
- """"""
- previews: [TrelloCardAttachmentPreview!]
-
- """"""
- url: String
-
- """"""
- pos: Int
-}
-
-""""""
-type TrelloCheckItemState {
- """"""
- idCheckItem: String
-
- """"""
- state: String
-}
-
-"""
-Pieces of information about the card that are displayed on the front of the card.
-"""
-type TrelloCardBadges {
- """"""
- votes: Int
-
- """"""
- viewingMemberVoted: Boolean
-
- """"""
- subscribed: Boolean
-
- """"""
- fogbugz: String
-
- """"""
- checkItems: Int
-
- """"""
- checkItemsChecked: Int
-
- """"""
- comments: Int
-
- """"""
- attachments: Int
-
- """"""
- description: Boolean
-
- """"""
- dueComplete: Boolean
-}
-
-"""Lists in Trello contain cards. A card belongs to exactly one list."""
-type TrelloCard {
- """The id of the card"""
- id: String
-
- """
- Pieces of information about the card that are displayed on the front of the card.
-
- "badges": {
- "votes": 0,
- "viewingMemberVoted": false,
- "subscribed": true,
- "fogbugz": "",
- "checkItems": 0,
- "checkItemsChecked": 0,
- "comments": 1,
- "attachments": 2,
- "description": true,
- "due": null,
- "dueComplete": false
- }
- """
- badges: TrelloCardBadges
-
- """"""
- checkItemStates: [TrelloCheckItemState!]
-
- """
- Whether the card is closed (archived). Note: Archived lists and boards do not cascade archives to cards. A card can have closed: false but be on an archived board.
- """
- closed: Boolean
-
- """
- The datetime of the last activity on the card.
-
- Note: There are activities that update dateLastActivity that do not create a corresponding action. For instance, updating the name field of a checklist item on a card does not create an action but does update the card and board's dateLastActivity value.
- """
- dateLastActivity: String
-
- """The description for the card. Up to 16384 chars."""
- desc: String
-
- """
- If the description has custom emoji, this field will provide the data necessary to display them.
-
- "descData": {
- "emoji": {
- "morty": "https://trello-emoji.s3.amazonaws.com/556c8537a1928ba745504dd8/f40ea4f5ecea8443875c27986760d8b3/tumblr_nszc7944yh1uccyhso1_1280.png"
- }
- }
- """
- descData: JSON
-
- """The due date on the card, if one exists"""
- due: String
-
- """Whether the due date has been marked complete"""
- dueComplete: Boolean
-
- """The id of the attachment selected as the cover image, if one exists"""
- idAttachmentCover: String
-
- """Board the card is on."""
- board: TrelloBoard
-
- """The id of the board the card is on"""
- idBoard: String
-
- """An array of checklist ids that are on this card"""
- idChecklists: [String!]
-
- """An array of label ids that are on this card"""
- idLabels: [String!]
-
- """List the card is on."""
- list: TrelloList
-
- """The id of the list the card is in"""
- idList: String
-
- """An array of member ids that are on this card"""
- idMembers: [String!]
-
- """An array of member ids who have voted on this card"""
- idMembersVoted: [String!]
-
- """
- Numeric id for the card on this board. Only unique to the board, and subject to change as the card moves
- """
- idShort: Int
-
- """Array of label objects on this card"""
- labels: [String!]
-
- """
- Whether the card cover image was selected automatically by Trello, or manually by the user
- """
- manualCoverAttachment: Boolean
-
- """Name of the card"""
- name: String
-
- """Position of the card in the list"""
- pos: Float
-
- """The 8 character shortened id for the card"""
- shortLink: String
-
- """URL to the card without the name slug"""
- shortUrl: String
-
- """Whether this member is subscribed to the card"""
- subscribed: Boolean
-
- """Full URL to the card, with the name slug"""
- url: String
-
- """Attachments on a card"""
- attachments: [TrelloCardAttachment!]
-
- """Members that voted on the card"""
- membersVoted: TrelloMembersConnection
-
- """Stickers on the card"""
- stickers: TrelloStickersConnection
- actions: TrelloActionsConnection
- checklists: [TrelloChecklist!]
- members: [TrelloMember!]
-}
-
-"""
-Actions are generated whenever an action occurs in Trello. For instance, when a user deletes a card, a deleteCard action is generated and includes information about the deleted card, the list the card was in, the board the card was on, the user that deleted the card, and the idObject of the action.
-"""
-type TrelloAction {
- """The id of the action"""
- id: String
-
- """The list this action affected."""
- list: TrelloList
-
- """The board this action affected."""
- board: TrelloBoard
-
- """The card this action affected."""
- card: TrelloCard
-
- """The organization this action affected."""
- organization: TrelloOrganization
-
- """Relevant information regarding the action"""
- data: TrelloActionData
-
- """The member this action affected."""
- member: TrelloMember
-
- """When the action occured"""
- date: String
-
- """The id of the member who caused the action"""
- idMemberCreator: String
-
- """The type of the action."""
- type: String
-
- """The member who caused the action"""
- memberCreator: TrelloMember
- reactions: TrelloReactionsConnection
-}
-
-"""List of Trello actions, with metadata field for pagination"""
-type TrelloActionsConnection {
- """List of Trello actions"""
- nodes: [TrelloAction!]!
-
- """Total number of Trello actions"""
- totalCount: Int!
-}
-
-"""List of Trello lists, with metadata field for pagination"""
-type TrelloListsConnection {
- """List of Trello lists"""
- nodes: [TrelloList!]!
-
- """Total number of Trello lists"""
- totalCount: Int!
-}
-
-"""Membership for a board."""
-type TrelloMembership {
- """"""
- id: String
-
- """"""
- member: TrelloMember
-
- """"""
- idMember: String
-
- """"""
- memberType: String
-
- """"""
- unconfirmed: Boolean
-
- """"""
- deactivated: Boolean
-
- """"""
- orgMemberType: String
-}
-
-"""List of Trello memberships, with metadata field for pagination"""
-type TrelloMembershipsConnection {
- """List of Trello memberships"""
- nodes: [TrelloMembership!]!
-
- """Total number of Trello memberships"""
- totalCount: Int!
-}
-
-""""""
-type TrelloCustomFieldsOptionValue {
- """"""
- text: String
-}
-
-"""
-Used for Custom Fields of the `list` type. The objects contain data about the options available for the dropdown.
-"""
-type TrelloCustomFieldsOption {
- """"""
- id: String
-
- """"""
- customField: TrelloCustomFields
-
- """"""
- idCustomField: String
-
- """"""
- value: TrelloCustomFieldsOptionValue
-
- """"""
- color: String
-
- """"""
- pos: Int
-}
-
-"""An object that contains this custom fields display properties."""
-type TrelloCustomFieldsDisplay {
- """"""
- cardFront: Boolean
-}
-
-"""
-Custom Fields are extra bits of structured data attached to cards when our users need a bit more than what Trello provides.
-
-To use them users need to enable the Custom Fields Power-Up.
-"""
-type TrelloCustomFields {
- """The id of the Custom Field definition."""
- id: String
-
- """The board that the Custom Field is defined on."""
- board: TrelloBoard
-
- """
- The id of the model that the Custom Field is defined on. This should always be an id of a board.
- """
- idModel: String
-
- """
- The type of model that the Custom Field is being defined for. This should always be `board`.
- """
- modelType: String
-
- """
- A hash created from the fields of a Custom Field used to manage Custom Fields and values between boards. For more on its use, check out the [Grouping Custom Fields Across Boards](https://developers.trello.com/v1.0/docs/getting-started-custom-fields#section-grouping-custom-fields-across-boards) section of the Custom Fields guide.
- """
- fieldGroup: String
-
- """
- The name of the Custom Field. This is displayed to the user in the Trello clients.
- """
- name: String
-
- """
- The position of the Custom Field. This will be used to determine the order that Custom Fields should be listed when being shown to the user.
- """
- pos: Int
-
- """An object that contains this custom fields display properties."""
- display: TrelloCustomFieldsDisplay
-
- """
- An array of objects used for Custom Fields of the list type. The objects contain data about the options available for the dropdown.
- """
- options: [TrelloCustomFieldsOption!]
-
- """"""
- type: String
-}
-
-"""List of Trello customFields, with metadata field for pagination"""
-type TrelloCustomFieldsConnection {
- """List of Trello customFields"""
- nodes: [TrelloCustomFields!]!
-
- """Total number of Trello customFields"""
- totalCount: Int!
-}
-
-"""Filter for boards plugins."""
-enum TrelloPluginFilterEnumArg {
- ENABLED
- AVAILABLE
-}
-
-"""Public listinf of a power-up for a board."""
-type TrelloPluginListing {
- """"""
- name: String
-
- """"""
- locale: String
-
- """"""
- description: String
-
- """"""
- overview: String
-}
-
-"""Icon for a power-up for a board."""
-type TrelloPluginIcon {
- """"""
- url: String
-}
-
-"""Power-up for a board."""
-type TrelloPlugin {
- """"""
- id: String
-
- """"""
- idOrganizationOwner: String
-
- """"""
- author: String
-
- """"""
- capabilities: [String!]
-
- """"""
- categories: [String!]
-
- """"""
- iframeConnectorUrl: String
-
- """"""
- name: String
-
- """"""
- privacyUrl: String
-
- """"""
- public: Boolean
-
- """"""
- supportEmail: String
-
- """"""
- url: String
-
- """"""
- tags: [String!]
-
- """"""
- icon: TrelloPluginIcon
-
- """"""
- listing: TrelloPluginListing
-}
-
-"""List of Trello plugins, with metadata field for pagination"""
-type TrelloPluginsConnection {
- """List of Trello plugins"""
- nodes: [TrelloPlugin!]!
-
- """Total number of Trello plugins"""
- totalCount: Int!
-}
-
-"""
-Labels are defined per board, and can be applied to the cards on that board.
-"""
-type TrelloLabel {
- """The id of the label"""
- id: String
-
- """The id of the board the label is on"""
- board: TrelloBoard
-
- """The id of the board the label is on"""
- idBoard: String
-
- """The optional name of the label (0 - 16384 chars)"""
- name: String
-
- """
- The color of the label. One of:
-
- yellow, purple, blue, red, green, orange, black, sky, pink, lime, null
-
- (null means no color, and the label will not show on the front of cards)
- """
- color: String
-}
-
-"""List of Trello labels, with metadata field for pagination"""
-type TrelloLabelsConnection {
- """List of Trello labels"""
- nodes: [TrelloLabel!]!
-
- """Total number of Trello labels"""
- totalCount: Int!
-}
-
-"""Names for the labels ."""
-type TrelloBoardLabelNames {
- """"""
- black: String
-
- """"""
- blue: String
-
- """"""
- green: String
-
- """"""
- lime: String
-
- """"""
- orange: String
-
- """"""
- pink: String
-
- """"""
- purple: String
-
- """"""
- red: String
-
- """"""
- sky: String
-
- """"""
- yellow: String
-}
-
-"""Preferences for a board."""
-type TrelloBoardPreferences {
- """"""
- background: String
-
- """"""
- backgroundBottomColor: String
-
- """"""
- backgroundBrightness: String
-
- """"""
- backgroundColor: String
-
- """"""
- backgroundImage: String
-
- """"""
- backgroundImageScaled: String
-
- """"""
- backgroundTile: Boolean
-
- """"""
- backgroundTopColor: String
-
- """"""
- calendarFeedEnabled: Boolean
-
- """"""
- canBeOrg: Boolean
-
- """"""
- canBePrivate: Boolean
-
- """"""
- canBePublic: Boolean
-
- """"""
- canInvite: Boolean
-
- """"""
- cardAging: String
-
- """"""
- cardCovers: Boolean
-
- """"""
- comments: String
-
- """"""
- invitations: String
-
- """"""
- permissionLevel: String
-
- """"""
- selfJoin: Boolean
-
- """"""
- voting: String
-}
-
-"""A Trello board."""
-type TrelloBoard {
- """The id of the board"""
- id: String
-
- """The name of the board"""
- name: String
-
- """
- The description of the board.
- Deprecated
- """
- desc: String
-
- """
- If the description includes custom emoji, this will contain the data necessary to display them.
- """
- descData: String
-
- """Boolean whether the board has been closed or not."""
- closed: Boolean
-
- """Mongoid of the organization to which the board belongs."""
- idOrganization: String
-
- """Boolean whether the board has been pinned or not."""
- pinned: Boolean
-
- """Persistent URL for the board."""
- url: String
-
- """URL for the board using only its shortMongoid"""
- shortUrl: String
-
- """Short for "preferences", these are the settings for the board"""
- prefs: TrelloBoardPreferences
-
- """
- Object containing color keys and the label names given for one label of each color on the board. To get a full list of labels on the board see /boards/{id}/labels/.
- """
- labelNames: TrelloBoardLabelNames
-
- """Whether the board has been starred by the current request's user."""
- starred: Boolean
-
- """Labels for a board"""
- labels(
- """Number of labels to fetch. Defaults to 50."""
- limit: Int
- ): TrelloLabelsConnection
-
- """Power-ups for a board"""
- plugins(
- """Get either enabled or available power-ups. Defaults to enabled."""
- filter: TrelloPluginFilterEnumArg
- ): TrelloPluginsConnection
-
- """
- Custom Fields are extra bits of structured data attached to cards when our users need a bit more than what Trello provides.
- """
- customFields: TrelloCustomFieldsConnection
-
- """Membership the member has to the board"""
- memberships: TrelloMembershipsConnection
- lists: TrelloListsConnection
- actions: TrelloActionsConnection
- cards: TrelloCardsConnection
- checklists: [TrelloChecklist!]
- members: [TrelloMember!]
-}
-
-"""List for a board."""
-type TrelloList {
- """The id of the list"""
- id: String
-
- """The name of the list"""
- name: String
-
- """Whether the list is closed (archived)"""
- closed: Boolean
-
- """Board the list is on"""
- board: TrelloBoard
-
- """The id of the board the list is on"""
- idBoard: String
-
- """The position of the list on the board"""
- pos: Float
-
- """Whether the member is subscribed to this list"""
- subscribed: Boolean
- actions: TrelloActionsConnection
- cards: TrelloCardsConnection
-}
-
-""""""
-type TrelloNotificationData {
- """The Trello list attached to the notification."""
- list: TrelloList
-
- """The Trello board attached to the notification."""
- board: TrelloBoard
-
- """The Trello card attached to the notification."""
- card: TrelloCard
-
- """Member type if this notification was about a member"""
- memberType: String
-
- """Member if this notification was about a member"""
- member: TrelloMember
-
- """"""
- idMember: String
-
- """Organization if this notification was about a organization"""
- organization: TrelloOrganization
-}
-
-""""""
-type TrelloNotification {
- """The id of the notification"""
- id: String
-
- """Relevant data regarding the notification"""
- data: TrelloNotificationData
-
- """The datetime the notification was triggered"""
- date: String
-
- """The id of the member who triggered the notification"""
- memberCreator: TrelloMember
-
- """The id of the member who triggered the notification"""
- idMemberCreator: String
-
- """The type of the notification"""
- type: String
-
- """Whether the notification hasn't been read yet"""
- unread: Boolean
-
- """The Trello list attached to the notification."""
- list: TrelloList
-
- """The Trello board attached to the notification."""
- board: TrelloBoard
-
- """The Trello card attached to the notification."""
- card: TrelloCard
-
- """Member if this notification was about a member"""
- member: TrelloMember
-
- """Organization if this notification was about an organization"""
- organization: TrelloOrganization
-}
-
-"""List of Trello notifications, with metadata field for pagination"""
-type TrelloNotificationsConnection {
- """List of Trello notifications"""
- nodes: [TrelloNotification!]!
-
- """Total number of Trello notifications"""
- totalCount: Int!
-}
-
-scalar JSON
-
-"""A Trello user."""
-type TrelloMember {
- """The id of the member"""
- id: String
-
- """
- Member profile images are hosted at: https://trello-avatars.s3.amazonaws.com/{avatarHash}/{size}.png
-
- size can be 30, 50, or 170
- """
- avatarHash: String
-
- """
- The URL of the current avatar being used, regardless of whether it is a gravatar or uploaded avatar.
- """
- avatarUrl: String
-
- """The source of the user's avatar - either via "upload" or "gravatar"."""
- avatarSource: String
-
- """
- Optional bio for the member
-
-
- """
- bio: String
-
- """
- If the bio includes custom emoji, this object will contain the information necessary to display them.
- """
- bioData: JSON
-
- """Whether the member has confirmed their email address after signing up"""
- confirmed: Boolean
-
- """The primary email address for the member. You can only read your own."""
- email: String
-
- """The full display name for the member"""
- fullName: String
-
- """
- Same as avatarHash above; member profile images are hosted at: https://trello-avatars.s3.amazonaws.com/{gravatarHash}/{size}.png
-
- size can be 30, 50, or 170
- string.
- """
- gravatarHash: String
-
- """An array of board ids this member is on"""
- idBoards: [String!]
-
- """An array of organization ids this member is in"""
- idOrganizations: [String!]
-
- """An array of enterprise ids this member is an admin of"""
- idEnterprisesAdmin: [String!]
-
- """"""
- idPremOrgsAdmin: [String!]
-
- """The member's initials, used for display when there isn't an avatar set"""
- initials: String
-
- """
- The types of logins a user
- One of: "password", "saml"
- """
- loginTypes: [String!]
-
- """
- One of: "normal", "ghost"
-
- A ghost is an individual who has been invited to join but has not yet created a Trello account.
- """
- memberType: String
-
- """"""
- oneTimeMessagesDismissed: [String!]
-
- """"""
- premiumFeatures: [String!]
-
- """
- 10 - member has Trello Gold as a result of being in a Business Class team
- 37 - member has monthly Trello Gold
- 38 - member has annual Trello Gold
- """
- products: [Int!]
-
- """
- Same as avatarHash - member profile images are hosted at: https://trello-avatars.s3.amazonaws.com/{uploadedAvatarHash}/{size}.png
-
- size can be 30, 50, or 170
- """
- uploadedAvatarHash: String
-
- """The URL of the uploaded avatar if one has been uploaded."""
- uploadedAvatarUrl: String
-
- """The URL to the member's profile page"""
- url: String
-
- """The username for the member. What is shown in @mentions for example"""
- username: String
- notifications: TrelloNotificationsConnection
- enterpriseMemberships: TrelloEnterpriseMembershipsConnection
- organizations: TrelloOrganizationsConnection
- actions: TrelloActionsConnection
- boards(
- """
- Filter boards. Add multiple filters to include boards that pass any of the fitlers
- """
- filters: [TrelloBoardFilterEnumArg!]
- ): TrelloBoardsConnection
- cards: TrelloCardsConnection
-}
-
-"""A OneGraph me Zeit user"""
-type ZeitUser {
- """The Zeit user's ID"""
- id: String!
-
- """The Zeit user's email"""
- email: String!
-
- """The Zeit user's name"""
- name: String!
-
- """The Zeit user's username"""
- username: String!
-
- """"""
- billingChecked: Boolean!
-
- """"""
- avatar: String
-}
-
-"""Photos for a Salesforce user"""
-type SalesforceOAuthUserPhotos {
- picture: String
- thumbnail: String
-}
-
-"""Address for a Salesforce user"""
-type SalesforceOAuthUserAddress {
- country: String
-}
-
-"""A OneGraph me Salesforce user"""
-type SalesforceOAuthUser {
- sub: String!
- active: Boolean
- address: SalesforceOAuthUserAddress
- email: String
- email_verified: Boolean
- family_name: String
- given_name: String
- is_app_installed: Boolean
- language: String
- locale: String
- name: String
- nickname: String
- organization_id: String
- photos: SalesforceOAuthUserPhotos
- picture: String
- preferred_username: String
- profile: String
- updatedAt: String
- user_id: String
- user_type: String
- utcOffset: Int
- zoneinfo: String
-}
-
-"""A OneGraph me Contentful user"""
-type ContentfulUser {
- """The Contentful user's ID"""
- id: String!
-
- """The Contentful user's firstName"""
- firstName: String
-
- """The Contentful user's lastName"""
- lastName: String
-
- """The Contentful user's avatarUrl"""
- avatarUrl: String
-
- """The Contentful user's email"""
- email: String
-
- """The Contentful user's activated"""
- activated: Boolean
-
- """The Contentful user's signInCount"""
- signInCount: Int
-
- """The Contentful user's confirmed"""
- confirmed: Boolean
-
- """Whether the user has enabled two-factor auth"""
- twoFactorAuthEnabled: Boolean
-
- """The Contentful user's passwordSet"""
- passwordSet: Boolean
-
- """The Contentful user's ssoLoginOnly"""
- ssoLoginOnly: Boolean
-
- """The Contentful user's logAnalyticsFeature"""
- logAnalyticsFeature: Boolean
-
- """The Contentful user's mfaEligible"""
- mfaEligible: Boolean
-
- """The Contentful user's mfaEnabled"""
- mfaEnabled: Boolean
-}
-
-"""Enterprise object in Box"""
-type BoxEnterprise {
- """"""
- type: String
-
- """Unqiue string identifying this enterprise."""
- id: String
-
- """Name of this enterprise"""
- name: String
-}
-
-"""User object in Box"""
-type BoxUser {
- """"""
- type: String
-
- """Unqiue string identifying this user."""
- id: String
-
- """Name of this user"""
- name: String
-
- """The email address this user uses to login."""
- login: String
-
- """The time this user was created."""
- createdAt: String
-
- """The time this user was last modified."""
- modifiedAt: String
-
- """The language of this user. (ISO 639-1 Language Code)"""
- language: String
-
- """The timezone of this user. (tz Database timezones)"""
- timezone: String
-
- """The user’s total available space amount in bytes."""
- spaceAmount: Int
-
- """The amount of space in use by the user."""
- spaceUsed: Int
-
- """The maximum individual file size in bytes this user can have."""
- maxUploadSize: Int
-
- """
- Can be active, inactive, cannot_delete_edit, or cannot_delete_edit_upload.
- """
- status: String
-
- """The user’s job title."""
- jobTitle: String
-
- """The user’s phone number."""
- phone: String
-
- """The user’s address."""
- address: String
-
- """URL of this user’s avatar image."""
- avatarUrl: String
-
- """This user’s enterprise role. Can be admin, coadmin, or user."""
- role: String
-
- """Whether this user can see other enterprise users in her contact list."""
- canSeeManagedUsers: Boolean
-
- """Whether or not this user can use Box Sync."""
- isSyncEnabled: Boolean
-
- """
- Whether this user is allowed to collaborate with users outside her enterprise.
- """
- isExternalCollabRestricted: Boolean
-
- """Whether to exempt this user from Enterprise device limits."""
- isExemptFromDeviceLimits: Boolean
-
- """Whether or not this user must use two-factor authentication."""
- isExemptFromLoginVerification: Boolean
-
- """undefined"""
- enterprise: BoxEnterprise
-
- """Tags for all files and folders owned by this user."""
- myTags: [String!]
-
- """
- The root (protocol, subdomain, domain) of any links that need to be generated for this user
- """
- hostname: String
-}
-
-"""A OneGraph me Eggheadio user"""
-type EggheadioUser {
- """The Eggheadio user's ID"""
- id: Int!
-
- """The Eggheadio user's full name"""
- fullName: String
-
- """The Eggheadio user's email"""
- email: String
-
- """The Eggheadio user's avatarUrl"""
- avatarUrl: String
-
- """The Eggheadio user's lessonsCompleted"""
- lessonsCompleted: Int
-
- """The Eggheadio user's seriesCompleted"""
- seriesCompleted: Int
-
- """The Eggheadio user's isUnverifiedEmail"""
- isUnverifiedEmail: Boolean
-
- """The Eggheadio user's optedOut"""
- optedOut: Boolean
-
- """The Eggheadio user's isPro"""
- isPro: Boolean!
-
- """The Eggheadio user's isInstructor"""
- isInstructor: Boolean!
-
- """The Eggheadio user's isCancelled"""
- isCancelled: Boolean
-
- """The Eggheadio user's isCommunityMember"""
- isCommunityMember: Boolean
-
- """The Eggheadio user's lastLessonCompletedAt"""
- lastLessonCompletedAt: String
-}
-
-"""
-Representations for a person's name to assist with internationalization.
-"""
-type DropboxUserName {
- """Also known as a first name."""
- givenName: String
-
- """Also known as a last name or family name."""
- surname: String
-
- """
- Locale-dependent name. In the US, a person's familiar name is their given_name, but elsewhere, it could be any combination of a person's given_name and surname.
- """
- familiarName: String
-
- """
- A name that can be used directly to represent the name of a user's Dropbox account.
- """
- displayName: String
-
- """
- An abbreviated form of the person's name. Their initials in most locales.
- """
- abbreviatedName: String
-}
-
-"""A user's account information"""
-type DropboxAccount {
- """The user's unique Dropbox ID."""
- accountId: String
-
- """Details of a user's name."""
- name: DropboxUserName
-
- """
- The user's e-mail address. Do not rely on this without checking the email_verified field. Even then, it's possible that the user has since lost access to their e-mail.
- """
- email: String
-
- """Whether the user has verified their e-mail address."""
- emailVerified: Boolean
-
- """Whether the user has been disabled."""
- disabled: Boolean
-
- """
- Whether this user is a teammate of the current user. If this account is the current user's account, then this will be true.
- """
- isTeammate: Boolean
-
- """
- URL for the photo representing the user, if one is set. This field is optional.
- """
- profilePhotoUrl: String
-
- """
- The user's unique team member id. This field will only be present if the user is part of a team and is_teammate is true. This field is optional.
- """
- teamMemberId: String
-}
-
-type DribbbleTeam {
- """The team's unique Dribbble ID."""
- id: Int
-
- """The team's Dribbble name"""
- name: String
-
- """"""
- login: String
-
- """The public link for this team"""
- htmlUrl: String
-
- """"""
- avatarUrl: String
-
- """"""
- bio: String
-
- """"""
- list: DribbbleLink
-
- """"""
- type: String
-
- """"""
- createdAt: String
-
- """"""
- updatedAt: String
-}
-
-type DribbbleLink {
- """The user's web link."""
- web: String
-
- """The user's twitter link."""
- twitter: String
-}
-
-type DribbbleUser {
- """The user's unique Dribbble ID."""
- id: Int
-
- """"""
- name: String
-
- """"""
- login: String
-
- """"""
- htmlUrl: String
-
- """"""
- avatarUrl: String
-
- """"""
- bio: String
-
- """"""
- location: String
-
- """"""
- links: DribbbleLink
-
- """"""
- canUploadShot: Boolean
-
- """"""
- pro: Boolean
-
- """"""
- followersCount: Int
-
- """"""
- createdAt: String
-
- """"""
- type: String
-
- """"""
- teams: [DribbbleTeam!]
-}
-
-type DevToWebhook {
- """"""
- typeOf: String
-
- """"""
- id: Int
-
- """
- The name of the requester, eg. "DEV"
- """
- source: String!
-
- """The URL where the webhook will be delivered. Must be a `https` url."""
- targetUrl: String
-
- """
- An array of events identifiers, e.g. `"article_created"`, `"article_updated"`
- """
- events: [String]
-
- """"""
- createdAt: String
-
- """The user who created this webhook"""
- user: DevToArticleUser
-}
-
-enum DevToArticlePublishStatusEnum {
- PUBLISHED
- UNPUBLISHED
- ALL
-}
-
-"""An edge in a connection."""
-type DevToMeArticlesEdge {
- """The item at the end of the edge"""
- node: DevToMeArticle!
-}
-
-type DevToArticleFlareTag {
- """"""
- name: String
-
- """Background color (hexadecimal)"""
- bgColorHex: String
-
- """Text color (hexadecimal)"""
- textColorHex: String
-}
-
-type DevToArticleOrganization {
- """"""
- name: String
-
- """"""
- username: String
-
- """"""
- slug: String
-
- """Profile image (640x640)"""
- profileImage: String
-
- """Profile image (90x90)"""
- profileImage90: String
-}
-
-type DevToArticleUser {
- """"""
- name: String
-
- """"""
- username: String
-
- """"""
- twitterUsername: String
-
- """"""
- githubUsername: String
-
- """"""
- websiteUrl: String
-
- """Profile image (640x640)"""
- profileImage: String
-
- """Profile image (90x90)"""
- profileImage90: String
-}
-
-"""Articles created by the currently authenticated user"""
-type DevToMeArticle {
- """"""
- typeOf: String
-
- """"""
- id: Int
-
- """"""
- title: String
-
- """"""
- description: String
-
- """"""
- coverImage: String
-
- """"""
- published: Boolean
-
- """"""
- publishedAt: String
-
- """"""
- tagList: [String]
-
- """"""
- slug: String
-
- """"""
- path: String
-
- """"""
- url: String
-
- """"""
- canonicalUrl: String
-
- """"""
- commentsCount: Int
-
- """"""
- positiveReactionsCount: Int
-
- """"""
- pageViewsCount: Int
-
- """Crossposting or published date time"""
- publishedTimestamp: String
-
- """"""
- user: DevToArticleUser
-
- """"""
- organization: DevToArticleOrganization
-
- """"""
- flareTag: DevToArticleFlareTag
-
- """The body content as the original markdown"""
- bodyMarkdown: String
-
- """The body content as the rendered html"""
- bodyHtml: String
-
- """Keywords this article has been tagged with"""
- tags: [String!]
-}
-
-"""MeArticles on DevTo"""
-type DevToMeArticlessConnection {
- """MeArticles"""
- nodes: [DevToMeArticle!]!
-
- """A list of edges"""
- edges: [DevToMeArticlesEdge!]!
-}
-
-type devTo {
- """
- A placeholder field to tell whether a user is currently logged into DEV (either by api-key or OAuth2 client) until DEV has an endpoint dedicated to user information
- """
- isLoggedIn: Boolean!
-
- """
- This endpoint allows the client to retrieve a list of published articles on
- behalf of an authenticated user.
-
- "Articles" are all the posts that users create on DEV that typically show up in
- the feed. They can be a blog post, a discussion question, a help thread etc. but
- is referred to as article within the code.
-
- Published articles will be in reverse chronological publication order.
-
- It will return published articles with pagination. By default a page will
- contain `30` articles.
- """
- articles(publishStatus: DevToArticlePublishStatusEnum): DevToMeArticlessConnection
-
- """
- Retrieve a list of webhooks they have previously registered.
-
- "Webhooks" are used to register HTTP endpoints that will be called once a relevant event is triggered inside the web application, events like article_created, article_updated.
-
- It will return all webhooks, without pagination.
- """
- webhooks: [DevToWebhook!]
-}
-
-"""Information about a service."""
-type OneGraphServiceMetadata {
- service: OneGraphServiceEnum!
- friendlyServiceName: String!
- isLoggedIn: Boolean!
- foreignUserId: String
-
- """
- Bearer token that can be used to query the underlying API directly. This field will always be null unless the OneGraph App has enabled sharing tokens for its custom OAuth client.
- """
- bearerToken: String
-}
-
-"""Information about OneGraph services"""
-type OneGraphServicesMetadata {
- loggedInServices: [OneGraphServiceMetadata!]!
- box: OneGraphServiceMetadata!
- devTo: OneGraphServiceMetadata!
- dribbble: OneGraphServiceMetadata!
- dropbox: OneGraphServiceMetadata!
- contentful: OneGraphServiceMetadata!
- eggheadio: OneGraphServiceMetadata!
- eventil: OneGraphServiceMetadata!
- facebookBusiness: OneGraphServiceMetadata!
- gitHub: OneGraphServiceMetadata!
- gmail: OneGraphServiceMetadata!
- google: OneGraphServiceMetadata!
- googleAnalytics: OneGraphServiceMetadata!
- googleCalendar: OneGraphServiceMetadata!
- googleCompute: OneGraphServiceMetadata!
- googleDocs: OneGraphServiceMetadata!
- googleTranslate: OneGraphServiceMetadata!
- hubspot: OneGraphServiceMetadata!
- intercom: OneGraphServiceMetadata!
- mailchimp: OneGraphServiceMetadata!
- meetup: OneGraphServiceMetadata!
- netlify: OneGraphServiceMetadata!
- productHunt: OneGraphServiceMetadata!
- quickbooks: OneGraphServiceMetadata!
- salesforce: OneGraphServiceMetadata!
- slack: OneGraphServiceMetadata!
- spotify: OneGraphServiceMetadata!
- stripe: OneGraphServiceMetadata!
- trello: OneGraphServiceMetadata!
- twilio: OneGraphServiceMetadata!
- twitter: OneGraphServiceMetadata!
- twitchTv: OneGraphServiceMetadata!
- youTube: OneGraphServiceMetadata!
- zeit: OneGraphServiceMetadata!
- zendesk: OneGraphServiceMetadata!
- airtable: OneGraphServiceMetadata!
- brex: OneGraphServiceMetadata!
- bundlephobia: OneGraphServiceMetadata!
- crunchbase: OneGraphServiceMetadata!
- clearbit: OneGraphServiceMetadata!
- cloudflare: OneGraphServiceMetadata!
- fedex: OneGraphServiceMetadata!
- googleMaps: OneGraphServiceMetadata!
- immigrationGraph: OneGraphServiceMetadata!
- ups: OneGraphServiceMetadata!
- usps: OneGraphServiceMetadata!
- npm: OneGraphServiceMetadata!
- logdna: OneGraphServiceMetadata!
- mixpanel: OneGraphServiceMetadata!
- onegraph: OneGraphServiceMetadata!
- facebook: OneGraphServiceMetadata! @deprecated(reason: "Use facebookBusiness.")
-}
-
-"""Custom data for a OneGraph user auth."""
-type OneGraphUserAuthCustomDataForOneGraph {
- """AppId that the tokens applies to."""
- appId: String
-}
-
-"""Service-specific data for a user auth."""
-union OneGraphUserAuthCustomData = OneGraphUserAuthCustomDataForOneGraph
-
-"""Services supported by OneGraph."""
-enum OneGraphServiceEnum {
- BOX
- DEV_TO
- DRIBBBLE
- DROPBOX
- CONTENTFUL
- EGGHEADIO
- EVENTIL
- FACEBOOK
- GITHUB
- GMAIL
- GOOGLE
- GOOGLE_ANALYTICS
- GOOGLE_CALENDAR
- GOOGLE_COMPUTE
- GOOGLE_DOCS
- GOOGLE_TRANSLATE
- HUBSPOT
- INTERCOM
- MAILCHIMP
- MEETUP
- NETLIFY
- PRODUCT_HUNT
- QUICKBOOKS
- SALESFORCE
- SLACK
- SPOTIFY
- STRIPE
- TRELLO
- TWILIO
- TWITTER
- TWITCH_TV
- YOUTUBE
- ZEIT
- ZENDESK
- AIRTABLE
- BREX
- BUNDLEPHOBIA
- CRUNCHBASE
- CLEARBIT
- CLOUDFLARE
- FEDEX
- GOOGLE_MAPS
- IMMIGRATION_GRAPH
- UPS
- USPS
- NPM
- LOGDNA
- MIXPANEL
- ONEGRAPH
-}
-
-"""A user auth associated with an access token"""
-type OneGraphUserAuth {
- """Service that the auth belongs to."""
- service: OneGraphServiceEnum!
-
- """Unique id for the logged-in entity on the service."""
- foreignUserId: String!
-
- """Scopes granted for the service."""
- scopes: [String!]
-
- """Service-specific data for the user auth"""
- customData: OneGraphUserAuthCustomData
-}
-
-"""A OneGraph Access Token"""
-type OneGraphAccessToken {
- """Bearer token"""
- token: String!
-
- """
- Time that the the token expires, measured in seconds since the Unix epoch
- """
- expireDate: Int!
-
- """Token name, if it is a personal access token"""
- name: String
-
- """AppId that the token belongs to"""
- appId: String!
-
- """User auths for the access token"""
- userAuths: [OneGraphUserAuth!]!
-}
-
-"""The settings for a OneGraph User"""
-type OneGraphUserSettings {
- """The tours completed by this OneGraph user"""
- completedTours: [String!]!
-}
-
-"""A OneGraph User"""
-type OneGraphUser {
- """The id of the OneGraph User"""
- id: String!
-
- """Whether this OneGraph user has confirmed their account"""
- confirmed: Boolean!
-
- """The primary email of the currently logged-in OneGraph user"""
- email: String!
-
- """The full name of the currently logged-in OneGraph user"""
- fullName: String!
-
- """
- The date at which this user agreed to the OneGraph terms of service at https://www.onegraph.com/terms-and-conditions
- """
- agreedToTosAt: Int
-
- """The settings of the currently logged-in OneGraph user"""
- settings: OneGraphUserSettings!
-
- """User hash for securely identifying a user with Intercom"""
- intercomUserHash: String!
-
- """Personal access tokens"""
- personalTokens: [OneGraphAccessToken!]
-
- """
- The gitHub databaseId if this OneGraph User has associated their account with a GitHub account
- """
- gitHubUserId: String
-}
-
-"""Currently authed Stripe account"""
-type StripeAccount {
- """"""
- object: String!
-
- """"""
- payoutsEnabled: Boolean!
-
- """"""
- country: String!
-
- """"""
- timezone: String
-
- """"""
- businessLogo: String
-
- """"""
- businessName: String
-
- """"""
- supportPhone: String
-
- """"""
- supportEmail: String
-
- """"""
- id: String!
-
- """"""
- email: String
-
- """"""
- displayName: String
-
- """"""
- defaultCurrency: String!
-
- """"""
- detailsSubmitted: Boolean!
-
- """"""
- statementDescriptor: String
-
- """"""
- type: String!
-
- """"""
- chargesEnabled: Boolean!
-
- """"""
- businessUrl: String
-}
-
-"""Currently authed user"""
-type Viewer {
- stripe: StripeAccount
-
- """Currently logged in oneUser"""
- oneGraph: OneGraphUser
-
- """Metadata and logged-in state for all OneGraph services"""
- serviceMetadata: OneGraphServicesMetadata!
- devTo: devTo @deprecated(reason: "Beta: this field is still in beta while we work out the kinks.")
- dribbble: DribbbleUser @deprecated(reason: "Beta: this field is still in beta while we work out the kinks.")
- dropbox: DropboxAccount @deprecated(reason: "Beta: this field is still in beta while we work out the kinks.")
- eggheadio: EggheadioUser @deprecated(reason: "Beta: this field is still in beta while we work out the kinks.")
- box: BoxUser @deprecated(reason: "Beta: this field is still in beta while we work out the kinks.")
- contentful: ContentfulUser @deprecated(reason: "Beta: this field is still in beta while we work out the kinks.")
- salesforce: SalesforceOAuthUser @deprecated(reason: "Beta: this field is still in beta while we work out the kinks.")
- zeit: ZeitUser @deprecated(reason: "Beta: this field is still in beta while we work out the kinks.")
- trello: TrelloMember @deprecated(reason: "Beta: this field is still in beta while we work out the kinks.")
- twitchTv: TwitchTvUser @deprecated(reason: "Beta: this field is still in beta while we work out the kinks.")
- slack: SlackUser @deprecated(reason: "Beta: this field is still in beta while we work out the kinks.")
- spotify: SpotifyCurrentUserProfile @deprecated(reason: "Beta: this field is still in beta while we work out the kinks.")
- google: GoogleUser
- googleCalendar: GoogleUser
- googleCompute: GoogleUser
- googleDocs: GoogleUser
- googleTranslate: GoogleUser
- github: GitHubUser @deprecated(reason: "Beta: this field is still in beta while we work out the kinks.")
- gmail: GoogleUser
- eventil: OneGraphMeEventilUser @deprecated(reason: "Beta: this field is still in beta while we work out the kinks.")
- hubspot: HubspotOAuthUser @deprecated(reason: "Beta: this field is still in beta while we work out the kinks.")
- intercom: IntercomAdmin
- netlify: NetlifyUser @deprecated(reason: "Beta: this field is still in beta while we work out the kinks.")
- twilio: TwilioUser @deprecated(reason: "Beta: this field is still in beta while we work out the kinks.")
- zendesk: ZendeskUser @deprecated(reason: "Beta: this field is still in beta while we work out the kinks.")
- twitter: TwitterUser @deprecated(reason: "Beta: this field is still in beta while we work out the kinks.")
- youTube: GoogleUser
-}
-
-type Query {
- me(
- """
- Instruct OneGraph to use the auth associated with a particular user.
-
- Note that the user must have gone through the OneGraph oauth flow and logged in with an account with the userId provided in the auth. If there is no user with the account, you may get an auth/auth-missing error.
-
- The userIds for logged-in services can be found under `me.serviceMetadata.loggedInServices.foreignUserId`.
- """
- userIds: OneGraphServiceUserIds
-
- """Optional OAuth tokens used to execute the query"""
- auths: OneGraphServiceAuths
- ): Viewer!
-
- """The root for Airtable queries"""
- airtable(
- """
- Instruct OneGraph to use the auth associated with a particular user.
-
- Note that the user must have gone through the OneGraph oauth flow and logged in with an account with the userId provided in the auth. If there is no user with the account, you may get an auth/auth-missing error.
-
- The userIds for logged-in services can be found under `me.serviceMetadata.loggedInServices.foreignUserId`.
- """
- userIds: OneGraphServiceUserIds
-
- """Optional OAuth tokens used to execute the query"""
- auths: OneGraphServiceAuths
- ): AirtableQuery! @deprecated(reason: "Beta: this field is still in beta while we work out the kinks.")
-
- """The root for Box queries"""
- box(
- """
- Instruct OneGraph to use the auth associated with a particular user.
-
- Note that the user must have gone through the OneGraph oauth flow and logged in with an account with the userId provided in the auth. If there is no user with the account, you may get an auth/auth-missing error.
-
- The userIds for logged-in services can be found under `me.serviceMetadata.loggedInServices.foreignUserId`.
- """
- userIds: OneGraphServiceUserIds
-
- """Optional OAuth tokens used to execute the query"""
- auths: OneGraphServiceAuths
- ): BoxQuery! @deprecated(reason: "Beta: this field is still in beta while we work out the kinks.")
-
- """The root for Bundlephobia queries"""
- bundlephobia(
- """
- Instruct OneGraph to use the auth associated with a particular user.
-
- Note that the user must have gone through the OneGraph oauth flow and logged in with an account with the userId provided in the auth. If there is no user with the account, you may get an auth/auth-missing error.
-
- The userIds for logged-in services can be found under `me.serviceMetadata.loggedInServices.foreignUserId`.
- """
- userIds: OneGraphServiceUserIds
-
- """Optional OAuth tokens used to execute the query"""
- auths: OneGraphServiceAuths
- ): BundlephobiaQuery! @deprecated(reason: "Beta: this field is still in beta while we work out the kinks.")
-
- """The root for Clearbit queries"""
- clearbit(
- """
- Instruct OneGraph to use the auth associated with a particular user.
-
- Note that the user must have gone through the OneGraph oauth flow and logged in with an account with the userId provided in the auth. If there is no user with the account, you may get an auth/auth-missing error.
-
- The userIds for logged-in services can be found under `me.serviceMetadata.loggedInServices.foreignUserId`.
- """
- userIds: OneGraphServiceUserIds
-
- """Optional OAuth tokens used to execute the query"""
- auths: OneGraphServiceAuths
- ): Clearbit! @deprecated(reason: "Beta: this field is still in beta while we work out the kinks.")
-
- """The root for Cloudflare queries"""
- cloudflare(
- """
- Instruct OneGraph to use the auth associated with a particular user.
-
- Note that the user must have gone through the OneGraph oauth flow and logged in with an account with the userId provided in the auth. If there is no user with the account, you may get an auth/auth-missing error.
-
- The userIds for logged-in services can be found under `me.serviceMetadata.loggedInServices.foreignUserId`.
- """
- userIds: OneGraphServiceUserIds
-
- """Optional OAuth tokens used to execute the query"""
- auths: OneGraphServiceAuths
- ): CloudflareQuery! @deprecated(reason: "Beta: this field is still in beta while we work out the kinks.")
-
- """The root for Contentful queries"""
- contentful(
- """
- Instruct OneGraph to use the auth associated with a particular user.
-
- Note that the user must have gone through the OneGraph oauth flow and logged in with an account with the userId provided in the auth. If there is no user with the account, you may get an auth/auth-missing error.
-
- The userIds for logged-in services can be found under `me.serviceMetadata.loggedInServices.foreignUserId`.
- """
- userIds: OneGraphServiceUserIds
-
- """Optional OAuth tokens used to execute the query"""
- auths: OneGraphServiceAuths
- ): ContentfulQuery! @deprecated(reason: "Beta: this field is still in beta while we work out the kinks.")
-
- """The root for Dev.to queries"""
- devTo(
- """
- Instruct OneGraph to use the auth associated with a particular user.
-
- Note that the user must have gone through the OneGraph oauth flow and logged in with an account with the userId provided in the auth. If there is no user with the account, you may get an auth/auth-missing error.
-
- The userIds for logged-in services can be found under `me.serviceMetadata.loggedInServices.foreignUserId`.
- """
- userIds: OneGraphServiceUserIds
-
- """Optional OAuth tokens used to execute the query"""
- auths: OneGraphServiceAuths
- ): DevToQuery! @deprecated(reason: "Beta: this field is still in beta while we work out the kinks.")
-
- """The root for Dribbble queries"""
- dribbble(
- """
- Instruct OneGraph to use the auth associated with a particular user.
-
- Note that the user must have gone through the OneGraph oauth flow and logged in with an account with the userId provided in the auth. If there is no user with the account, you may get an auth/auth-missing error.
-
- The userIds for logged-in services can be found under `me.serviceMetadata.loggedInServices.foreignUserId`.
- """
- userIds: OneGraphServiceUserIds
-
- """Optional OAuth tokens used to execute the query"""
- auths: OneGraphServiceAuths
- ): DribbbleQuery! @deprecated(reason: "Beta: this field is still in beta while we work out the kinks.")
-
- """The root for Dropbox queries"""
- dropbox(
- """
- Instruct OneGraph to use the auth associated with a particular user.
-
- Note that the user must have gone through the OneGraph oauth flow and logged in with an account with the userId provided in the auth. If there is no user with the account, you may get an auth/auth-missing error.
-
- The userIds for logged-in services can be found under `me.serviceMetadata.loggedInServices.foreignUserId`.
- """
- userIds: OneGraphServiceUserIds
-
- """Optional OAuth tokens used to execute the query"""
- auths: OneGraphServiceAuths
- ): DropboxQuery! @deprecated(reason: "Beta: this field is still in beta while we work out the kinks.")
-
- """The root for Egghead.io queries"""
- eggheadio(
- """
- Instruct OneGraph to use the auth associated with a particular user.
-
- Note that the user must have gone through the OneGraph oauth flow and logged in with an account with the userId provided in the auth. If there is no user with the account, you may get an auth/auth-missing error.
-
- The userIds for logged-in services can be found under `me.serviceMetadata.loggedInServices.foreignUserId`.
- """
- userIds: OneGraphServiceUserIds
-
- """Optional OAuth tokens used to execute the query"""
- auths: OneGraphServiceAuths
- ): EggheadioQuery! @deprecated(reason: "Beta: this field is still in beta while we work out the kinks.")
-
- """The root for Facebook queries"""
- facebookBusiness(
- """
- Instruct OneGraph to use the auth associated with a particular user.
-
- Note that the user must have gone through the OneGraph oauth flow and logged in with an account with the userId provided in the auth. If there is no user with the account, you may get an auth/auth-missing error.
-
- The userIds for logged-in services can be found under `me.serviceMetadata.loggedInServices.foreignUserId`.
- """
- userIds: OneGraphServiceUserIds
-
- """Optional OAuth tokens used to execute the query"""
- auths: OneGraphServiceAuths
- ): FacebookBusinessQuery! @deprecated(reason: "Beta: this field is still in beta while we work out the kinks.")
-
- """The root for Fedex queries"""
- fedex(
- """
- Instruct OneGraph to use the auth associated with a particular user.
-
- Note that the user must have gone through the OneGraph oauth flow and logged in with an account with the userId provided in the auth. If there is no user with the account, you may get an auth/auth-missing error.
-
- The userIds for logged-in services can be found under `me.serviceMetadata.loggedInServices.foreignUserId`.
- """
- userIds: OneGraphServiceUserIds
-
- """Optional OAuth tokens used to execute the query"""
- auths: OneGraphServiceAuths
- ): FedexQuery! @deprecated(reason: "Beta: this field is still in beta while we work out the kinks.")
-
- """The root for Google queries"""
- google(
- """
- Instruct OneGraph to use the auth associated with a particular user.
-
- Note that the user must have gone through the OneGraph oauth flow and logged in with an account with the userId provided in the auth. If there is no user with the account, you may get an auth/auth-missing error.
-
- The userIds for logged-in services can be found under `me.serviceMetadata.loggedInServices.foreignUserId`.
- """
- userIds: OneGraphServiceUserIds
-
- """Optional OAuth tokens used to execute the query"""
- auths: OneGraphServiceAuths
- ): GoogleServices! @deprecated(reason: "Beta: this field is still in beta while we work out the kinks.")
-
- """The root for Hubspot queries"""
- hubspot(
- """
- Instruct OneGraph to use the auth associated with a particular user.
-
- Note that the user must have gone through the OneGraph oauth flow and logged in with an account with the userId provided in the auth. If there is no user with the account, you may get an auth/auth-missing error.
-
- The userIds for logged-in services can be found under `me.serviceMetadata.loggedInServices.foreignUserId`.
- """
- userIds: OneGraphServiceUserIds
-
- """Optional OAuth tokens used to execute the query"""
- auths: OneGraphServiceAuths
- ): HubspotQuery! @deprecated(reason: "Beta: this field is still in beta while we work out the kinks.")
-
- """The root for Intercom queries"""
- intercom(
- """
- Instruct OneGraph to use the auth associated with a particular user.
-
- Note that the user must have gone through the OneGraph oauth flow and logged in with an account with the userId provided in the auth. If there is no user with the account, you may get an auth/auth-missing error.
-
- The userIds for logged-in services can be found under `me.serviceMetadata.loggedInServices.foreignUserId`.
- """
- userIds: OneGraphServiceUserIds
-
- """Optional OAuth tokens used to execute the query"""
- auths: OneGraphServiceAuths
- ): IntercomQuery!
-
- """The root for LogDNA queries"""
- logdna(
- """
- Instruct OneGraph to use the auth associated with a particular user.
-
- Note that the user must have gone through the OneGraph oauth flow and logged in with an account with the userId provided in the auth. If there is no user with the account, you may get an auth/auth-missing error.
-
- The userIds for logged-in services can be found under `me.serviceMetadata.loggedInServices.foreignUserId`.
- """
- userIds: OneGraphServiceUserIds
-
- """Optional OAuth tokens used to execute the query"""
- auths: OneGraphServiceAuths
- ): LogdnaQuery!
-
- """The root for Mailchimp queries"""
- mailchimp(
- """
- Instruct OneGraph to use the auth associated with a particular user.
-
- Note that the user must have gone through the OneGraph oauth flow and logged in with an account with the userId provided in the auth. If there is no user with the account, you may get an auth/auth-missing error.
-
- The userIds for logged-in services can be found under `me.serviceMetadata.loggedInServices.foreignUserId`.
- """
- userIds: OneGraphServiceUserIds
-
- """Optional OAuth tokens used to execute the query"""
- auths: OneGraphServiceAuths
- ): MailchimpQuery! @deprecated(reason: "Beta: this field is still in beta while we work out the kinks.")
-
- """The root for Meetup queries"""
- meetup(
- """
- Instruct OneGraph to use the auth associated with a particular user.
-
- Note that the user must have gone through the OneGraph oauth flow and logged in with an account with the userId provided in the auth. If there is no user with the account, you may get an auth/auth-missing error.
-
- The userIds for logged-in services can be found under `me.serviceMetadata.loggedInServices.foreignUserId`.
- """
- userIds: OneGraphServiceUserIds
-
- """Optional OAuth tokens used to execute the query"""
- auths: OneGraphServiceAuths
- ): MeetupQuery! @deprecated(reason: "Beta: this field is still in beta while we work out the kinks.")
-
- """The root for Mixpanel queries"""
- mixpanel(
- """
- Instruct OneGraph to use the auth associated with a particular user.
-
- Note that the user must have gone through the OneGraph oauth flow and logged in with an account with the userId provided in the auth. If there is no user with the account, you may get an auth/auth-missing error.
-
- The userIds for logged-in services can be found under `me.serviceMetadata.loggedInServices.foreignUserId`.
- """
- userIds: OneGraphServiceUserIds
-
- """Optional OAuth tokens used to execute the query"""
- auths: OneGraphServiceAuths
- ): MixpanelQuery! @deprecated(reason: "Beta: this field is still in beta while we work out the kinks.")
-
- """The root for Netlify queries"""
- netlify(
- """
- Instruct OneGraph to use the auth associated with a particular user.
-
- Note that the user must have gone through the OneGraph oauth flow and logged in with an account with the userId provided in the auth. If there is no user with the account, you may get an auth/auth-missing error.
-
- The userIds for logged-in services can be found under `me.serviceMetadata.loggedInServices.foreignUserId`.
- """
- userIds: OneGraphServiceUserIds
-
- """Optional OAuth tokens used to execute the query"""
- auths: OneGraphServiceAuths
- ): NetlifyQuery! @deprecated(reason: "Beta: this field is still in beta while we work out the kinks.")
-
- """The root for Npm queries"""
- npm(
- """
- Instruct OneGraph to use the auth associated with a particular user.
-
- Note that the user must have gone through the OneGraph oauth flow and logged in with an account with the userId provided in the auth. If there is no user with the account, you may get an auth/auth-missing error.
-
- The userIds for logged-in services can be found under `me.serviceMetadata.loggedInServices.foreignUserId`.
- """
- userIds: OneGraphServiceUserIds
-
- """Optional OAuth tokens used to execute the query"""
- auths: OneGraphServiceAuths
- ): NpmQuery! @deprecated(reason: "Beta: this field is still in beta while we work out the kinks.")
-
- """The root for Salesforce queries"""
- salesforce(
- """
- Instruct OneGraph to use the auth associated with a particular user.
-
- Note that the user must have gone through the OneGraph oauth flow and logged in with an account with the userId provided in the auth. If there is no user with the account, you may get an auth/auth-missing error.
-
- The userIds for logged-in services can be found under `me.serviceMetadata.loggedInServices.foreignUserId`.
- """
- userIds: OneGraphServiceUserIds
-
- """Optional OAuth tokens used to execute the query"""
- auths: OneGraphServiceAuths
- ): SalesforceQuery!
-
- """The root for Slack queries"""
- slack(
- """
- Instruct OneGraph to use the auth associated with a particular user.
-
- Note that the user must have gone through the OneGraph oauth flow and logged in with an account with the userId provided in the auth. If there is no user with the account, you may get an auth/auth-missing error.
-
- The userIds for logged-in services can be found under `me.serviceMetadata.loggedInServices.foreignUserId`.
- """
- userIds: OneGraphServiceUserIds
-
- """Optional OAuth tokens used to execute the query"""
- auths: OneGraphServiceAuths
- ): Slack! @deprecated(reason: "Beta: this field is still in beta while we work out the kinks.")
-
- """The root for Spotify queries"""
- spotify(
- """
- Instruct OneGraph to use the auth associated with a particular user.
-
- Note that the user must have gone through the OneGraph oauth flow and logged in with an account with the userId provided in the auth. If there is no user with the account, you may get an auth/auth-missing error.
-
- The userIds for logged-in services can be found under `me.serviceMetadata.loggedInServices.foreignUserId`.
- """
- userIds: OneGraphServiceUserIds
-
- """Optional OAuth tokens used to execute the query"""
- auths: OneGraphServiceAuths
- ): SpotifyQuery! @deprecated(reason: "Beta: this field is still in beta while we work out the kinks.")
-
- """The root for Stripe queries"""
- stripe(
- """
- Instruct OneGraph to use the auth associated with a particular user.
-
- Note that the user must have gone through the OneGraph oauth flow and logged in with an account with the userId provided in the auth. If there is no user with the account, you may get an auth/auth-missing error.
-
- The userIds for logged-in services can be found under `me.serviceMetadata.loggedInServices.foreignUserId`.
- """
- userIds: OneGraphServiceUserIds
-
- """Optional OAuth tokens used to execute the query"""
- auths: OneGraphServiceAuths
- ): StripeQuery!
-
- """The root for Trello queries"""
- trello(
- """
- Instruct OneGraph to use the auth associated with a particular user.
-
- Note that the user must have gone through the OneGraph oauth flow and logged in with an account with the userId provided in the auth. If there is no user with the account, you may get an auth/auth-missing error.
-
- The userIds for logged-in services can be found under `me.serviceMetadata.loggedInServices.foreignUserId`.
- """
- userIds: OneGraphServiceUserIds
-
- """Optional OAuth tokens used to execute the query"""
- auths: OneGraphServiceAuths
- ): TrelloQuery!
-
- """The root for Twilio queries"""
- twilio(
- """
- Instruct OneGraph to use the auth associated with a particular user.
-
- Note that the user must have gone through the OneGraph oauth flow and logged in with an account with the userId provided in the auth. If there is no user with the account, you may get an auth/auth-missing error.
-
- The userIds for logged-in services can be found under `me.serviceMetadata.loggedInServices.foreignUserId`.
- """
- userIds: OneGraphServiceUserIds
-
- """Optional OAuth tokens used to execute the query"""
- auths: OneGraphServiceAuths
- ): TwilioQuery! @deprecated(reason: "Beta: this field is still in beta while we work out the kinks.")
-
- """The root for Twitch queries"""
- twitchTv(
- """
- Instruct OneGraph to use the auth associated with a particular user.
-
- Note that the user must have gone through the OneGraph oauth flow and logged in with an account with the userId provided in the auth. If there is no user with the account, you may get an auth/auth-missing error.
-
- The userIds for logged-in services can be found under `me.serviceMetadata.loggedInServices.foreignUserId`.
- """
- userIds: OneGraphServiceUserIds
-
- """Optional OAuth tokens used to execute the query"""
- auths: OneGraphServiceAuths
- ): TwitchTvQuery! @deprecated(reason: "Beta: this field is still in beta while we work out the kinks.")
-
- """The root for Twitter queries"""
- twitter(
- """
- Instruct OneGraph to use the auth associated with a particular user.
-
- Note that the user must have gone through the OneGraph oauth flow and logged in with an account with the userId provided in the auth. If there is no user with the account, you may get an auth/auth-missing error.
-
- The userIds for logged-in services can be found under `me.serviceMetadata.loggedInServices.foreignUserId`.
- """
- userIds: OneGraphServiceUserIds
-
- """Optional OAuth tokens used to execute the query"""
- auths: OneGraphServiceAuths
- ): Twitter! @deprecated(reason: "Beta: this field is still in beta while we work out the kinks.")
-
- """The root for UPS queries"""
- ups(
- """
- Instruct OneGraph to use the auth associated with a particular user.
-
- Note that the user must have gone through the OneGraph oauth flow and logged in with an account with the userId provided in the auth. If there is no user with the account, you may get an auth/auth-missing error.
-
- The userIds for logged-in services can be found under `me.serviceMetadata.loggedInServices.foreignUserId`.
- """
- userIds: OneGraphServiceUserIds
-
- """Optional OAuth tokens used to execute the query"""
- auths: OneGraphServiceAuths
- ): UpsQuery! @deprecated(reason: "Beta: this field is still in beta while we work out the kinks.")
-
- """The root for USPS queries"""
- usps(
- """
- Instruct OneGraph to use the auth associated with a particular user.
-
- Note that the user must have gone through the OneGraph oauth flow and logged in with an account with the userId provided in the auth. If there is no user with the account, you may get an auth/auth-missing error.
-
- The userIds for logged-in services can be found under `me.serviceMetadata.loggedInServices.foreignUserId`.
- """
- userIds: OneGraphServiceUserIds
-
- """Optional OAuth tokens used to execute the query"""
- auths: OneGraphServiceAuths
- ): USPSQuery! @deprecated(reason: "Beta: this field is still in beta while we work out the kinks.")
-
- """The root for YouTube queries"""
- youTube(
- """
- Instruct OneGraph to use the auth associated with a particular user.
-
- Note that the user must have gone through the OneGraph oauth flow and logged in with an account with the userId provided in the auth. If there is no user with the account, you may get an auth/auth-missing error.
-
- The userIds for logged-in services can be found under `me.serviceMetadata.loggedInServices.foreignUserId`.
- """
- userIds: OneGraphServiceUserIds
-
- """Optional OAuth tokens used to execute the query"""
- auths: OneGraphServiceAuths
- ): YouTubeQuery! @deprecated(reason: "Beta: this field is still in beta while we work out the kinks.")
-
- """The root for Zeit queries"""
- zeit(
- """
- Instruct OneGraph to use the auth associated with a particular user.
-
- Note that the user must have gone through the OneGraph oauth flow and logged in with an account with the userId provided in the auth. If there is no user with the account, you may get an auth/auth-missing error.
-
- The userIds for logged-in services can be found under `me.serviceMetadata.loggedInServices.foreignUserId`.
- """
- userIds: OneGraphServiceUserIds
-
- """Optional OAuth tokens used to execute the query"""
- auths: OneGraphServiceAuths
- ): ZeitQuery! @deprecated(reason: "Beta: this field is still in beta while we work out the kinks.")
-
- """The root for Zendesk queries"""
- zendesk(
- """
- Instruct OneGraph to use the auth associated with a particular user.
-
- Note that the user must have gone through the OneGraph oauth flow and logged in with an account with the userId provided in the auth. If there is no user with the account, you may get an auth/auth-missing error.
-
- The userIds for logged-in services can be found under `me.serviceMetadata.loggedInServices.foreignUserId`.
- """
- userIds: OneGraphServiceUserIds
-
- """Optional OAuth tokens used to execute the query"""
- auths: OneGraphServiceAuths
- ): ZendeskQuery!
- quickbooks(
- """
- Instruct OneGraph to use the auth associated with a particular user.
-
- Note that the user must have gone through the OneGraph oauth flow and logged in with an account with the userId provided in the auth. If there is no user with the account, you may get an auth/auth-missing error.
-
- The userIds for logged-in services can be found under `me.serviceMetadata.loggedInServices.foreignUserId`.
- """
- userIds: OneGraphServiceUserIds
-
- """Optional OAuth tokens used to execute the query"""
- auths: OneGraphServiceAuths
- ): QuickbooksQuery
- immigrationGraph(
- """
- Instruct OneGraph to use the auth associated with a particular user.
-
- Note that the user must have gone through the OneGraph oauth flow and logged in with an account with the userId provided in the auth. If there is no user with the account, you may get an auth/auth-missing error.
-
- The userIds for logged-in services can be found under `me.serviceMetadata.loggedInServices.foreignUserId`.
- """
- userIds: OneGraphServiceUserIds
-
- """Optional OAuth tokens used to execute the query"""
- auths: OneGraphServiceAuths
- ): ImmigrationGraphQuery
- crunchbase(
- """
- Instruct OneGraph to use the auth associated with a particular user.
-
- Note that the user must have gone through the OneGraph oauth flow and logged in with an account with the userId provided in the auth. If there is no user with the account, you may get an auth/auth-missing error.
-
- The userIds for logged-in services can be found under `me.serviceMetadata.loggedInServices.foreignUserId`.
- """
- userIds: OneGraphServiceUserIds
-
- """Optional OAuth tokens used to execute the query"""
- auths: OneGraphServiceAuths
- ): CrunchbaseQuery
- brex(
- """
- Instruct OneGraph to use the auth associated with a particular user.
-
- Note that the user must have gone through the OneGraph oauth flow and logged in with an account with the userId provided in the auth. If there is no user with the account, you may get an auth/auth-missing error.
-
- The userIds for logged-in services can be found under `me.serviceMetadata.loggedInServices.foreignUserId`.
- """
- userIds: OneGraphServiceUserIds
-
- """Optional OAuth tokens used to execute the query"""
- auths: OneGraphServiceAuths
- ): BrexRootQueryType
- gitHub(
- """
- Instruct OneGraph to use the auth associated with a particular user.
-
- Note that the user must have gone through the OneGraph oauth flow and logged in with an account with the userId provided in the auth. If there is no user with the account, you may get an auth/auth-missing error.
-
- The userIds for logged-in services can be found under `me.serviceMetadata.loggedInServices.foreignUserId`.
- """
- userIds: OneGraphServiceUserIds
-
- """Optional OAuth tokens used to execute the query"""
- auths: OneGraphServiceAuths
- ): GitHubQuery
- productHunt(
- """
- Instruct OneGraph to use the auth associated with a particular user.
-
- Note that the user must have gone through the OneGraph oauth flow and logged in with an account with the userId provided in the auth. If there is no user with the account, you may get an auth/auth-missing error.
-
- The userIds for logged-in services can be found under `me.serviceMetadata.loggedInServices.foreignUserId`.
- """
- userIds: OneGraphServiceUserIds
-
- """Optional OAuth tokens used to execute the query"""
- auths: OneGraphServiceAuths
- ): ProductHuntQuery
- eventil(
- """
- Instruct OneGraph to use the auth associated with a particular user.
-
- Note that the user must have gone through the OneGraph oauth flow and logged in with an account with the userId provided in the auth. If there is no user with the account, you may get an auth/auth-missing error.
-
- The userIds for logged-in services can be found under `me.serviceMetadata.loggedInServices.foreignUserId`.
- """
- userIds: OneGraphServiceUserIds
-
- """Optional OAuth tokens used to execute the query"""
- auths: OneGraphServiceAuths
- ): EventilQuery
- oneGraph: OneGraphServiceQuery!
-
- """Fetches an object given its globally unique `oneGraphId`."""
- oneGraphNode(
- """The globally unique `oneGraphId`."""
- oneGraphId: ID!
- ): OneGraphNode
- rss: RssQuery! @deprecated(reason: "Beta: this field is still in beta while we work out the kinks.")
- youTubeVideo(id: String!): YoutubeVideo @deprecated(reason: "Beta: this field is still in beta while we work out the kinks.")
- youTubeSearch(
- cursor: String
- pageToken: String
- maxResults: Int!
- order: String
-
- """
- The q parameter specifies the query term to search for.
- Your request can also use the Boolean NOT (-) and OR (|) operators to exclude videos or to find videos that are associated with one of several search terms. For example, to search for videos matching either "boating" or "sailing", set the q parameter value to boating|sailing. Similarly, to search for videos matching either "boating" or "sailing" but not "fishing", set the q parameter value to boating|sailing -fishing
- """
- q: String!
- ): YoutubeVideoSearchResult @deprecated(reason: "Beta: this field is still in beta while we work out the kinks.")
- descuri(url: String!): Descuri
- emailNode(
- """Email address used to look up nodes."""
- email: String!
-
- """
- Instruct OneGraph to use the auth associated with a particular user.
-
- Note that the user must have gone through the OneGraph oauth flow and logged in with an account with the userId provided in the auth. If there is no user with the account, you may get an auth/auth-missing error.
-
- The userIds for logged-in services can be found under `me.serviceMetadata.loggedInServices.foreignUserId`.
- """
- userIds: OneGraphServiceUserIds
-
- """Optional OAuth tokens used to execute the query"""
- auths: OneGraphServiceAuths
- ): OneGraphEmailNode! @deprecated(reason: "Beta: this field is still in beta while we work out the kinks.")
-}
diff --git a/src/HotChocolate/Benchmarks/src/Benchmarks.Execution/Requests/SchemaMedium.graphql b/src/HotChocolate/Benchmarks/src/Benchmarks.Execution/Requests/SchemaMedium.graphql
deleted file mode 100644
index 1c06e168b02..00000000000
--- a/src/HotChocolate/Benchmarks/src/Benchmarks.Execution/Requests/SchemaMedium.graphql
+++ /dev/null
@@ -1,564 +0,0 @@
-# from https://gist.github.com/rocketraman/065a4a523a094e4e2c0438f4f304c5db
-schema {
- query: Object49
- mutation: Object8
-}
-
-interface Interface1 {
- field3: Enum1!
-}
-
-interface Interface2 {
- field10: String
- field11: String
- field12: String!
- field13: String!
- field8: String
- field9: String
-}
-
-interface Interface3 {
- field14: Scalar2!
-}
-
-interface Interface4 {
- field16: [Interface3!]!
-}
-
-interface Interface5 {
- field31: String!
- field32: String!
-}
-
-union Union1 = Object14 | Object15
-
-union Union10 = Object15 | Object47 | Object48
-
-union Union2 = Object16 | Object17
-
-union Union3 = Object15 | Object19 | Object20
-
-union Union4 = Object21 | Object22 | Object23 | Object24 | Object25
-
-union Union5 = Object15 | Object22 | Object23 | Object26 | Object27
-
-union Union6 = Object15 | Object22 | Object23 | Object28
-
-union Union7 = Object15 | Object22 | Object23 | Object29
-
-union Union8 = Object44
-
-union Union9 = Object15 | Object45 | Object46
-
-type Object1 {
- field1: Int!
- field2: [Scalar1!]!
-}
-
-type Object10 {
- field20: Scalar3!
- field21: Boolean!
-}
-
-type Object11 {
- field24: Object12!
- field26(argument5: InputObject2!): Interface1!
-}
-
-type Object12 {
- field25: Scalar1!
-}
-
-type Object13 {
- field28: Scalar1
- field29(argument7: InputObject3!): Union1!
- field34(argument8: InputObject5!): Union2!
-}
-
-type Object14 {
- field30: Scalar1!
-}
-
-type Object15 implements Interface5 {
- field31: String!
- field32: String!
- field33: Enum3
-}
-
-type Object16 {
- field35: Scalar1!
- field36: Scalar1!
-}
-
-type Object17 implements Interface5 {
- field31: String!
- field32: String!
-}
-
-type Object18 {
- field38(argument11: InputObject7!): Union3!
- field40(argument12: InputObject6!, argument13: InputObject8!): Union4!
- field44: Union5!
- field46: Union6!
- field48(argument14: InputObject9!): Union7!
-}
-
-type Object19 {
- field39: Scalar1!
-}
-
-type Object2 implements Interface1 {
- field3: Enum1!
- field4: Object1!
- field5: Object3!
-}
-
-type Object20 implements Interface5 {
- field31: String!
- field32: String!
-}
-
-type Object21 implements Interface5 {
- field31: String!
- field32: String!
-}
-
-type Object22 implements Interface5 {
- field31: String!
- field32: String!
-}
-
-type Object23 implements Interface5 {
- field31: String!
- field32: String!
- field41: Enum5!
- field42: Enum5!
-}
-
-type Object24 implements Interface5 {
- field31: String!
- field32: String!
-}
-
-type Object25 {
- field43: Scalar1!
-}
-
-type Object26 {
- field45: Scalar1!
-}
-
-type Object27 implements Interface5 {
- field31: String!
- field32: String!
-}
-
-type Object28 {
- field47: Scalar1!
-}
-
-type Object29 {
- field49: Scalar1!
-}
-
-type Object3 {
- field6: Int!
- field7: [Scalar1!]!
-}
-
-type Object30 {
- field51(argument16: InputObject10!): Object31!
- field57(argument17: InputObject11!): Object33!
- field63(argument18: InputObject12!): Object35!
- field66(argument19: InputObject13!): Object36!
-}
-
-type Object31 {
- field52: [Object32!]!
- field56: Interface4
-}
-
-type Object32 {
- field53: Scalar1!
- field54: Scalar1
- field55: Boolean!
-}
-
-type Object33 {
- field58: [Object32!]!
- field59: [Object34!]!
-}
-
-type Object34 {
- field60: Scalar1!
- field61: Scalar1
- field62: Scalar1!
-}
-
-type Object35 {
- field64: Interface4
- field65: [Object34!]!
-}
-
-type Object36 {
- field67: Boolean!
- field68: Object37!
-}
-
-type Object37 {
- field69(argument20: InputObject14!): Object38!
- field82(argument21: InputObject15!): Object41!
-}
-
-type Object38 {
- field70: Float!
- field71: Object39!
- field74: [Object40!]!
- field81: Int!
-}
-
-type Object39 {
- field72: Scalar3!
- field73: Scalar2!
-}
-
-type Object4 implements Interface1 {
- field3: Enum1!
-}
-
-type Object40 {
- field75: Float
- field76: Scalar2!
- field77: Scalar3
- field78: Enum7!
- field79: Scalar3!
- field80: Int!
-}
-
-type Object41 implements Interface4 {
- field16: [Object42!]!
- field83: Enum8!
- field84: Enum9!
-}
-
-type Object42 implements Interface3 {
- field14: Scalar2!
- field85: Scalar3!
-}
-
-type Object43 {
- field87(argument23: InputObject16!): Union8!
- field89: Union9!
- field94: Union10!
-}
-
-type Object44 {
- field88: String!
-}
-
-type Object45 {
- field90: String!
- field91: Scalar1!
-}
-
-type Object46 implements Interface5 {
- field31: String!
- field32: String!
- field92: String
- field93: String!
-}
-
-type Object47 implements Interface5 {
- field31: String!
- field32: String!
- field95: String
-}
-
-type Object48 {
- field96: String!
- field97: String!
- field98: Scalar1!
-}
-
-type Object49 {
- field104(argument24: Scalar1!): Object52!
- field116(argument26: Scalar1!): Object37!
- field117: Object56!
- field129(argument32: Scalar1!): Object58!
- field99: Object50!
-}
-
-type Object5 implements Interface2 {
- field10: String
- field11: String
- field12: String!
- field13: String!
- field8: String
- field9: String
-}
-
-type Object50 {
- field100: [Object51!]!
-}
-
-type Object51 {
- field101: Boolean!
- field102: Enum4!
- field103: [Enum3!]!
-}
-
-type Object52 {
- field105(argument25: InputObject17!): Object53!
- field107: Object53!
- field108: Object54!
-}
-
-type Object53 {
- field106: Object41!
-}
-
-type Object54 {
- field109: Object55!
-}
-
-type Object55 {
- field110: Float!
- field111: Scalar3!
- field112: Float!
- field113: Scalar3!
- field114: Float!
- field115: Scalar3!
-}
-
-type Object56 {
- field118(argument27: Scalar4, argument28: String): [Object57!]!
- field128(argument29: Scalar4, argument30: Int, argument31: String!): [Object57!]!
-}
-
-type Object57 {
- field119: Int!
- field120: String!
- field121: String!
- field122: String!
- field123: Int!
- field124: String!
- field125: Boolean!
- field126: Int!
- field127: String!
-}
-
-type Object58 {
- field130: Object59
-}
-
-type Object59 implements Interface2 {
- field10: String
- field11: String
- field12: String!
- field13: String!
- field131: Boolean!
- field132: Boolean!
- field133: [Interface2!]!
- field8: String
- field9: String
-}
-
-type Object6 implements Interface3 {
- field14: Scalar2!
- field15: Float!
-}
-
-type Object7 implements Interface4 {
- field16: [Object6!]!
- field17: String!
-}
-
-type Object8 {
- field18(argument1: Scalar1!): Object9!
- field23(argument4: Scalar1!): Object11!
- field27(argument6: Scalar1): Object13!
- field37(argument10: Scalar1, argument9: Scalar1): Object18!
- field50(argument15: Scalar1!): Object30!
- field86(argument22: Scalar1): Object43!
-}
-
-type Object9 {
- field19(argument2: InputObject1!): Object10!
- field22(argument3: InputObject1!): Object10!
-}
-
-enum Enum1 {
- EnumValue1
- EnumValue2
-}
-
-enum Enum2 {
- EnumValue3
- EnumValue4
- EnumValue5
-}
-
-enum Enum3 {
- EnumValue10
- EnumValue11
- EnumValue12
- EnumValue13
- EnumValue14
- EnumValue15
- EnumValue16
- EnumValue17
- EnumValue18
- EnumValue19
- EnumValue20
- EnumValue6
- EnumValue7
- EnumValue8
- EnumValue9
-}
-
-enum Enum4 {
- EnumValue21
- EnumValue22
- EnumValue23
- EnumValue24
- EnumValue25
- EnumValue26
- EnumValue27
- EnumValue28
-}
-
-enum Enum5 {
- EnumValue29
- EnumValue30
- EnumValue31
- EnumValue32
-}
-
-enum Enum6 {
- EnumValue33
- EnumValue34
- EnumValue35
-}
-
-enum Enum7 {
- EnumValue36
- EnumValue37
- EnumValue38
-}
-
-enum Enum8 {
- EnumValue39
- EnumValue40
- EnumValue41
-}
-
-enum Enum9 {
- EnumValue42
- EnumValue43
- EnumValue44
-}
-
-scalar Scalar1
-
-scalar Scalar2
-
-scalar Scalar3
-
-scalar Scalar4
-
-input InputObject1 {
- inputField1: Scalar3!
- inputField2: Scalar2!
-}
-
-input InputObject10 {
- inputField34: Scalar1!
-}
-
-input InputObject11 {
- inputField35: Scalar1!
-}
-
-input InputObject12 {
- inputField36: Scalar1!
- inputField37: Boolean!
- inputField38: Boolean!
-}
-
-input InputObject13 {
- inputField39: Scalar1!
- inputField40: Boolean!
-}
-
-input InputObject14 {
- inputField41: Enum6!
-}
-
-input InputObject15 {
- inputField42: Enum6!
- inputField43: Enum8!
- inputField44: [Scalar1!]!
-}
-
-input InputObject16 {
- inputField45: String!
-}
-
-input InputObject17 {
- inputField46: Scalar1!
-}
-
-input InputObject2 {
- inputField3: Boolean!
-}
-
-input InputObject3 {
- inputField12: Boolean!
- inputField13: String!
- inputField14: Enum2!
- inputField15: String!
- inputField16: Scalar1
- inputField4: InputObject4!
-}
-
-input InputObject4 {
- inputField10: String
- inputField11: String
- inputField5: String
- inputField6: String
- inputField7: String
- inputField8: String
- inputField9: String
-}
-
-input InputObject5 {
- inputField17: InputObject4!
- inputField18: Boolean!
- inputField19: String!
- inputField20: Enum2!
- inputField21: String!
- inputField22: InputObject6!
-}
-
-input InputObject6 {
- inputField23: String
- inputField24: String
- inputField25: String
- inputField26: String
- inputField27: String
-}
-
-input InputObject7 {
- inputField28: String
- inputField29: String!
- inputField30: String!
- inputField31: Enum4!
-}
-
-input InputObject8 {
- inputField32: String!
-}
-
-input InputObject9 {
- inputField33: Enum4!
-}
\ No newline at end of file
diff --git a/src/HotChocolate/Benchmarks/src/Benchmarks.Execution/Requests/SessionLargeDLQuery.graphql b/src/HotChocolate/Benchmarks/src/Benchmarks.Execution/Requests/SessionLargeDLQuery.graphql
deleted file mode 100644
index 017bc787804..00000000000
--- a/src/HotChocolate/Benchmarks/src/Benchmarks.Execution/Requests/SessionLargeDLQuery.graphql
+++ /dev/null
@@ -1,79 +0,0 @@
-{
- a: speakerById(id: "U3BlYWtlcgppMQ==") {
- ...SpeakerInfo
- }
- b: speakerById(id: "U3BlYWtlcgppMzE=") {
- ...SpeakerInfo
- }
- c: speakerById(id: "U3BlYWtlcgppMzA=") {
- ...SpeakerInfo
- }
- d: speakerById(id: "U3BlYWtlcgppMjk=") {
- ...SpeakerInfo
- }
- sessions(first: 50) {
- nodes {
- speakers {
- name
- sessions {
- ...SessionInfo
- }
- }
- }
- }
- tracks {
- nodes {
- name
- sessions {
- nodes {
- abstract
- title
- speakers {
- name
- sessions {
- ...SessionInfo
- }
- }
- }
- }
- }
- }
-}
-
-fragment SessionInfo on Session {
- id
- abstract
- title
- startTime
- endTime
- speakers {
- ...SpeakerInfo
- }
- track {
- id
- name
- sessions {
- nodes {
- id
- abstract
- title
- startTime
- endTime
- speakers {
- ...SpeakerInfo
- }
- track {
- id
- name
- }
- }
- }
- }
-}
-
-fragment SpeakerInfo on Speaker {
- id
- name
- bio
- webSite
-}
diff --git a/src/HotChocolate/Benchmarks/src/Benchmarks.Execution/Requests/SessionLargeQuery.graphql b/src/HotChocolate/Benchmarks/src/Benchmarks.Execution/Requests/SessionLargeQuery.graphql
deleted file mode 100644
index 4e525d598e8..00000000000
--- a/src/HotChocolate/Benchmarks/src/Benchmarks.Execution/Requests/SessionLargeQuery.graphql
+++ /dev/null
@@ -1,63 +0,0 @@
-{
- a: speakerById(id: "U3BlYWtlcgppMQ==") {
- ...SpeakerInfo
- }
- b: speakerById(id: "U3BlYWtlcgppMzE=") {
- ...SpeakerInfo
- }
- c: speakerById(id: "U3BlYWtlcgppMzA=") {
- ...SpeakerInfo
- }
- d: speakerById(id: "U3BlYWtlcgppMjk=") {
- ...SpeakerInfo
- }
- sessions(first: 50) {
- nodes {
- speakers {
- name
- sessions {
- ...SessionInfo
- }
- }
- }
- }
- tracks {
- nodes {
- name
- sessions {
- nodes {
- abstract
- title
- speakers {
- name
- sessions {
- ...SessionInfo
- }
- }
- }
- }
- }
- }
-}
-
-fragment SessionInfo on Session {
- id
- abstract
- title
- startTime
- endTime
- speakers {
- ...SpeakerInfo
- }
- track {
- id
- name
- }
-}
-
-fragment SpeakerInfo on Speaker {
- id
- name
- bio
- webSite
-}
diff --git a/src/HotChocolate/Benchmarks/src/Benchmarks.Execution/Requests/SessionMediumQuery.graphql b/src/HotChocolate/Benchmarks/src/Benchmarks.Execution/Requests/SessionMediumQuery.graphql
deleted file mode 100644
index 52627fffe1a..00000000000
--- a/src/HotChocolate/Benchmarks/src/Benchmarks.Execution/Requests/SessionMediumQuery.graphql
+++ /dev/null
@@ -1,29 +0,0 @@
-{
- sessions(first: 50) {
- nodes {
- ... SessionInfo
- }
- }
-}
-
-fragment SessionInfo on Session {
- id
- abstract
- title
- startTime
- endTime
- speakers {
- ...SpeakerInfo
- }
- track {
- id
- name
- }
-}
-
-fragment SpeakerInfo on Speaker {
- id
- name
- bio
- webSite
-}
diff --git a/src/HotChocolate/Benchmarks/src/Benchmarks.Execution/SchemaBuildingBenchmarks.cs.txt b/src/HotChocolate/Benchmarks/src/Benchmarks.Execution/SchemaBuildingBenchmarks.cs.txt
deleted file mode 100644
index 3d9c93297c3..00000000000
--- a/src/HotChocolate/Benchmarks/src/Benchmarks.Execution/SchemaBuildingBenchmarks.cs.txt
+++ /dev/null
@@ -1,131 +0,0 @@
-using System.Threading.Tasks;
-using BenchmarkDotNet.Attributes;
-using HotChocolate;
-using HotChocolate.Execution;
-using HotChocolate.ConferencePlanner.Attendees;
-using HotChocolate.ConferencePlanner.Data;
-using HotChocolate.ConferencePlanner.DataLoader;
-using HotChocolate.ConferencePlanner.Imports;
-using HotChocolate.ConferencePlanner.Sessions;
-using HotChocolate.ConferencePlanner.Speakers;
-using HotChocolate.ConferencePlanner.Tracks;
-using Microsoft.EntityFrameworkCore;
-using Microsoft.Extensions.DependencyInjection;
-using HotChocolate.Execution.Configuration;
-using HotChocolate.Types;
-
-namespace HotChocolate.Benchmarks;
-
-[RPlotExporter, CategoriesColumn, RankColumn, MeanColumn, MedianColumn, MemoryDiagnoser]
-public class SchemaBuildingBenchmarks
-{
- [Benchmark]
- public async Task CreateSchema_AnnotationBased_Medium()
- {
- // for (int i = 0; i < 20; i++)
- {
- var servicesCollection = new ServiceCollection();
- await ConfigureAnnotationBased(servicesCollection).BuildSchemaAsync();
- }
- }
-
- [Benchmark]
- public async Task CreateSchema_SchemaFirst_Medium()
- {
- for (int i = 0; i < 20; i++)
- {
- await new ServiceCollection()
- .AddGraphQLServer()
- .AddDocumentFromString(SchemaMedium)
- .AddType(new StringType())
- .AddType(new StringType("Scalar1"))
- .AddType(new StringType("Scalar2"))
- .AddType(new StringType("Scalar3"))
- .AddType(new StringType("Scalar4"))
- .UseField(_ => _ => default)
- .BuildSchemaAsync();
- }
- }
-
- public string SchemaMedium { get; } = Resources.SchemaMedium;
-
- [Benchmark]
- public async Task CreateSchema_SchemaFirst_Large()
- {
- // for (int i = 0; i < 20; i++)
- {
- await new ServiceCollection()
- .AddGraphQLServer()
- .AddDocumentFromString(SchemaLarge)
- .AddType(new StringType())
- .AddType(new StringType("Scalar1"))
- .AddType(new StringType("Scalar2"))
- .AddType(new StringType("Scalar3"))
- .AddType(new StringType("Scalar4"))
- .AddType(new StringType("Scalar5"))
- .AddType(new StringType("Scalar6"))
- .UseField(_ => _ => default)
- .BuildSchemaAsync();
- }
- }
-
- public string SchemaLarge { get; } = Resources.SchemaLarge;
-
- private static IRequestExecutorBuilder ConfigureAnnotationBased(IServiceCollection services)
- {
- return services
- // First we add the DBContext which we will be using to interact with our
- // Database.
- .AddPooledDbContextFactory(
- options => options.UseSqlite("Data Source=conferences.db"))
-
- // This adds the GraphQL server core service and declares a schema.
- .AddGraphQL()
-
- // Next we add the types to our schema.
- .AddQueryType()
- .AddTypeExtension()
- .AddTypeExtension()
- .AddTypeExtension()
- .AddTypeExtension()
- .AddMutationType()
- .AddTypeExtension()
- .AddTypeExtension()
- .AddTypeExtension()
- .AddTypeExtension()
- .AddSubscriptionType()
- .AddTypeExtension()
- .AddTypeExtension()
- .AddTypeExtension()
- .AddTypeExtension()
- .AddTypeExtension()
- .AddTypeExtension()
-
- // In this section we are adding extensions like relay helpers,
- // filtering and sorting.
- .AddFiltering()
- .AddSorting()
- .AddGlobalObjectIdentification()
- .AddQueryFieldToMutationPayloads()
- .AddIdSerializer()
-
- // Now we add some the DataLoader to our system.
- .AddDataLoader()
- .AddDataLoader()
- .AddDataLoader()
- .AddDataLoader()
- .AddDataLoader()
- .AddDataLoader()
-
- // .AddDiagnosticEventListener()
- // .AddDiagnosticEventListener()
-
- // we make sure that the db exists and prefill it with conference data.
- .EnsureDatabaseIsCreated()
-
- // Since we are using subscriptions, we need to register a pub/sub system.
- // for our demo we are using a in-memory pub/sub system.
- .AddInMemorySubscriptions();
- }
-
-}
\ No newline at end of file
diff --git a/src/HotChocolate/Benchmarks/src/Benchmarks.Execution/schema.graphql b/src/HotChocolate/Benchmarks/src/Benchmarks.Execution/schema.graphql
deleted file mode 100644
index 02c7de9e085..00000000000
--- a/src/HotChocolate/Benchmarks/src/Benchmarks.Execution/schema.graphql
+++ /dev/null
@@ -1,469 +0,0 @@
-schema {
- query: Query
- mutation: Mutation
- subscription: Subscription
-}
-
-"The node interface is implemented by entities that have a global unique identifier."
-interface Node {
- id: ID!
-}
-
-type AddSessionPayload {
- session: Session @inlineResolver
- errors: [UserError!] @inlineResolver
-}
-
-type AddSpeakerPayload {
- speaker: Speaker @inlineResolver
- errors: [UserError!] @inlineResolver
-}
-
-type AddTrackPayload {
- track: Track @inlineResolver
- errors: [UserError!] @inlineResolver
-}
-
-type Attendee implements Node {
- id: ID!
- firstName: String! @inlineResolver
- lastName: String! @inlineResolver
- userName: String! @inlineResolver
- emailAddress: String @inlineResolver
- sessions: [Session!]!
-}
-
-"A connection to a list of items."
-type AttendeeConnection {
- "Information to aid in pagination."
- pageInfo: PageInfo! @inlineResolver
- "A list of edges."
- edges: [AttendeeEdge!] @inlineResolver
- "A flattened list of the nodes."
- nodes: [Attendee!] @pureResolver
-}
-
-"An edge in a connection."
-type AttendeeEdge {
- "A cursor for use in pagination."
- cursor: String! @inlineResolver
- "The item at the end of the edge."
- node: Attendee! @inlineResolver
-}
-
-type CheckInAttendeePayload {
- session: Session
- attendee: Attendee @inlineResolver
- errors: [UserError!] @inlineResolver
-}
-
-type ModifySpeakerPayload {
- speaker: Speaker @inlineResolver
- errors: [UserError!] @inlineResolver
-}
-
-type Mutation {
- registerAttendee(input: RegisterAttendeeInput!): RegisterAttendeePayload!
- checkInAttendee(input: CheckInAttendeeInput!): CheckInAttendeePayload!
- addSession(input: AddSessionInput!): AddSessionPayload!
- scheduleSession(input: ScheduleSessionInput!): ScheduleSessionPayload!
- renameSession(input: RenameSessionInput!): RenameSessionPayload!
- addSpeaker(input: AddSpeakerInput!): AddSpeakerPayload!
- modifySpeaker(input: ModifySpeakerInput!): ModifySpeakerPayload!
- addTrack(input: AddTrackInput!): AddTrackPayload!
- renameTrack(input: RenameTrackInput!): RenameTrackPayload!
-}
-
-"Information about pagination in a connection."
-type PageInfo {
- "Indicates whether more edges exist following the set defined by the clients arguments."
- hasNextPage: Boolean! @inlineResolver
- "Indicates whether more edges exist prior the set defined by the clients arguments."
- hasPreviousPage: Boolean! @inlineResolver
- "When paginating backwards, the cursor to continue."
- startCursor: String @inlineResolver
- "When paginating forwards, the cursor to continue."
- endCursor: String @inlineResolver
-}
-
-type Query {
- node(id: ID!): Node
- attendees(first: Int after: String last: Int before: String): AttendeeConnection
- attendeeById(id: ID!): Attendee!
- attendeesById(ids: [ID!]!): [Attendee!]!
- sessions(first: Int after: String last: Int before: String where: SessionFilterInput order: [SessionSortInput!]): SessionConnection
- sessionById(id: ID!): Session!
- sessionsById(ids: [ID!]!): [Track!]!
- speakers(first: Int after: String last: Int before: String): SpeakerConnection
- speakerById(id: ID!): Speaker!
- speakersById(ids: [ID!]!): [Speaker!]!
- tracks(first: Int after: String last: Int before: String): TrackConnection
- trackByName(name: String!): Track!
- trackByNames(names: [String!]!): [Track!]!
- trackById(id: ID!): Track!
-}
-
-type RegisterAttendeePayload {
- attendee: Attendee @inlineResolver
- errors: [UserError!] @inlineResolver
-}
-
-type RenameSessionPayload {
- session: Session @inlineResolver
- errors: [UserError!] @inlineResolver
-}
-
-type RenameTrackPayload {
- track: Track @inlineResolver
- errors: [UserError!] @inlineResolver
-}
-
-type ScheduleSessionPayload {
- track: Track
- speakers: [Speaker!]
- session: Session @inlineResolver
- errors: [UserError!] @inlineResolver
-}
-
-type Session implements Node {
- id: ID!
- title: String! @inlineResolver
- abstract: String @inlineResolver
- startTime: DateTime @inlineResolver
- endTime: DateTime @inlineResolver
- duration: TimeSpan! @inlineResolver
- speakers: [Speaker!]!
- attendees: [Attendee!]!
- track: Track
- trackId: ID
-}
-
-type SessionAttendee {
- sessionId: Int! @inlineResolver
- session: Session @inlineResolver
- attendeeId: Int! @inlineResolver
- attendee: Attendee @inlineResolver
-}
-
-type SessionAttendeeCheckIn {
- checkInCount: Int!
- attendee: Attendee!
- session: Session!
- attendeeId: ID!
- sessionId: ID!
-}
-
-"A connection to a list of items."
-type SessionConnection {
- "Information to aid in pagination."
- pageInfo: PageInfo! @inlineResolver
- "A list of edges."
- edges: [SessionEdge!] @inlineResolver
- "A flattened list of the nodes."
- nodes: [Session!] @pureResolver
-}
-
-"An edge in a connection."
-type SessionEdge {
- "A cursor for use in pagination."
- cursor: String! @inlineResolver
- "The item at the end of the edge."
- node: Session! @inlineResolver
-}
-
-type SessionSpeaker {
- sessionId: Int! @inlineResolver
- session: Session @inlineResolver
- speakerId: Int! @inlineResolver
- speaker: Speaker @inlineResolver
-}
-
-type Speaker implements Node {
- id: ID!
- name: String! @inlineResolver
- bio: String @inlineResolver
- webSite: String @inlineResolver
- sessionSpeakers: [SessionSpeaker!]! @inlineResolver
- sessions: [Session!]!
-}
-
-"A connection to a list of items."
-type SpeakerConnection {
- "Information to aid in pagination."
- pageInfo: PageInfo! @inlineResolver
- "A list of edges."
- edges: [SpeakerEdge!] @inlineResolver
- "A flattened list of the nodes."
- nodes: [Speaker!] @pureResolver
-}
-
-"An edge in a connection."
-type SpeakerEdge {
- "A cursor for use in pagination."
- cursor: String! @inlineResolver
- "The item at the end of the edge."
- node: Speaker! @inlineResolver
-}
-
-type Subscription {
- onAttendeeCheckedIn(sessionId: ID!): SessionAttendeeCheckIn!
- onSessionScheduled: Session!
-}
-
-type Track implements Node {
- id: ID!
- name: String
- sessions(first: Int after: String last: Int before: String): SessionConnection
-}
-
-"A connection to a list of items."
-type TrackConnection {
- "Information to aid in pagination."
- pageInfo: PageInfo! @inlineResolver
- "A list of edges."
- edges: [TrackEdge!] @inlineResolver
- "A flattened list of the nodes."
- nodes: [Track!] @pureResolver
-}
-
-"An edge in a connection."
-type TrackEdge {
- "A cursor for use in pagination."
- cursor: String! @inlineResolver
- "The item at the end of the edge."
- node: Track! @inlineResolver
-}
-
-type UserError {
- message: String! @inlineResolver
- code: String! @inlineResolver
-}
-
-input AddSessionInput {
- title: String!
- abstract: String
- speakerIds: [ID!]!
-}
-
-input AddSpeakerInput {
- name: String!
- bio: String
- webSite: String
-}
-
-input AddTrackInput {
- name: String!
-}
-
-input AttendeeFilterInput {
- and: [AttendeeFilterInput!]
- or: [AttendeeFilterInput!]
- id: ComparableInt32OperationFilterInput
- firstName: StringOperationFilterInput
- lastName: StringOperationFilterInput
- userName: StringOperationFilterInput
- emailAddress: StringOperationFilterInput
- sessionsAttendees: ListFilterInputTypeOfSessionAttendeeFilterInput
-}
-
-input CheckInAttendeeInput {
- sessionId: ID!
- attendeeId: ID!
-}
-
-input ComparableInt32OperationFilterInput {
- eq: Int
- neq: Int
- in: [Int!]
- nin: [Int!]
- gt: Int
- ngt: Int
- gte: Int
- ngte: Int
- lt: Int
- nlt: Int
- lte: Int
- nlte: Int
-}
-
-input ComparableNullableOfDateTimeOffsetOperationFilterInput {
- eq: DateTime
- neq: DateTime
- in: [DateTime]
- nin: [DateTime]
- gt: DateTime
- ngt: DateTime
- gte: DateTime
- ngte: DateTime
- lt: DateTime
- nlt: DateTime
- lte: DateTime
- nlte: DateTime
-}
-
-input ComparableTimeSpanOperationFilterInput {
- eq: TimeSpan
- neq: TimeSpan
- in: [TimeSpan!]
- nin: [TimeSpan!]
- gt: TimeSpan
- ngt: TimeSpan
- gte: TimeSpan
- ngte: TimeSpan
- lt: TimeSpan
- nlt: TimeSpan
- lte: TimeSpan
- nlte: TimeSpan
-}
-
-input ListFilterInputTypeOfSessionAttendeeFilterInput {
- all: SessionAttendeeFilterInput
- none: SessionAttendeeFilterInput
- some: SessionAttendeeFilterInput
- any: Boolean
-}
-
-input ListFilterInputTypeOfSessionFilterInput {
- all: SessionFilterInput
- none: SessionFilterInput
- some: SessionFilterInput
- any: Boolean
-}
-
-input ListFilterInputTypeOfSessionSpeakerFilterInput {
- all: SessionSpeakerFilterInput
- none: SessionSpeakerFilterInput
- some: SessionSpeakerFilterInput
- any: Boolean
-}
-
-input ModifySpeakerInput {
- id: ID!
- name: String
- bio: String
- webSite: String
-}
-
-input RegisterAttendeeInput {
- firstName: String!
- lastName: String!
- userName: String!
- emailAddress: String!
-}
-
-input RenameSessionInput {
- sessionId: ID!
- title: String!
-}
-
-input RenameTrackInput {
- id: ID!
- name: String!
-}
-
-input ScheduleSessionInput {
- sessionId: ID!
- trackId: ID!
- startTime: DateTime!
- endTime: DateTime!
-}
-
-input SessionAttendeeFilterInput {
- and: [SessionAttendeeFilterInput!]
- or: [SessionAttendeeFilterInput!]
- sessionId: ComparableInt32OperationFilterInput
- session: SessionFilterInput
- attendeeId: ComparableInt32OperationFilterInput
- attendee: AttendeeFilterInput
-}
-
-input SessionFilterInput {
- and: [SessionFilterInput!]
- or: [SessionFilterInput!]
- title: StringOperationFilterInput
- abstract: StringOperationFilterInput
- startTime: ComparableNullableOfDateTimeOffsetOperationFilterInput
- endTime: ComparableNullableOfDateTimeOffsetOperationFilterInput
- duration: ComparableTimeSpanOperationFilterInput
- sessionSpeakers: ListFilterInputTypeOfSessionSpeakerFilterInput
- sessionAttendees: ListFilterInputTypeOfSessionAttendeeFilterInput
- track: TrackFilterInput
-}
-
-input SessionSortInput {
- id: SortEnumType
- title: SortEnumType
- abstract: SortEnumType
- startTime: SortEnumType
- endTime: SortEnumType
- duration: SortEnumType
- trackId: SortEnumType
- track: TrackSortInput
-}
-
-input SessionSpeakerFilterInput {
- and: [SessionSpeakerFilterInput!]
- or: [SessionSpeakerFilterInput!]
- sessionId: ComparableInt32OperationFilterInput
- session: SessionFilterInput
- speakerId: ComparableInt32OperationFilterInput
- speaker: SpeakerFilterInput
-}
-
-input SpeakerFilterInput {
- and: [SpeakerFilterInput!]
- or: [SpeakerFilterInput!]
- id: ComparableInt32OperationFilterInput
- name: StringOperationFilterInput
- bio: StringOperationFilterInput
- webSite: StringOperationFilterInput
- sessionSpeakers: ListFilterInputTypeOfSessionSpeakerFilterInput
-}
-
-input StringOperationFilterInput {
- and: [StringOperationFilterInput!]
- or: [StringOperationFilterInput!]
- eq: String
- neq: String
- contains: String
- ncontains: String
- in: [String]
- nin: [String]
- startsWith: String
- nstartsWith: String
- endsWith: String
- nendsWith: String
-}
-
-input TrackFilterInput {
- and: [TrackFilterInput!]
- or: [TrackFilterInput!]
- id: ComparableInt32OperationFilterInput
- name: StringOperationFilterInput
- sessions: ListFilterInputTypeOfSessionFilterInput
-}
-
-input TrackSortInput {
- id: SortEnumType
- name: SortEnumType
-}
-
-enum SortEnumType {
- ASC
- DESC
-}
-
-"The `@defer` directive may be provided for fragment spreads and inline fragments to inform the executor to delay the execution of the current fragment to indicate deprioritization of the current fragment. A query with `@defer` directive will cause the request to potentially return multiple responses, where non-deferred data is delivered in the initial response and data deferred is delivered in a subsequent response. `@include` and `@skip` take precedence over `@defer`."
-directive @defer("If this argument label has a value other than null, it will be passed on to the result of this defer directive. This label is intended to give client applications a way to identify to which fragment a deferred result belongs to." label: String "Deferred when true." if: Boolean) on FRAGMENT_SPREAD | INLINE_FRAGMENT
-
-"The `@specifiedBy` directive is used within the type system definition language to provide a URL for specifying the behavior of custom scalar definitions."
-directive @specifiedBy("The specifiedBy URL points to a human-readable specification. This field will only read a result for scalar types." url: String!) on SCALAR
-
-"The `@stream` directive may be provided for a field of `List` type so that the backend can leverage technology such as asynchronous iterators to provide a partial list in the initial response, and additional list items in subsequent responses. `@include` and `@skip` take precedence over `@stream`."
-directive @stream("If this argument label has a value other than null, it will be passed on to the result of this stream directive. This label is intended to give client applications a way to identify to which fragment a streamed result belongs to." label: String "The initial elements that shall be send down to the consumer." initialCount: Int! "Streamed when true." if: Boolean) on FIELD
-
-"The `DateTime` scalar represents an ISO-8601 compliant date time type."
-scalar DateTime @specifiedBy(url: "https:\/\/www.graphql-scalars.com\/date-time")
-
-"The `TimeSpan` scalar represents an ISO-8601 compliant duration type."
-scalar TimeSpan
\ No newline at end of file
diff --git a/src/HotChocolate/Benchmarks/src/ConferenceApp/Attendees/AttendeeExtensions.cs b/src/HotChocolate/Benchmarks/src/ConferenceApp/Attendees/AttendeeExtensions.cs
deleted file mode 100644
index 243dc224841..00000000000
--- a/src/HotChocolate/Benchmarks/src/ConferenceApp/Attendees/AttendeeExtensions.cs
+++ /dev/null
@@ -1,41 +0,0 @@
-using System.Collections.Generic;
-using System.Linq;
-using System.Threading;
-using System.Threading.Tasks;
-using HotChocolate.ConferencePlanner.Data;
-using HotChocolate.ConferencePlanner.DataLoader;
-using HotChocolate;
-using HotChocolate.Types;
-using HotChocolate.Types.Relay;
-using Microsoft.EntityFrameworkCore;
-
-namespace HotChocolate.ConferencePlanner.Attendees
-{
- [Node]
- [ExtendObjectType(typeof(Attendee))]
- public class AttendeeExtensions
- {
- [BindMember(nameof(Attendee.SessionsAttendees))]
- public async Task> GetSessionsAsync(
- [Parent] Attendee attendee,
- [ScopedService] ApplicationDbContext dbContext,
- SessionByIdDataLoader sessionById,
- CancellationToken cancellationToken)
- {
- var speakerIds = await dbContext.Attendees
- .Where(a => a.Id == attendee.Id)
- .Include(a => a.SessionsAttendees)
- .SelectMany(a => a.SessionsAttendees.Select(t => t.SessionId))
- .ToArrayAsync(cancellationToken);
-
- return await sessionById.LoadAsync(speakerIds, cancellationToken);
- }
-
- [NodeResolver]
- public Task GetAttendeeAsync(
- AttendeeByIdDataLoader attendeeById,
- int id,
- CancellationToken cancellationToken) =>
- attendeeById.LoadAsync(id, cancellationToken);
- }
-}
\ No newline at end of file
diff --git a/src/HotChocolate/Benchmarks/src/ConferenceApp/Attendees/AttendeeMutations.cs b/src/HotChocolate/Benchmarks/src/ConferenceApp/Attendees/AttendeeMutations.cs
deleted file mode 100644
index 643d4c25f8d..00000000000
--- a/src/HotChocolate/Benchmarks/src/ConferenceApp/Attendees/AttendeeMutations.cs
+++ /dev/null
@@ -1,68 +0,0 @@
-using System.Threading;
-using System.Threading.Tasks;
-using Microsoft.EntityFrameworkCore;
-using HotChocolate.ConferencePlanner.Common;
-using HotChocolate.ConferencePlanner.Data;
-using HotChocolate;
-using HotChocolate.Subscriptions;
-using HotChocolate.Types;
-
-namespace HotChocolate.ConferencePlanner.Attendees
-{
- [ExtendObjectType(OperationTypeNames.Mutation)]
- public class AttendeeMutations
- {
- [UseApplicationDbContext]
- public async Task RegisterAttendeeAsync(
- RegisterAttendeeInput input,
- [ScopedService] ApplicationDbContext context,
- CancellationToken cancellationToken)
- {
- var attendee = new Attendee
- {
- FirstName = input.FirstName,
- LastName = input.LastName,
- UserName = input.UserName,
- EmailAddress = input.EmailAddress
- };
-
- context.Attendees.Add(attendee);
-
- await context.SaveChangesAsync(cancellationToken);
-
- return new RegisterAttendeePayload(attendee);
- }
-
- [UseApplicationDbContext]
- public async Task CheckInAttendeeAsync(
- CheckInAttendeeInput input,
- [ScopedService] ApplicationDbContext context,
- [Service] ITopicEventSender eventSender,
- CancellationToken cancellationToken)
- {
- var attendee = await context.Attendees.FirstOrDefaultAsync(
- t => t.Id == input.AttendeeId, cancellationToken);
-
- if (attendee is null)
- {
- return new CheckInAttendeePayload(
- new UserError("Attendee not found.", "ATTENDEE_NOT_FOUND"));
- }
-
- attendee.SessionsAttendees.Add(
- new SessionAttendee
- {
- SessionId = input.SessionId
- });
-
- await context.SaveChangesAsync(cancellationToken);
-
- await eventSender.SendAsync(
- "OnAttendeeCheckedIn_" + input.SessionId,
- input.AttendeeId,
- cancellationToken);
-
- return new CheckInAttendeePayload(attendee, input.SessionId);
- }
- }
-}
\ No newline at end of file
diff --git a/src/HotChocolate/Benchmarks/src/ConferenceApp/Attendees/AttendeePayloadBase.cs b/src/HotChocolate/Benchmarks/src/ConferenceApp/Attendees/AttendeePayloadBase.cs
deleted file mode 100644
index afbbd98b799..00000000000
--- a/src/HotChocolate/Benchmarks/src/ConferenceApp/Attendees/AttendeePayloadBase.cs
+++ /dev/null
@@ -1,20 +0,0 @@
-using System.Collections.Generic;
-using HotChocolate.ConferencePlanner.Common;
-using HotChocolate.ConferencePlanner.Data;
-
-namespace HotChocolate.ConferencePlanner.Attendees
-{
- public class AttendeePayloadBase : Payload
- {
- protected AttendeePayloadBase(Attendee attendee)
- {
- }
-
- protected AttendeePayloadBase(IReadOnlyList errors)
- : base(errors)
- {
- }
-
- public Attendee? Attendee { get; }
- }
-}
\ No newline at end of file
diff --git a/src/HotChocolate/Benchmarks/src/ConferenceApp/Attendees/AttendeeQueries.cs b/src/HotChocolate/Benchmarks/src/ConferenceApp/Attendees/AttendeeQueries.cs
deleted file mode 100644
index 1896e145a41..00000000000
--- a/src/HotChocolate/Benchmarks/src/ConferenceApp/Attendees/AttendeeQueries.cs
+++ /dev/null
@@ -1,34 +0,0 @@
-using System.Collections.Generic;
-using System.Linq;
-using System.Threading;
-using System.Threading.Tasks;
-using HotChocolate.ConferencePlanner.Data;
-using HotChocolate.ConferencePlanner.DataLoader;
-using HotChocolate;
-using HotChocolate.Types;
-using HotChocolate.Types.Relay;
-
-namespace HotChocolate.ConferencePlanner.Attendees
-{
- [ExtendObjectType(OperationTypeNames.Query)]
- public class AttendeeQueries
- {
- [UseApplicationDbContext]
- [UsePaging]
- public IQueryable GetAttendees(
- [ScopedService] ApplicationDbContext context) =>
- context.Attendees;
-
- public Task GetAttendeeByIdAsync(
- [ID(nameof(Attendee))]int id,
- AttendeeByIdDataLoader attendeeById,
- CancellationToken cancellationToken) =>
- attendeeById.LoadAsync(id, cancellationToken);
-
- public async Task> GetAttendeesByIdAsync(
- [ID(nameof(Attendee))]int[] ids,
- AttendeeByIdDataLoader attendeeById,
- CancellationToken cancellationToken) =>
- await attendeeById.LoadAsync(ids, cancellationToken);
- }
-}
\ No newline at end of file
diff --git a/src/HotChocolate/Benchmarks/src/ConferenceApp/Attendees/AttendeeSubscriptions.cs b/src/HotChocolate/Benchmarks/src/ConferenceApp/Attendees/AttendeeSubscriptions.cs
deleted file mode 100644
index e1e671fe720..00000000000
--- a/src/HotChocolate/Benchmarks/src/ConferenceApp/Attendees/AttendeeSubscriptions.cs
+++ /dev/null
@@ -1,31 +0,0 @@
-using System.Threading;
-using System.Threading.Tasks;
-using HotChocolate.ConferencePlanner.Data;
-using HotChocolate.ConferencePlanner.DataLoader;
-using HotChocolate;
-using HotChocolate.Execution;
-using HotChocolate.Subscriptions;
-using HotChocolate.Types;
-using HotChocolate.Types.Relay;
-
-namespace HotChocolate.ConferencePlanner.Attendees
-{
- [ExtendObjectType(OperationTypeNames.Subscription)]
- public class AttendeeSubscriptions
- {
- [Subscribe(With = nameof(SubscribeToOnAttendeeCheckedInAsync))]
- public SessionAttendeeCheckIn OnAttendeeCheckedIn(
- [ID(nameof(Session))] int sessionId,
- [EventMessage] int attendeeId,
- SessionByIdDataLoader sessionById,
- CancellationToken cancellationToken) =>
- new SessionAttendeeCheckIn(attendeeId, sessionId);
-
- public async ValueTask> SubscribeToOnAttendeeCheckedInAsync(
- int sessionId,
- [Service] ITopicEventReceiver eventReceiver,
- CancellationToken cancellationToken) =>
- await eventReceiver.SubscribeAsync(
- "OnAttendeeCheckedIn_" + sessionId, cancellationToken);
- }
-}
diff --git a/src/HotChocolate/Benchmarks/src/ConferenceApp/Attendees/CheckInAttendeeInput.cs b/src/HotChocolate/Benchmarks/src/ConferenceApp/Attendees/CheckInAttendeeInput.cs
deleted file mode 100644
index de7300d98b9..00000000000
--- a/src/HotChocolate/Benchmarks/src/ConferenceApp/Attendees/CheckInAttendeeInput.cs
+++ /dev/null
@@ -1,11 +0,0 @@
-using HotChocolate.ConferencePlanner.Data;
-using HotChocolate.Types.Relay;
-
-namespace HotChocolate.ConferencePlanner.Attendees
-{
- public record CheckInAttendeeInput(
- [ID(nameof(Session))]
- int SessionId,
- [ID(nameof(Attendee))]
- int AttendeeId);
-}
\ No newline at end of file
diff --git a/src/HotChocolate/Benchmarks/src/ConferenceApp/Attendees/CheckInAttendeePayload.cs b/src/HotChocolate/Benchmarks/src/ConferenceApp/Attendees/CheckInAttendeePayload.cs
deleted file mode 100644
index 6edad6e0870..00000000000
--- a/src/HotChocolate/Benchmarks/src/ConferenceApp/Attendees/CheckInAttendeePayload.cs
+++ /dev/null
@@ -1,36 +0,0 @@
-using System.Threading;
-using System.Threading.Tasks;
-using HotChocolate.ConferencePlanner.Common;
-using HotChocolate.ConferencePlanner.Data;
-using HotChocolate.ConferencePlanner.DataLoader;
-
-namespace HotChocolate.ConferencePlanner.Attendees
-{
- public class CheckInAttendeePayload : AttendeePayloadBase
- {
- private int? _sessionId;
-
- public CheckInAttendeePayload(Attendee attendee, int sessionId)
- : base(attendee)
- {
- _sessionId = sessionId;
- }
-
- public CheckInAttendeePayload(UserError error)
- : base(new[] { error })
- {
- }
-
- public async Task GetSessionAsync(
- SessionByIdDataLoader sessionById,
- CancellationToken cancellationToken)
- {
- if (_sessionId.HasValue)
- {
- return await sessionById.LoadAsync(_sessionId.Value, cancellationToken);
- }
-
- return null;
- }
- }
-}
\ No newline at end of file
diff --git a/src/HotChocolate/Benchmarks/src/ConferenceApp/Attendees/RegisterAttendeeInput.cs b/src/HotChocolate/Benchmarks/src/ConferenceApp/Attendees/RegisterAttendeeInput.cs
deleted file mode 100644
index f4661c11938..00000000000
--- a/src/HotChocolate/Benchmarks/src/ConferenceApp/Attendees/RegisterAttendeeInput.cs
+++ /dev/null
@@ -1,8 +0,0 @@
-namespace HotChocolate.ConferencePlanner.Attendees
-{
- public record RegisterAttendeeInput(
- string FirstName,
- string LastName,
- string UserName,
- string EmailAddress);
-}
\ No newline at end of file
diff --git a/src/HotChocolate/Benchmarks/src/ConferenceApp/Attendees/RegisterAttendeePayload.cs b/src/HotChocolate/Benchmarks/src/ConferenceApp/Attendees/RegisterAttendeePayload.cs
deleted file mode 100644
index a2181e130c7..00000000000
--- a/src/HotChocolate/Benchmarks/src/ConferenceApp/Attendees/RegisterAttendeePayload.cs
+++ /dev/null
@@ -1,18 +0,0 @@
-using HotChocolate.ConferencePlanner.Common;
-using HotChocolate.ConferencePlanner.Data;
-
-namespace HotChocolate.ConferencePlanner.Attendees
-{
- public class RegisterAttendeePayload : AttendeePayloadBase
- {
- public RegisterAttendeePayload(Attendee attendee)
- : base(attendee)
- {
- }
-
- public RegisterAttendeePayload(UserError error)
- : base(new[] { error })
- {
- }
- }
-}
\ No newline at end of file
diff --git a/src/HotChocolate/Benchmarks/src/ConferenceApp/Attendees/SessionAttendeeCheckIn.cs b/src/HotChocolate/Benchmarks/src/ConferenceApp/Attendees/SessionAttendeeCheckIn.cs
deleted file mode 100644
index f5a0aa17144..00000000000
--- a/src/HotChocolate/Benchmarks/src/ConferenceApp/Attendees/SessionAttendeeCheckIn.cs
+++ /dev/null
@@ -1,45 +0,0 @@
-using System.Linq;
-using System.Threading;
-using System.Threading.Tasks;
-using Microsoft.EntityFrameworkCore;
-using HotChocolate.ConferencePlanner.Data;
-using HotChocolate.ConferencePlanner.DataLoader;
-using HotChocolate;
-using HotChocolate.Types.Relay;
-
-namespace HotChocolate.ConferencePlanner.Attendees
-{
- public class SessionAttendeeCheckIn
- {
- public SessionAttendeeCheckIn(int attendeeId, int sessionId)
- {
- AttendeeId = attendeeId;
- SessionId = sessionId;
- }
-
- [ID(nameof(Attendee))]
- public int AttendeeId { get; }
-
- [ID(nameof(Session))]
- public int SessionId { get; }
-
- [UseApplicationDbContext]
- public async Task CheckInCountAsync(
- [ScopedService] ApplicationDbContext context,
- CancellationToken cancellationToken) =>
- await context.Sessions
- .Where(session => session.Id == SessionId)
- .SelectMany(session => session.SessionAttendees)
- .CountAsync(cancellationToken);
-
- public Task GetAttendeeAsync(
- AttendeeByIdDataLoader attendeeById,
- CancellationToken cancellationToken) =>
- attendeeById.LoadAsync(AttendeeId, cancellationToken);
-
- public Task GetSessionAsync(
- SessionByIdDataLoader sessionById,
- CancellationToken cancellationToken) =>
- sessionById.LoadAsync(AttendeeId, cancellationToken);
- }
-}
\ No newline at end of file
diff --git a/src/HotChocolate/Benchmarks/src/ConferenceApp/BenchmarkBase.cs b/src/HotChocolate/Benchmarks/src/ConferenceApp/BenchmarkBase.cs
deleted file mode 100644
index 79fee1ba0a6..00000000000
--- a/src/HotChocolate/Benchmarks/src/ConferenceApp/BenchmarkBase.cs
+++ /dev/null
@@ -1,435 +0,0 @@
-using System;
-using System.Collections.Concurrent;
-using System.Collections.Generic;
-using System.Diagnostics;
-using System.Linq;
-using System.Net;
-using System.Net.Http;
-using System.Reflection;
-using System.Text;
-using System.Text.Json;
-using System.Threading;
-using System.Threading.Tasks;
-using Microsoft.AspNetCore.Builder;
-using Microsoft.AspNetCore.Hosting;
-using Microsoft.AspNetCore.TestHost;
-using Microsoft.EntityFrameworkCore;
-using Microsoft.Extensions.Configuration;
-using Microsoft.Extensions.DependencyInjection;
-using BenchmarkDotNet.Attributes;
-using GreenDonut;
-using HotChocolate.ConferencePlanner.Attendees;
-using HotChocolate.ConferencePlanner.Data;
-using HotChocolate.ConferencePlanner.DataLoader;
-using HotChocolate.ConferencePlanner.Imports;
-using HotChocolate.ConferencePlanner.Sessions;
-using HotChocolate.ConferencePlanner.Speakers;
-using HotChocolate.ConferencePlanner.Tracks;
-using HotChocolate.Execution;
-using HotChocolate.Execution.Configuration;
-using HotChocolate.Execution.Instrumentation;
-using HotChocolate.Execution.Processing;
-using HotChocolate.Language;
-using HotChocolate.Resolvers;
-using HotChocolate.Types;
-using Newtonsoft.Json;
-
-namespace HotChocolate.ConferencePlanner
-{
- public class BenchmarkBase
- {
- private static readonly MD5DocumentHashProvider _md5 = new();
- private static readonly JsonSerializerOptions _options =
- new(JsonSerializerDefaults.Web)
- {
- PropertyNamingPolicy = JsonNamingPolicy.CamelCase
- };
- private readonly Uri _url;
-
- public BenchmarkBase()
- {
- var servicesCollection = new ServiceCollection();
- ConfigureServices(servicesCollection);
- Services = servicesCollection.BuildServiceProvider();
- ExecutorResolver = Services.GetRequiredService();
-
- TestServerFactory.CreateServer(
- services =>
- {
- services.AddGraphQLServer();
- ConfigureServices(services);
- },
- out var port);
-
- _url = new Uri($"http://localhost:{port}/graphql");
- TestClient = new HttpClient();
- }
-
- public IServiceProvider Services { get; }
-
- public IRequestExecutorResolver ExecutorResolver { get; }
-
- public HttpClient TestClient { get; }
-
- [GlobalSetup]
- public async Task GlobalSetup()
- {
- foreach (var method in GetType().GetMethods()
- .Where(t => t.IsDefined(typeof(BenchmarkAttribute))))
- {
- Console.WriteLine("Initialize: " + method.Name);
- if (method.Invoke(this, Array.Empty