Code Monkey home page Code Monkey logo

Comments (3)

jermbo avatar jermbo commented on August 19, 2024

Did you mean:

{ 
  "name": {
    "BD": "Dhaka",
    "BE": "Brussels",
    ...
  },
  "capital": {
    "BD": "Dhaka",
    "BE": "Brussels",
    ...
  },
  ...
}

Your example uses an array, with object syntax and that will not work. I believe you meant to use an object instead of an array of objects. If I am reading that correctly, I agree that would be a little easier to access and reason about.

Thank you for the suggestion. I'll look forward to your PR.

from sampleapis.

thedamian avatar thedamian commented on August 19, 2024

I like this conversation but @jermbo @jldorta
The question is would you want to access the object as:

CountryReply.us.population
or

CountryReply.population.us

that would dictate how we rearrange this api.

from sampleapis.

jermbo avatar jermbo commented on August 19, 2024

Good point. I understand why the original code was split into different categories, that was a decision by the original contributor.

How I would have done this would be something like this:

{
  "countries": {
    "US": {
      "capital": "DC",
      "population": 1,
      "currency": "UDS",
      ...
    },
    ...
  }
}

or

{
  "countries": [
    {
     "abbreviation": "US",
      "capital": "DC",
      "population": 1,
      "currency": "UDS",
      ...
    },
    ...
  ]
}

The difference is an object with the abbreviations as the key, versus an array of objects. They will all send the same data, just packaged together.

The pro of this approach is all the data you need is right there and you can shape the graphQL to the actual data you need.

The con is.... less endpoints?

from sampleapis.

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.