Giter VIP home page Giter VIP logo

Comments (3)

kenshaw avatar kenshaw commented on May 29, 2024

I have working templates for many-many/many-to-one/one-to-many relationships, but the issue is that they are very heavily customized for a private project, and we have no intention of releasing them (they contain sensitive implementation information that cannot be released). That said, it is not difficult to create your own m/m, 1-to-m, or m-to-1 templates and use them with the tool via the --template-path CLI option.

With regards to JSON support, I have not finished writing and testing a generic JSON type that work with the lib/pq driver. That said, since JSON is recognized by xo as a "custom type", all you need to do is specify the --custom-type-package (or -C) option to use a package that has a type named JSON in it. That type needs to be able to be serialized (and unserialized) to the database by supporting the driver.Valuer interface and the sql.Scanner interface. There's a ton of documentation available online (search on Google) on writing those interfaces for Go. You can also look at the StringSlice type in the xo templates as an example of an existing sql.Scanner/driver.Valuer implementation.

For reference, this is how you pass the name of a custom type package:

xo -o models -C mytypepkg pgsql://user:pass@localhost/dbname

(note: goimports processes the Go files generated by xo, which is why this will is able to work, assuming the mytypepkg can be found by goimports)

FWIW, the reason I haven't yet written a generic JSON type for inclusion with xo is because only MySQL and PostgreSQL support JSON out of the box (as far as I know). Additionally, we don't use JSON types in our schemas. It would be fairly easy to write one, however -- and if you do, please send a pull request and I'll merge it (assuming it is written/works well)!

from xo.

erlgry avatar erlgry commented on May 29, 2024

@kenshaw thanks. I will give both of these a try.

It looks like JSON support should be quite straightforward for me to implement

Could you provide some guidance on what do you typically generate when there are m/m relations and link table? E.g. For tables "product", "collection", "product_collection", what additional types (and methods upon types) do you generate? If there is any skeleton code you can share, I can take it rest of the way

from xo.

codepushr avatar codepushr commented on May 29, 2024

I'd also be interested in a little more insight! I would like to create aggregated fields. Example:
User <-> UserAddress <-> Address

And now create a "Addresses" field for User and a "Users" field for Address... Where do I start?

from xo.

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.