Giter VIP home page Giter VIP logo

Comments (3)

mschreck avatar mschreck commented on August 18, 2024 2

You can just normalize your data on index time using the buildDocument method:

class Activity {

    use Searchable;

    public function buildDocument()
    {
        return $this->load('user')->toArray();
    }

    public function user()
    {
        return $this->hasOne('App\User');
    }
}

Then your document in elastic will look like:

{
  id: 1,
  name: "My activity",
  user: {
    id: 1,
    name: "joe",
    email: "[email protected]"
    ...
  }
}

and you can search like this:
Activity::search()->filter()->term('user.name', 'joe');

I would use a nested document for users, so you have to adjust your mapping:

$map->nested('user', function (Blueprint $map) {
    $map->string('id');
    $map->string('name');
    $map->string('email');
});

Query will then look like

Activity::search()->nested('user', function (SearchBuilder $builder) use ($term) {
    $builder->match('user.name', $term);
});

from plastic.

yanko-belov avatar yanko-belov commented on August 18, 2024

Hi @mschreck and thanks for the answer.

The first part is working perfect.

I`ve decided to try with the nested query and mapping but it isn't working.

Is there anything special that I should do when I want to use the nested queries?

from plastic.

sleimanx2 avatar sleimanx2 commented on August 18, 2024

@belov91 nested queries needs special mappings for instance in your Activity model mapping you need something like this.

$map->nested('user', function (Blueprint $blueprint) {
              
   $blueprint->integer('id');

   $blueprint->string('name', [
          'store'    => 'true',
          'index'    => 'analyzed',
          'analyzer' => 'english',
    ]);

    //...
});

ll reopen the issue if needed

from plastic.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.