In the documentation, it was not clear to me that as soon as you receive the object in the request, you will need to do:
With a query (can return multiple objects):
artwork[0].get('someField');
With "first" or "get":
artwork.get('someField');
You cannot do something like artwork.someField , as I assumed that you
source share