Skip to main content

CeContactStoreSurvey

Represents a survey configured for a continuing education contact store.

type CeContactStoreSurvey {
createdAt: DateTime!
createdBy: String
id: ID!
lastModifiedAt: DateTime!
lastModifiedBy: String
name: String!
responsesPaged(
input: SurveyResponseSearchFilterInput! = [object Object]
limit: PaginationLimit! = 100
offset: NonNegativeInt! = 0
): CeContactStoreSurveyResponsePage!
type: SurveyType!
}

Fields

CeContactStoreSurvey.createdAt ● DateTime! non-null scalar

The date and time the record was created.

CeContactStoreSurvey.createdBy ● String scalar

UTF-8 string value that represents the username of the user who created the record. Optional.

CeContactStoreSurvey.id ● ID! non-null scalar

The unique identifier of the survey.

CeContactStoreSurvey.lastModifiedAt ● DateTime! non-null scalar

The date and time the record was last modified.

CeContactStoreSurvey.lastModifiedBy ● String scalar

UTF-8 string value that represents the username of the user who last modified the record. Optional.

CeContactStoreSurvey.name ● String! non-null scalar

A UTF-8 string that represents the name of the survey.

CeContactStoreSurvey.responsesPaged ● CeContactStoreSurveyResponsePage! non-null object

The responses submitted against this survey, returned together with pagination metadata.

Returns a CeContactStoreSurveyResponsePage wrapper exposing the matched items alongside pageInfo (total count, has-next-page, has-previous-page).

See SurveyResponseSearchFilterInput for details on how the optional input argument can be used to filter responses.

Optionally, the offset and limit arguments can be used to page through multiple items:

  • offset must be a non-negative integer (defaults to 0).
  • limit must be a positive integer from 1 to 2000 (defaults to 100).

Throws an error with code: BAD_USER_INPUT if all fields in the input argument have a combined total number of values exceeding 1,000.

CeContactStoreSurvey.responsesPaged.input ● SurveyResponseSearchFilterInput! non-null input
CeContactStoreSurvey.responsesPaged.limit ● PaginationLimit! non-null scalar
CeContactStoreSurvey.responsesPaged.offset ● NonNegativeInt! non-null scalar

CeContactStoreSurvey.type ● SurveyType! non-null enum

The type of the survey.

Member Of

CeContactStore object ● CeContactStoreSurveyPage object ● CeContactStoreSurveyResponse object