SemanticError: The maximum number of statements allowed has been exceeded

使用nebula-importer向nebula进行批量导入,遇见问题:

response error code: -12, message: SemanticError: The maximum number of statements allowed has been exceeded

进行批量导入的yaml配置文件有23000+行,请问这种情况应该怎么解决呢,可以对yaml文件进行分割吗,或者怎么修改配置呢

nebula 2.0.0
importer 2.0.0
yaml文件部分如下,原文件总共有23000+行

version: v2
description: DBpedia
removeTempFiles: false
clientSettings:
  retry: 3
  concurrency: 12 # number of graph clients
  channelBufferSize: 1
  space: DBpedia
  connection:
    user: root
    password: nebula
    address: 192.168.80.128:9669
  postStart:
    commands: |
      CREATE SPACE IF NOT EXISTS DBpedia(PARTITION_NUM = 5, REPLICA_FACTOR = 1, vid_type = int64);
      USE DBpedia;
      CREATE TAG IF NOT EXISTS `UNTYPED`(`uri` string);
      CREATE TAG IF NOT EXISTS `owl_Thing`(`uri` string);
      CREATE TAG IF NOT EXISTS `Disease`(`uri` string);
      CREATE TAG IF NOT EXISTS `AdministrativeRegion`(`uri` string);
      CREATE TAG IF NOT EXISTS `OfficeHolder`(`uri` string);
      CREATE TAG IF NOT EXISTS `TimePeriod`(`uri` string);
      CREATE TAG IF NOT EXISTS `Book`(`uri` string);
      CREATE TAG IF NOT EXISTS `Award`(`uri` string);
      CREATE TAG IF NOT EXISTS `Film`(`uri` string);
      CREATE TAG IF NOT EXISTS `Person`(`uri` string);
      CREATE TAG IF NOT EXISTS `PersonFunction`(`uri` string);
      CREATE TAG IF NOT EXISTS `Scientist`(`uri` string);
      CREATE TAG IF NOT EXISTS `Philosopher`(`uri` string);
      CREATE TAG IF NOT EXISTS `Writer`(`uri` string);
      CREATE TAG IF NOT EXISTS `Country`(`uri` string);
      CREATE TAG IF NOT EXISTS `TennisPlayer`(`uri` string);
      CREATE TAG IF NOT EXISTS `Song`(`uri` string);
      CREATE TAG IF NOT EXISTS `Sound`(`uri` string);
      CREATE TAG IF NOT EXISTS `Organisation`(`uri` string);
      CREATE TAG IF NOT EXISTS `ArtificialSatellite`(`uri` string);
      CREATE TAG IF NOT EXISTS `WrittenWork`(`uri` string);
      CREATE TAG IF NOT EXISTS `Continent`(`uri` string);
      CREATE TAG IF NOT EXISTS `BodyOfWater`(`uri` string);
      CREATE TAG IF NOT EXISTS `MilitaryUnit`(`uri` string);
      CREATE TAG IF NOT EXISTS `MilitaryPerson`(`uri` string);
      CREATE TAG IF NOT EXISTS `AcademicJournal`(`uri` string);
      CREATE TAG IF NOT EXISTS `MilitaryConflict`(`uri` string);
      CREATE TAG IF NOT EXISTS `VideoGame`(`uri` string);
      CREATE TAG IF NOT EXISTS `Constellation`(`uri` string);
      CREATE TAG IF NOT EXISTS `Royalty`(`uri` string);
      CREATE TAG IF NOT EXISTS `Language`(`uri` string);
      CREATE TAG IF NOT EXISTS `City`(`uri` string);
      CREATE TAG IF NOT EXISTS `Reptile`(`uri` string);
      CREATE TAG IF NOT EXISTS `Sea`(`uri` string);
      CREATE TAG IF NOT EXISTS `Company`(`uri` string);
      CREATE TAG IF NOT EXISTS `Band`(`uri` string);
      CREATE TAG IF NOT EXISTS `Artist`(`uri` string);
      CREATE TAG IF NOT EXISTS `InformationAppliance`(`uri` string);
      CREATE TAG IF NOT EXISTS `RugbyClub`(`uri` string);
      CREATE TAG IF NOT EXISTS `Settlement`(`uri` string);
      CREATE TAG IF NOT EXISTS `Plant`(`uri` string);
      CREATE TAG IF NOT EXISTS `Comic`(`uri` string);
      CREATE TAG IF NOT EXISTS `MountainRange`(`uri` string);
      CREATE TAG IF NOT EXISTS `Saint`(`uri` string);
      CREATE TAG IF NOT EXISTS `FictionalCharacter`(`uri` string);
      CREATE TAG IF NOT EXISTS `Island`(`uri` string);
      CREATE TAG IF NOT EXISTS `Sport`(`uri` string);
      CREATE TAG IF NOT EXISTS `ChessPlayer`(`uri` string);
      CREATE TAG IF NOT EXISTS `Fish`(`uri` string);
      CREATE TAG IF NOT EXISTS `Place`(`uri` string);
      CREATE TAG IF NOT EXISTS `Medician`(`uri` string);
      CREATE TAG IF NOT EXISTS `Holiday`(`uri` string);
      CREATE TAG IF NOT EXISTS `Mammal`(`uri` string);
      CREATE TAG IF NOT EXISTS `Game`(`uri` string);
      CREATE TAG IF NOT EXISTS `ProgrammingLanguage`(`uri` string);
      CREATE TAG IF NOT EXISTS `BaseballPlayer`(`uri` string);
      CREATE TAG IF NOT EXISTS `Town`(`uri` string);
      CREATE TAG IF NOT EXISTS `Mollusca`(`uri` string);
      CREATE TAG IF NOT EXISTS `Park`(`uri` string);
      CREATE TAG IF NOT EXISTS `Building`(`uri` string);
      CREATE TAG IF NOT EXISTS `MusicalArtist`(`uri` string);
      CREATE TAG IF NOT EXISTS `River`(`uri` string);
      CREATE TAG IF NOT EXISTS `Weapon`(`uri` string);
      CREATE TAG IF NOT EXISTS `Mineral`(`uri` string);
      CREATE TAG IF NOT EXISTS `ChemicalCompound`(`uri` string);
      CREATE TAG IF NOT EXISTS `ChristianBishop`(`uri` string);
      CREATE TAG IF NOT EXISTS `Monarch`(`uri` string);
      CREATE TAG IF NOT EXISTS `Star`(`uri` string);
      CREATE TAG IF NOT EXISTS `Software`(`uri` string);
      CREATE TAG IF NOT EXISTS `GivenName`(`uri` string);
      CREATE TAG IF NOT EXISTS `Religious`(`uri` string);
      CREATE TAG IF NOT EXISTS `PoliticalParty`(`uri` string);
      CREATE TAG IF NOT EXISTS `Drug`(`uri` string);
      CREATE TAG IF NOT EXISTS `EthnicGroup`(`uri` string);
      CREATE TAG IF NOT EXISTS `Noble`(`uri` string);
      CREATE TAG IF NOT EXISTS `Poem`(`uri` string);
      CREATE TAG IF NOT EXISTS `Insect`(`uri` string);
      CREATE TAG IF NOT EXISTS `Bodybuilder`(`uri` string);
      CREATE TAG IF NOT EXISTS `University`(`uri` string);
      CREATE TAG IF NOT EXISTS `TelevisionShow`(`uri` string);
      CREATE TAG IF NOT EXISTS `Eukaryote`(`uri` string);
      CREATE TAG IF NOT EXISTS `Architect`(`uri` string);
      CREATE TAG IF NOT EXISTS `ConcentrationCamp`(`uri` string);
      CREATE TAG IF NOT EXISTS `WorldHeritageSite`(`uri` string);
      CREATE TAG IF NOT EXISTS `Artery`(`uri` string);
      CREATE TAG IF NOT EXISTS `AmericanFootballTeam`(`uri` string);
      CREATE TAG IF NOT EXISTS `BaseballTeam`(`uri` string);
      CREATE TAG IF NOT EXISTS `Politician`(`uri` string);
      CREATE TAG IF NOT EXISTS `SoccerClub`(`uri` string);
      CREATE TAG IF NOT EXISTS `SportsTeamMember`(`uri` string);
      CREATE TAG IF NOT EXISTS `AnatomicalStructure`(`uri` string);
      CREATE TAG IF NOT EXISTS `Airport`(`uri` string);
      CREATE TAG IF NOT EXISTS `AmericanFootballLeague`(`uri` string);
      CREATE TAG IF NOT EXISTS `Airline`(`uri` string);
      CREATE TAG IF NOT EXISTS `MotorsportSeason`(`uri` string);
      CREATE TAG IF NOT EXISTS `Venue`(`uri` string);
      CREATE TAG IF NOT EXISTS `MusicGenre`(`uri` string);
      CREATE TAG IF NOT EXISTS `Species`(`uri` string);
      CREATE TAG IF NOT EXISTS `Enzyme`(`uri` string);
      CREATE TAG IF NOT EXISTS `Aircraft`(`uri` string);
      CREATE TAG IF NOT EXISTS `Bank`(`uri` string);
      CREATE TAG IF NOT EXISTS `Planet`(`uri` string);
      CREATE TAG IF NOT EXISTS `Wrestler`(`uri` string);
      CREATE TAG IF NOT EXISTS `Journalist`(`uri` string);
      CREATE TAG IF NOT EXISTS `Lake`(`uri` string);
      CREATE TAG IF NOT EXISTS `Musical`(`uri` string);
      CREATE TAG IF NOT EXISTS `PrimeMinister`(`uri` string);
      CREATE TAG IF NOT EXISTS `BroadcastNetwork`(`uri` string);
      CREATE TAG IF NOT EXISTS `Play`(`uri` string);
      CREATE TAG IF NOT EXISTS `Rocket`(`uri` string);
      CREATE TAG IF NOT EXISTS `Criminal`(`uri` string);
      CREATE TAG IF NOT EXISTS `President`(`uri` string);
      CREATE TAG IF NOT EXISTS `Album`(`uri` string);
      CREATE TAG IF NOT EXISTS `Crustacean`(`uri` string);
      CREATE TAG IF NOT EXISTS `Legislature`(`uri` string);
      CREATE TAG IF NOT EXISTS `ComicsCharacter`(`uri` string);
      CREATE TAG IF NOT EXISTS `Q1914636`(`uri` string);
      CREATE TAG IF NOT EXISTS `IceHockeyPlayer`(`uri` string);
      CREATE TAG IF NOT EXISTS `Election`(`uri` string);
      CREATE TAG IF NOT EXISTS `Colour`(`uri` string);
      CREATE TAG IF NOT EXISTS `Food`(`uri` string);
      CREATE TAG IF NOT EXISTS `Museum`(`uri` string);
      CREATE TAG IF NOT EXISTS `Newspaper`(`uri` string);
      CREATE TAG IF NOT EXISTS `AmericanFootballPlayer`(`uri` string);
      CREATE TAG IF NOT EXISTS `Bacteria`(`uri` string);
      CREATE TAG IF NOT EXISTS `Bird`(`uri` string);
      CREATE TAG IF NOT EXISTS `SoccerManager`(`uri` string);
      CREATE TAG IF NOT EXISTS `CareerStation`(`uri` string);
      CREATE TAG IF NOT EXISTS `Tunnel`(`uri` string);
      CREATE TAG IF NOT EXISTS `TelevisionStation`(`uri` string);
      CREATE TAG IF NOT EXISTS `RadioStation`(`uri` string);
      CREATE TAG IF NOT EXISTS `Cricketer`(`uri` string);
      CREATE TAG IF NOT EXISTS `Anime`(`uri` string);
      CREATE TAG IF NOT EXISTS `Manga`(`uri` string);
      CREATE TAG IF NOT EXISTS `Protein`(`uri` string);
      CREATE TAG IF NOT EXISTS `Road`(`uri` string);
      CREATE TAG IF NOT EXISTS `FigureSkater`(`uri` string);
      CREATE TAG IF NOT EXISTS `HistoricPlace`(`uri` string);
      CREATE TAG IF NOT EXISTS `Ship`(`uri` string);
      CREATE TAG IF NOT EXISTS `Single`(`uri` string);
      CREATE TAG IF NOT EXISTS `Beverage`(`uri` string);
      CREATE TAG IF NOT EXISTS `CollegeCoach`(`uri` string);
      CREATE TAG IF NOT EXISTS `Mountain`(`uri` string);
      CREATE TAG IF NOT EXISTS `FormulaOneTeam`(`uri` string);
      CREATE TAG IF NOT EXISTS `AustralianFootballTeam`(`uri` string);
      CREATE TAG IF NOT EXISTS `Convention`(`uri` string);
      CREATE TAG IF NOT EXISTS `Comedian`(`uri` string);
      CREATE TAG IF NOT EXISTS `Monument`(`uri` string);
      CREATE TAG IF NOT EXISTS `RailwayTunnel`(`uri` string);
      CREATE TAG IF NOT EXISTS `Astronaut`(`uri` string);
      CREATE TAG IF NOT EXISTS `GovernmentAgency`(`uri` string);
      CREATE TAG IF NOT EXISTS `Painter`(`uri` string);
      CREATE TAG IF NOT EXISTS `Economist`(`uri` string);
      CREATE TAG IF NOT EXISTS `GreenAlga`(`uri` string);
      CREATE TAG IF NOT EXISTS `Animal`(`uri` string);
      CREATE TAG IF NOT EXISTS `RadioProgram`(`uri` string);
      CREATE TAG IF NOT EXISTS `PublicTransitSystem`(`uri` string);
      CREATE TAG IF NOT EXISTS `ComicsCreator`(`uri` string);
      CREATE TAG IF NOT EXISTS `Non_ProfitOrganisation`(`uri` string);
      CREATE TAG IF NOT EXISTS `Magazine`(`uri` string);
      CREATE TAG IF NOT EXISTS `ReligiousBuilding`(`uri` string);
      CREATE TAG IF NOT EXISTS `Village`(`uri` string);
      CREATE TAG IF NOT EXISTS `NascarDriver`(`uri` string);
      CREATE TAG IF NOT EXISTS `Bridge`(`uri` string);
      CREATE TAG IF NOT EXISTS `ProtectedArea`(`uri` string);
      CREATE TAG IF NOT EXISTS `Prison`(`uri` string);
      CREATE TAG IF NOT EXISTS `Currency`(`uri` string);
      CREATE TAG IF NOT EXISTS `Senator`(`uri` string);
      CREATE TAG IF NOT EXISTS `Website`(`uri` string);
      CREATE TAG IF NOT EXISTS `HockeyTeam`(`uri` string);
      CREATE TAG IF NOT EXISTS `ComicStrip`(`uri` string);
      CREATE TAG IF NOT EXISTS `Swimmer`(`uri` string);
      CREATE TAG IF NOT EXISTS `Publisher`(`uri` string);
      CREATE TAG IF NOT EXISTS `Brain`(`uri` string);
      CREATE TAG IF NOT EXISTS `Engineer`(`uri` string);
      CREATE TAG IF NOT EXISTS `Canal`(`uri` string);
      CREATE TAG IF NOT EXISTS `Governor`(`uri` string);
      CREATE TAG IF NOT EXISTS `MartialArtist`(`uri` string);
      CREATE TAG IF NOT EXISTS `RecordLabel`(`uri` string);
      CREATE TAG IF NOT EXISTS `Judge`(`uri` string);
      CREATE TAG IF NOT EXISTS `SoccerLeague`(`uri` string);
      CREATE TAG IF NOT EXISTS `Lighthouse`(`uri` string);
      CREATE TAG IF NOT EXISTS `Automobile`(`uri` string);
      CREATE TAG IF NOT EXISTS `AutomobileEngine`(`uri` string);
      CREATE TAG IF NOT EXISTS `SoccerPlayer`(`uri` string);
      CREATE TAG IF NOT EXISTS `Model`(`uri` string);
      CREATE TAG IF NOT EXISTS `ClassicalMusicArtist`(`uri` string);
      CREATE TAG IF NOT EXISTS `MemberOfParliament`(`uri` string);
      CREATE TAG IF NOT EXISTS `Dam`(`uri` string);
      CREATE TAG IF NOT EXISTS `SpaceStation`(`uri` string);
      CREATE TAG IF NOT EXISTS `Stadium`(`uri` string);
      CREATE TAG IF NOT EXISTS `Presenter`(`uri` string);
      CREATE TAG IF NOT EXISTS `MotorcycleRider`(`uri` string);
      CREATE TAG IF NOT EXISTS `Cleric`(`uri` string);
      CREATE TAG IF NOT EXISTS `Actor`(`uri` string);
      CREATE TAG IF NOT EXISTS `Chef`(`uri` string);
      CREATE TAG IF NOT EXISTS `Athlete`(`uri` string);
      CREATE TAG IF NOT EXISTS `Hospital`(`uri` string);
      CREATE TAG IF NOT EXISTS `FormulaOneRacer`(`uri` string);
      CREATE TAG IF NOT EXISTS `BasketballPlayer`(`uri` string);
      CREATE TAG IF NOT EXISTS `CultivatedVariety`(`uri` string);
      CREATE TAG IF NOT EXISTS `MilitaryStructure`(`uri` string);
      CREATE TAG IF NOT EXISTS `HorseRace`(`uri` string);
      CREATE TAG IF NOT EXISTS `MountainPass`(`uri` string);
      CREATE TAG IF NOT EXISTS `Castle`(`uri` string);
      CREATE TAG IF NOT EXISTS `Library`(`uri` string);
      CREATE TAG IF NOT EXISTS `Gymnast`(`uri` string);
      CREATE TAG IF NOT EXISTS `SiteOfSpecialScientificInterest`(`uri` string);
      CREATE TAG IF NOT EXISTS `RailwayLine`(`uri` string);
      CREATE TAG IF NOT EXISTS `ComedyGroup`(`uri` string);
      CREATE TAG IF NOT EXISTS `Grape`(`uri` string);
      CREATE TAG IF NOT EXISTS `Device`(`uri` string);
      CREATE TAG IF NOT EXISTS `SupremeCourtOfTheUnitedStatesCase`(`uri` string);
      CREATE TAG IF NOT EXISTS `Volcano`(`uri` string);
      CREATE TAG IF NOT EXISTS `IceHockeyLeague`(`uri` string);
      CREATE TAG IF NOT EXISTS `BasketballLeague`(`uri` string);
      CREATE TAG IF NOT EXISTS `PlayboyPlaymate`(`uri` string);
      CREATE TAG IF NOT EXISTS `Pope`(`uri` string);
      CREATE TAG IF NOT EXISTS `Cheese`(`uri` string);
      CREATE TAG IF NOT EXISTS `College`(`uri` string);
      CREATE TAG IF NOT EXISTS `RugbyLeague`(`uri` string);
      CREATE TAG IF NOT EXISTS `School`(`uri` string);
      CREATE TAG IF NOT EXISTS `Conifer`(`uri` string);
      CREATE TAG IF NOT EXISTS `NationalFootballLeagueEvent`(`uri` string);
      CREATE TAG IF NOT EXISTS `SportsTeam`(`uri` string);
      CREATE TAG IF NOT EXISTS `SpaceShuttle`(`uri` string);
      CREATE TAG IF NOT EXISTS `Brewery`(`uri` string);
      CREATE TAG IF NOT EXISTS `AnimangaCharacter`(`uri` string);
      CREATE TAG IF NOT EXISTS `TradeUnion`(`uri` string);
      CREATE TAG IF NOT EXISTS `HistoricBuilding`(`uri` string);
      CREATE TAG IF NOT EXISTS `TelevisionEpisode`(`uri` string);
      CREATE TAG IF NOT EXISTS `CyclingRace`(`uri` string);
      CREATE TAG IF NOT EXISTS `Guitarist`(`uri` string);
      CREATE TAG IF NOT EXISTS `OlympicResult`(`uri` string);
      CREATE TAG IF NOT EXISTS `ShoppingMall`(`uri` string);
      CREATE TAG IF NOT EXISTS `FilmFestival`(`uri` string);
      CREATE TAG IF NOT EXISTS `SoapCharacter`(`uri` string);
      CREATE TAG IF NOT EXISTS `SportsLeague`(`uri` string);
      CREATE TAG IF NOT EXISTS `Congressman`(`uri` string);
      CREATE TAG IF NOT EXISTS `Cave`(`uri` string);
      CREATE TAG IF NOT EXISTS `Fungus`(`uri` string);
      CREATE TAG IF NOT EXISTS `Embryology`(`uri` string);
      CREATE TAG IF NOT EXISTS `Year`(`uri` string);
      CREATE TAG IF NOT EXISTS `FootballMatch`(`uri` string);
      CREATE TAG IF NOT EXISTS `Artwork`(`uri` string);
      CREATE TAG IF NOT EXISTS `AdultActor`(`uri` string);
      CREATE TAG IF NOT EXISTS `Nerve`(`uri` string);
      CREATE TAG IF NOT EXISTS `Amphibian`(`uri` string);
      CREATE TAG IF NOT EXISTS `Olympics`(`uri` string);
      CREATE TAG IF NOT EXISTS `BaseballLeague`(`uri` string);
      CREATE TAG IF NOT EXISTS `Skater`(`uri` string);
      CREATE TAG IF NOT EXISTS `Boxer`(`uri` string);
      CREATE TAG IF NOT EXISTS `Historian`(`uri` string);
      CREATE TAG IF NOT EXISTS `Cardinal`(`uri` string);
      CREATE TAG IF NOT EXISTS `Galaxy`(`uri` string);
      CREATE TAG IF NOT EXISTS `OlympicEvent`(`uri` string);
      CREATE TAG IF NOT EXISTS `Skier`(`uri` string);
      CREATE TAG IF NOT EXISTS `AustralianRulesFootballPlayer`(`uri` string);
      CREATE TAG IF NOT EXISTS `GolfPlayer`(`uri` string);
      CREATE TAG IF NOT EXISTS `BasketballTeam`(`uri` string);
      CREATE TAG IF NOT EXISTS `Theatre`(`uri` string);
      CREATE TAG IF NOT EXISTS `MythologicalFigure`(`uri` string);
      CREATE TAG IF NOT EXISTS `Bone`(`uri` string);
      CREATE TAG IF NOT EXISTS `FashionDesigner`(`uri` string);
      CREATE TAG IF NOT EXISTS `PowerStation`(`uri` string);
      CREATE TAG IF NOT EXISTS `HollywoodCartoon`(`uri` string);
      CREATE TAG IF NOT EXISTS `Chancellor`(`uri` string);
      CREATE TAG IF NOT EXISTS `SoccerTournament`(`uri` string);
      CREATE TAG IF NOT EXISTS `Ambassador`(`uri` string);
      CREATE TAG IF NOT EXISTS `Muscle`(`uri` string);
      CREATE TAG IF NOT EXISTS `CanadianFootballLeague`(`uri` string);
      CREATE TAG IF NOT EXISTS `RadioHost`(`uri` string);
      CREATE TAG IF NOT EXISTS `ArtistDiscography`(`uri` string);
      CREATE TAG IF NOT EXISTS `Locomotive`(`uri` string);
      CREATE TAG IF NOT EXISTS `NetballPlayer`(`uri` string);
      CREATE TAG IF NOT EXISTS `RaceHorse`(`uri` string);
      CREATE TAG IF NOT EXISTS `SportsEvent`(`uri` string);
      CREATE TAG IF NOT EXISTS `RacingDriver`(`uri` string);
      CREATE TAG IF NOT EXISTS `Fern`(`uri` string);
      CREATE TAG IF NOT EXISTS `ClubMoss`(`uri` string);
      CREATE TAG IF NOT EXISTS `Ginkgo`(`uri` string);
      CREATE TAG IF NOT EXISTS `WineRegion`(`uri` string);
      CREATE TAG IF NOT EXISTS `Diocese`(`uri` string);
      CREATE TAG IF NOT EXISTS `CanadianFootballTeam`(`uri` string);
      CREATE TAG IF NOT EXISTS `Jockey`(`uri` string);
      CREATE TAG IF NOT EXISTS `GridironFootballPlayer`(`uri` string);
      CREATE TAG IF NOT EXISTS `RugbyPlayer`(`uri` string);
      CREATE TAG IF NOT EXISTS `Station`(`uri` string);
      CREATE TAG IF NOT EXISTS `Crater`(`uri` string);
      CREATE TAG IF NOT EXISTS `TennisTournament`(`uri` string);
      CREATE TAG IF NOT EXISTS `ScreenWriter`(`uri` string);
      CREATE TAG IF NOT EXISTS `AmateurBoxer`(`uri` string);
      CREATE TAG IF NOT EXISTS `GolfTournament`(`uri` string);
      CREATE TAG IF NOT EXISTS `BeautyQueen`(`uri` string);
      CREATE TAG IF NOT EXISTS `Restaurant`(`uri` string);
      CREATE TAG IF NOT EXISTS `LacrosseLeague`(`uri` string);
      CREATE TAG IF NOT EXISTS `Murderer`(`uri` string);
      CREATE TAG IF NOT EXISTS `BiologicalDatabase`(`uri` string);
      CREATE TAG IF NOT EXISTS `BusCompany`(`uri` string);
      CREATE TAG IF NOT EXISTS `Curler`(`uri` string);
      CREATE TAG IF NOT EXISTS `Photographer`(`uri` string);
      CREATE TAG IF NOT EXISTS `Motorcycle`(`uri` string);
      CREATE TAG IF NOT EXISTS `Glacier`(`uri` string);
      CREATE TAG IF NOT EXISTS `GaelicGamesPlayer`(`uri` string);
      CREATE TAG IF NOT EXISTS `SoccerClubSeason`(`uri` string);
      CREATE TAG IF NOT EXISTS `Cyclist`(`uri` string);
      CREATE TAG IF NOT EXISTS `Gnetophytes`(`uri` string);
      CREATE TAG IF NOT EXISTS `TelevisionHost`(`uri` string);
      CREATE TAG IF NOT EXISTS `RoadTunnel`(`uri` string);
      CREATE TAG IF NOT EXISTS `FloweringPlant`(`uri` string);
      CREATE TAG IF NOT EXISTS `Earthquake`(`uri` string);
      CREATE TAG IF NOT EXISTS `Arachnid`(`uri` string);
      CREATE TAG IF NOT EXISTS `GolfLeague`(`uri` string);
      CREATE TAG IF NOT EXISTS `AmusementParkAttraction`(`uri` string);
      CREATE TAG IF NOT EXISTS `Winery`(`uri` string);
      CREATE TAG IF NOT EXISTS `Moss`(`uri` string);
      CREATE TAG IF NOT EXISTS `SkiArea`(`uri` string);
      CREATE TAG IF NOT EXISTS `Train`(`uri` string);
      CREATE TAG IF NOT EXISTS `SnookerPlayer`(`uri` string);
      CREATE TAG IF NOT EXISTS `Baronet`(`uri` string);
      CREATE TAG IF NOT EXISTS `ClassicalMusicComposition`(`uri` string);
      CREATE TAG IF NOT EXISTS `Mayor`(`uri` string);
      CREATE TAG IF NOT EXISTS `BusinessPerson`(`uri` string);
      CREATE TAG IF NOT EXISTS `PokerPlayer`(`uri` string);
      CREATE TAG IF NOT EXISTS `Cycad`(`uri` string);
      CREATE TAG IF NOT EXISTS `FootballLeagueSeason`(`uri` string);
      CREATE TAG IF NOT EXISTS `TennisLeague`(`uri` string);
      CREATE TAG IF NOT EXISTS `RoadJunction`(`uri` string);
      CREATE TAG IF NOT EXISTS `Poet`(`uri` string);
      CREATE TAG IF NOT EXISTS `Racecourse`(`uri` string);
      CREATE TAG IF NOT EXISTS `Vein`(`uri` string);
      CREATE TAG IF NOT EXISTS `Entomologist`(`uri` string);
      CREATE TAG IF NOT EXISTS `Archaea`(`uri` string);
      CREATE TAG IF NOT EXISTS `Event`(`uri` string);
      CREATE TAG IF NOT EXISTS `Surname`(`uri` string);
      CREATE TAG IF NOT EXISTS `LawFirm`(`uri` string);
      CREATE TAG IF NOT EXISTS `TableTennisPlayer`(`uri` string);
      CREATE TAG IF NOT EXISTS `SnookerChamp`(`uri` string);
      CREATE TAG IF NOT EXISTS `Fashion`(`uri` string);
      CREATE TAG IF NOT EXISTS `Lymph`(`uri` string);
      CREATE TAG IF NOT EXISTS `CricketTeam`(`uri` string);
      CREATE TAG IF NOT EXISTS `MusicalWork`(`uri` string);
      CREATE TAG IF NOT EXISTS `Hotel`(`uri` string);
      CREATE TAG IF NOT EXISTS `HandballPlayer`(`uri` string);
      CREATE TAG IF NOT EXISTS `Valley`(`uri` string);
      CREATE TAG IF NOT EXISTS `BadmintonPlayer`(`uri` string);
      CREATE TAG IF NOT EXISTS `Garden`(`uri` string);
      CREATE TAG IF NOT EXISTS `SumoWrestler`(`uri` string);
      CREATE TAG IF NOT EXISTS `ArchitecturalStructure`(`uri` string);
      CREATE TAG IF NOT EXISTS `DartsPlayer`(`uri` string);
      CREATE TAG IF NOT EXISTS `HorseTrainer`(`uri` string);
      CREATE TAG IF NOT EXISTS `TelevisionSeason`(`uri` string);
      CREATE TAG IF NOT EXISTS `WrestlingEvent`(`uri` string);
      CREATE TAG IF NOT EXISTS `SquashPlayer`(`uri` string);
      CREATE TAG IF NOT EXISTS `Novel`(`uri` string);
      CREATE TAG IF NOT EXISTS `FieldHockeyLeague`(`uri` string);
      CREATE TAG IF NOT EXISTS `VoiceActor`(`uri` string);
      CREATE TAG IF NOT EXISTS `VolleyballLeague`(`uri` string);
      CREATE TAG IF NOT EXISTS `Stream`(`uri` string);
      CREATE TAG IF NOT EXISTS `Asteroid`(`uri` string);
      CREATE TAG IF NOT EXISTS `Ligament`(`uri` string);
      CREATE TAG IF NOT EXISTS `GrandPrix`(`uri` string);
      CREATE TAG IF NOT EXISTS `SnookerWorldRanking`(`uri` string);
      CREATE TAG IF NOT EXISTS `RollerCoaster`(`uri` string);
      CREATE TAG IF NOT EXISTS `InlineHockeyLeague`(`uri` string);
      CREATE TAG IF NOT EXISTS `EurovisionSongContestEntry`(`uri` string);
      CREATE TAG IF NOT EXISTS `CricketLeague`(`uri` string);
      CREATE TAG IF NOT EXISTS `NationalCollegiateAthleticAssociationAthlete`(`uri` string);
      CREATE TAG IF NOT EXISTS `GolfCourse`(`uri` string);
      CREATE TAG IF NOT EXISTS `HandballTeam`(`uri` string);
      CREATE TAG IF NOT EXISTS `CyclingTeam`(`uri` string);
      CREATE TAG IF NOT EXISTS `LacrossePlayer`(`uri` string);
      CREATE TAG IF NOT EXISTS `NationalFootballLeagueSeason`(`uri` string);
      CREATE TAG IF NOT EXISTS `VolleyballPlayer`(`uri` string);
      CREATE TAG IF NOT EXISTS `Rower`(`uri` string);
      CREATE TAG IF NOT EXISTS `BeachVolleyballPlayer`(`uri` string);
      CREATE TAG IF NOT EXISTS `MusicFestival`(`uri` string);
      CREATE TAG IF NOT EXISTS `SpeedwayTeam`(`uri` string);
      CREATE TAG IF NOT EXISTS `WomensTennisAssociationTournament`(`uri` string);
      CREATE TAG IF NOT EXISTS `VideogamesLeague`(`uri` string);
      CREATE TAG IF NOT EXISTS `EducationalInstitution`(`uri` string);
      CREATE TAG IF NOT EXISTS `WaterwayTunnel`(`uri` string);
      CREATE TAG IF NOT EXISTS `HorseRider`(`uri` string);
      CREATE TAG IF NOT EXISTS `AcademicConference`(`uri` string);
      CREATE TAG IF NOT EXISTS `BowlingLeague`(`uri` string);
      CREATE TAG IF NOT EXISTS `LaunchPad`(`uri` string);
      CREATE TAG IF NOT EXISTS `WaterRide`(`uri` string);
      CREATE TAG IF NOT EXISTS `Spacecraft`(`uri` string);
      CREATE TAG IF NOT EXISTS `SpeedwayRider`(`uri` string);
      CREATE TAG IF NOT EXISTS `Skyscraper`(`uri` string);
      CREATE TAG IF NOT EXISTS `RailwayStation`(`uri` string);
      CREATE TAG IF NOT EXISTS `PoloLeague`(`uri` string);
      CREATE TAG IF NOT EXISTS `AutoRacingLeague`(`uri` string);
      CREATE TAG IF NOT EXISTS `CricketGround`(`uri` string);
      CREATE TAG IF NOT EXISTS `AustralianFootballLeague`(`uri` string);
      CREATE TAG IF NOT EXISTS `VolleyballCoach`(`uri` string);
      CREATE TAG IF NOT EXISTS `MotorcycleRacingLeague`(`uri` string);
      CREATE TAG IF NOT EXISTS `NCAATeamSeason`(`uri` string);
      CREATE TAG IF NOT EXISTS `MixedMartialArtsEvent`(`uri` string);
      CREATE TAG IF NOT EXISTS `BaseballSeason`(`uri` string);
      CREATE TAG IF NOT EXISTS `YearInSpaceflight`(`uri` string);
      CREATE TAG IF NOT EXISTS `MixedMartialArtsLeague`(`uri` string);
      CREATE TAG IF NOT EXISTS `SpeedwayLeague`(`uri` string);
      CREATE TAG IF NOT EXISTS `SoftballLeague`(`uri` string);
      CREATE TAG IF NOT EXISTS `Canoeist`(`uri` string);
      CREATE TAG IF NOT EXISTS `HandballLeague`(`uri` string);
      CREATE TAG IF NOT EXISTS `ResearchProject`(`uri` string);
      CREATE TAG IF NOT EXISTS `SolarEclipse`(`uri` string);
      CREATE TAG IF NOT EXISTS `CurlingLeague`(`uri` string);
      CREATE TAG IF NOT EXISTS `Bay`(`uri` string);
      CREATE TAG IF NOT EXISTS `HumanGene`(`uri` string);
      CREATE TAG IF NOT EXISTS `HumanGeneLocation`(`uri` string);
      CREATE TAG IF NOT EXISTS `MouseGene`(`uri` string);
      CREATE TAG IF NOT EXISTS `MouseGeneLocation`(`uri` string);
      CREATE TAG IF NOT EXISTS `BoxingLeague`(`uri` string);
      CREATE TAG IF NOT EXISTS `ChemicalElement`(`uri` string);
      CREATE EDGE IF NOT EXISTS `director`();
      CREATE EDGE IF NOT EXISTS `producer`();
      CREATE EDGE IF NOT EXISTS `writer_e`();
      CREATE EDGE IF NOT EXISTS `distributor`();
      CREATE EDGE IF NOT EXISTS `country_e`();
      CREATE EDGE IF NOT EXISTS `language_e`();
      CREATE EDGE IF NOT EXISTS `author`();
      CREATE EDGE IF NOT EXISTS `illustrator`();
      CREATE EDGE IF NOT EXISTS `literaryGenre`();
      CREATE EDGE IF NOT EXISTS `publisher_e`();
      CREATE EDGE IF NOT EXISTS `doctoralAdvisor`();
      CREATE EDGE IF NOT EXISTS `doctoralStudent`();
      CREATE EDGE IF NOT EXISTS `birthPlace`();
      CREATE EDGE IF NOT EXISTS `almaMater`();
      CREATE EDGE IF NOT EXISTS `field`();
      CREATE EDGE IF NOT EXISTS `knownFor`();
      CREATE EDGE IF NOT EXISTS `award_e`();
      CREATE EDGE IF NOT EXISTS `occupation`();
      CREATE EDGE IF NOT EXISTS `spouse`();
      CREATE EDGE IF NOT EXISTS `homepage`();
      CREATE EDGE IF NOT EXISTS `presenter_e`();
      CREATE EDGE IF NOT EXISTS `owl_differentFrom`();
      CREATE EDGE IF NOT EXISTS `rdf_schema_seeAlso`();
      CREATE EDGE IF NOT EXISTS `region`();
      CREATE EDGE IF NOT EXISTS `era`();
      CREATE EDGE IF NOT EXISTS `philosophicalSchool`();
      CREATE EDGE IF NOT EXISTS `mainInterest`();
      CREATE EDGE IF NOT EXISTS `notableIdea`();
      CREATE EDGE IF NOT EXISTS `influencedBy`();
      CREATE EDGE IF NOT EXISTS `capital`();
      CREATE EDGE IF NOT EXISTS `largestCity`();
      CREATE EDGE IF NOT EXISTS `headquarter`();
      CREATE EDGE IF NOT EXISTS `deathPlace`();
      CREATE EDGE IF NOT EXISTS `restingPlace`();
      CREATE EDGE IF NOT EXISTS `party`();
      CREATE EDGE IF NOT EXISTS `child`();
      CREATE EDGE IF NOT EXISTS `religion`();
      CREATE EDGE IF NOT EXISTS `militaryRank`();
      CREATE EDGE IF NOT EXISTS `battle`();
      CREATE EDGE IF NOT EXISTS `successor`();
      CREATE EDGE IF NOT EXISTS `predecessor`();
      CREATE EDGE IF NOT EXISTS `termPeriod`();
      CREATE EDGE IF NOT EXISTS `soundRecording`();
      CREATE EDGE IF NOT EXISTS `academicDiscipline`();
      CREATE EDGE IF NOT EXISTS `anthem`();
      CREATE EDGE IF NOT EXISTS `governmentType`();
      CREATE EDGE IF NOT EXISTS `currency_e`();
      CREATE EDGE IF NOT EXISTS `officialLanguage`();
      CREATE EDGE IF NOT EXISTS `ethnicGroup_e`();
      CREATE EDGE IF NOT EXISTS `leader`();
      CREATE EDGE IF NOT EXISTS `timeZone`();
      CREATE EDGE IF NOT EXISTS `influenced`();
      CREATE EDGE IF NOT EXISTS `kingdom`();
      CREATE EDGE IF NOT EXISTS `phylum`();
      CREATE EDGE IF NOT EXISTS `class`();
      CREATE EDGE IF NOT EXISTS `order`();
      CREATE EDGE IF NOT EXISTS `family`();
      CREATE EDGE IF NOT EXISTS `binomialAuthority`();
      CREATE EDGE IF NOT EXISTS `residence`();
      CREATE EDGE IF NOT EXISTS `notableWork`();
      CREATE EDGE IF NOT EXISTS `ethnicity`();
      CREATE EDGE IF NOT EXISTS `citizenship`();
      CREATE EDGE IF NOT EXISTS `composer`();
      CREATE EDGE IF NOT EXISTS `type`();
      CREATE EDGE IF NOT EXISTS `parent`();
      CREATE EDGE IF NOT EXISTS `developer`();
      CREATE EDGE IF NOT EXISTS `genre`();
      CREATE EDGE IF NOT EXISTS `computingPlatform`();
      CREATE EDGE IF NOT EXISTS `designer`();
      CREATE EDGE IF NOT EXISTS `cpu`();
      CREATE EDGE IF NOT EXISTS `academicAdvisor`();
      CREATE EDGE IF NOT EXISTS `place_e`();
      CREATE EDGE IF NOT EXISTS `territory`();
      CREATE EDGE IF NOT EXISTS `commander`();
      CREATE EDGE IF NOT EXISTS `militaryBranch`();
      CREATE EDGE IF NOT EXISTS `militaryUnit_e`();
      CREATE EDGE IF NOT EXISTS `bandMember`();
      CREATE EDGE IF NOT EXISTS `hometown`();
      CREATE EDGE IF NOT EXISTS `recordLabel_e`();
      CREATE EDGE IF NOT EXISTS `location`();
      CREATE EDGE IF NOT EXISTS `foundationPlace`();
      CREATE EDGE IF NOT EXISTS `foundedBy`();
      CREATE EDGE IF NOT EXISTS `locationCity`();
      CREATE EDGE IF NOT EXISTS `keyPerson`();
      CREATE EDGE IF NOT EXISTS `industry`();
      CREATE EDGE IF NOT EXISTS `product`();
      CREATE EDGE IF NOT EXISTS `owner`();
      CREATE EDGE IF NOT EXISTS `owningCompany`();
      CREATE EDGE IF NOT EXISTS `parentCompany`();
      CREATE EDGE IF NOT EXISTS `division`();
      CREATE EDGE IF NOT EXISTS `subsidiary`();
      CREATE EDGE IF NOT EXISTS `mediaType`();
      CREATE EDGE IF NOT EXISTS `outflow`();
      CREATE EDGE IF NOT EXISTS `spokenIn`();
      CREATE EDGE IF NOT EXISTS `languageFamily`();
      CREATE EDGE IF NOT EXISTS `leaderName`();
      CREATE EDGE IF NOT EXISTS `leaderParty`();
      CREATE EDGE IF NOT EXISTS `isPartOf`();
      CREATE EDGE IF NOT EXISTS `deathCause`();
      CREATE EDGE IF NOT EXISTS `training`();
      CREATE EDGE IF NOT EXISTS `movement`();
      CREATE EDGE IF NOT EXISTS `governingBody`();
      CREATE EDGE IF NOT EXISTS `part`();
      CREATE EDGE IF NOT EXISTS `relative`();
      CREATE EDGE IF NOT EXISTS `league`();
      CREATE EDGE IF NOT EXISTS `service`();
      CREATE EDGE IF NOT EXISTS `chancellor_e`();
      CREATE EDGE IF NOT EXISTS `president_e`();
      CREATE EDGE IF NOT EXISTS `map`();
      CREATE EDGE IF NOT EXISTS `board`();
      CREATE EDGE IF NOT EXISTS `nationality`();
      CREATE EDGE IF NOT EXISTS `manufacturer`();
      CREATE EDGE IF NOT EXISTS `operatingSystem`();
      CREATE EDGE IF NOT EXISTS `formerBandMember`();
      CREATE EDGE IF NOT EXISTS `associatedBand`();
      CREATE EDGE IF NOT EXISTS `associatedMusicalArtist`();
      CREATE EDGE IF NOT EXISTS `personFunction_e`();
      CREATE EDGE IF NOT EXISTS `creator`();
      CREATE EDGE IF NOT EXISTS `portrayer`();
      CREATE EDGE IF NOT EXISTS `lastAppearance`();
      CREATE EDGE IF NOT EXISTS `sportGoverningBody`();
      CREATE EDGE IF NOT EXISTS `gender`();
      CREATE EDGE IF NOT EXISTS `veneratedIn`();
      CREATE EDGE IF NOT EXISTS `city_e`();
      CREATE EDGE IF NOT EXISTS `daylightSavingTimeZone`();
      CREATE EDGE IF NOT EXISTS `similar`();
      CREATE EDGE IF NOT EXISTS `profession`();
      CREATE EDGE IF NOT EXISTS `institution`();
      CREATE EDGE IF NOT EXISTS `genus`();
      CREATE EDGE IF NOT EXISTS `partner`();
      CREATE EDGE IF NOT EXISTS `monarch_e`();
      CREATE EDGE IF NOT EXISTS `page`();
      CREATE EDGE IF NOT EXISTS `debutTeam`();
      CREATE EDGE IF NOT EXISTS `district`();
      CREATE EDGE IF NOT EXISTS `mayor_e`();
      CREATE EDGE IF NOT EXISTS `sourceCountry`();
      CREATE EDGE IF NOT EXISTS `riverMouth`();
      CREATE EDGE IF NOT EXISTS `origin`();
      CREATE EDGE IF NOT EXISTS `architecturalStyle`();
      CREATE EDGE IF NOT EXISTS `mouthMountain`();
      CREATE EDGE IF NOT EXISTS `mouthPlace`();
      CREATE EDGE IF NOT EXISTS `internationalAffiliation`();
      CREATE EDGE IF NOT EXISTS `youthWing`();
      CREATE EDGE IF NOT EXISTS `species_e`();
      CREATE EDGE IF NOT EXISTS `series`();
      CREATE EDGE IF NOT EXISTS `canonizedBy`();
      CREATE EDGE IF NOT EXISTS `programmingLanguage_e`();
      CREATE EDGE IF NOT EXISTS `license`();
      CREATE EDGE IF NOT EXISTS `federalState`();
      CREATE EDGE IF NOT EXISTS `stateOfOrigin`();
      CREATE EDGE IF NOT EXISTS `populationPlace`();
      CREATE EDGE IF NOT EXISTS `related`();
      CREATE EDGE IF NOT EXISTS `placeOfBurial`();
      CREATE EDGE IF NOT EXISTS `beatifiedPlace`();
      CREATE EDGE IF NOT EXISTS `beatifiedBy`();
      CREATE EDGE IF NOT EXISTS `canonizedPlace`();
      CREATE EDGE IF NOT EXISTS `majorShrine`();
      CREATE EDGE IF NOT EXISTS `otherParty`();
      CREATE EDGE IF NOT EXISTS `vicePresident`();
      CREATE EDGE IF NOT EXISTS `source`();
      CREATE EDGE IF NOT EXISTS `sourceMountain`();
      CREATE EDGE IF NOT EXISTS `sourcePlace`();
      CREATE EDGE IF NOT EXISTS `sourceRegion`();
      CREATE EDGE IF NOT EXISTS `mouthCountry`();
      CREATE EDGE IF NOT EXISTS `leftTributary`();
      CREATE EDGE IF NOT EXISTS `rightTributary`();
      CREATE EDGE IF NOT EXISTS `education`();
      CREATE EDGE IF NOT EXISTS `notableStudent`();
      CREATE EDGE IF NOT EXISTS `archipelago`();
      CREATE EDGE IF NOT EXISTS `majorIsland`();
      CREATE EDGE IF NOT EXISTS `lieutenant`();
      CREATE EDGE IF NOT EXISTS `position`();
      CREATE EDGE IF NOT EXISTS `state`();
      CREATE EDGE IF NOT EXISTS `campus`();
      CREATE EDGE IF NOT EXISTS `athletics`();
      CREATE EDGE IF NOT EXISTS `affiliation`();
      CREATE EDGE IF NOT EXISTS `leaderFunction`();
      CREATE EDGE IF NOT EXISTS `person_e`();
      CREATE EDGE IF NOT EXISTS `ideology`();
      CREATE EDGE IF NOT EXISTS `starring`();
      CREATE EDGE IF NOT EXISTS `executiveProducer`();
      CREATE EDGE IF NOT EXISTS `company_e`();
      CREATE EDGE IF NOT EXISTS `channel`();
      CREATE EDGE IF NOT EXISTS `format`();
      CREATE EDGE IF NOT EXISTS `domain`();
      CREATE EDGE IF NOT EXISTS `coverArtist`();
      CREATE EDGE IF NOT EXISTS `subsequentWork`();
      CREATE EDGE IF NOT EXISTS `branchFrom`();
      CREATE EDGE IF NOT EXISTS `branchTo`();
      CREATE EDGE IF NOT EXISTS `supplies`();
      CREATE EDGE IF NOT EXISTS `vein_e`();
      CREATE EDGE IF NOT EXISTS `precursor`();
      CREATE EDGE IF NOT EXISTS `employer`();
      CREATE EDGE IF NOT EXISTS `significantBuilding`();
      CREATE EDGE IF NOT EXISTS `significantDesign`();
      CREATE EDGE IF NOT EXISTS `manager`();
      CREATE EDGE IF NOT EXISTS `coach`();
      CREATE EDGE IF NOT EXISTS `instrument`();
      CREATE EDGE IF NOT EXISTS `deputy`();
      CREATE EDGE IF NOT EXISTS `translator`();
      CREATE EDGE IF NOT EXISTS `ground`();
      CREATE EDGE IF NOT EXISTS `chairman`();
      CREATE EDGE IF NOT EXISTS `season`();
      CREATE EDGE IF NOT EXISTS `team`();
      CREATE EDGE IF NOT EXISTS `currentMember`();
      CREATE EDGE IF NOT EXISTS `languageRegulator`();
      CREATE EDGE IF NOT EXISTS `artery_e`();
      CREATE EDGE IF NOT EXISTS `nerve_e`();
      CREATE EDGE IF NOT EXISTS `lymph_e`();
      CREATE EDGE IF NOT EXISTS `operator`();
      CREATE EDGE IF NOT EXISTS `network`();
      CREATE EDGE IF NOT EXISTS `administrativeDistrict`();
      CREATE EDGE IF NOT EXISTS `firstDriver`();
      CREATE EDGE IF NOT EXISTS `regionServed`();
      CREATE EDGE IF NOT EXISTS `hubAirport`();
      CREATE EDGE IF NOT EXISTS `lounge`();
      CREATE EDGE IF NOT EXISTS `alliance`();
      CREATE EDGE IF NOT EXISTS `equipment`();
      CREATE EDGE IF NOT EXISTS `stylisticOrigin`();
      CREATE EDGE IF NOT EXISTS `musicSubgenre`();
      CREATE EDGE IF NOT EXISTS `colour_e`();
      CREATE EDGE IF NOT EXISTS `secretaryGeneral`();
      CREATE EDGE IF NOT EXISTS `nationalAffiliation`();
      CREATE EDGE IF NOT EXISTS `primeMinister_e`();
      CREATE EDGE IF NOT EXISTS `canton`();
      CREATE EDGE IF NOT EXISTS `twinTown`();
      CREATE EDGE IF NOT EXISTS `highestPlace`();
      CREATE EDGE IF NOT EXISTS `lowestPlace`();
      CREATE EDGE IF NOT EXISTS `neighboringMunicipality`();
      CREATE EDGE IF NOT EXISTS `architect_e`();
      CREATE EDGE IF NOT EXISTS `billed`();
      CREATE EDGE IF NOT EXISTS `discoverer`();
      CREATE EDGE IF NOT EXISTS `province`();
      CREATE EDGE IF NOT EXISTS `locationCountry`();
      CREATE EDGE IF NOT EXISTS `principalArea`();
      CREATE EDGE IF NOT EXISTS `ceremonialCounty`();
      CREATE EDGE IF NOT EXISTS `councilArea`();
      CREATE EDGE IF NOT EXISTS `lieutenancyArea`();
      CREATE EDGE IF NOT EXISTS `department`();
      CREATE EDGE IF NOT EXISTS `editor`();
      CREATE EDGE IF NOT EXISTS `previousWork`();
      CREATE EDGE IF NOT EXISTS `commandStructure`();
      CREATE EDGE IF NOT EXISTS `secondCommander`();
      CREATE EDGE IF NOT EXISTS `thirdCommander`();
      CREATE EDGE IF NOT EXISTS `fourthCommander`();
      CREATE EDGE IF NOT EXISTS `musicBy`();
      CREATE EDGE IF NOT EXISTS `lyrics`();
      CREATE EDGE IF NOT EXISTS `basedOn`();
      CREATE EDGE IF NOT EXISTS `relation`();
      CREATE EDGE IF NOT EXISTS `nonFictionSubject`();
      CREATE EDGE IF NOT EXISTS `broadcastArea`();
      CREATE EDGE IF NOT EXISTS `premierePlace`();
      CREATE EDGE IF NOT EXISTS `originalLanguage`();
      CREATE EDGE IF NOT EXISTS `rocketFunction`();
      CREATE EDGE IF NOT EXISTS `usedInWar`();
      CREATE EDGE IF NOT EXISTS `derivative`();
      CREATE EDGE IF NOT EXISTS `musicFusionGenre`();
      CREATE EDGE IF NOT EXISTS `musicComposer`();
      CREATE EDGE IF NOT EXISTS `cinematography`();
      CREATE EDGE IF NOT EXISTS `editing`();
      CREATE EDGE IF NOT EXISTS `artist_e`();
      CREATE EDGE IF NOT EXISTS `recordedIn`();
      CREATE EDGE IF NOT EXISTS `openingTheme`();
      CREATE EDGE IF NOT EXISTS `inflow`();
      CREATE EDGE IF NOT EXISTS `island_e`();
      CREATE EDGE IF NOT EXISTS `nearestCity`();
      CREATE EDGE IF NOT EXISTS `mergedIntoParty`();
      CREATE EDGE IF NOT EXISTS `europeanAffiliation`();
      CREATE EDGE IF NOT EXISTS `europeanParliamentGroup`();
      CREATE EDGE IF NOT EXISTS `highestRegion`();
      CREATE EDGE IF NOT EXISTS `capitalMountain`();
      CREATE EDGE IF NOT EXISTS `capitalPlace`();
      CREATE EDGE IF NOT EXISTS `capitalRegion`();
      CREATE EDGE IF NOT EXISTS `governmentRegion`();
      CREATE EDGE IF NOT EXISTS `governmentCountry`();
      CREATE EDGE IF NOT EXISTS `border`();
      CREATE EDGE IF NOT EXISTS `governor_e`();
      CREATE EDGE IF NOT EXISTS `voice`();
      CREATE EDGE IF NOT EXISTS `regionalLanguage`();
      CREATE EDGE IF NOT EXISTS `category`();
      CREATE EDGE IF NOT EXISTS `garrison`();
      CREATE EDGE IF NOT EXISTS `notableCommander`();
      CREATE EDGE IF NOT EXISTS `isPartOfMilitaryConflict`();
      CREATE EDGE IF NOT EXISTS `politicalPartyOfLeader`();
      CREATE EDGE IF NOT EXISTS `politicalPartyInLegislature`();
      CREATE EDGE IF NOT EXISTS `draftTeam`();
      CREATE EDGE IF NOT EXISTS `whaDraftTeam`();
      CREATE EDGE IF NOT EXISTS `formerTeam`();
      CREATE EDGE IF NOT EXISTS `firstLeader`();
      CREATE EDGE IF NOT EXISTS `secondLeader`();
      CREATE EDGE IF NOT EXISTS `associate`();
      CREATE EDGE IF NOT EXISTS `destination`();
      CREATE EDGE IF NOT EXISTS `ingredient`();
      CREATE EDGE IF NOT EXISTS `governorGeneral`();
      CREATE EDGE IF NOT EXISTS `arrondissement`();
      CREATE EDGE IF NOT EXISTS `careerStation_e`();
      CREATE EDGE IF NOT EXISTS `managerClub`();
      CREATE EDGE IF NOT EXISTS `mainOrgan`();
      CREATE EDGE IF NOT EXISTS `narrator`();
      CREATE EDGE IF NOT EXISTS `pictureFormat`();
      CREATE EDGE IF NOT EXISTS `sisterStation`();
      CREATE EDGE IF NOT EXISTS `programmeFormat`();
      CREATE EDGE IF NOT EXISTS `webcast`();
      CREATE EDGE IF NOT EXISTS `magazine_e`();
      CREATE EDGE IF NOT EXISTS `founder`();
      CREATE EDGE IF NOT EXISTS `broadcastNetwork_e`();
      CREATE EDGE IF NOT EXISTS `routeStart`();
      CREATE EDGE IF NOT EXISTS `routeEnd`();
      CREATE EDGE IF NOT EXISTS `routeJunction`();
      CREATE EDGE IF NOT EXISTS `formerCoach`();
      CREATE EDGE IF NOT EXISTS `launchSite`();
      CREATE EDGE IF NOT EXISTS `musicalArtist_e`();
      CREATE EDGE IF NOT EXISTS `musicalBand`();
      CREATE EDGE IF NOT EXISTS `locatedInArea`();
      CREATE EDGE IF NOT EXISTS `patron`();
      CREATE EDGE IF NOT EXISTS `aircraftFighter`();
      CREATE EDGE IF NOT EXISTS `aircraftTransport`();
      CREATE EDGE IF NOT EXISTS `builder`();
      CREATE EDGE IF NOT EXISTS `largestSettlement`();
      CREATE EDGE IF NOT EXISTS `splitFromParty`();
      CREATE EDGE IF NOT EXISTS `routeStartLocation`();
      CREATE EDGE IF NOT EXISTS `routeEndLocation`();
      CREATE EDGE IF NOT EXISTS `typeOfElectrification`();
      CREATE EDGE IF NOT EXISTS `selection`();
      CREATE EDGE IF NOT EXISTS `jurisdiction`();
      CREATE EDGE IF NOT EXISTS `parentOrganisation`();
      CREATE EDGE IF NOT EXISTS `connotation`();
      CREATE EDGE IF NOT EXISTS `variantOf`();
      CREATE EDGE IF NOT EXISTS `depiction`();
      CREATE EDGE IF NOT EXISTS `provost`();
      CREATE EDGE IF NOT EXISTS `mouthRegion`();
      CREATE EDGE IF NOT EXISTS `gameArtist`();
      CREATE EDGE IF NOT EXISTS `tenant`();
      CREATE EDGE IF NOT EXISTS `hasVariant`();
      CREATE EDGE IF NOT EXISTS `creatorOfDish`();
      CREATE EDGE IF NOT EXISTS `operatedBy`();
      CREATE EDGE IF NOT EXISTS `gameEngine`();
      CREATE EDGE IF NOT EXISTS `crosses`();
      CREATE EDGE IF NOT EXISTS `maintainedBy`();
      CREATE EDGE IF NOT EXISTS `management`();
      CREATE EDGE IF NOT EXISTS `usingCountry`();
      CREATE EDGE IF NOT EXISTS `thumbnail`();
      CREATE EDGE IF NOT EXISTS `sport_e`();
      CREATE EDGE IF NOT EXISTS `generalManager`();
      CREATE EDGE IF NOT EXISTS `chairperson`();
      CREATE EDGE IF NOT EXISTS `county`();
      CREATE EDGE IF NOT EXISTS `municipality`();
      CREATE EDGE IF NOT EXISTS `isPartOfAnatomicalStructure`();
      CREATE EDGE IF NOT EXISTS `twinCountry`();
      CREATE EDGE IF NOT EXISTS `significantProject`();
      CREATE EDGE IF NOT EXISTS `stadium_e`();
      CREATE EDGE IF NOT EXISTS `principalEngineer`();
      CREATE EDGE IF NOT EXISTS `engineer_e`();
      CREATE EDGE IF NOT EXISTS `riverBranchOf`();
      CREATE EDGE IF NOT EXISTS `sourceConfluenceMountain`();
      CREATE EDGE IF NOT EXISTS `sourceConfluencePlace`();
      CREATE EDGE IF NOT EXISTS `aircraftInterceptor`();
      CREATE EDGE IF NOT EXISTS `album_e`();
      CREATE EDGE IF NOT EXISTS `endingTheme`();
      CREATE EDGE IF NOT EXISTS `saint_e`();
      CREATE EDGE IF NOT EXISTS `march`();
      CREATE EDGE IF NOT EXISTS `childOrganisation`();
      CREATE EDGE IF NOT EXISTS `assembly`();
      CREATE EDGE IF NOT EXISTS `bodyStyle`();
      CREATE EDGE IF NOT EXISTS `engine`();
      CREATE EDGE IF NOT EXISTS `agency`();
      CREATE EDGE IF NOT EXISTS `biome`();
      CREATE EDGE IF NOT EXISTS `distributingLabel`();
      CREATE EDGE IF NOT EXISTS `distributingCompany`();
      CREATE EDGE IF NOT EXISTS `house`();
      CREATE EDGE IF NOT EXISTS `river_e`();
      CREATE EDGE IF NOT EXISTS `lake_e`();
      CREATE EDGE IF NOT EXISTS `unitaryAuthority`();
      CREATE EDGE IF NOT EXISTS `powerType`();
      CREATE EDGE IF NOT EXISTS `countySeat`();
      CREATE EDGE IF NOT EXISTS `owningOrganisation`();
      CREATE EDGE IF NOT EXISTS `firstRace`();
      CREATE EDGE IF NOT EXISTS `firstWin`();
      CREATE EDGE IF NOT EXISTS `lastWin`();
      CREATE EDGE IF NOT EXISTS `lastRace`();
      CREATE EDGE IF NOT EXISTS `appointer`();
      CREATE EDGE IF NOT EXISTS `borough`();
      CREATE EDGE IF NOT EXISTS `highschool`();
      CREATE EDGE IF NOT EXISTS `college_e`();
      CREATE EDGE IF NOT EXISTS `mountainRange_e`();
      CREATE EDGE IF NOT EXISTS `firstAscentPerson`();
      CREATE EDGE IF NOT EXISTS `formerPartner`();
      CREATE EDGE IF NOT EXISTS `formerChoreographer`();
      CREATE EDGE IF NOT EXISTS `highestState`();
      CREATE EDGE IF NOT EXISTS `startPoint`();
      CREATE EDGE IF NOT EXISTS `endPoint`();
      CREATE EDGE IF NOT EXISTS `head`();
      CREATE EDGE IF NOT EXISTS `lowestMountain`();
      CREATE EDGE IF NOT EXISTS `government`();
      CREATE EDGE IF NOT EXISTS `designCompany`();
      CREATE EDGE IF NOT EXISTS `areaOfSearch`();
      CREATE EDGE IF NOT EXISTS `parentMountainPeak`();
      CREATE EDGE IF NOT EXISTS `wineRegion_e`();
      CREATE EDGE IF NOT EXISTS `opponent`();
      CREATE EDGE IF NOT EXISTS `sourceConfluence`();
      CREATE EDGE IF NOT EXISTS `sourceConfluenceRegion`();
      CREATE EDGE IF NOT EXISTS `homeport`();
      CREATE EDGE IF NOT EXISTS `viceChancellor`();
      CREATE EDGE IF NOT EXISTS `capitalCountry`();
      CREATE EDGE IF NOT EXISTS `highestMountain`();
      CREATE EDGE IF NOT EXISTS `layout`();
      CREATE EDGE IF NOT EXISTS `automobilePlatform`();
      CREATE EDGE IF NOT EXISTS `relatedMeanOfTransportation`();
      CREATE EDGE IF NOT EXISTS `sales`();
      CREATE EDGE IF NOT EXISTS `spokesperson`();
      CREATE EDGE IF NOT EXISTS `frazioni`();
      CREATE EDGE IF NOT EXISTS `sourceConfluenceState`();
      CREATE EDGE IF NOT EXISTS `sisterCollege`();
      CREATE EDGE IF NOT EXISTS `aircraftAttack`();
      CREATE EDGE IF NOT EXISTS `aircraftBomber`();
      CREATE EDGE IF NOT EXISTS `aircraftElectronic`();
      CREATE EDGE IF NOT EXISTS `aircraftHelicopter`();
      CREATE EDGE IF NOT EXISTS `aircraftPatrol`();
      CREATE EDGE IF NOT EXISTS `aircraftRecon`();
      CREATE EDGE IF NOT EXISTS `aircraftTrainer`();
      CREATE EDGE IF NOT EXISTS `targetAirport`();
      CREATE EDGE IF NOT EXISTS `aircraftHelicopterMultirole`();
      CREATE EDGE IF NOT EXISTS `creativeDirector`();
      CREATE EDGE IF NOT EXISTS `rival`();
      CREATE EDGE IF NOT EXISTS `curator`();
      CREATE EDGE IF NOT EXISTS `namedAfter`();
      CREATE EDGE IF NOT EXISTS `firstFlight`();
      CREATE EDGE IF NOT EXISTS `lastFlight`();
      CREATE EDGE IF NOT EXISTS `picture`();
      CREATE EDGE IF NOT EXISTS `animal_e`();
      CREATE EDGE IF NOT EXISTS `chiefEditor`();
      CREATE EDGE IF NOT EXISTS `rector`();
      CREATE EDGE IF NOT EXISTS `superintendent`();
      CREATE EDGE IF NOT EXISTS `summerAppearances`();
      CREATE EDGE IF NOT EXISTS `winterAppearances`();
      CREATE EDGE IF NOT EXISTS `structuralSystem`();
      CREATE EDGE IF NOT EXISTS `televisionSeries`();
      CREATE EDGE IF NOT EXISTS `previousEvent`();
      CREATE EDGE IF NOT EXISTS `followingEvent`();
      CREATE EDGE IF NOT EXISTS `countryOrigin`();
      CREATE EDGE IF NOT EXISTS `dean`();
      CREATE EDGE IF NOT EXISTS `museum_e`();
      CREATE EDGE IF NOT EXISTS `bodyDiscovered`();
      CREATE EDGE IF NOT EXISTS `previousEditor`();
      CREATE EDGE IF NOT EXISTS `innervates`();
      CREATE EDGE IF NOT EXISTS `component`();
      CREATE EDGE IF NOT EXISTS `intercommunality`();
      CREATE EDGE IF NOT EXISTS `hybrid`();
      CREATE EDGE IF NOT EXISTS `sisterNewspaper`();
      CREATE EDGE IF NOT EXISTS `event_e`();
      CREATE EDGE IF NOT EXISTS `nextEvent`();
      CREATE EDGE IF NOT EXISTS `principal`();
      CREATE EDGE IF NOT EXISTS `goldMedalist`();
      CREATE EDGE IF NOT EXISTS `silverMedalist`();
      CREATE EDGE IF NOT EXISTS `bronzeMedalist`();
      CREATE EDGE IF NOT EXISTS `discipline`();
      CREATE EDGE IF NOT EXISTS `administrativeCollectivity`();
      CREATE EDGE IF NOT EXISTS `guest`();
      CREATE EDGE IF NOT EXISTS `homeArena`();
      CREATE EDGE IF NOT EXISTS `winsAtAsia`();
      CREATE EDGE IF NOT EXISTS `winsAtAus`();
      CREATE EDGE IF NOT EXISTS `winsInEurope`();
      CREATE EDGE IF NOT EXISTS `winsAtJapan`();
      CREATE EDGE IF NOT EXISTS `winsAtOtherTournaments`();
      CREATE EDGE IF NOT EXISTS `winsAtPGA`();
      CREATE EDGE IF NOT EXISTS `mythology`();
      CREATE EDGE IF NOT EXISTS `primaryFuelType`();
      CREATE EDGE IF NOT EXISTS `governmentMountain`();
      CREATE EDGE IF NOT EXISTS `governmentPlace`();
      CREATE EDGE IF NOT EXISTS `hasJunctionWith`();
      CREATE EDGE IF NOT EXISTS `animator`();
      CREATE EDGE IF NOT EXISTS `compiler`();
      CREATE EDGE IF NOT EXISTS `royalAnthem`();
      CREATE EDGE IF NOT EXISTS `chairLabel`();
      CREATE EDGE IF NOT EXISTS `localAuthority`();
      CREATE EDGE IF NOT EXISTS `storyEditor`();
      CREATE EDGE IF NOT EXISTS `associationOfLocalGovernment`();
      CREATE EDGE IF NOT EXISTS `congressionalDistrict`();
      CREATE EDGE IF NOT EXISTS `ceo`();
      CREATE EDGE IF NOT EXISTS `race`();
      CREATE EDGE IF NOT EXISTS `trainer`();
      CREATE EDGE IF NOT EXISTS `sire`();
      CREATE EDGE IF NOT EXISTS `dam_e`();
      CREATE EDGE IF NOT EXISTS `grandsire`();
      CREATE EDGE IF NOT EXISTS `damsire`();
      CREATE EDGE IF NOT EXISTS `breeder`();
      CREATE EDGE IF NOT EXISTS `railwayRollingStock`();
      CREATE EDGE IF NOT EXISTS `currentPartner`();
      CREATE EDGE IF NOT EXISTS `honours`();
      CREATE EDGE IF NOT EXISTS `growingGrape`();
      CREATE EDGE IF NOT EXISTS `homeStadium`();
      CREATE EDGE IF NOT EXISTS `raceHorse_e`();
      CREATE EDGE IF NOT EXISTS `grades`();
      CREATE EDGE IF NOT EXISTS `school_e`();
      CREATE EDGE IF NOT EXISTS `championInDoubleMale`();
      CREATE EDGE IF NOT EXISTS `championInSingleMale`();
      CREATE EDGE IF NOT EXISTS `championInDoubleFemale`();
      CREATE EDGE IF NOT EXISTS `championInSingleFemale`();
      CREATE EDGE IF NOT EXISTS `championInMixedDouble`();
      CREATE EDGE IF NOT EXISTS `clubsRecordGoalscorer`();
      CREATE EDGE IF NOT EXISTS `metropolitanBorough`();
      CREATE EDGE IF NOT EXISTS `railwayLineUsingTunnel`();
      CREATE EDGE IF NOT EXISTS `formerBroadcastNetwork`();
      CREATE EDGE IF NOT EXISTS `servingRailwayLine`();
      CREATE EDGE IF NOT EXISTS `constructionMaterial`();
      CREATE EDGE IF NOT EXISTS `photographer_e`();
      CREATE EDGE IF NOT EXISTS `plant_e`();
      CREATE EDGE IF NOT EXISTS `associatedAct`();
      CREATE EDGE IF NOT EXISTS `nrhpType`();
      CREATE EDGE IF NOT EXISTS `orogeny`();
      CREATE EDGE IF NOT EXISTS `riverBranch`();
      CREATE EDGE IF NOT EXISTS `club`();
      CREATE EDGE IF NOT EXISTS `taoiseach`();
      CREATE EDGE IF NOT EXISTS `originalStartPoint`();
      CREATE EDGE IF NOT EXISTS `champion`();
      CREATE EDGE IF NOT EXISTS `university_e`();
      CREATE EDGE IF NOT EXISTS `schoolBoard`();
      CREATE EDGE IF NOT EXISTS `voiceType`();
      CREATE EDGE IF NOT EXISTS `currentProduction`();
      CREATE EDGE IF NOT EXISTS `notableWine`();
      CREATE EDGE IF NOT EXISTS `aircraftHelicopterAttack`();
      CREATE EDGE IF NOT EXISTS `religiousHead`();
      CREATE EDGE IF NOT EXISTS `damage`();
      CREATE EDGE IF NOT EXISTS `showJudge`();
      CREATE EDGE IF NOT EXISTS `binomial`();
      CREATE EDGE IF NOT EXISTS `sportCountry`();
      CREATE EDGE IF NOT EXISTS `isPartOfWineRegion`();
      CREATE EDGE IF NOT EXISTS `meetingRoad`();
      CREATE EDGE IF NOT EXISTS `blockAlloy`();
      CREATE EDGE IF NOT EXISTS `headAlloy`();
      CREATE EDGE IF NOT EXISTS `oilSystem`();
      CREATE EDGE IF NOT EXISTS `coolingSystem`();
      CREATE EDGE IF NOT EXISTS `drainsFrom`();
      CREATE EDGE IF NOT EXISTS `drainsTo`();
      CREATE EDGE IF NOT EXISTS `winsAtChampionships`();
      CREATE EDGE IF NOT EXISTS `winsAtProTournaments`();
      CREATE EDGE IF NOT EXISTS `winsAtMajors`();
      CREATE EDGE IF NOT EXISTS `winsAtNWIDE`();
      CREATE EDGE IF NOT EXISTS `logo`();
      CREATE EDGE IF NOT EXISTS `rebuilder`();
      CREATE EDGE IF NOT EXISTS `highwaySystem`();
      CREATE EDGE IF NOT EXISTS `authority`();
      CREATE EDGE IF NOT EXISTS `managementMountain`();
      CREATE EDGE IF NOT EXISTS `managementPlace`();
      CREATE EDGE IF NOT EXISTS `legalForm`();
      CREATE EDGE IF NOT EXISTS `teachingStaff`();
      CREATE EDGE IF NOT EXISTS `committeeInLegislature`();
      CREATE EDGE IF NOT EXISTS `originalEndPoint`();
      CREATE EDGE IF NOT EXISTS `jointCommunity`();
      CREATE EDGE IF NOT EXISTS `winsAtLPGA`();
      CREATE EDGE IF NOT EXISTS `chain`();
      CREATE EDGE IF NOT EXISTS `engineType`();
      CREATE EDGE IF NOT EXISTS `previousInfrastructure`();
      CREATE EDGE IF NOT EXISTS `subsequentInfrastructure`();
      CREATE EDGE IF NOT EXISTS `denomination`();
      CREATE EDGE IF NOT EXISTS `schoolPatron`();
      CREATE EDGE IF NOT EXISTS `ruralMunicipality`();
      CREATE EDGE IF NOT EXISTS `sheading`();
      CREATE EDGE IF NOT EXISTS `aircraftHelicopterTransport`();
      CREATE EDGE IF NOT EXISTS `aircraftHelicopterUtility`();
      CREATE EDGE IF NOT EXISTS `prospectLeague`();
      CREATE EDGE IF NOT EXISTS `comparable`();
      CREATE EDGE IF NOT EXISTS `officerInCharge`();
      CREATE EDGE IF NOT EXISTS `parish`();
      CREATE EDGE IF NOT EXISTS `beltwayCity`();
      CREATE EDGE IF NOT EXISTS `firstPopularVote`();
      CREATE EDGE IF NOT EXISTS `secondPopularVote`();
      CREATE EDGE IF NOT EXISTS `promotion`();
      CREATE EDGE IF NOT EXISTS `brand`();
      CREATE EDGE IF NOT EXISTS `building_e`();
      CREATE EDGE IF NOT EXISTS `availableSmartCard`();
      CREATE EDGE IF NOT EXISTS `nobelLaureates`();
      CREATE EDGE IF NOT EXISTS `choreographer`();
      CREATE EDGE IF NOT EXISTS `lowestRegion`();
      CREATE EDGE IF NOT EXISTS `incumbent`();
      CREATE EDGE IF NOT EXISTS `nominee`();
      CREATE EDGE IF NOT EXISTS `vicePrimeMinister`();
      CREATE EDGE IF NOT EXISTS `aircraftHelicopterObservation`();
      CREATE EDGE IF NOT EXISTS `winsAtChallenges`();
      CREATE EDGE IF NOT EXISTS `pastMember`();
      CREATE EDGE IF NOT EXISTS `openingFilm`();
      CREATE EDGE IF NOT EXISTS `closingFilm`();
      CREATE EDGE IF NOT EXISTS `poleDriver`();
      CREATE EDGE IF NOT EXISTS `poleDriverTeam`();
      CREATE EDGE IF NOT EXISTS `fastestDriver`();
      CREATE EDGE IF NOT EXISTS `fastestDriverTeam`();
      CREATE EDGE IF NOT EXISTS `firstDriverTeam`();
      CREATE EDGE IF NOT EXISTS `secondDriver`();
      CREATE EDGE IF NOT EXISTS `secondTeam`();
      CREATE EDGE IF NOT EXISTS `thirdDriver`();
      CREATE EDGE IF NOT EXISTS `thirdDriverCountry`();
      CREATE EDGE IF NOT EXISTS `thirdTeam`();
      CREATE EDGE IF NOT EXISTS `fuelSystem`();
      CREATE EDGE IF NOT EXISTS `firstDriverCountry`();
      CREATE EDGE IF NOT EXISTS `prospectTeam`();
      CREATE EDGE IF NOT EXISTS `runningMate`();
      CREATE EDGE IF NOT EXISTS `vicePrincipal`();
      CREATE EDGE IF NOT EXISTS `lowestState`();
      CREATE EDGE IF NOT EXISTS `subregion`();
      CREATE EDGE IF NOT EXISTS `varietals`();
      CREATE EDGE IF NOT EXISTS `headChef`();
      CREATE EDGE IF NOT EXISTS `trustee`();
      CREATE EDGE IF NOT EXISTS `vehicle`();
      CREATE EDGE IF NOT EXISTS `flagBearer`();
      CREATE EDGE IF NOT EXISTS `associateEditor`();
      CREATE EDGE IF NOT EXISTS `chaplain`();
      CREATE EDGE IF NOT EXISTS `firstWinner`();
      CREATE EDGE IF NOT EXISTS `recentWinner`();
      CREATE EDGE IF NOT EXISTS `poleDriverCountry`();
      CREATE EDGE IF NOT EXISTS `fastestDriverCountry`();
      CREATE EDGE IF NOT EXISTS `boiler`();
      CREATE EDGE IF NOT EXISTS `waterwayThroughTunnel`();
      CREATE EDGE IF NOT EXISTS `secondDriverCountry`();
      CREATE EDGE IF NOT EXISTS `nationalTeam`();
      CREATE EDGE IF NOT EXISTS `coachedTeam`();
      CREATE EDGE IF NOT EXISTS `managingEditor`();
      CREATE EDGE IF NOT EXISTS `jockey_e`();
      CREATE EDGE IF NOT EXISTS `alumni`();
      CREATE EDGE IF NOT EXISTS `assistantPrincipal`();
      CREATE EDGE IF NOT EXISTS `associatedRocket`();
      CREATE EDGE IF NOT EXISTS `firstLaunchRocket`();
      CREATE EDGE IF NOT EXISTS `lastLaunchRocket`();
      CREATE EDGE IF NOT EXISTS `winsAtLET`();
      CREATE EDGE IF NOT EXISTS `chef_e`();
      CREATE EDGE IF NOT EXISTS `mostWins`();
      CREATE EDGE IF NOT EXISTS `vicePrincipalLabel`();
      CREATE EDGE IF NOT EXISTS `computingMedia`();
      CREATE EDGE IF NOT EXISTS `wineProduced`();
      CREATE EDGE IF NOT EXISTS `boilerPressure`();
      CREATE EDGE IF NOT EXISTS `geneLocation`();
      CREATE EDGE IF NOT EXISTS `orthologousGene`();
      CREATE EDGE IF NOT EXISTS `satScore`();
      CREATE EDGE IF NOT EXISTS `actScore`();
      CREATE EDGE IF NOT EXISTS `religiousHeadLabel`();
      CREATE EDGE IF NOT EXISTS `pastor`();
      CREATE EDGE IF NOT EXISTS `aircraftHelicopterCargo`();
      CREATE EDGE IF NOT EXISTS `dfE`();
      CREATE EDGE IF NOT EXISTS `countryWithFirstSatellite`();
      CREATE EDGE IF NOT EXISTS `countryWithFirstAstronaut`();
      CREATE EDGE IF NOT EXISTS `maidenFlightRocket`();
      CREATE EDGE IF NOT EXISTS `retiredRocket`();
      CREATE EDGE IF NOT EXISTS `statisticLabel`();
      CREATE EDGE IF NOT EXISTS `leftChild`();
      CREATE EDGE IF NOT EXISTS `countryWithFirstSpaceflight`();
      CREATE EDGE IF NOT EXISTS `countryWithFirstSatelliteLaunched`();
      CREATE EDGE IF NOT EXISTS `organSystem`();
      CREATE EDGE IF NOT EXISTS `organisation_e`();
      CREATE EDGE IF NOT EXISTS `administrator`();
      CREATE EDGE IF NOT EXISTS `formerHighschool`();
      CREATE EDGE IF NOT EXISTS `custodian`();
      CREATE EDGE IF NOT EXISTS `film_e`();
      CREATE EDGE IF NOT EXISTS `cultivatedVariety_e`();
      CREATE EDGE IF NOT EXISTS `fundedBy`();
      CREATE EDGE IF NOT EXISTS `releaseLocation`();
      CREATE EDGE IF NOT EXISTS `numberOfClassrooms`();
      CREATE EDGE IF NOT EXISTS `projectParticipant`();
      CREATE EDGE IF NOT EXISTS `addressInRoad`();
      CREATE EDGE IF NOT EXISTS `rightChild`();
      CREATE EDGE IF NOT EXISTS `show`();
      CREATE EDGE IF NOT EXISTS `projectCoordinator`();
      CREATE EDGE IF NOT EXISTS `headteacher`();
    afterPeriod: 8s
logPath: ./err/test.log
files:
  - path: /home/syy/Project/nebula-importer/DBpedia/vertex/UNTYPED.csv
    failDataPath: ./err/data/UNTYPED.csv
    batchSize: 100
    type: csv
    csv:
      withHeader: false
      withLabel: false
      delimiter: "|"
    schema:
      type: vertex
      vertex:
        vid:
          index: 0
          type: int
        tags:
          - name: UNTYPED
            props:
              - name: uri
                type: string
                index: 1

  - path: /home/syy/Project/nebula-importer/DBpedia/vertex/owl_Thing.csv
    failDataPath: ./err/data/owl_Thing.csv
    batchSize: 100
    type: csv
    csv:
      withHeader: false
      withLabel: false
      delimiter: "|"
    schema:
      type: vertex
      vertex:
        vid:
          index: 0
          type: int
        tags:
          - name: owl_Thing
            props:
              - name: uri
                type: string
                index: 1

  - path: /home/syy/Project/nebula-importer/DBpedia/vertex/Disease.csv
    failDataPath: ./err/data/Disease.csv
    batchSize: 100
    type: csv
    csv:
      withHeader: false
      withLabel: false
      delimiter: "|"
    schema:
      type: vertex
      vertex:
        vid:
          index: 0
          type: int
        tags:
          - name: Disease
            props:
              - name: uri
                type: string
                index: 1

  - path: /home/syy/Project/nebula-importer/DBpedia/vertex/AdministrativeRegion.csv
    failDataPath: ./err/data/AdministrativeRegion.csv
    batchSize: 100
    type: csv
    csv:
      withHeader: false
      withLabel: false
      delimiter: "|"
    schema:
      type: vertex
      vertex:
        vid:
          index: 0
          type: int
        tags:
          - name: AdministrativeRegion
            props:
              - name: uri
                type: string
                index: 1

  - path: /home/syy/Project/nebula-importer/DBpedia/vertex/OfficeHolder.csv
    failDataPath: ./err/data/OfficeHolder.csv
    batchSize: 100
    type: csv
    csv:
      withHeader: false
      withLabel: false
      delimiter: "|"
    schema:
      type: vertex
      vertex:
        vid:
          index: 0
          type: int
        tags:
          - name: OfficeHolder
            props:
              - name: uri
                type: string
                index: 1

  - path: /home/syy/Project/nebula-importer/DBpedia/vertex/TimePeriod.csv
    failDataPath: ./err/data/TimePeriod.csv
    batchSize: 100
    type: csv
    csv:
      withHeader: false
      withLabel: false
      delimiter: "|"
    schema:
      type: vertex
      vertex:
        vid:
          index: 0
          type: int
        tags:
          - name: TimePeriod
            props:
              - name: uri
                type: string
                index: 1

  - path: /home/syy/Project/nebula-importer/DBpedia/vertex/Book.csv
    failDataPath: ./err/data/Book.csv
    batchSize: 100
    type: csv
    csv:
      withHeader: false
      withLabel: false
      delimiter: "|"
    schema:
      type: vertex
      vertex:
        vid:
          index: 0
          type: int
        tags:
          - name: Book
            props:
              - name: uri
                type: string
                index: 1

  - path: /home/syy/Project/nebula-importer/DBpedia/vertex/Award.csv
    failDataPath: ./err/data/Award.csv
    batchSize: 100
    type: csv
    csv:
      withHeader: false
      withLabel: false
      delimiter: "|"
    schema:
      type: vertex
      vertex:
        vid:
          index: 0
          type: int
        tags:
          - name: Award
            props:
              - name: uri
                type: string
                index: 1

  - path: /home/syy/Project/nebula-importer/DBpedia/vertex/Film.csv
    failDataPath: ./err/data/Film.csv
    batchSize: 100
    type: csv
    csv:
      withHeader: false
      withLabel: false
      delimiter: "|"
    schema:
      type: vertex
      vertex:
        vid:
          index: 0
          type: int
        tags:
          - name: Film
            props:
              - name: uri
                type: string
                index: 1

  - path: /home/syy/Project/nebula-importer/DBpedia/vertex/Person.csv
    failDataPath: ./err/data/Person.csv
    batchSize: 100
    type: csv
    csv:
      withHeader: false
      withLabel: false
      delimiter: "|"
    schema:
      type: vertex
      vertex:
        vid:
          index: 0
          type: int
        tags:
          - name: Person
            props:
              - name: uri
                type: string
                index: 1

  - path: /home/syy/Project/nebula-importer/DBpedia/vertex/PersonFunction.csv
    failDataPath: ./err/data/PersonFunction.csv
    batchSize: 100
    type: csv
    csv:
      withHeader: false
      withLabel: false
      delimiter: "|"
    schema:
      type: vertex
      vertex:
        vid:
          index: 0
          type: int
        tags:
          - name: PersonFunction
            props:
              - name: uri
                type: string
                index: 1

  - path: /home/syy/Project/nebula-importer/DBpedia/vertex/Scientist.csv
    failDataPath: ./err/data/Scientist.csv
    batchSize: 100
    type: csv
    csv:
      withHeader: false
      withLabel: false
      delimiter: "|"
    schema:
      type: vertex
      vertex:
        vid:
          index: 0
          type: int
        tags:
          - name: Scientist
            props:
              - name: uri
                type: string
                index: 1

  - path: /home/syy/Project/nebula-importer/DBpedia/vertex/Philosopher.csv
    failDataPath: ./err/data/Philosopher.csv
    batchSize: 100
    type: csv
    csv:
      withHeader: false
      withLabel: false
      delimiter: "|"
    schema:
      type: vertex
      vertex:
        vid:
          index: 0
          type: int
        tags:
          - name: Philosopher
            props:
              - name: uri
                type: string
                index: 1

  - path: /home/syy/Project/nebula-importer/DBpedia/vertex/Writer.csv
    failDataPath: ./err/data/Writer.csv
    batchSize: 100
    type: csv
    csv:
      withHeader: false
      withLabel: false
      delimiter: "|"
    schema:
      type: vertex
      vertex:
        vid:
          index: 0
          type: int
        tags:
          - name: Writer
            props:
              - name: uri
                type: string
                index: 1

  - path: /home/syy/Project/nebula-importer/DBpedia/vertex/Country.csv
    failDataPath: ./err/data/Country.csv
    batchSize: 100
    type: csv
    csv:
      withHeader: false
      withLabel: false
      delimiter: "|"
    schema:
      type: vertex
      vertex:
        vid:
          index: 0
          type: int
        tags:
          - name: Country
            props:
              - name: uri
                type: string
                index: 1

  - path: /home/syy/Project/nebula-importer/DBpedia/vertex/TennisPlayer.csv
    failDataPath: ./err/data/TennisPlayer.csv
    batchSize: 100
    type: csv
    csv:
      withHeader: false
      withLabel: false
      delimiter: "|"
    schema:
      type: vertex
      vertex:
        vid:
          index: 0
          type: int
        tags:
          - name: TennisPlayer
            props:
              - name: uri
                type: string
                index: 1

  - path: /home/syy/Project/nebula-importer/DBpedia/vertex/Song.csv
    failDataPath: ./err/data/Song.csv
    batchSize: 100
    type: csv
    csv:
      withHeader: false
      withLabel: false
      delimiter: "|"
    schema:
      type: vertex
      vertex:
        vid:
          index: 0
          type: int
        tags:
          - name: Song
            props:
              - name: uri
                type: string
                index: 1

  - path: /home/syy/Project/nebula-importer/DBpedia/vertex/Sound.csv
    failDataPath: ./err/data/Sound.csv
    batchSize: 100
    type: csv
    csv:
      withHeader: false
      withLabel: false
      delimiter: "|"
    schema:
      type: vertex
      vertex:
        vid:
          index: 0
          type: int
        tags:
          - name: Sound
            props:
              - name: uri
                type: string
                index: 1

  - path: /home/syy/Project/nebula-importer/DBpedia/vertex/Organisation.csv
    failDataPath: ./err/data/Organisation.csv
    batchSize: 100
    type: csv
    csv:
      withHeader: false
      withLabel: false
      delimiter: "|"
    schema:
      type: vertex
      vertex:
        vid:
          index: 0
          type: int
        tags:
          - name: Organisation
            props:
              - name: uri
                type: string
                index: 1

  - path: /home/syy/Project/nebula-importer/DBpedia/vertex/ArtificialSatellite.csv
    failDataPath: ./err/data/ArtificialSatellite.csv
    batchSize: 100
    type: csv
    csv:
      withHeader: false
      withLabel: false
      delimiter: "|"
    schema:
      type: vertex
      vertex:
        vid:
          index: 0
          type: int
        tags:
          - name: ArtificialSatellite
            props:
              - name: uri
                type: string
                index: 1

  - path: /home/syy/Project/nebula-importer/DBpedia/vertex/WrittenWork.csv
    failDataPath: ./err/data/WrittenWork.csv
    batchSize: 100
    type: csv
    csv:
      withHeader: false
      withLabel: false
      delimiter: "|"
    schema:
      type: vertex
      vertex:
        vid:
          index: 0
          type: int
        tags:
          - name: WrittenWork
            props:
              - name: uri
                type: string
                index: 1

  - path: /home/syy/Project/nebula-importer/DBpedia/vertex/Continent.csv
    failDataPath: ./err/data/Continent.csv
    batchSize: 100
    type: csv
    csv:
      withHeader: false
      withLabel: false
      delimiter: "|"
    schema:
      type: vertex
      vertex:
        vid:
          index: 0
          type: int
        tags:
          - name: Continent
            props:
              - name: uri
                type: string
                index: 1

  - path: /home/syy/Project/nebula-importer/DBpedia/vertex/BodyOfWater.csv
    failDataPath: ./err/data/BodyOfWater.csv
    batchSize: 100
    type: csv
    csv:
      withHeader: false
      withLabel: false
      delimiter: "|"
    schema:
      type: vertex
      vertex:
        vid:
          index: 0
          type: int
        tags:
          - name: BodyOfWater
            props:
              - name: uri
                type: string
                index: 1

  - path: /home/syy/Project/nebula-importer/DBpedia/vertex/MilitaryUnit.csv
    failDataPath: ./err/data/MilitaryUnit.csv
    batchSize: 100
    type: csv
    csv:
      withHeader: false
      withLabel: false
      delimiter: "|"
    schema:
      type: vertex
      vertex:
        vid:
          index: 0
          type: int
        tags:
          - name: MilitaryUnit
            props:
              - name: uri
                type: string
                index: 1

  - path: /home/syy/Project/nebula-importer/DBpedia/vertex/MilitaryPerson.csv
    failDataPath: ./err/data/MilitaryPerson.csv
    batchSize: 100
    type: csv
    csv:
      withHeader: false
      withLabel: false
      delimiter: "|"
    schema:
      type: vertex
      vertex:
        vid:
          index: 0
          type: int
        tags:
          - name: MilitaryPerson
            props:
              - name: uri
                type: string
                index: 1

  - path: /home/syy/Project/nebula-importer/DBpedia/vertex/AcademicJournal.csv
    failDataPath: ./err/data/AcademicJournal.csv
    batchSize: 100
    type: csv
    csv:
      withHeader: false
      withLabel: false
      delimiter: "|"
    schema:
      type: vertex
      vertex:
        vid:
          index: 0
          type: int
        tags:
          - name: AcademicJournal
            props:
              - name: uri
                type: string
                index: 1

  - path: /home/syy/Project/nebula-importer/DBpedia/vertex/MilitaryConflict.csv
    failDataPath: ./err/data/MilitaryConflict.csv
    batchSize: 100
    type: csv
    csv:
      withHeader: false
      withLabel: false
      delimiter: "|"
    schema:
      type: vertex
      vertex:
        vid:
          index: 0
          type: int
        tags:
          - name: MilitaryConflict
            props:
              - name: uri
                type: string
                index: 1

  - path: /home/syy/Project/nebula-importer/DBpedia/vertex/VideoGame.csv
    failDataPath: ./err/data/VideoGame.csv
    batchSize: 100
    type: csv
    csv:
      withHeader: false
      withLabel: false
      delimiter: "|"
    schema:
      type: vertex
      vertex:
        vid:
          index: 0
          type: int
        tags:
          - name: VideoGame
            props:
              - name: uri
                type: string
                index: 1

  - path: /home/syy/Project/nebula-importer/DBpedia/vertex/Constellation.csv
    failDataPath: ./err/data/Constellation.csv
    batchSize: 100
    type: csv
    csv:
      withHeader: false
      withLabel: false
      delimiter: "|"
    schema:
      type: vertex
      vertex:
        vid:
          index: 0
          type: int
        tags:
          - name: Constellation
            props:
              - name: uri
                type: string
                index: 1

  - path: /home/syy/Project/nebula-importer/DBpedia/vertex/Royalty.csv
    failDataPath: ./err/data/Royalty.csv
    batchSize: 100
    type: csv
    csv:
      withHeader: false
      withLabel: false
      delimiter: "|"
    schema:
      type: vertex
      vertex:
        vid:
          index: 0
          type: int
        tags:
          - name: Royalty
            props:
              - name: uri
                type: string
                index: 1

  - path: /home/syy/Project/nebula-importer/DBpedia/vertex/Language.csv
    failDataPath: ./err/data/Language.csv
    batchSize: 100
    type: csv
    csv:
      withHeader: false
      withLabel: false
      delimiter: "|"
    schema:
      type: vertex
      vertex:
        vid:
          index: 0
          type: int
        tags:
          - name: Language
            props:
              - name: uri
                type: string
                index: 1

  - path: /home/syy/Project/nebula-importer/DBpedia/vertex/City.csv
    failDataPath: ./err/data/City.csv
    batchSize: 100
    type: csv
    csv:
      withHeader: false
      withLabel: false
      delimiter: "|"
    schema:
      type: vertex
      vertex:
        vid:
          index: 0
          type: int
        tags:
          - name: City
            props:
              - name: uri
                type: string
                index: 1

  - path: /home/syy/Project/nebula-importer/DBpedia/vertex/Reptile.csv
    failDataPath: ./err/data/Reptile.csv
    batchSize: 100
    type: csv
    csv:
      withHeader: false
      withLabel: false
      delimiter: "|"
    schema:
      type: vertex
      vertex:
        vid:
          index: 0
          type: int
        tags:
          - name: Reptile
            props:
              - name: uri
                type: string
                index: 1

  - path: /home/syy/Project/nebula-importer/DBpedia/vertex/Sea.csv
    failDataPath: ./err/data/Sea.csv
    batchSize: 100
    type: csv
    csv:
      withHeader: false
      withLabel: false
      delimiter: "|"
    schema:
      type: vertex
      vertex:
        vid:
          index: 0
          type: int
        tags:
          - name: Sea
            props:
              - name: uri
                type: string
                index: 1

  - path: /home/syy/Project/nebula-importer/DBpedia/vertex/Company.csv
    failDataPath: ./err/data/Company.csv
    batchSize: 100
    type: csv
    csv:
      withHeader: false
      withLabel: false
      delimiter: "|"
    schema:
      type: vertex
      vertex:
        vid:
          index: 0
          type: int
        tags:
          - name: Company
            props:
              - name: uri
                type: string
                index: 1

  - path: /home/syy/Project/nebula-importer/DBpedia/vertex/Band.csv
    failDataPath: ./err/data/Band.csv
    batchSize: 100
    type: csv
    csv:
      withHeader: false
      withLabel: false
      delimiter: "|"
    schema:
      type: vertex
      vertex:
        vid:
          index: 0
          type: int
        tags:
          - name: Band
            props:
              - name: uri
                type: string
                index: 1

  - path: /home/syy/Project/nebula-importer/DBpedia/vertex/Artist.csv
    failDataPath: ./err/data/Artist.csv
    batchSize: 100
    type: csv
    csv:
      withHeader: false
      withLabel: false
      delimiter: "|"
    schema:
      type: vertex
      vertex:
        vid:
          index: 0
          type: int
        tags:
          - name: Artist
            props:
              - name: uri
                type: string
                index: 1

  - path: /home/syy/Project/nebula-importer/DBpedia/vertex/InformationAppliance.csv
    failDataPath: ./err/data/InformationAppliance.csv
    batchSize: 100
    type: csv
    csv:
      withHeader: false
      withLabel: false
      delimiter: "|"
    schema:
      type: vertex
      vertex:
        vid:
          index: 0
          type: int
        tags:
          - name: InformationAppliance
            props:
              - name: uri
                type: string
                index: 1

  - path: /home/syy/Project/nebula-importer/DBpedia/vertex/RugbyClub.csv
    failDataPath: ./err/data/RugbyClub.csv
    batchSize: 100
    type: csv
    csv:
      withHeader: false
      withLabel: false
      delimiter: "|"
    schema:
      type: vertex
      vertex:
        vid:
          index: 0
          type: int
        tags:
          - name: RugbyClub
            props:
              - name: uri
                type: string
                index: 1

  - path: /home/syy/Project/nebula-importer/DBpedia/vertex/Settlement.csv
    failDataPath: ./err/data/Settlement.csv
    batchSize: 100
    type: csv
    csv:
      withHeader: false
      withLabel: false
      delimiter: "|"
    schema:
      type: vertex
      vertex:
        vid:
          index: 0
          type: int
        tags:
          - name: Settlement
            props:
              - name: uri
                type: string
                index: 1

  - path: /home/syy/Project/nebula-importer/DBpedia/vertex/Plant.csv
    failDataPath: ./err/data/Plant.csv
    batchSize: 100
    type: csv
    csv:
      withHeader: false
      withLabel: false
      delimiter: "|"
    schema:
      type: vertex
      vertex:
        vid:
          index: 0
          type: int
        tags:
          - name: Plant
            props:
              - name: uri
                type: string
                index: 1

  - path: /home/syy/Project/nebula-importer/DBpedia/vertex/Comic.csv
    failDataPath: ./err/data/Comic.csv
    batchSize: 100
    type: csv
    csv:
      withHeader: false
      withLabel: false
      delimiter: "|"
    schema:
      type: vertex
      vertex:
        vid:
          index: 0
          type: int
        tags:
          - name: Comic
            props:
              - name: uri
                type: string
                index: 1

  - path: /home/syy/Project/nebula-importer/DBpedia/vertex/MountainRange.csv
    failDataPath: ./err/data/MountainRange.csv
    batchSize: 100
    type: csv
    csv:
      withHeader: false
      withLabel: false
      delimiter: "|"
    schema:
      type: vertex
      vertex:
        vid:
          index: 0
          type: int
        tags:
          - name: MountainRange
            props:
              - name: uri
                type: string
                index: 1

importer 里的 schema 超过限制了,你可以先手动创建 schema

此话题已在最后回复的 30 天后被自动关闭。不再允许新回复。