Implementation
Search Powered by Google
Search Classic
Beacons
Customer Experience Management
Command Center
Site Management
Relevancy Optimization
Change Logs
Analytics & Reports
Analytics
StoreFront

Search Tutorial

This tutorial will give you a quick introduction to how to upload and query data from GroupBy Cloud.

Prerequisites

To perform this procedure, you’ll need:

  1. An account at groupbycloud.com and have an endpoint that allows you to upload and query data.
  2. You have administrative access to your Command Center
  3. Command line to run curl (Terminal in Mac, Cygwin in Windows) commands to upload and query data

Note: Curl is installed by default in most linux environments and you can download a curl port for Windows here.

What you’ll do

This tutorial will help you to:

  • Create a search data file
  • Create a config file
  • Upload your data
  • Query the data
  • Review search result returned
  • Adding Navigations and Refinements

Sample data

You can use your data or GroupBy sample data available at Search Data File.

Sample configuration

We will also create a simple configuration file that tells the search service what indexes to create.

Refer Sample Configuration File

Your first upload

Run the upload command, sending both files to your endpoint:

Refer the Upload Data API to send a test request. Or you can the HTTP request maker below:

Send requests directly from the browser (CORS must be enabled)
$$.env
1 variable not set
customerid

Data Query and Response

Let’s query your data. You can do this via either of these options:

  1. Command line curl
  2. By using the Ref App
  3. You can execute a search using the HTTP request maker below.

Note: The reference application, also known as ref app, can be used to see the raw data and apply the business rules from any Command Center area.

Send requests directly from the browser (CORS must be enabled)
$$.env
2 variables not set
customerid
Authorization

Add Navigations

Now let’s define some Dynamic Navigation and view your results in the Reference Application.

Log into your Command Center. Open Dynamic Navigation section and click Add Dynamic Navigation.

In this instance, we’ll use the property name: “gender” and give it a display name of “Gender”. Leave all the other defaults and click save.

See Navigations returned

Now when we run our search command with a more generic query of shoes. We will see the returned availableNavigation section populated with the Gender navigation and the two refinements, “Women”, and “Men”. These two refinements are based on the returned data, and show the number of records that would be shown if you refined by these filters.

Send requests directly from the browser (CORS must be enabled)
$$.env
2 variables not set
customerid
Authorization

Add refinements into the query

We can add those refinements into the query (note, we reduced the fields array to just show id, so that the response is smaller - title is always returned in the response).

The navigation that we refined by now shows up in the selectedNavigation property and there are 5 corresponding records that are returned. (The available navigation is now empty as there is no more ways of further filtering the records, given the navigations that we have created.)

Send requests directly from the browser (CORS must be enabled)
$$.env
2 variables not set
Authorization
customerid

Congratulations, you’ve completed your first upload and executed your queries!