Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save ijokarumawak/0f480a17ea53c213f170 to your computer and use it in GitHub Desktop.
Save ijokarumawak/0f480a17ea53c213f170 to your computer and use it in GitHub Desktop.
N1qlQuery query = N1qlQuery.simple(
select("airportname").from(i(bucket.name())).where(
x("type").eq(s("airport"))
.and(upper(x("airportname")).like(s(prefix.toUpperCase() + "%")))
).orderBy(asc(x("airportname")))
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment