Skip to content

formAnswerGroups

All filled forms for a given set of arguments

Arguments

ids · [ID] · Accepts an array of FormAnswerGroup ids
updated_after · ISO8601DateTime · When passed in, only objects updated after the specified datetime are returned.
updated_before · ISO8601DateTime · When passed in, only objects updated before the specified datetime are returned.
after · String · Returns the elements in the list that come after the specified cursor.
before · String · Returns the elements in the list that come before the specified cursor.
first · Int · Returns the first _n_ elements from the list.
last · Int · Returns the last _n_ elements from the list.

Returns

FormAnswerGroupPaginationConnection

Example

query formAnswerGroups(
$custom_module_form_id: ID
$date: ISO8601DateTime
$filler_id: ID
$form_answer_group_id: ID
$ids: [ID]
$include_group_notes: Boolean
$name: String
$user_id: ID
$locked_status: Boolean
$signed_status: Boolean
$updated_after: ISO8601DateTime
$updated_before: ISO8601DateTime
$order_by: FormAnswerGroupOrderKeys
$after: String
$before: String
$first: Int
$last: Int
) {
formAnswerGroups(
custom_module_form_id: $custom_module_form_id
date: $date
filler_id: $filler_id
form_answer_group_id: $form_answer_group_id
ids: $ids
include_group_notes: $include_group_notes
name: $name
user_id: $user_id
locked_status: $locked_status
signed_status: $signed_status
updated_after: $updated_after
updated_before: $updated_before
order_by: $order_by
after: $after
before: $before
first: $first
last: $last
) {
edges
nodes
page_info
total_count
}
}