Skip to content

appliedTags

Fetch paginated applied tags collection

Arguments

tag_id · ID · The tag ID
updated_after · ISO8601DateTime · When passed in, only applied tags updated after the specified datetime are returned.
updated_before · ISO8601DateTime · When passed in, only applied tags 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

AppliedTagPaginationConnection

Example

query appliedTags(
$id: ID
$tag_id: ID
$order_by: AppliedTagOrderKeys
$updated_after: ISO8601DateTime
$updated_before: ISO8601DateTime
$after: String
$before: String
$first: Int
$last: Int
) {
appliedTags(
id: $id
tag_id: $tag_id
order_by: $order_by
updated_after: $updated_after
updated_before: $updated_before
after: $after
before: $before
first: $first
last: $last
) {
edges
nodes
page_info
total_count
}
}