I’m getting this error although the definition of ...
# orm-help
k
I’m getting this error although the definition of the input type is:
Copy code
export type PaddleSubscriptionWhereUniqueInput = AtLeastOne<{
  id: ID_Input;
  subscriptionId?: String;
}>;
h
Have you annotated subscriptionId with
@unique
in the datamodel? Also, make sure you ran
prisma deploy
and
prisma generate
😅