Let's say I have 'firstName' and 'lastName' properties on an Author type schema created as Strapi content type.
I am able to query them with graphql, but what if I want to query 'fullName' property without adding that field on my content type?
As field doesn't exist, now it says: Cannot query field \"fullName\" on type \"Author\".
How can I extend existing type schema with that additional "virtual" field?