Skip to content
This repository has been archived by the owner on Sep 18, 2023. It is now read-only.

[master < T1178] Update the description of SHOW INDEX INFO output #1022

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions docs/how-to-guides/indexes.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,8 @@ To check if indexes exist, use the following Cypher query:
SHOW INDEX INFO;
```

The results of this query will be all of the labels and label-property pairs
that Memgraph currently indexes.
This query displays an alphabetized table of all label and label-property indices
presently kept by Memgraph.

## How to create indexes?

Expand Down
4 changes: 2 additions & 2 deletions docs/reference-guide/indexing.md
Original file line number Diff line number Diff line change
Expand Up @@ -206,8 +206,8 @@ syntax:
SHOW INDEX INFO;
```

The results of this query will be all of the labels and label-property pairs
that Memgraph currently indexes.
This query displays an alphabetized table of all label and label-property indices
presently kept by Memgraph.

## Deleting index

Expand Down
4 changes: 2 additions & 2 deletions docs/under-the-hood/indexing.md
Original file line number Diff line number Diff line change
Expand Up @@ -83,8 +83,8 @@ Information about available indexes can be retrieved using the following syntax:
SHOW INDEX INFO;
```

This query will return all the labels and label-property pairs that Memgraph
currently indexes.
This query displays an alphabetized table of all label and label-property indices
presently kept by Memgraph.

You can delete created indexes by using the following syntax:

Expand Down