GraphQL - Queries
Identify the mistake in this GraphQL fragment usage:
fragment ProfileInfo on Profile { id name } query { profile { ...ProfileInfo } fragment ProfileInfo on Profile { email } }