locally the command
flutter pub run build_runner build --delete-conflicting-outputs
works fine, but in github actions w/ melos throws
Unhandled exception:
Bad state: Unable to generate package graph, no…
When using Cornucopia to generate Rust structs from a managed Postgres database I get the following error:
this query contains an unsupported type (name: identities, type: hstore)
We have a few rows like this in our database and it would be great…
I am trying to run this repository: https://github.com/facebookresearch/CodeGen
I tried running it on both Windows and Ubuntu, but I am facing same error in both when I run this command present in install_env.sh.
pip install -v…
hey guys I had recently migrate to nextjs 13 and I'm trying to use codegen for graphql requests in serverside.
Is anyone have an idea how to use codegen in next js 13 serverside or is there anything like codegen for my case?
When I am trying to build my React Native (0.71.8 on New Arch) App with npx react-native run-android or when I am generating code with codegen from my android folder with ./gradlew generateCodegenArtifactsFromSchema --rerun-tasks
I encounter this…
I am working on graphql-codegen
I have this graphql query
export const QUERY=gql`
query fetchView($workId: String!, $dataType: String, $lockedDTO: LockedDTOInput!)
{ fetchView (workId: $workId) {
id
}
}`;
any my resulting query is
export…
I have a GraphQL resolver and schema that look like this:
import { Resolvers } from "../../generated/schema";
export const resolvers: Resolvers = {
Query: {
getS: async (_parent: unknown, { id }: { id: string }): Promise>…
So I have this fragment
fragment fullOption on Option {
selectId
type
options {
... on NumberArray {
values
}
... on CustomNumberArray {
id
name
values
}
}
}
All of the Option, NumberArray and…
I am using Sympy for code generation.
I would like to figure out the boundaries of what Sympy can do with respect to code generation for dynamically sized arrays.
Let's say I would like to generate a simple element-wise multiplication…
I have the following interface
public interface DatabaseClient {
void save(Entity entity, Consumer callback);
void load(long id, Consumer callback);
}
and an implementation of this interface called DatabaseClientImpl.
I used…
I was practicing with playwright, I need to test a login page, using powershell I installed playwright, I'm using dotnet 7, visual studio 2022, I used codegen and generated code by recording in the Inspector. I copied the code and pasted in the code…
I have setup Graphql codegen with next.js/react and ran the codegen file which generated code for typescript types however when I treed running my next.js application it gave
name `MySomeDocument` is defined multiple times
error.
this is my codegen…
Section 6.6.3 of the dragon book (Compilers: Principles, Techniques, and Tools 2nd Edition) describes how to translate the flow-of-control statements like if/if-else/while into intermediate code.
For example,
The translation of if (B) S1 consists…