Q9
Single choice
You have a record type, ABC_Author, backed by a database table.
You need to retrieve the number of authors for each country.
Review the following basic query expression:
algueryRecordType (
recordType: recordType!ABC Author,
fields:{},
pagingInfo:a!pagingInfo(
starIndex: 1,
batchsize:10,
sort:a!sortInfo(
field:"count"
ascending: false
)
)
)
Which code snippet should be added to the fields parameter?

