wundergraph icon indicating copy to clipboard operation
wundergraph copied to clipboard

Results 30 wundergraph issues
Sort by recently updated
recently updated
newest added

> `net2` crate has been deprecated; use `socket2` instead | Details | | | ------------------- | ---------------------------------------------- | | Status | unmaintained | | Package | `net2` | | Version...

> `tempdir` crate has been deprecated; use `tempfile` instead | Details | | | ------------------- | ---------------------------------------------- | | Status | unmaintained | | Package | `tempdir` | | Version...

> `net2` crate has been deprecated; use `socket2` instead | Details | | | ------------------- | ---------------------------------------------- | | Status | unmaintained | | Package | `net2` | | Version...

I've been playing around with wundergraph for a bit and I'm really liking it, but I'm a bit stuck on devising a method of operation authorization. I'd ideally like to...

How can I extend the schema manually when using wundergraph? Example from the [juniper book](https://graphql-rust.github.io/juniper/current/schema/schemas_and_mutations.html#the-query-root): ```rust #[juniper::object] impl Root { fn personFromCurrentUser() -> FieldResult { // Look up logged in...

According to #8 and the commit [here](https://github.com/weiznich/wundergraph/commit/73259534c5c14cf669127fba6b7e9e5008d81482) it should be possible to rename the graphql entity using ``#[wundergraph(graphql_name = "MyNewName")]`` however, it does not seem to work for me. I...

As discussed in Gitter, I opened up this issue. However, I couldn't manage to create a reproducible example. I uploaded my code to https://github.com/SirWindfield/wundergraph_mvp. Compiling with the `wg` feature uses...

Is there any plan to support GraphQL subscriptions?

Example -> https://github.com/Farkal/test-wundergraph

Example: Heros Query: ```graphql query speciess($filter: SpeciesFilter){ Speciess(filter: $filter){ id name heros { id heroName } } } ``` Variables: None Expected result: the same as without mentioning the filter...