This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Query form location | |
/admin/config/search/pantheon/query | |
# Working query string. This will return all documents with node bundle = article, and node title (label) includes the phrase | |
# 'Foo Bar'. Note the spaces and double quotes must be urlencoded. | |
# Also the 'fl=*' returns all solr fields on the document. Useful for determining Drupal <-> Solr field mappings. | |
/select?fl=*&fq=bundle:article%20AND%20label:%22Foo%20Bar%22&wt=json |