Skip to main content

MembershipContactStoreSurvey

Represents a survey configured for a membership contact store.

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

Fields

MembershipContactStoreSurvey.createdAt ● DateTime! non-null scalar

The date and time the record was created.

MembershipContactStoreSurvey.createdBy ● String scalar

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

MembershipContactStoreSurvey.id ● ID! non-null scalar

The unique identifier of the survey.

MembershipContactStoreSurvey.lastModifiedAt ● DateTime! non-null scalar

The date and time the record was last modified.

MembershipContactStoreSurvey.lastModifiedBy ● String scalar

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

MembershipContactStoreSurvey.name ● String! non-null scalar

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

MembershipContactStoreSurvey.responsesPaged ● MembershipContactStoreSurveyResponsePage! non-null object

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

Returns a MembershipContactStoreSurveyResponsePage 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.

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

MembershipContactStoreSurvey.type ● SurveyType! non-null enum

The type of the survey.

Member Of

MembershipContactStore object ● MembershipContactStoreSurveyPage object ● MembershipContactStoreSurveyResponse object