You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Create lib/mix/tasks/graphql.gen.schema.ex file with the following contents:
defmoduleMix.Tasks.Graphql.Gen.Schemado@moduledoc""" Updates GraphQL schema.json file. """useMix.Task@docfalsedefrun(_args)doGraphQL.Relay.generate_schema_json!# Update js entrypoint to force brunch to recompile# and load the new schema.# Without this line updating the schema has no effect.File.touch!("web/static/js/app.js")endend