I am new to GraphQL and was wondering if one of my model types can have an attribute as a dictionary. Like so ...
type Post @model{
views: [String: Int]
}
Is this the correct syntax? I was unable to find anything related to graphql and dictionaries.