Skip to content

Commit

Permalink
Remove static endpoints (#327)
Browse files Browse the repository at this point in the history
* Move query behaviors to Select (since it is the only type having them)
  • Loading branch information
mdesalvo authored Nov 30, 2023
1 parent 5256c3a commit 4e90729
Showing 1 changed file with 0 additions and 19 deletions.
19 changes: 0 additions & 19 deletions RDFSharp/Query/Mirella/Algebra/RDFSPARQLEndpoint.cs
Original file line number Diff line number Diff line change
Expand Up @@ -27,25 +27,6 @@ namespace RDFSharp.Query
/// </summary>
public class RDFSPARQLEndpoint : RDFDataSource
{
#region Statics
/// <summary>
/// Represents the SPARQL query endpoint of DBpedia
/// </summary>
public static RDFSPARQLEndpoint DBPedia = new RDFSPARQLEndpoint(new Uri("http://dbpedia.org/sparql"));
/// <summary>
/// Represents the SPARQL query endpoint of WikiData
/// </summary>
public static RDFSPARQLEndpoint WikiData = new RDFSPARQLEndpoint(new Uri("https://query.wikidata.org/sparql"));
/// <summary>
/// Represents the SPARQL query endpoint of WikiMedia
/// </summary>
public static RDFSPARQLEndpoint WikiMedia = new RDFSPARQLEndpoint(new Uri("https://commons-query.wikimedia.org/sparql"));
/// <summary>
/// Represents the SPARQL query endpoint of SPARQLer
/// </summary>
public static RDFSPARQLEndpoint SPARQLer = new RDFSPARQLEndpoint(new Uri("https://www.sparql.org/sparql"));
#endregion

#region Properties
/// <summary>
/// Base address of the SPARQL endpoint
Expand Down

0 comments on commit 4e90729

Please sign in to comment.