847d09fb5e
- support `isRepeatable` field on directives - support `__Schema.description`, `__Type.specifiedByURL` and `__Directive.isRepeatable` fields in introspection
7 lines
156 B
Rust
7 lines
156 B
Rust
use juniper::GraphQLScalarValue;
|
|
|
|
#[derive(GraphQLScalarValue)]
|
|
#[graphql(specified_by_url = "not an url")]
|
|
struct ScalarSpecifiedByUrl(i64);
|
|
|
|
fn main() {}
|