Giter VIP home page Giter VIP logo

Comments (3)

schoenbergeringo avatar schoenbergeringo commented on May 23, 2024 1

thank you @jerelmiller that helped

from apollo-client.

jerelmiller avatar jerelmiller commented on May 23, 2024

Hey @schoenbergeringo 👋

Just an FYI, our community forums or Discord server are a great place for these types of questions 🙂.


Unfortunately I haven't been around long enough to know the original motivation behind the decision to make none the default 🙁. I can at least say that the most common way users treat errors in queries is to ignore any partial results and instead just show some type of error indication. This being the most common form of error handling, the "none" default fits this well. Again, I have no idea if this is the reason its the default or not and unfortunately its a breaking change to switch to anything else at this point.

Is there a central place to set this errorPolicy to what i want ?

Yes! You can set defaultOptions in the constructor that will be used as the default for all queries/mutations in your app. Assuming you're using the query hooks (useQuery, useLazyQuery, etc), you'll want to set the error policy on the watchQuery options:

new ApolloClient({
  defaultOptions: {
    watchQuery: { 
      errorPolicy: 'all'
    }
  }
});

Using defaultOptions still allows you to override the errorPolicy per-query if you need something more specific:

useQuery(query, {
  // will be used instead of the default 'all'
  errorPolicy: 'none'
});

from apollo-client.

github-actions avatar github-actions commented on May 23, 2024

Do you have any feedback for the maintainers? Please tell us by taking a one-minute survey. Your responses will help us understand Apollo Client usage and allow us to serve you better.

from apollo-client.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.