Giter Site home page Giter Site logo

Comments (5)

martijnwalraven avatar martijnwalraven commented on July 4, 2024 1

(Responding here instead of on the PR for context.)

Thanks for bringing this up! I agree adding locations to GraphQLError makes sense.

I also see why custom error keys would be useful, but forcing users to specify a custom error type seems like a very heavyweight solution. Swift doesn't support default type arguments, so your PR would force you to always fully specify the type parameters of GraphQLResult everywhere, e.g. for every fetch.

Instead of custom error types, an alternative might be to modify GraphQLError to allow storing additional keys as a dictionary. By default, it would make them available untyped through a subscript. And then you could add typed accessors in your own app as an extension on GraphQLError:

extension GraphQLError {
  var userMessage: String? {
    return self["userMessage"] as? String
  }
}

How does that sound?

from apollo-ios.

martijnwalraven avatar martijnwalraven commented on July 4, 2024 1

I implemented the solution we discussed as part of f77286f.

from apollo-ios.

sibljon avatar sibljon commented on July 4, 2024

Good call on the light-weight solution you've proposed -- it seems like it'll be better for most consumers of this library. I hadn't noticed the inconvenience since I only use fetch and perform once in a wrapper, but you're right that it's there for those who don't wrap.

I'll go ahead and close #40. Implementing this is not something I've got steam for right now, but perhaps in the future.

from apollo-ios.

benrom avatar benrom commented on July 4, 2024

@martijnwalraven I'm implementing the GraphQLError extension you suggested above, xcode complains on the self[ bit with:

Type GraphQLErrorhas no subscript members

Is there something I'm missing?

from apollo-ios.

martijnwalraven avatar martijnwalraven commented on July 4, 2024

@benrom: This was only recently added and is not not in the patch 0.4.3 version yet.

from apollo-ios.

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.