with type filtering

This commit is contained in:
2023-01-28 20:21:19 +01:00
parent 3eb891422f
commit 2eb5d98c8a
8 changed files with 4763 additions and 4 deletions

View File

@@ -8,7 +8,7 @@ pub fn get_schema() -> eyre::Result<IntrospectionResponse> {
//TODO: Implement context for proc
let (conn, _proc) = Engine::new().start(&cfg)?;
let session = Session::new();
let req_builder = session.start(cfg, &conn)?;
let req_builder = session.start(&cfg, &conn)?;
let schema = session.schema(req_builder)?;
Ok(schema)