--- source: cynic-querygen/tests/github-tests.rs expression: "document_to_fragment_structs(query, schema,\n &QueryGenOptions::default()).expect(\"QueryGen Failed\")" --- #[derive(cynic::QueryFragment, Debug)] #[cynic(graphql_type = "Query")] pub struct FieldOnInterface { #[arguments(owner: "obmarg", name: "cynic")] pub repository: Option, } #[derive(cynic::QueryFragment, Debug)] pub struct Repository { #[arguments(first: 1)] pub issues: IssueConnection, } #[derive(cynic::QueryFragment, Debug)] pub struct IssueConnection { pub edges: Option>>, } #[derive(cynic::QueryFragment, Debug)] pub struct IssueEdge { pub node: Option, } #[derive(cynic::QueryFragment, Debug)] pub struct Issue { pub author: Option, } #[derive(cynic::QueryFragment, Debug)] pub struct Actor { pub login: String, }