My schema is:
schema = """id: int @index(int) .
question: string .
answer: string .
creation_time: int .
interval_time: int .
box_id: int .
type Card {
id
question
answer
creation_time
interval_time
box_id
}"""
Let's say I've inserted some nodes and I want to update the question of one card. How would I do that? I know there is a set function, but I don't know how to use it in python and couldn't find examples or anything else.