Brightspot CMS Developer Guide

Object references


Dari supports querying relationships using the field/subfield path notation in where methods. The following models demonstrate the use case of finding all activities for a particular user. In these models, the Activity.activityUser field is of type User.

public class Activity extends Record {

    @Indexed private Date activityDate;
    @Indexed private User activityUser;
    @Indexed private String groupLead;

     /* Getters and setters */
 }

public class User extends Record {

    @Indexed private String name;

    /* Getters and setters */
}

There are two ways to find activities by a specific user. You can first query for the user, and then query for activities by that user.

/* Get the user */
User user = Query.from(User.class).where("name = 'John Smith'").first();

/* Get the user's list of activities */
List<Activity> activities = Query.from(Activity.class).where("activityUser = ?", user).selectAll();

A second, more efficient way, is to use a single query that incorporates path notation.

List<Activity> activities = Query.from(Activity.class)
            .where("activityUser/name = 'John Smith'")
            .selectAll();

Previous Topic
Binding variables
Next Topic
Sorting
Was this topic helpful?
Thanks for your feedback.
The elements that get you up and running in a matter of days, from pre-built content types, to modules, to landing pages.

Content types
Modules
Landing pages
Everything you need to manage and administer content within Brightspot CMS, including plug-and-play integrations.

Dashboards
Publishing
Workflows
Admin configurations
A guide for installing, supporting and administering code on the Brightspot platform, including integrations requiring developer support to use.

Field types
Content modeling
Rich-text elements
Images