Version: 2022.1
LanguageEnglish
  • C#

IQueryEngineFilter.AddOrUpdateMetaInfo

Suggest a change

Success!

Thank you for helping us improve the quality of Unity Documentation. Although we cannot accept all submissions, we do read each suggested change from our users and will make updates where applicable.

Close

Submission failed

For some reason your suggested change could not be submitted. Please <a>try again</a> in a few minutes. And thank you for taking the time to help us improve the quality of Unity Documentation.

Close

Cancel

Declaration

public Search.IQueryEngineFilter AddOrUpdateMetaInfo(string key, string value);

Parameters

key The key of the information.
value The value of the information.

Returns

IQueryEngineFilter The current filter.

Description

Add or update additional information specific to the filter.

You can use this function to add additional information on the filter.

// Add a description to the filter
var descriptionKey = "desc";
var descriptionValue = "This filters the objects based on their id.";
var exampleKey = "example";
var exampleValue = "id>10 or id=2";
queryEngine.TryGetFilter("id", out var filter);
filter.AddOrUpdateMetaInfo(descriptionKey, descriptionValue)
    .AddOrUpdateMetaInfo(exampleKey, exampleValue);

You can then retrieve that information by accessing the metaInfo property directly.

var descriptionKey = "desc";
var allFilters = queryEngine.GetAllFilters();
var filtersWithDescription = allFilters.Where(f => f.metaInfo.ContainsKey(descriptionKey));

See metaInfo for a complete example.