inab / benchmarking-data-model

OpenEBench Benchmarking Data Model repository
Creative Commons Attribution Share Alike 4.0 International
2 stars 7 forks source link

replace "@" with double "__" #131

Closed redmitry closed 2 years ago

redmitry commented 2 years ago

GraphQL is very strict for the names allowing only "_" characters along to letters and numbers. Currently "special" attributes such as @created and @updated cant be included in the GraphQL. The suggestion is to replace "@" with double underscore "__" to align both REST & GraphQL models.

jmfernandez commented 2 years ago

Fixed at c463d26

jmfernandez commented 2 years ago

It seems there are issues with graphQL implementation, where it is not allowed having a starting double underscore

jmfernandez commented 2 years ago

graphQL specs https://spec.graphql.org/draft/#sec-Names

jmfernandez commented 2 years ago

Fixed at 4a9c53662d5e724e6d5ff564700673149830a3d4 , where the double underscore has been substituted by the single one