What happened to pages field "parent"?

So I’ve started to work on a kirby project again, and the docs don’t show the “parent” field in the blueprint:

but my blueprints for this field looks like this:

type: pages
headline: Beiträge
parent: site.find('aktuelles')
text: "{{ page.title.short(75) }}"
info: "{{ page.category }}"
sortBy: date desc
create: false
image:
  cover: true

Because parent is a pages section prop, not a pages field prop. For pages field, use query

Thank you, I forgot about this distinction, ty much @pixelijn