Error in "Loading schema for Unnamed Project" while integrating apollo ios client

4k Views Asked by At

I am trying to integrate apollo iOS client and after doing all steps I am getting the error while running build phase script. so there are three errors in total. one is

  1. Error initializing Apollo GraphQL project "Unnamed Project".
  2. Error: Error in "Loading schema for Unnamed Project".
  3. TypeError: Cannot read property 'reduce' of undefined at Object.error.

Note this accuring inside node_modules/@oclif.

Error initializing Apollo GraphQL project "Unnamed Project": Error: Error in "Loading schema for Unnamed Project": TypeError: Cannot read property 'reduce' of undefined

2

There are 2 best solutions below

2
On

first you should add this command npx apollo service:download --endpoint= schema.json

then run this command npx apollo codegen:generate --localSchemaFile=graphql-schema.json --target=typescript --tagName=gql

1
On

I think you need to check schema.json file inside your project, i have also faced same issue and same error but solved by adding schema.json file inside project directory

You can download it by below command

apollo schema:download --endpoint=http://localhost:8080/graphql schema.json