Matthew

Results 6 issues of Matthew

Is there a config that allows a single caption per image generated? Right now it carries over the previous caption from the image before- And while I understand that works...

question

Any one know of a Postgresql generator available? Been use the mongo based one-graphql-compose-mongoose. ``` https://graphql-compose.github.io/docs/plugins/plugin-mongoose.html ``` But will need to start a Postgres based project, and am spoiled from...

In trying to use the new ApolloFederation capabilities- It seems like it needs access to the typeDefs and Resolvers object created by the SchemaComposer from graphql-compose. From here- An example...

I have a schema that looks like - ``` let jobSchema = mongoose.Schema({ jobuuid: { type: String }, type: { type: String }, jobDetails: { type: Types.Mixed }, jobOptions: {...

Im trying to extend my schema and add some directives to use Apollo Federation 2.0- [Doc Link](https://www.apollographql.com/docs/federation/federated-types/federated-directives) So I am using- ``` SchemaComposer.addTypeDefs(` extend schema @link(url: "https://specs.apollo.dev/federation/v2.0", import: ["@key", "@shareable"])...

Im trying to get access to the Server object that hangs off the ``` (app: ElysiaApp)``` when creating an autoroute. But- It doesnt seem to be set. And returns null....