Field to Input

📣 Note: This feature is unlocked by the Field to Input extension.

Obtain the value of a field, manipulate it, and input it into another field, all within the same query.

query {
posts {
excerpt

# Referencing previous field with name "excerpt"
isEmptyExcerpt: _isEmpty(value: $__excerpt)

# Referencing previous field with alias "isEmptyExcerpt"
isNotEmptyExcerpt: _not(value: $__isEmptyExcerpt)
}
}