collectVariableInQueryFieldList function

IList<QueryInputVariable> collectVariableInQueryFieldList(
  1. GraphQLObjectType objectType
)

Implementation

IList<QueryInputVariable> collectVariableInQueryFieldList(
  GraphQLObjectType objectType,
) {
  return IList(
    objectType.toFieldList().expand(
          (field) => _collectVariableInQueryField(field),
        ),
  );
}