Is there a non-jargon-y definition of what `scalar...
# orm-help
s
Is there a non-jargon-y definition of what
scalar
means. For example take this sentence.
Copy code
The following example includes a scalar list and a list of related models:
a
Hey Shahrukh! When talking about the Prisma Schema, scalar basically refers to any data type that isn’t a relation. So
Int
,
String
,
Boolean
are all scalar types, but an
Author
would not be. A scalar list would be a list of any of the scalar types, e.g.
scores Int[]
. The full list of scalar types is in our docs.
👍 1