Skip to content

Kirby 4.1.2

$field->query()

Uses the field value as Kirby query

$field->query(?string $expect = null): mixed|null

Parameters

Name Type Default
$expect string|null null

Return type

mixed|null

Example

Assuming your text field value is site.find('notes') this query will return the notes page. With the expect parameter, you can optionally define the expected return type, in this case a Kirby\Cms\Page object.

<?php
dump($page->text()->query('Kirby\Cms\Page'));