Skip to main content
Search for entities in your software catalog based on a set of rules.
External DocumentationTo learn more, visit the Port documentation.

Parameters

ParameterDescription
Allow Partial ResultsSelect to allow partial results in the search.
Attach Identifier To Title Mirror PropertiesSelect to attach the identifier of the related entity to the title mirror property.
Attach Title To RelationsSelect to attach the title of the related entity to the relation.
CombinatorThe combinator to apply to the search rules.
ExcludeA comma-separated list of properties to exclude from the search results.
Exclude Calculated PropertiesSelect to exclude calculated properties from the search results.
IncludeA comma-separated list of properties to include in the search results.
RulesA list of search rules.

For example:
[
{
“property”: “$blueprint”,
“operator”: ”=”,
“value”: “service”
},
{
“combinator”: “or”,
“rules”: [
{
“property”: “environment”,
“operator”: ”=”,
“value”: “production”
},
{
“property”: “environment”,
“operator”: ”=”,
“value”: “staging”
}
]
}
]

Example Output

{
	"matchingBlueprints": [
		"string"
	],
	"failedBlueprints": [
		"string"
	],
	"entities": [
		{
			"identifier": "string",
			"title": "string",
			"icon": "string",
			"team": "string",
			"properties": {},
			"relations": {}
		}
	]
}

Workflow Library Example

Search Entities with Port and Send Results Via Email
Workflow LibraryPreview this Workflow on desktop