checkRelation

const checkRelation: CheckRelation = (depth, relation);
Example
    
      const coreApp = lesan();
      const locationPure = {
        name: string(),
        population: number(),
        abb: string(),
      };
      const cities = coreApp.odm.newModel(
        "city",
        locationPure,
        {
          country: {
            schemaName: "country",
            type: "single",
            optional: false,
            relatedRelations: {
              cities: {
                type: "multiple",
                limit: 5,
                sort: {
                  field: "_id",
                  order: "asc",
                },
              },
            },
          },
        },
      );
      

const checkCityRelation = coreApp.schemas.checkRelation({}, "city");

Return Of Example
    
false
    
  

Types

  
    CheckRelation
  

Parameters

  
    depth,
    relation