Skip to content
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

Don't enforce grouping of attributes and relationships #68

Open
DavyLandman opened this issue Jul 7, 2020 · 0 comments
Open

Don't enforce grouping of attributes and relationships #68

DavyLandman opened this issue Jul 7, 2020 · 0 comments
Labels
enhancement New feature or request

Comments

@DavyLandman
Copy link
Contributor

For this is incorrect:

entity Item {
	shelf: int
	product -> Product."Product.inventory"[1]
	picture: blob
}

image

while this is correct:

entity Item {
	shelf: int
	picture: blob
	product -> Product."Product.inventory"[1]
}

@davidediruscio suggested I raise an issue to remove this restriction.

@jdirocco jdirocco added the enhancement New feature or request label Sep 8, 2020
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Projects
None yet
Development

No branches or pull requests

2 participants