pub const QUERY: &str = "query ComponentsConnectionQuery($after: String, $before: String, $first: Int, $last: Int) {\n components(after: $after, before: $before, first: $first, last: $last) {\n edges {\n cursor\n node {\n __typename\n componentId\n }\n }\n pageInfo {\n hasNextPage\n hasPreviousPage\n startCursor\n endCursor\n }\n totalCount\n }\n}\n";