-
Notifications
You must be signed in to change notification settings - Fork 38
#498: Started with examples #513
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
Conversation
Looking at the first example, is there a way the link between the function call and the function ( Something like: ex:CompanyShape-averageIncome
a sh:PropertyShape ;
sh:path ex:averageIncome ;
sh:datatype xsd:decimal ;
sh:values [
shnex:call ex:AverageExpression ;
ex:average [
shnex:path ( ex:employee ex:income )
]
] Otherwise I assume an implementation knows it is a function not an IRI based on the syntax (+ possibly a function register). |
Yes, for all these expression functions, there can be a triple such as |
I have implemented the named parameter functions in our product and it appears to work. I am yet to confirm the list parameter syntax but don't expect problems. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
5.3 Arg Expressions should provide an example.
Closes #498