Hey - I'm having a bit of a brainfail. It is possi...
# prisma-whats-new
r
Hey - I'm having a bit of a brainfail. It is possible for me to query with an argument that isn't the
id
? i.e.
Copy code
query {
  Session(slug: "foo") {
    title
    description
  }
}
t
Yes, but the field has to have an
@isUnique
constraint
r
@taikn thank you!