Closed
Description
I saw that support for look ahead functionality was added in #136, but I'm a bit confused as to how to use it since it's not at all documented. I see they are exported here, but attempting to use them throws a compiler error:
error[E0432]: unresolved import `juniper::LookAheadArgument`
--> src/schema.rs:4:5
|
4 | use juniper::LookAheadArgument;
| ^^^^^^^^^^^^^^^^^^^^^^^^^^ no `LookAheadArgument` in the root
warning: unused import: `juniper::LookAheadArgument`
--> src/schema.rs:4:5
|
4 | use juniper::LookAheadArgument;
| ^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= note: #[warn(unused_imports)] on by default
Any help here would be greatly appreciated, thanks!