gws_core

Introduction
Getting Started
Developer guide
Release
Architecture
CLI
Technical documentations
Version

EntityNavigatorNote

Abstract base class for generic types.

A generic type is typically declared by inheriting from this class parameterized with one or more type variables. For example, a generic mapping type might be defined as::

class Mapping(Generic[KT, VT]): def getitem(self, key: KT) -> VT: ... # Etc.

This class can then be used as follows::

def lookup_name(mapping: Mapping[KT, VT], key: KT, default: VT) -> VT: try: return mapping[key] except KeyError: return default

Functions
__init__

Initialize self. See help(type(self)) for accurate signature.

entities : Union
delete_propagated_tags
tags : List
entity_tags_cache : Dict
get_as_nav_set
Return type : NavigableEntitySet
get_entities_as_set
Return type : Set
get_entities_list
Return type : List
get_first_entity
Return type : Optional
get_next_entities

Return all the entities that are linked to the current entities

requested_entities : List
[description]
Return type : NavigableEntitySet
get_next_entities_recursive

Return all the entities that are linked to the current entities

requested_entities : List
[description]
include_current_entities : bool - False
Return type : NavigableEntitySet
get_next_notes
Return type : EntityNavigatorNote
get_next_resources
Return type : EntityNavigatorResource
get_next_scenarios
Return type : EntityNavigatorScenario
get_next_views
Return type : EntityNavigatorView
get_previous_entities_recursive

Return all the entities that are linked to the current entities

requested_entities : List
[description]
include_current_entities : bool - False
Return type : NavigableEntitySet
get_previous_notes
Return type : EntityNavigatorNote
get_previous_resources
Return type : EntityNavigatorResource
get_previous_scenarios
Return type : EntityNavigatorScenario
get_previous_views
Return type : EntityNavigatorView
has_entities
Return type : bool
has_next_entities
requested_entities : List
Return type : bool
is_empty
Return type : bool
propagate_tags
tags : List
entity_tags_cache : Dict
from_entity_id @classmethod
entity_type : EntityType
entity_id : str
Return type : EntityNavigator