This repository has been archived by the owner on Jun 29, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
6 changed files
with
333 additions
and
49 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,99 @@ | ||
query IntrospectionQuery { | ||
__schema { | ||
queryType { | ||
name | ||
} | ||
mutationType { | ||
name | ||
} | ||
subscriptionType { | ||
name | ||
} | ||
types { | ||
...FullType | ||
} | ||
directives { | ||
name | ||
description | ||
locations | ||
args { | ||
...InputValue | ||
} | ||
} | ||
} | ||
} | ||
|
||
fragment FullType on __Type { | ||
kind | ||
name | ||
description | ||
fields(includeDeprecated: true) { | ||
name | ||
description | ||
args { | ||
...InputValue | ||
} | ||
type { | ||
...TypeRef | ||
} | ||
isDeprecated | ||
deprecationReason | ||
} | ||
inputFields { | ||
...InputValue | ||
} | ||
interfaces { | ||
...TypeRef | ||
} | ||
enumValues(includeDeprecated: true) { | ||
name | ||
description | ||
isDeprecated | ||
deprecationReason | ||
} | ||
possibleTypes { | ||
...TypeRef | ||
} | ||
} | ||
|
||
fragment InputValue on __InputValue { | ||
name | ||
description | ||
type { | ||
...TypeRef | ||
} | ||
defaultValue | ||
} | ||
|
||
fragment TypeRef on __Type { | ||
kind | ||
name | ||
ofType { | ||
kind | ||
name | ||
ofType { | ||
kind | ||
name | ||
ofType { | ||
kind | ||
name | ||
ofType { | ||
kind | ||
name | ||
ofType { | ||
kind | ||
name | ||
ofType { | ||
kind | ||
name | ||
ofType { | ||
kind | ||
name | ||
} | ||
} | ||
} | ||
} | ||
} | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,101 @@ | ||
schema { | ||
query: Query | ||
} | ||
|
||
type Query { | ||
__schema: __Schema | ||
} | ||
|
||
type __Schema { | ||
types: [__Type!]! | ||
queryType: __Type! | ||
mutationType: __Type | ||
subscriptionType: __Type | ||
directives: [__Directive!]! | ||
} | ||
|
||
type __Type { | ||
kind: __TypeKind! | ||
name: String | ||
description: String | ||
|
||
# OBJECT and INTERFACE only | ||
fields(includeDeprecated: Boolean = false): [__Field!] | ||
|
||
# OBJECT only | ||
interfaces: [__Type!] | ||
|
||
# INTERFACE and UNION only | ||
possibleTypes: [__Type!] | ||
|
||
# ENUM only | ||
enumValues(includeDeprecated: Boolean = false): [__EnumValue!] | ||
|
||
# INPUT_OBJECT only | ||
inputFields: [__InputValue!] | ||
|
||
# NON_NULL and LIST only | ||
ofType: __Type | ||
} | ||
|
||
type __Field { | ||
name: String! | ||
description: String | ||
args: [__InputValue!]! | ||
type: __Type! | ||
isDeprecated: Boolean! | ||
deprecationReason: String | ||
} | ||
|
||
type __InputValue { | ||
name: String! | ||
description: String | ||
type: __Type! | ||
defaultValue: String | ||
} | ||
|
||
type __EnumValue { | ||
name: String! | ||
description: String | ||
isDeprecated: Boolean! | ||
deprecationReason: String | ||
} | ||
|
||
enum __TypeKind { | ||
SCALAR | ||
OBJECT | ||
INTERFACE | ||
UNION | ||
ENUM | ||
INPUT_OBJECT | ||
LIST | ||
NON_NULL | ||
} | ||
|
||
type __Directive { | ||
name: String! | ||
description: String | ||
locations: [__DirectiveLocation!]! | ||
args: [__InputValue!]! | ||
} | ||
|
||
enum __DirectiveLocation { | ||
QUERY | ||
MUTATION | ||
SUBSCRIPTION | ||
FIELD | ||
FRAGMENT_DEFINITION | ||
FRAGMENT_SPREAD | ||
INLINE_FRAGMENT | ||
SCHEMA | ||
SCALAR | ||
OBJECT | ||
FIELD_DEFINITION | ||
ARGUMENT_DEFINITION | ||
INTERFACE | ||
UNION | ||
ENUM | ||
ENUM_VALUE | ||
INPUT_OBJECT | ||
INPUT_FIELD_DEFINITION | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
use core::time; | ||
use std::thread::sleep; | ||
|
||
use graphql_introspection_query::introspection_response::IntrospectionResponse; | ||
|
||
use crate::{config::Config, engine::Engine, session::Session}; | ||
|
||
pub fn get_schema() -> eyre::Result<IntrospectionResponse> { | ||
//TODO: Implement cotext for proc | ||
let cfg = Config::new(None, None, None, None); | ||
let (conn, proc) = Engine::new().start(&cfg)?; | ||
let session = Session::new(); | ||
let req_builder = session.start(cfg, &conn)?; | ||
let schema = session.schema(req_builder)?; | ||
|
||
Ok(schema) | ||
} | ||
|
||
#[cfg(test)] | ||
mod tests { | ||
use super::get_schema; | ||
|
||
#[test] | ||
fn can_get_schema() { | ||
let _ = get_schema().unwrap(); | ||
} | ||
} |
Oops, something went wrong.