in a plugin I need to access the options of a certain blueprint’s field. Something like
$myBlueprint->field('foo')['options']
This works, but now I need to get this blueprint by name first. I know there is Blueprint::find() that finds a blueprint by name, but for some reason it returns an array, not a blueprint, so I cannot use the field() method on it. Any idea how to directly find a blueprint so that I have a blueprint object to work with or alternatively how to turn the Blueprint::find() array into a blueprint object?