Giter Club home page Giter Club logo

Comments (4)

Ninigi avatar Ninigi commented on July 21, 2024

Just as if shopify was trying to make a point here, I was just working on Fulfillment Events, which are double nested... And of course there are also Order Events.

Right now the order events are organized in nested modules

Shopify.Order.Event.all(1)

# for the sake of consistency we should decide if this makes sense
Shopify.Order.Fulfillment.Event.find(78123, 123, 1)

Shopify's API reference is very inconsistent in how they list the events, for example there is an entry for FulfillmentEvent but none for OrderEvent (in fact I didn't find an entry for that at all, but there is an endpoint for it and it works...) and you can also get an event without nesting...

The shopify API doc is pretty messy in parts, so that's how we ended up in this place in the first place, but would be nice to settle on a way to deal with it

from shopify.

nsweeting avatar nsweeting commented on July 21, 2024

At the moment - the the nested module for sure seems like the cleaner approach.

Personally, I haven't yet had a need to fetch those nested resources yet. I would be curious as to how useful being able to pass the owner struct OR the owner id as an argument would be. It would provide a much more "elixir'ish" feel to things - permitting the use of pattern matching on the owner to determine what to do.

It would be cool to be able to pipeline calls and build up the nested relations within the owner as well. For example...

session
|> Shopify.Order.find(1)
|> Shopify.Transactions.all()

Which would provide a %Shopify.Order{transactions: [....]} struct. With the above, there are obvious complications with the session being the first arg (which could perhaps be passed back with the result).

Anyways - these are all larger and more ambitious tasks. Perhaps a discussion for a new version. I will look at perhaps creating a new issue where we can start compiling such features and discussions.

from shopify.

nsweeting avatar nsweeting commented on July 21, 2024

To add on to the this further.

I'm basically trying to envision a few different ways we could handle fetching nested relations through pipelines. Although it creates "extra" structs in the process, something akin to a new function may be useful and much more explicit than a bunch of integer ids. We could have this accept a few different argument forms: new(attributes), new({session, owner}, attributes), as well as new(session, attributes)

With the above, something like the triple nested order fulfillment event could be handled like:

session
|> Shopify.Order.new(id: 1)  # if passed a session as the first arg, returns {session, order}
|> Shopify.Fullfillment.new(id: 1)
|> Shopify.Event.find(1) # not sure about this... would basically require accepting {session, owner} as its arg as well...

Food for thought...

from shopify.

Ninigi avatar Ninigi commented on July 21, 2024

Shopify restructured their API reference, I think precisely because especially the nested resources were all over the place. Might help with how we think about the structure as well.

from shopify.

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.