Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Новые SPARQL запросы для фронт-энда #2

Open
KMax opened this issue Apr 20, 2014 · 1 comment
Open

Новые SPARQL запросы для фронт-энда #2

KMax opened this issue Apr 20, 2014 · 1 comment
Assignees

Comments

@KMax
Copy link
Member

KMax commented Apr 20, 2014

Попробовал запросы, которые ты мне прислал, но последний из них не работает :( Давай здесь запишем новые? Может вообще их записать в отдельные файлы, чтобы фронт-энд их подкачивал? Получить мапинг :)

@fedulity
Copy link
Member

Правленые запросы по практикам

Инфо о практике. Аналогично для инструкций, заданий и FAQ:
SELECT DISTINCT ?practice ?desc WHERE {
?practice a learningRu:Practice ;
learningRu:content ?desc .
}

Список заданий:
SELECT DISTINCT ?PracticeTask ?practice WHERE {
{ ?practice learningRu:hasPracticeTask ?PracticeTask }
UNION
{ ?PracticeTask learningRu:isPracticeTaskOf ?practice }
}

Список инструкций:
SELECT DISTINCT ?Instruction ?practice WHERE {
{ ?practice learningRu:hasInstruction ?Instruction}
UNION
{ ?InstructionlearningRu:isInstructionOf ?practice }
}

Список FAQ:
SELECT DISTINCT ?FAQ ?practice WHERE {
{ ?practice learningRu:hasFAQ ?FAQ }
UNION
{ ?FAQ learningRu:isFAQOf ?practice }
}

Список систем проверки:
SELECT DISTINCT ?VerificationSystem ?practice WHERE {
{ ?practice learningRu:hasVerificationSystem ?VerificationSystem }
UNION
{ ?VerificationSystem learningRu:isVerificationSystemOf ?practice }
}

По системе проверки решений получаем URL:
SELECT DISTINCT ?VerificationSystem ?url WHERE {
?VerificationSystem a learningRu:VerificationSystem ;
learningRu:url ?url .
}

По поводу маппинга согласен. Надо с ребятами о формате договориться.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants