here's the SDL for that: ``` type Action { id: I...
# orm-help
n
here's the SDL for that:
Copy code
type Action {
  id: ID! @unique
  event: EventType! @default(value: "CREATED")
  userID: String! # TODO: Pull user data from other db.
  timestamp: DateTime!
  state: Json!
}
j
try
"1"
instead of
1
n
Hmm, same error. Also same error if I do non-numerical data for that field (e.g. "foobar")
could it be related to the fact that I'm trying to create it as a related record from another type?
!!
Creating that record by itself works fine, weird
h
@Nelson Pecora Try clearing your localStorage. Sometimes there is some cache data which cause trouble
n
oh interesting, thanks for the tip!