# Do I need to create mupltiple or only one fulltext Node Indexes in cases where these nodes have a common label?

**URL:** https://community.neo4j.com/t/do-i-need-to-create-mupltiple-or-only-one-fulltext-node-indexes-in-cases-where-these-nodes-have-a-common-label/16465
**Category:** Procedures & APOC
**Created:** [March 31, 2020, 7:33am UTC](https://community.neo4j.com/t/do-i-need-to-create-mupltiple-or-only-one-fulltext-node-indexes-in-cases-where-these-nodes-have-a-common-label/16465 "2020-03-31T07:33:20Z")
**Posts on this page:** 2
**Page:** 1

<div class="post-metadata">

### Author: ![admin3](https://sea1.discourse-cdn.com/flex021/user_avatar/community.neo4j.com/admin3/32/10591_2.png) [@admin3](https://community.neo4j.com/u/admin3)
#### Post date: [March 31, 2020, 7:33am UTC](https://community.neo4j.com/t/do-i-need-to-create-mupltiple-or-only-one-fulltext-node-indexes-in-cases-where-these-nodes-have-a-common-label/16465/1 "2020-03-31T07:33:20Z")

</div>

Specifically,

My graph is like this  
(:Profile:Main {name:"something",username:"something else"})  
(:Brand:Main {name:"something",username:"something else"})  
(:Manufacturer:Main {name:"something",username:"something else"})

Sometimes I need to do a full search on all entities (Main) and some other times I only need to do on specific entities (either Profile either Brand either Manufacturer).

Do I need to create multiple indexes or is

```auto
CALL db.index.fulltext.createNodeIndex('main', ['Main'], ["name","username"])

```

sufficient

---

<div class="post-metadata">

### Author: ![stefan.armbruster](https://sea1.discourse-cdn.com/flex021/user_avatar/community.neo4j.com/stefan.armbruster/32/74_2.png) [@stefan.armbruster](https://community.neo4j.com/u/stefan.armbruster)
#### Post date: [March 31, 2020, 8:46am UTC](https://community.neo4j.com/t/do-i-need-to-create-mupltiple-or-only-one-fulltext-node-indexes-in-cases-where-these-nodes-have-a-common-label/16465/2 "2020-03-31T08:46:09Z")

</div>

In your case it's "one index to rule 'em all".

Since you build the index on `:Main` label, anything carrying the label will be in the index.
