-
Notifications
You must be signed in to change notification settings - Fork 5
Should metadata queries and mutations use the naming convention? #32
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Comments
I think the goal of those queries and mutations is to allow exploring whats in the DB, and it's not directly related to graphql types... I'm leaning towards option A. |
What if we move the table DDL queries and mutations up to the root
I think this could be a nice separation between DDL API and application-specific API. We'd have to modify or eliminate single keyspace mode. |
It would potentially be easier to explain and document the different naming conventions if they live in different areas. |
Altering the schema as a top level operation makes sense to me. To clarify, are you suggesting:
What "single keyspace" setups (cloud) would look like? the same? for example |
This was implemented in #50 . |
Should metadata queries and mutations use the naming convention or should the names used be a reflection of the db schema?
For example, given this metadata query:
and tables
books_by_author
andbooks_by_title
in the db.A) Then the result should be:
B) Or
The text was updated successfully, but these errors were encountered: