Azure
Docs HomeProduct SiteSupport
  • WireBootstrap for Azure Search
  • Installation
  • Data Connector
  • Query Extensions
  • Filter Component
    • Configuration
Powered by GitBook
On this page
  • Provider Key
  • Configuration
  • Allow

Data Connector

PreviousInstallationNextQuery Extensions

Last updated 3 years ago

The WireBootstrap Azure Search Connector is a WireBootstrap that allows an Azure Search Index to be used as a data source in WireBootstrap.

Provider Key

Use the az-search provider key to use the service provider for this data connector with a data source.

const source = new wire.data.DataSource("az-search", {
    ...
});

Configuration

Use the service provider configuration to configure the connection to an Azure Search index. For details visit the .

Name
Description

service

The name of the Azure search service.

index

The name of the search index.

queryKey

The query API key.

suggesterName

The following example sets up a data source against the public .

const source = new wire.data.DataSource("az-search", {
   Provider: {
     service: "azs-playground",
     index: "realestate-us-sample",
     queryKey: "*****",
     suggesterName: "sg"
   }
 });

Allow

Name
Supports

delete

false

discover

false

storedProcedure

false

tableQuery

true

test

false

write

false

Optional. The suggester name when using for type-ahead/auto-compete.

Service providers are able to tell consumers about the functionality they support through an property. Below is a list of the functionality that the service provider supports.

data connector
Azure Cognitive Search REST API documentation
Azure Search Real Estate sample index
allow
suggestions