Property Exclusion

If you want to access all properties except for a few, you can use the exclude operator.
::!{<SchemaFieldNames>}

Example

In Schema.hx:
N::User{
    name: String,
    age: U32,
    email: String,
    posts: U32,
    followers: U32,
    following: U32,
    location: String,
}
In Query.hx:
QUERY findUsers() =>
    users <- N<User>::RANGE(0, 10)
    RETURN users::!{name, email, location}
Removes the name, email, and location properties from the returned object. JSON Output:
"users": [
    {   
        "id": "c2ca233f-0cd8-4fae-8136-b40593792071",
        "age": 30,
        "posts": 14,
        "followers": 342,
        "following": 234,
    },
    ...
]