OBJECT
ContactQuery
Node for contact queries
link GraphQL Schema definition
- type ContactQuery {
- # Requires access to resource GRAPHQL_CONTACT
- #
- # Arguments
- # contactNid: [Not documented]
- (: ContactNid): Contact!
- # Contact list created, modified or deleted after selected date (max one week
- # until now).
- # Requires access to resource GRAPHQL_CONTACT
- #
- # Arguments
- # dateTime: [Not documented]
- (: DateTime!): ContactsChanges!
- # Get all users contacts assigned to operator.
- # Requires access to resource GRAPHQL_CONTACT
- : [Contact!]!
- # Requires access to resource GRAPHQL_CONTACT
- #
- # Arguments
- # companyNid: [Not documented]
- (: CompanyNid): [Contact!]!
- # Requires access to resource GRAPHQL_LOGIN
- #
- # Arguments
- # passportNid:
- (: PassportNidScalar!): PassportOutput!
- # Arguments
- # externalId:
- (
- : PassportExternalIdScalar!
- ): NonNullPassportOutputValueOrErrorList!
- # Arguments
- # externalId:
- (: VisaExternalIdScalar!): NonNullPassportVisaValueOrErrorList!
- # Arguments
- # externalId:
- (
- : NationalIdExternalIdScalar!
- ): NonNullNationalIdValueOrErrorList!
- # Arguments
- # nationalIdNid:
- (: NationalIdNid!): NationalId!
- # Requires access to resource GRAPHQL_CONTACT
- #
- # Arguments
- # wildcard: Minimum length of wildcard: 1
- # limit: [Not documented]
- (: String!, : Int): [Contact!]!
- # Requires access to resource GRAPHQL_CONTACT
- #
- # Arguments
- # contactsNids: [Not documented]
- (: [ContactNid!]!): [Contact!]!
- # Requires access to resource GRAPHQL_CONTACT
- #
- # Arguments
- # filter: [Not documented]
- (: ContactSearchFilterInput!): [Contact!]!
- # Get contact list for page number.
- # Requires access to resource GRAPHQL_CONTACT
- #
- # Arguments
- # page:
- # Possible violation list: TOO_LOW_ERROR
- (: Int!): ContactListByPageOutput!
- : [ContactCategory!]!
- # Get all available labels that can be used related to contacts.
- # Requires access to resource GRAPHQL_CONTACT
- : [Label!]!
- # Get flights where contact is a passenger.
- # Requires access to resource PHONEBOOK_FLIGHTS_SEE
- #
- # Arguments
- # contactNid:
- # offset:
- # limit:
- (
- : ContactNid!,
- : Int!,
- : Int!
- ): [ContactFlight!]!
- # Get invoices where contact set as requester
- #
- # Arguments
- # contactNid:
- # offset:
- # limit:
- (: ContactNid!, : Int!, : Int!): [ContactInvoice!]!
- # Get flights where contact is a buyer.
- # Requires access to resource PHONEBOOK_FLIGHTS_SEE
- #
- # Arguments
- # contactNid:
- # offset:
- # limit:
- (
- : ContactNid!,
- : Int!,
- : Int!
- ): [ContactFlight!]!
- # Arguments
- # contactData:
- (: ValidateContactDataInput!): ValidateContactDataType!
- # Arguments
- # companyData:
- (
- : FindCompanyDuplicatesInput!
- ): [FindCompanyDuplicatesResponse!]!
- # Arguments
- # contactNid:
- (
- : ContactNid!
- ): [FindCompanyDuplicatesResponse!]!
- # Arguments
- # countryOrSchengen:
- (: CountryCodeOrSchengen!): [PassportVisaType!]!
- # Get contact basic history.
- # Requires access to resource GRAPHQL_CONTACT
- #
- # Arguments
- # contactNid:
- (: ContactNid!): [ContactBasicHistorySnapshot!]!
- # Get contact details history.
- # Requires access to resource GRAPHQL_CONTACT
- #
- # Arguments
- # contactNid:
- (: ContactNid!): [ContactDetailsHistorySnapshot!]!
- # Get contact documents history.
- # Requires access to resource PHONEBOOK_DOCUMENTS_SEE
- #
- # Arguments
- # contactNid:
- (
- : ContactNid!
- ): [ContactDocumentsHistorySnapshot!]!
- : [ContactPredefinedPhoneNameEnum!]!
- : [ContactPredefinedEmailName!]!
- # Requires access to resource GRAPHQL_CONTACT
- #
- # Arguments
- # contactNid:
- (: ContactNid!): [Contract!]!
- # Requires access to resource GRAPHQL_CONTACT
- : AccountQuerySection!
- # Requires access to resource GRAPHQL_CONTACT
- #
- # Arguments
- # contactExternalId:
- (: ContactExternalId!): Contact!
- # Requires access to resource GRAPHQL_CONTACT
- #
- # Arguments
- # contactExternalIds:
- (
- : [ContactExternalId!]
- ): [Contact!]!
- # Requires access to resource GRAPHQL_CONTACT
- #
- # Arguments
- # loginNidList:
- (
- : [ApiLoginNidScalar!]!
- ): [Contact!]!
- }