Filtering in graph view

For those that do not know you can use ‘AND’, ‘OR’ and ‘-’ operators when filtering in graph view.

2 Likes

Hello!

I am new to Obsidian, and I am experimenting with the operators for Filtering the graph view, but I find it difficult to read filters with multiple elements. Is there a way to make the text box of the filter larger to make reading it easier?

1 Like

Try this css snippet:

input[type=search] {
  width: 400px;
}

.graph-controls {
  max-width: 500px;
}
1 Like

Thanks @alltagsverstand !

This was the first time I’ve used the CSS snippet function of Obsidian (or CSS). I will tinker with this snippet that you have provided.