Relation returned on findFirst but not findMany?

I am looking to make a query to return a batch of results rather than just one, but "profile" is not included in the findMany, only in the findFirst

Returns profile -
export const getCreatorById: GetCreatorById<any, any> = async ({ creatorId }, context) => {
  if (!context.user) {
    throw new HttpError(401);
  }
  return context.entities.Creators.findFirst({
    orderBy: { id: 'asc' },
    where: {
      AND: [
        {
          userId: +creatorId,
        },
      ],
    },
    include: {
      profile: true,
      stats: true,
    },
  });
};


Does not return profile:
export const getCreators: GetCreators<any, any> = async (args, context) => {
  if (!context.user) {
    throw new HttpError(401);
  }
  return context.entities.Creators.findMany({
    orderBy: { id: 'asc' },
    include: {
      stats: true,
      youtubeStats: true,
      profile: true
    },
  });
};


Am I missing aything @kapa.ai ?
Was this page helpful?