quasar/search-engine

There is no license information available for the latest version (v1.0.2) of this package.

Quasar Search Engine package

v1.0.2 2020-04-27 18:27 UTC

This package is auto-updated.

Last update: 2024-03-28 02:58:55 UTC


README

Total Downloads Latest Stable Version

Installation

1 - After install Laravel framework, execute on console:

composer require quasar/quasar-search-engine

2 - Execute publish command

php artisan vendor:publish --provider="Quasar\SearchEngine\SearchEngineServiceProvider"
php artisan vendor:publish --provider="Laravel\Scout\ScoutServiceProvider"

3 - To config pulsar search scout driver, set scout configuration in your .env file wit this parameter

SCOUT_DRIVER=quasar-search

4 - Add graphQL routes to graphql/schema.graphql file

type Query {
    # others imports

    # Search Engine
    #import ./../vendor/quasar/search-engine/src/Quasar/SearchEngine/GraphQL/queries.graphql
}