Skip to content

Instantly share code, notes, and snippets.

@ijokarumawak
Last active October 20, 2015 08:23
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ijokarumawak/52ba9145fb952b82cdd5 to your computer and use it in GitHub Desktop.
Save ijokarumawak/52ba9145fb952b82cdd5 to your computer and use it in GitHub Desktop.
N1qlQueryResult result = bucket.query(N1qlQuery.simple(query));
List<String> airports = new ArrayList<>();
for(N1qlQueryRow row : result){
airports.add(row.value().getString("airportname"));
}
return airports;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment