From dab261a6db64f3b52ce67f4f5e6d1f4d665741fa Mon Sep 17 00:00:00 2001 From: Kasper Birch Date: Wed, 9 Oct 2024 14:08:24 +0200 Subject: [PATCH 01/28] Enable `initialDate` parameter in opening hours apps (For Cypress testing) Both apps now support setting the `initialDate` via a URL parameter. This enhancement allows tests to begin from a specific date, streamlining the testing of the complete opening hours workflow from dpl-cms. --- .../OpeningHoursEditor.entry.tsx | 6 ++++-- .../OpeningHoursEditor.stories.tsx | 4 ++-- .../opening-hours-editor/OpeningHoursEditor.tsx | 4 ++-- src/apps/opening-hours-editor/helper.ts | 7 +++++++ src/apps/opening-hours/OpeningHours.entry.tsx | 14 ++++++++++---- src/apps/opening-hours/OpeningHours.stories.tsx | 6 +++--- src/apps/opening-hours/OpeningHours.tsx | 5 +++-- 7 files changed, 31 insertions(+), 15 deletions(-) diff --git a/src/apps/opening-hours-editor/OpeningHoursEditor.entry.tsx b/src/apps/opening-hours-editor/OpeningHoursEditor.entry.tsx index 1a8505ccf0..31f9e1272f 100644 --- a/src/apps/opening-hours-editor/OpeningHoursEditor.entry.tsx +++ b/src/apps/opening-hours-editor/OpeningHoursEditor.entry.tsx @@ -5,6 +5,7 @@ import OpeningHoursEditor, { OpeningHoursEditorType } from "./OpeningHoursEditor"; import { withConfig } from "../../core/utils/config"; +import { getInitialDateFromUrl } from "./helper"; interface OpeningHoursEditorEntryTextProps { openingHoursRemoveEventButtonText: string; @@ -36,8 +37,9 @@ const OpeningHoursEditorEntry: React.FC< OpeningHoursEditorEntryTextProps & OpeningHoursEditorType & OpeningHoursEditorEntryConfigProps -> = ({ initialDate = new Date() }) => { - return ; +> = ({ initialDate }) => { + const initialDateParam = getInitialDateFromUrl(); + return ; }; export default withConfig(withUrls(withText(OpeningHoursEditorEntry))); diff --git a/src/apps/opening-hours-editor/OpeningHoursEditor.stories.tsx b/src/apps/opening-hours-editor/OpeningHoursEditor.stories.tsx index 1020abed3f..0d1bacdffd 100644 --- a/src/apps/opening-hours-editor/OpeningHoursEditor.stories.tsx +++ b/src/apps/opening-hours-editor/OpeningHoursEditor.stories.tsx @@ -27,7 +27,7 @@ const meta: Meta = { }, initialDate: { description: "Initial date to show", - control: { type: "date" } + control: { type: "text" } }, openingHoursEventFormCategoryText: { description: "Opening hours event form category", @@ -108,7 +108,7 @@ export const Primary: Story = { openingHoursEditorCategoriesConfig: '[{"title":"\\u00c5bent","color":"#B3DC6C"},{"title":"Telefontid","color":"#FBE983"},{"title":"Borgerservice","color":"lightblue"}]', openingHoursBranchIdConfig: "12", - initialDate: new Date("2024-03-25"), + initialDate: "2024-03-25", openingHoursEventFormCategoryText: "Opening hour", openingHoursEventFormStartTimeText: "Start time", openingHoursEventFormEndTimeText: "End time", diff --git a/src/apps/opening-hours-editor/OpeningHoursEditor.tsx b/src/apps/opening-hours-editor/OpeningHoursEditor.tsx index 74cf885aed..7aca2d1dde 100644 --- a/src/apps/opening-hours-editor/OpeningHoursEditor.tsx +++ b/src/apps/opening-hours-editor/OpeningHoursEditor.tsx @@ -15,7 +15,7 @@ import { useConfig } from "../../core/utils/config"; import { useText } from "../../core/utils/text"; export type OpeningHoursEditorType = { - initialDate?: Date; + initialDate?: string | Date | null; }; const OpeningHoursEditor: React.FC = ({ @@ -58,7 +58,7 @@ const OpeningHoursEditor: React.FC = ({ { + const query = new URLSearchParams(window.location.search); + return query.get("initialDate"); +}; diff --git a/src/apps/opening-hours/OpeningHours.entry.tsx b/src/apps/opening-hours/OpeningHours.entry.tsx index 32162de42c..4b184ec05d 100644 --- a/src/apps/opening-hours/OpeningHours.entry.tsx +++ b/src/apps/opening-hours/OpeningHours.entry.tsx @@ -1,14 +1,14 @@ import React from "react"; -import GuardedApp from "../../components/guarded-app"; import { GlobalEntryTextProps } from "../../core/storybook/globalTextArgs"; import { withConfig } from "../../core/utils/config"; import { withText } from "../../core/utils/text"; import { withUrls } from "../../core/utils/url"; import OpeningHours from "./OpeningHours"; +import { getInitialDateFromUrl } from "../opening-hours-editor/helper"; export interface OpeningHoursEntryProps { branchId: number; - initialDate?: Date; + initialDate?: string; showOpeningHoursForWeekText: string; weekText: string; libraryIsClosedText: string; @@ -17,8 +17,14 @@ export interface OpeningHoursEntryProps { const OpeningHoursEntry: React.FC< OpeningHoursEntryProps & GlobalEntryTextProps -> = ({ branchId, initialDate = new Date() }) => { - return ; +> = ({ branchId, initialDate }) => { + const initialDateParam = getInitialDateFromUrl(); + return ( + + ); }; export default withConfig(withUrls(withText(OpeningHoursEntry))); diff --git a/src/apps/opening-hours/OpeningHours.stories.tsx b/src/apps/opening-hours/OpeningHours.stories.tsx index 5f147c7fdf..1519700f77 100644 --- a/src/apps/opening-hours/OpeningHours.stories.tsx +++ b/src/apps/opening-hours/OpeningHours.stories.tsx @@ -20,8 +20,8 @@ const meta: Meta = { ...globalTextArgTypes, ...serviceUrlArgTypes, initialDate: { - defaultValue: new Date("2024-03-25"), - control: { type: "date" } + defaultValue: "2024-03-25", + control: { type: "text" } }, branchId: { defaultValue: 12, @@ -55,7 +55,7 @@ export const Primary: Story = { ...globalConfigArgs, ...globalTextArgs, ...serviceUrlArgs, - initialDate: new Date("2024-03-25"), + initialDate: "2024-03-25", branchId: 12, showOpeningHoursForWeekText: "Show opening hours for week", weekText: "Week", diff --git a/src/apps/opening-hours/OpeningHours.tsx b/src/apps/opening-hours/OpeningHours.tsx index d106325086..33096a8d95 100644 --- a/src/apps/opening-hours/OpeningHours.tsx +++ b/src/apps/opening-hours/OpeningHours.tsx @@ -12,20 +12,21 @@ import useOpeningHours from "./useOpeningHours"; export type OpeningHoursProps = { branchId: number; - initialDate: Date; + initialDate: string | Date | null; }; const OpeningHours: React.FC = ({ branchId, initialDate }) => { + const date = initialDate ? new Date(initialDate) : new Date(); const { currentWeekRange, groupedOpeningHours, navigateToPreviousWeek, navigateToNextWeek, isLoading - } = useOpeningHours(initialDate, branchId); + } = useOpeningHours(date, branchId); const t = useText(); const nextWeekDate = getNextWeek(currentWeekRange.start); From 53de79535bc968404922a955b977618e27e38882 Mon Sep 17 00:00:00 2001 From: Kasper Birch Date: Mon, 4 Nov 2024 12:25:12 +0100 Subject: [PATCH 02/28] Revert to `Date` Type for Opening Hours and Refactor `getInitialDateFromUrl` To ensure data specificity, I reverted the types for opening hours and made improvements to `getInitialDateFromUrl` s --- .../OpeningHoursEditor.entry.tsx | 6 +++++- .../OpeningHoursEditor.stories.tsx | 4 ++-- .../OpeningHoursEditor.tsx | 4 ++-- src/apps/opening-hours-editor/helper.ts | 20 +++++++++++++++++-- src/apps/opening-hours/OpeningHours.entry.tsx | 4 ++-- .../opening-hours/OpeningHours.stories.tsx | 6 +++--- src/apps/opening-hours/OpeningHours.tsx | 5 ++--- 7 files changed, 34 insertions(+), 15 deletions(-) diff --git a/src/apps/opening-hours-editor/OpeningHoursEditor.entry.tsx b/src/apps/opening-hours-editor/OpeningHoursEditor.entry.tsx index 31f9e1272f..13861179b1 100644 --- a/src/apps/opening-hours-editor/OpeningHoursEditor.entry.tsx +++ b/src/apps/opening-hours-editor/OpeningHoursEditor.entry.tsx @@ -39,7 +39,11 @@ const OpeningHoursEditorEntry: React.FC< OpeningHoursEditorEntryConfigProps > = ({ initialDate }) => { const initialDateParam = getInitialDateFromUrl(); - return ; + return ( + + ); }; export default withConfig(withUrls(withText(OpeningHoursEditorEntry))); diff --git a/src/apps/opening-hours-editor/OpeningHoursEditor.stories.tsx b/src/apps/opening-hours-editor/OpeningHoursEditor.stories.tsx index 0d1bacdffd..1020abed3f 100644 --- a/src/apps/opening-hours-editor/OpeningHoursEditor.stories.tsx +++ b/src/apps/opening-hours-editor/OpeningHoursEditor.stories.tsx @@ -27,7 +27,7 @@ const meta: Meta = { }, initialDate: { description: "Initial date to show", - control: { type: "text" } + control: { type: "date" } }, openingHoursEventFormCategoryText: { description: "Opening hours event form category", @@ -108,7 +108,7 @@ export const Primary: Story = { openingHoursEditorCategoriesConfig: '[{"title":"\\u00c5bent","color":"#B3DC6C"},{"title":"Telefontid","color":"#FBE983"},{"title":"Borgerservice","color":"lightblue"}]', openingHoursBranchIdConfig: "12", - initialDate: "2024-03-25", + initialDate: new Date("2024-03-25"), openingHoursEventFormCategoryText: "Opening hour", openingHoursEventFormStartTimeText: "Start time", openingHoursEventFormEndTimeText: "End time", diff --git a/src/apps/opening-hours-editor/OpeningHoursEditor.tsx b/src/apps/opening-hours-editor/OpeningHoursEditor.tsx index 7aca2d1dde..74cf885aed 100644 --- a/src/apps/opening-hours-editor/OpeningHoursEditor.tsx +++ b/src/apps/opening-hours-editor/OpeningHoursEditor.tsx @@ -15,7 +15,7 @@ import { useConfig } from "../../core/utils/config"; import { useText } from "../../core/utils/text"; export type OpeningHoursEditorType = { - initialDate?: string | Date | null; + initialDate?: Date; }; const OpeningHoursEditor: React.FC = ({ @@ -58,7 +58,7 @@ const OpeningHoursEditor: React.FC = ({ { +export const getInitialDateFromUrl = (): Date | null => { const query = new URLSearchParams(window.location.search); - return query.get("initialDate"); + const initialDateString = query.get("initialDate"); + + if (!initialDateString) { + return null; + } + + const date = new Date(initialDateString); + if (isDate(date)) { + return date; + } + // eslint-disable-next-line no-console + console.debug( + "Invalid date format in URL parameter: initialDate =", + initialDateString + ); + return null; }; diff --git a/src/apps/opening-hours/OpeningHours.entry.tsx b/src/apps/opening-hours/OpeningHours.entry.tsx index 4b184ec05d..a4348aa520 100644 --- a/src/apps/opening-hours/OpeningHours.entry.tsx +++ b/src/apps/opening-hours/OpeningHours.entry.tsx @@ -8,7 +8,7 @@ import { getInitialDateFromUrl } from "../opening-hours-editor/helper"; export interface OpeningHoursEntryProps { branchId: number; - initialDate?: string; + initialDate?: Date; showOpeningHoursForWeekText: string; weekText: string; libraryIsClosedText: string; @@ -22,7 +22,7 @@ const OpeningHoursEntry: React.FC< return ( ); }; diff --git a/src/apps/opening-hours/OpeningHours.stories.tsx b/src/apps/opening-hours/OpeningHours.stories.tsx index 1519700f77..5f147c7fdf 100644 --- a/src/apps/opening-hours/OpeningHours.stories.tsx +++ b/src/apps/opening-hours/OpeningHours.stories.tsx @@ -20,8 +20,8 @@ const meta: Meta = { ...globalTextArgTypes, ...serviceUrlArgTypes, initialDate: { - defaultValue: "2024-03-25", - control: { type: "text" } + defaultValue: new Date("2024-03-25"), + control: { type: "date" } }, branchId: { defaultValue: 12, @@ -55,7 +55,7 @@ export const Primary: Story = { ...globalConfigArgs, ...globalTextArgs, ...serviceUrlArgs, - initialDate: "2024-03-25", + initialDate: new Date("2024-03-25"), branchId: 12, showOpeningHoursForWeekText: "Show opening hours for week", weekText: "Week", diff --git a/src/apps/opening-hours/OpeningHours.tsx b/src/apps/opening-hours/OpeningHours.tsx index 33096a8d95..d106325086 100644 --- a/src/apps/opening-hours/OpeningHours.tsx +++ b/src/apps/opening-hours/OpeningHours.tsx @@ -12,21 +12,20 @@ import useOpeningHours from "./useOpeningHours"; export type OpeningHoursProps = { branchId: number; - initialDate: string | Date | null; + initialDate: Date; }; const OpeningHours: React.FC = ({ branchId, initialDate }) => { - const date = initialDate ? new Date(initialDate) : new Date(); const { currentWeekRange, groupedOpeningHours, navigateToPreviousWeek, navigateToNextWeek, isLoading - } = useOpeningHours(date, branchId); + } = useOpeningHours(initialDate, branchId); const t = useText(); const nextWeekDate = getNextWeek(currentWeekRange.start); From 848af19cf96c3d42476e9d0878ccc40c8162f10d Mon Sep 17 00:00:00 2001 From: Kasper Birch Date: Tue, 5 Nov 2024 11:07:15 +0100 Subject: [PATCH 03/28] Improve validation of Date object in `getInitialDateFromUrl` The `isDate` function only verifies if a value is a `Date` object without checking its validity. Since `new Date()` returns a `Date` object even for invalid date strings (`initialDateString`), this adjustment ensures that only valid dates pass the check. --- src/apps/opening-hours-editor/helper.ts | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/apps/opening-hours-editor/helper.ts b/src/apps/opening-hours-editor/helper.ts index 4b293b85f5..99936dfc21 100644 --- a/src/apps/opening-hours-editor/helper.ts +++ b/src/apps/opening-hours-editor/helper.ts @@ -1,5 +1,4 @@ import dayjs from "dayjs"; -import { isDate } from "lodash"; import { EventInput } from "@fullcalendar/core"; import { EventImpl } from "@fullcalendar/core/internal"; import { @@ -185,7 +184,7 @@ export const getInitialDateFromUrl = (): Date | null => { } const date = new Date(initialDateString); - if (isDate(date)) { + if (!Number.isNaN(date.getTime())) { return date; } // eslint-disable-next-line no-console From 38793e09bc426fff8787d016548f281d24b3a835 Mon Sep 17 00:00:00 2001 From: Adam Antal Date: Thu, 7 Nov 2024 12:54:19 +0100 Subject: [PATCH 04/28] Add getNumberInSeries() helper function to retrieve number in series for a manifestation --- src/components/card-item-list/helper.ts | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 src/components/card-item-list/helper.ts diff --git a/src/components/card-item-list/helper.ts b/src/components/card-item-list/helper.ts new file mode 100644 index 0000000000..4cf8971bf7 --- /dev/null +++ b/src/components/card-item-list/helper.ts @@ -0,0 +1,11 @@ +import { Work } from "../../core/utils/types/entities"; +import { WorkId } from "../../core/utils/types/ids"; + +export const getNumberInSeries = (serie: Work["series"][0], id: WorkId) => { + const filteredMembers = [ + ...serie.members.filter((member) => member.work.workId === id) + ]; + return filteredMembers?.[0]?.numberInSeries; +}; + +export default {}; From 2192a3c87e60d0bb7f4703aa95b3b94892139179 Mon Sep 17 00:00:00 2001 From: Adam Antal Date: Thu, 7 Nov 2024 13:00:39 +0100 Subject: [PATCH 05/28] Refactor series handling in CardListItem to utilize getNumberInSeries for displaying series information - API specs changed so now we had to adapt --- .../card-list-item/card-list-item.tsx | 38 +++++++++---------- 1 file changed, 18 insertions(+), 20 deletions(-) diff --git a/src/components/card-item-list/card-list-item/card-list-item.tsx b/src/components/card-item-list/card-list-item/card-list-item.tsx index 34d9470af6..7319c2eee5 100644 --- a/src/components/card-item-list/card-list-item/card-list-item.tsx +++ b/src/components/card-item-list/card-list-item/card-list-item.tsx @@ -33,12 +33,12 @@ import { statistics } from "../../../core/statistics/statistics"; import { useItemHasBeenVisible } from "../../../core/utils/helpers/lazy-load"; import { getFirstBookManifestation, - getManifestationLanguageIsoCode, - getNumberedSeries + getManifestationLanguageIsoCode } from "../../../apps/material/helper"; import useFilterHandler from "../../../apps/search-result/useFilterHandler"; import { getFirstMaterialTypeFromFilters } from "../../../apps/search-result/helper"; import SubjectNumber from "../../subject-number/SubjectNumber"; +import { getNumberInSeries } from "../helper"; export interface CardListItemProps { item: Work; @@ -80,7 +80,6 @@ const CardListItem: React.FC = ({ const queryClient = useQueryClient(); const author = creatorsToString(flattenCreators(creators), t); const manifestationPids = getManifestationsPids(manifestations); - const firstItemInSeries = getNumberedSeries(series).shift(); const materialFullUrl = constructMaterialUrl( materialUrl, workId as WorkId, @@ -157,24 +156,23 @@ const CardListItem: React.FC = ({ addToListRequest={addToListRequest} /> )} - {/* TODO: Since the series has changed it structure and can have multiple members - we need to double check if we can only look at the first member entry. (firstItemInSeries.members[0]) */} - {firstItemInSeries && ( - - )} + {series.map((serie) => { + return ( + !!getNumberInSeries(serie, workId) && ( + + ) + ); + })} - {!materialIsFiction(bestRepresentation) && shelfmark && ( Date: Thu, 7 Nov 2024 13:58:42 +0100 Subject: [PATCH 06/28] Make it possible to style HorizontalTermLine with classNames --- .../horizontal-term-line/HorizontalTermLine.tsx | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/src/components/horizontal-term-line/HorizontalTermLine.tsx b/src/components/horizontal-term-line/HorizontalTermLine.tsx index 4f613fed8b..eebec92550 100644 --- a/src/components/horizontal-term-line/HorizontalTermLine.tsx +++ b/src/components/horizontal-term-line/HorizontalTermLine.tsx @@ -1,4 +1,5 @@ import React, { useState } from "react"; +import clsx from "clsx"; import Link from "../atoms/links/Link"; import ButtonExpand from "../button-expand/ButtonExpand"; @@ -10,12 +11,14 @@ export interface HorizontalTermLineProps { term: string; }[]; dataCy?: string; + classNames?: string; } const HorizontalTermLine: React.FC = ({ title, subTitle, linkList, + classNames, dataCy = "horizontal-term-line" }) => { const numberOfItemsToShow = 3; @@ -30,7 +33,13 @@ const HorizontalTermLine: React.FC = ({ } return ( -
+

{title || ""}{" "} {subTitle && ( From e5c3084a8f72efba7b2d4e44da0e7b0e3b5c9bd4 Mon Sep 17 00:00:00 2001 From: Adam Antal Date: Thu, 7 Nov 2024 14:01:15 +0100 Subject: [PATCH 07/28] Introduce series-list component & use it - in MaterialDescription + card-list-item --- .../card-list-item/card-list-item.tsx | 26 ++++--------- .../card-list-item/series-list.tsx | 39 +++++++++++++++++++ .../material/MaterialDescription.tsx | 26 ++++--------- 3 files changed, 53 insertions(+), 38 deletions(-) create mode 100644 src/components/card-item-list/card-list-item/series-list.tsx diff --git a/src/components/card-item-list/card-list-item/card-list-item.tsx b/src/components/card-item-list/card-list-item/card-list-item.tsx index 7319c2eee5..20c763451b 100644 --- a/src/components/card-item-list/card-list-item/card-list-item.tsx +++ b/src/components/card-item-list/card-list-item/card-list-item.tsx @@ -18,11 +18,9 @@ import { getManifestationsPids } from "../../../core/utils/helpers/general"; import CardListItemCover from "./card-list-item-cover"; -import HorizontalTermLine from "../../horizontal-term-line/HorizontalTermLine"; import { useUrls } from "../../../core/utils/url"; import { constructMaterialUrl, - constructSearchUrl, redirectTo } from "../../../core/utils/helpers/url"; import { TypedDispatch } from "../../../core/store"; @@ -38,7 +36,7 @@ import { import useFilterHandler from "../../../apps/search-result/useFilterHandler"; import { getFirstMaterialTypeFromFilters } from "../../../apps/search-result/helper"; import SubjectNumber from "../../subject-number/SubjectNumber"; -import { getNumberInSeries } from "../helper"; +import SeriesList from "./series-list"; export interface CardListItemProps { item: Work; @@ -156,22 +154,12 @@ const CardListItem: React.FC = ({ addToListRequest={addToListRequest} /> )} - {series.map((serie) => { - return ( - !!getNumberInSeries(serie, workId) && ( - - ) - ); - })} +

{!materialIsFiction(bestRepresentation) && shelfmark && ( { + return ( + <> + {series.map((serie) => { + return ( + !!getNumberInSeries(serie, workId) && ( + + ) + ); + })} + + ); +}; + +export default SeriesList; diff --git a/src/components/material/MaterialDescription.tsx b/src/components/material/MaterialDescription.tsx index bc45524afd..0dae182d79 100644 --- a/src/components/material/MaterialDescription.tsx +++ b/src/components/material/MaterialDescription.tsx @@ -1,6 +1,5 @@ import React from "react"; import { - getNumberedSeries, getUniqueMovies, getDbcVerifiedSubjectsFirst } from "../../apps/material/helper"; @@ -15,6 +14,7 @@ import { Pid, WorkId } from "../../core/utils/types/ids"; import { useUrls } from "../../core/utils/url"; import HorizontalTermLine from "../horizontal-term-line/HorizontalTermLine"; import { materialIsFiction } from "../../core/utils/helpers/general"; +import SeriesList from "../card-item-list/card-list-item/series-list"; export interface MaterialDescriptionProps { pid: Pid; @@ -30,7 +30,6 @@ const MaterialDescription: React.FC = ({ work }) => { const { fictionNonfiction, series, subjects, relations, dk5MainEntry } = work; const isFiction = materialIsFiction(work); - const seriesList = getNumberedSeries(series); const seriesMembersList = (series && @@ -93,23 +92,12 @@ const MaterialDescription: React.FC = ({ work }) => { ]} /> )} - {seriesList.map((item, i) => ( - // TODO: Since the series has changed it structure and can have multiple members - // we need to double check if we can only look at the first member entry. - - ))} + Date: Thu, 7 Nov 2024 14:03:46 +0100 Subject: [PATCH 08/28] Remove unused getNumberedSeries helper function --- src/apps/material/helper.ts | 5 ----- 1 file changed, 5 deletions(-) diff --git a/src/apps/material/helper.ts b/src/apps/material/helper.ts index 4797520d2f..d149ee5aa2 100644 --- a/src/apps/material/helper.ts +++ b/src/apps/material/helper.ts @@ -455,11 +455,6 @@ export const reservationModalId = (faustIds: FaustId[]) => { return constructModalId("reservation-modal", faustIds.sort()); }; -// TODO: Since the series has changed it structure and can have multiple members -// we need to double check if we can only look at the first member entry. -export const getNumberedSeries = (series: Work["series"]) => - series.filter((seriesEntry) => seriesEntry.members[0].numberInSeries); - export const getUniqueMovies = (relations: Work["relations"]) => { const movies = relations.hasAdaptation.filter( (item) => item.ownerWork.workTypes.includes(WorkTypeEnum.Movie) From c854c9cdd04d29c34958795721f45712a6c7a704 Mon Sep 17 00:00:00 2001 From: Adam Antal Date: Thu, 7 Nov 2024 14:24:32 +0100 Subject: [PATCH 09/28] Refactor searchWithPagination_terms_krimi.json fixture --- .../searchWithPagination_terms_krimi.json | 1333 ----------------- 1 file changed, 1333 deletions(-) diff --git a/cypress/fixtures/search-result/facet-browser/searchWithPagination_terms_krimi.json b/cypress/fixtures/search-result/facet-browser/searchWithPagination_terms_krimi.json index 3fe40ee80d..5c148d7788 100644 --- a/cypress/fixtures/search-result/facet-browser/searchWithPagination_terms_krimi.json +++ b/cypress/fixtures/search-result/facet-browser/searchWithPagination_terms_krimi.json @@ -20061,1339 +20061,6 @@ "workYear": null } } - }, - { - "workId": "work-of:870970-basis:52884659", - "titles": { "full": ["Tørst"], "original": [] }, - "abstract": [], - "creators": [{ "display": "Jo Nesbø", "__typename": "Person" }], - "series": [], - "workYear": null, - "genreAndForm": ["roman", "krimi"], - "manifestations": { - "all": [ - { - "pid": "870970-basis:52884659", - "genreAndForm": ["roman", "krimi"], - "source": ["Bibliotekskatalog"], - "languages": { - "main": [{ "display": "norsk", "isoCode": "nor" }] - }, - "titles": { "main": ["Tørst (Norsk udgave)"], "original": [] }, - "fictionNonfiction": { - "display": "skønlitteratur", - "code": "FICTION" - }, - "materialTypes": [ - { "materialTypeSpecific": { "display": "bog" } } - ], - "creators": [{ "display": "Jo Nesbø", "__typename": "Person" }], - "publisher": ["Aschehoug"], - "identifiers": [{ "value": "9788203361661" }], - "contributors": [], - "edition": { - "summary": "2017", - "publicationYear": { "display": "2017" } - }, - "dateFirstEdition": null, - "audience": { "generalAudience": [] }, - "physicalDescription": { - "numberOfPages": 526, - "materialUnits": [{ "extent": null }] - }, - "accessTypes": [{ "code": "PHYSICAL" }], - "access": [ - { "__typename": "InterLibraryLoan", "loanIsPossible": true } - ], - "shelfmark": { "postfix": "Nesbø", "shelfmark": "85" }, - "workYear": null - } - ], - "latest": { - "pid": "870970-basis:52884659", - "genreAndForm": ["roman", "krimi"], - "source": ["Bibliotekskatalog"], - "languages": { - "main": [{ "display": "norsk", "isoCode": "nor" }] - }, - "titles": { "main": ["Tørst (Norsk udgave)"], "original": [] }, - "fictionNonfiction": { - "display": "skønlitteratur", - "code": "FICTION" - }, - "materialTypes": [ - { "materialTypeSpecific": { "display": "bog" } } - ], - "creators": [{ "display": "Jo Nesbø", "__typename": "Person" }], - "publisher": ["Aschehoug"], - "identifiers": [{ "value": "9788203361661" }], - "contributors": [], - "edition": { - "summary": "2017", - "publicationYear": { "display": "2017" } - }, - "dateFirstEdition": null, - "audience": { "generalAudience": [] }, - "physicalDescription": { - "numberOfPages": 526, - "materialUnits": [{ "extent": null }] - }, - "accessTypes": [{ "code": "PHYSICAL" }], - "access": [ - { "__typename": "InterLibraryLoan", "loanIsPossible": true } - ], - "shelfmark": { "postfix": "Nesbø", "shelfmark": "85" }, - "workYear": null - }, - "bestRepresentation": { - "pid": "870970-basis:52884659", - "genreAndForm": ["roman", "krimi"], - "source": ["Bibliotekskatalog"], - "languages": { - "main": [{ "display": "norsk", "isoCode": "nor" }] - }, - "titles": { "main": ["Tørst (Norsk udgave)"], "original": [] }, - "fictionNonfiction": { - "display": "skønlitteratur", - "code": "FICTION" - }, - "materialTypes": [ - { "materialTypeSpecific": { "display": "bog" } } - ], - "creators": [{ "display": "Jo Nesbø", "__typename": "Person" }], - "publisher": ["Aschehoug"], - "identifiers": [{ "value": "9788203361661" }], - "contributors": [], - "edition": { - "summary": "2017", - "publicationYear": { "display": "2017" } - }, - "dateFirstEdition": null, - "audience": { "generalAudience": [] }, - "physicalDescription": { - "numberOfPages": 526, - "materialUnits": [{ "extent": null }] - }, - "accessTypes": [{ "code": "PHYSICAL" }], - "access": [ - { "__typename": "InterLibraryLoan", "loanIsPossible": true } - ], - "shelfmark": { "postfix": "Nesbø", "shelfmark": "85" }, - "workYear": null - } - } - }, - { - "workId": "work-of:870970-basis:27459579", - "titles": { - "full": ["Snemanden. Bind 1"], - "original": ["Snømannen"] - }, - "abstract": [ - "Krimi. Vicekommisær Harry Hole får et anonymt brev om, at en seriemorder er på spil. En række mord og forsvindinger får overbevist politiet om, at en seriemorder ganske rigtigt er i gang, og Harry Hole går i gang med at løse den komplicerede sag" - ], - "creators": [{ "display": "Jo Nesbø", "__typename": "Person" }], - "series": [ - { - "title": "Krimiserien med Harry Hole", - "isPopular": true, - "members": [ - { - "numberInSeries": "1", - "work": { - "workId": "work-of:870970-basis:26701139", - "titles": { - "main": ["Flagermusmanden"], - "full": ["Flagermusmanden"], - "original": ["Flaggermusmannen"] - } - } - }, - { - "numberInSeries": "1", - "work": { - "workId": "work-of:870970-basis:26701112", - "titles": { - "main": ["Kakerlakkerne"], - "full": ["Kakerlakkerne"], - "original": ["Kakerlakkene"] - } - } - }, - { - "numberInSeries": "1", - "work": { - "workId": "work-of:870970-basis:25660722", - "titles": { - "main": ["Rødhals"], - "full": ["Rødhals"], - "original": ["Rødstrupe"] - } - } - }, - { - "numberInSeries": "1", - "work": { - "workId": "work-of:870970-basis:25932625", - "titles": { - "main": ["Sorgenfri"], - "full": ["Sorgenfri"], - "original": ["Sorgenfri (norsk)"] - } - } - }, - { - "numberInSeries": "1", - "work": { - "workId": "work-of:870970-basis:26264340", - "titles": { - "main": ["Marekors"], - "full": ["Marekors"], - "original": ["Marekors (norsk)"] - } - } - }, - { - "numberInSeries": "1", - "work": { - "workId": "work-of:870970-basis:26856353", - "titles": { - "main": ["Frelseren"], - "full": ["Frelseren"], - "original": ["Frelseren (norsk)"] - } - } - }, - { - "numberInSeries": "1", - "work": { - "workId": "work-of:870970-basis:27275745", - "titles": { - "main": ["Snemanden"], - "full": ["Snemanden"], - "original": ["Snømannen"] - } - } - }, - { - "numberInSeries": "1", - "work": { - "workId": "work-of:870970-basis:45363899", - "titles": { - "main": ["Panserhjerte"], - "full": ["Panserhjerte"], - "original": ["Panserhjerte (norsk)"] - } - } - }, - { - "numberInSeries": "1", - "work": { - "workId": "work-of:870970-basis:29788596", - "titles": { - "main": ["Genfærd"], - "full": ["Genfærd"], - "original": ["Gjenferd"] - } - } - }, - { - "numberInSeries": "1", - "work": { - "workId": "work-of:870970-basis:50689360", - "titles": { - "main": ["Politi"], - "full": ["Politi"], - "original": ["Politi (norsk)"] - } - } - }, - { - "numberInSeries": "1", - "work": { - "workId": "work-of:870970-basis:53045650", - "titles": { - "main": ["Tørst"], - "full": ["Tørst"], - "original": ["Tørst (norsk)"] - } - } - }, - { - "numberInSeries": "1", - "work": { - "workId": "work-of:870970-basis:46510534", - "titles": { - "main": ["Kniv"], - "full": ["Kniv"], - "original": ["Kniv (norsk)"] - } - } - }, - { - "numberInSeries": "1", - "work": { - "workId": "work-of:870970-basis:134877804", - "titles": { - "main": ["Blodmånen"], - "full": ["Blodmånen"], - "original": ["Blodmåne (norsk)"] - } - } - } - ], - "readThisFirst": null, - "readThisWhenever": null - } - ], - "workYear": null, - "genreAndForm": ["roman", "krimi"], - "manifestations": { - "all": [ - { - "pid": "870970-basis:27459579", - "genreAndForm": ["roman", "krimi"], - "source": ["Bibliotekskatalog"], - "languages": { - "main": [{ "display": "dansk", "isoCode": "dan" }] - }, - "titles": { - "main": ["Snemanden (Stor skrift). Bind 1"], - "original": ["Snømannen"] - }, - "fictionNonfiction": { - "display": "skønlitteratur", - "code": "FICTION" - }, - "materialTypes": [ - { "materialTypeSpecific": { "display": "bog stor skrift" } } - ], - "creators": [{ "display": "Jo Nesbø", "__typename": "Person" }], - "publisher": ["Modtryk"], - "identifiers": [{ "value": "9788770532303" }], - "contributors": [], - "edition": { - "summary": "3. udgave, 2008", - "publicationYear": { "display": "2008" } - }, - "dateFirstEdition": null, - "audience": { "generalAudience": [] }, - "physicalDescription": { - "numberOfPages": 282, - "materialUnits": [{ "extent": null }] - }, - "accessTypes": [{ "code": "PHYSICAL" }], - "access": [ - { "__typename": "InterLibraryLoan", "loanIsPossible": true } - ], - "shelfmark": null, - "workYear": null - } - ], - "latest": { - "pid": "870970-basis:27459579", - "genreAndForm": ["roman", "krimi"], - "source": ["Bibliotekskatalog"], - "languages": { - "main": [{ "display": "dansk", "isoCode": "dan" }] - }, - "titles": { - "main": ["Snemanden (Stor skrift). Bind 1"], - "original": ["Snømannen"] - }, - "fictionNonfiction": { - "display": "skønlitteratur", - "code": "FICTION" - }, - "materialTypes": [ - { "materialTypeSpecific": { "display": "bog stor skrift" } } - ], - "creators": [{ "display": "Jo Nesbø", "__typename": "Person" }], - "publisher": ["Modtryk"], - "identifiers": [{ "value": "9788770532303" }], - "contributors": [], - "edition": { - "summary": "3. udgave, 2008", - "publicationYear": { "display": "2008" } - }, - "dateFirstEdition": null, - "audience": { "generalAudience": [] }, - "physicalDescription": { - "numberOfPages": 282, - "materialUnits": [{ "extent": null }] - }, - "accessTypes": [{ "code": "PHYSICAL" }], - "access": [ - { "__typename": "InterLibraryLoan", "loanIsPossible": true } - ], - "shelfmark": null, - "workYear": null - }, - "bestRepresentation": { - "pid": "870970-basis:27459579", - "genreAndForm": ["roman", "krimi"], - "source": ["Bibliotekskatalog"], - "languages": { - "main": [{ "display": "dansk", "isoCode": "dan" }] - }, - "titles": { - "main": ["Snemanden (Stor skrift). Bind 1"], - "original": ["Snømannen"] - }, - "fictionNonfiction": { - "display": "skønlitteratur", - "code": "FICTION" - }, - "materialTypes": [ - { "materialTypeSpecific": { "display": "bog stor skrift" } } - ], - "creators": [{ "display": "Jo Nesbø", "__typename": "Person" }], - "publisher": ["Modtryk"], - "identifiers": [{ "value": "9788770532303" }], - "contributors": [], - "edition": { - "summary": "3. udgave, 2008", - "publicationYear": { "display": "2008" } - }, - "dateFirstEdition": null, - "audience": { "generalAudience": [] }, - "physicalDescription": { - "numberOfPages": 282, - "materialUnits": [{ "extent": null }] - }, - "accessTypes": [{ "code": "PHYSICAL" }], - "access": [ - { "__typename": "InterLibraryLoan", "loanIsPossible": true } - ], - "shelfmark": null, - "workYear": null - } - } - }, - { - "workId": "work-of:870970-basis:27459595", - "titles": { - "full": ["Snemanden. Bind 2"], - "original": ["Snømannen"] - }, - "abstract": [ - "Krimi. Vicekommisær Harry Hole får et anonymt brev om, at en seriemorder er på spil. En række mord og forsvindinger får overbevist politiet om, at en seriemorder ganske rigtigt er i gang, og Harry Hole går i gang med at løse den komplicerede sag" - ], - "creators": [{ "display": "Jo Nesbø", "__typename": "Person" }], - "series": [ - { - "title": "Krimiserien med Harry Hole", - "isPopular": true, - "members": [ - { - "numberInSeries": "1", - "work": { - "workId": "work-of:870970-basis:26701139", - "titles": { - "main": ["Flagermusmanden"], - "full": ["Flagermusmanden"], - "original": ["Flaggermusmannen"] - } - } - }, - { - "numberInSeries": "1", - "work": { - "workId": "work-of:870970-basis:26701112", - "titles": { - "main": ["Kakerlakkerne"], - "full": ["Kakerlakkerne"], - "original": ["Kakerlakkene"] - } - } - }, - { - "numberInSeries": "1", - "work": { - "workId": "work-of:870970-basis:25660722", - "titles": { - "main": ["Rødhals"], - "full": ["Rødhals"], - "original": ["Rødstrupe"] - } - } - }, - { - "numberInSeries": "1", - "work": { - "workId": "work-of:870970-basis:25932625", - "titles": { - "main": ["Sorgenfri"], - "full": ["Sorgenfri"], - "original": ["Sorgenfri (norsk)"] - } - } - }, - { - "numberInSeries": "1", - "work": { - "workId": "work-of:870970-basis:26264340", - "titles": { - "main": ["Marekors"], - "full": ["Marekors"], - "original": ["Marekors (norsk)"] - } - } - }, - { - "numberInSeries": "1", - "work": { - "workId": "work-of:870970-basis:26856353", - "titles": { - "main": ["Frelseren"], - "full": ["Frelseren"], - "original": ["Frelseren (norsk)"] - } - } - }, - { - "numberInSeries": "1", - "work": { - "workId": "work-of:870970-basis:27275745", - "titles": { - "main": ["Snemanden"], - "full": ["Snemanden"], - "original": ["Snømannen"] - } - } - }, - { - "numberInSeries": "1", - "work": { - "workId": "work-of:870970-basis:45363899", - "titles": { - "main": ["Panserhjerte"], - "full": ["Panserhjerte"], - "original": ["Panserhjerte (norsk)"] - } - } - }, - { - "numberInSeries": "1", - "work": { - "workId": "work-of:870970-basis:29788596", - "titles": { - "main": ["Genfærd"], - "full": ["Genfærd"], - "original": ["Gjenferd"] - } - } - }, - { - "numberInSeries": "1", - "work": { - "workId": "work-of:870970-basis:50689360", - "titles": { - "main": ["Politi"], - "full": ["Politi"], - "original": ["Politi (norsk)"] - } - } - }, - { - "numberInSeries": "1", - "work": { - "workId": "work-of:870970-basis:53045650", - "titles": { - "main": ["Tørst"], - "full": ["Tørst"], - "original": ["Tørst (norsk)"] - } - } - }, - { - "numberInSeries": "1", - "work": { - "workId": "work-of:870970-basis:46510534", - "titles": { - "main": ["Kniv"], - "full": ["Kniv"], - "original": ["Kniv (norsk)"] - } - } - }, - { - "numberInSeries": "1", - "work": { - "workId": "work-of:870970-basis:134877804", - "titles": { - "main": ["Blodmånen"], - "full": ["Blodmånen"], - "original": ["Blodmåne (norsk)"] - } - } - } - ], - "readThisFirst": null, - "readThisWhenever": null - } - ], - "workYear": null, - "genreAndForm": ["roman", "krimi"], - "manifestations": { - "all": [ - { - "pid": "870970-basis:27459595", - "genreAndForm": ["roman", "krimi"], - "source": ["Bibliotekskatalog"], - "languages": { - "main": [{ "display": "dansk", "isoCode": "dan" }] - }, - "titles": { - "main": ["Snemanden (Stor skrift). Bind 2"], - "original": ["Snømannen"] - }, - "fictionNonfiction": { - "display": "skønlitteratur", - "code": "FICTION" - }, - "materialTypes": [ - { "materialTypeSpecific": { "display": "bog stor skrift" } } - ], - "creators": [{ "display": "Jo Nesbø", "__typename": "Person" }], - "publisher": ["Modtryk"], - "identifiers": [{ "value": "9788770532303" }], - "contributors": [], - "edition": { - "summary": "3. udgave, 2008", - "publicationYear": { "display": "2008" } - }, - "dateFirstEdition": null, - "audience": { "generalAudience": [] }, - "physicalDescription": { - "numberOfPages": 278, - "materialUnits": [{ "extent": null }] - }, - "accessTypes": [{ "code": "PHYSICAL" }], - "access": [ - { "__typename": "InterLibraryLoan", "loanIsPossible": true } - ], - "shelfmark": null, - "workYear": null - } - ], - "latest": { - "pid": "870970-basis:27459595", - "genreAndForm": ["roman", "krimi"], - "source": ["Bibliotekskatalog"], - "languages": { - "main": [{ "display": "dansk", "isoCode": "dan" }] - }, - "titles": { - "main": ["Snemanden (Stor skrift). Bind 2"], - "original": ["Snømannen"] - }, - "fictionNonfiction": { - "display": "skønlitteratur", - "code": "FICTION" - }, - "materialTypes": [ - { "materialTypeSpecific": { "display": "bog stor skrift" } } - ], - "creators": [{ "display": "Jo Nesbø", "__typename": "Person" }], - "publisher": ["Modtryk"], - "identifiers": [{ "value": "9788770532303" }], - "contributors": [], - "edition": { - "summary": "3. udgave, 2008", - "publicationYear": { "display": "2008" } - }, - "dateFirstEdition": null, - "audience": { "generalAudience": [] }, - "physicalDescription": { - "numberOfPages": 278, - "materialUnits": [{ "extent": null }] - }, - "accessTypes": [{ "code": "PHYSICAL" }], - "access": [ - { "__typename": "InterLibraryLoan", "loanIsPossible": true } - ], - "shelfmark": null, - "workYear": null - }, - "bestRepresentation": { - "pid": "870970-basis:27459595", - "genreAndForm": ["roman", "krimi"], - "source": ["Bibliotekskatalog"], - "languages": { - "main": [{ "display": "dansk", "isoCode": "dan" }] - }, - "titles": { - "main": ["Snemanden (Stor skrift). Bind 2"], - "original": ["Snømannen"] - }, - "fictionNonfiction": { - "display": "skønlitteratur", - "code": "FICTION" - }, - "materialTypes": [ - { "materialTypeSpecific": { "display": "bog stor skrift" } } - ], - "creators": [{ "display": "Jo Nesbø", "__typename": "Person" }], - "publisher": ["Modtryk"], - "identifiers": [{ "value": "9788770532303" }], - "contributors": [], - "edition": { - "summary": "3. udgave, 2008", - "publicationYear": { "display": "2008" } - }, - "dateFirstEdition": null, - "audience": { "generalAudience": [] }, - "physicalDescription": { - "numberOfPages": 278, - "materialUnits": [{ "extent": null }] - }, - "accessTypes": [{ "code": "PHYSICAL" }], - "access": [ - { "__typename": "InterLibraryLoan", "loanIsPossible": true } - ], - "shelfmark": null, - "workYear": null - } - } - }, - { - "workId": "work-of:870970-basis:45577732", - "titles": { "full": ["The burning room"], "original": [] }, - "abstract": [ - "Krimi. When the vicitim of a crime succumbs to complications from a bullet wound from nine years ago, Detective Harry Bosch and his new partner, Lucia Soto must find new leads from the past" - ], - "creators": [ - { "display": "Michael Connelly", "__typename": "Person" } - ], - "series": [], - "workYear": { "year": 2014 }, - "genreAndForm": ["roman", "krimi"], - "manifestations": { - "all": [ - { - "pid": "150061-netlydbog:ODN0004009973", - "genreAndForm": [], - "source": ["eReolen Global"], - "languages": { - "main": [{ "display": "engelsk", "isoCode": "eng" }] - }, - "titles": { "main": ["The Burning Room"], "original": [] }, - "fictionNonfiction": { - "display": "vides ikke", - "code": "NOT_SPECIFIED" - }, - "materialTypes": [ - { "materialTypeSpecific": { "display": "lydbog (online)" } } - ], - "creators": [ - { "display": "Michael Connelly", "__typename": "Person" }, - { "display": "Titus Welliver", "__typename": "Person" } - ], - "publisher": ["Lamplight Audiobooks"], - "identifiers": [], - "contributors": [], - "edition": { - "summary": "Unabridged, 2018", - "publicationYear": { "display": "2018" } - }, - "dateFirstEdition": null, - "audience": { "generalAudience": [] }, - "physicalDescription": { - "numberOfPages": null, - "materialUnits": [{ "extent": null }] - }, - "accessTypes": [{ "code": "ONLINE" }], - "access": [ - { - "__typename": "AccessUrl", - "origin": "link.overdrive.com", - "url": "http://link.overdrive.com/?websiteID=100515&titleID=4009973", - "loginRequired": false - }, - { - "__typename": "AccessUrl", - "origin": "samples.overdrive.com", - "url": "https://samples.overdrive.com/?crid=543b5b53-2224-4f12-b8c6-a62a19f4c233&.epub-sample.overdrive.com", - "loginRequired": false - }, - { - "__typename": "AccessUrl", - "origin": "img1.od-cdn.com", - "url": "https://img1.od-cdn.com/ImageType-100/7723-1/%7B543B5B53-2224-4F12-B8C6-A62A19F4C233%7DImg100.jpg", - "loginRequired": false - }, - { - "__typename": "AccessUrl", - "origin": "img1.od-cdn.com", - "url": "https://img1.od-cdn.com/ImageType-200/7723-1/%7B543B5B53-2224-4F12-B8C6-A62A19F4C233%7DImg200.jpg", - "loginRequired": false - } - ], - "shelfmark": null, - "workYear": null - }, - { - "pid": "870970-basis:45577732", - "genreAndForm": ["roman", "krimi"], - "source": ["Bibliotekskatalog"], - "languages": { - "main": [{ "display": "engelsk", "isoCode": "eng" }] - }, - "titles": { "main": ["The burning room"], "original": [] }, - "fictionNonfiction": { - "display": "skønlitteratur", - "code": "FICTION" - }, - "materialTypes": [ - { "materialTypeSpecific": { "display": "bog" } } - ], - "creators": [ - { "display": "Michael Connelly", "__typename": "Person" } - ], - "publisher": ["Little, Brown and Company"], - "identifiers": [ - { "value": "9780316297073" }, - { "value": "9780316225939" }, - { "value": "9780316299572" } - ], - "contributors": [], - "edition": { - "summary": "1. edition, 2014", - "publicationYear": { "display": "2014" } - }, - "dateFirstEdition": null, - "audience": { "generalAudience": [] }, - "physicalDescription": { - "numberOfPages": 388, - "materialUnits": [{ "extent": null }] - }, - "accessTypes": [{ "code": "PHYSICAL" }], - "access": [ - { "__typename": "InterLibraryLoan", "loanIsPossible": true } - ], - "shelfmark": { "postfix": "Connelly", "shelfmark": "83.8" }, - "workYear": null - }, - { - "pid": "870970-basis:45678113", - "genreAndForm": ["roman", "krimi"], - "source": ["Bibliotekskatalog"], - "languages": { - "main": [{ "display": "engelsk", "isoCode": "eng" }] - }, - "titles": { "main": ["The burning room"], "original": [] }, - "fictionNonfiction": { - "display": "skønlitteratur", - "code": "FICTION" - }, - "materialTypes": [ - { "materialTypeSpecific": { "display": "bog" } } - ], - "creators": [ - { "display": "Michael Connelly", "__typename": "Person" } - ], - "publisher": ["Orion"], - "identifiers": [{ "value": "9781409154587" }], - "contributors": [], - "edition": { - "summary": "Orion, 2014", - "publicationYear": { "display": "2014" } - }, - "dateFirstEdition": { "display": "2014", "year": 2014 }, - "audience": { "generalAudience": [] }, - "physicalDescription": { - "numberOfPages": 388, - "materialUnits": [{ "extent": null }] - }, - "accessTypes": [{ "code": "PHYSICAL" }], - "access": [ - { "__typename": "InterLibraryLoan", "loanIsPossible": true } - ], - "shelfmark": { "postfix": "Connelly", "shelfmark": "83.8" }, - "workYear": { "year": 2014 } - } - ], - "latest": { - "pid": "150061-netlydbog:ODN0004009973", - "genreAndForm": [], - "source": ["eReolen Global"], - "languages": { - "main": [{ "display": "engelsk", "isoCode": "eng" }] - }, - "titles": { "main": ["The Burning Room"], "original": [] }, - "fictionNonfiction": { - "display": "vides ikke", - "code": "NOT_SPECIFIED" - }, - "materialTypes": [ - { "materialTypeSpecific": { "display": "lydbog (online)" } } - ], - "creators": [ - { "display": "Michael Connelly", "__typename": "Person" }, - { "display": "Titus Welliver", "__typename": "Person" } - ], - "publisher": ["Lamplight Audiobooks"], - "identifiers": [], - "contributors": [], - "edition": { - "summary": "Unabridged, 2018", - "publicationYear": { "display": "2018" } - }, - "dateFirstEdition": null, - "audience": { "generalAudience": [] }, - "physicalDescription": { - "numberOfPages": null, - "materialUnits": [{ "extent": null }] - }, - "accessTypes": [{ "code": "ONLINE" }], - "access": [ - { - "__typename": "AccessUrl", - "origin": "link.overdrive.com", - "url": "http://link.overdrive.com/?websiteID=100515&titleID=4009973", - "loginRequired": false - }, - { - "__typename": "AccessUrl", - "origin": "samples.overdrive.com", - "url": "https://samples.overdrive.com/?crid=543b5b53-2224-4f12-b8c6-a62a19f4c233&.epub-sample.overdrive.com", - "loginRequired": false - }, - { - "__typename": "AccessUrl", - "origin": "img1.od-cdn.com", - "url": "https://img1.od-cdn.com/ImageType-100/7723-1/%7B543B5B53-2224-4F12-B8C6-A62A19F4C233%7DImg100.jpg", - "loginRequired": false - }, - { - "__typename": "AccessUrl", - "origin": "img1.od-cdn.com", - "url": "https://img1.od-cdn.com/ImageType-200/7723-1/%7B543B5B53-2224-4F12-B8C6-A62A19F4C233%7DImg200.jpg", - "loginRequired": false - } - ], - "shelfmark": null, - "workYear": null - }, - "bestRepresentation": { - "pid": "870970-basis:45678113", - "genreAndForm": ["roman", "krimi"], - "source": ["Bibliotekskatalog"], - "languages": { - "main": [{ "display": "engelsk", "isoCode": "eng" }] - }, - "titles": { "main": ["The burning room"], "original": [] }, - "fictionNonfiction": { - "display": "skønlitteratur", - "code": "FICTION" - }, - "materialTypes": [ - { "materialTypeSpecific": { "display": "bog" } } - ], - "creators": [ - { "display": "Michael Connelly", "__typename": "Person" } - ], - "publisher": ["Orion"], - "identifiers": [{ "value": "9781409154587" }], - "contributors": [], - "edition": { - "summary": "Orion, 2014", - "publicationYear": { "display": "2014" } - }, - "dateFirstEdition": { "display": "2014", "year": 2014 }, - "audience": { "generalAudience": [] }, - "physicalDescription": { - "numberOfPages": 388, - "materialUnits": [{ "extent": null }] - }, - "accessTypes": [{ "code": "PHYSICAL" }], - "access": [ - { "__typename": "InterLibraryLoan", "loanIsPossible": true } - ], - "shelfmark": { "postfix": "Connelly", "shelfmark": "83.8" }, - "workYear": { "year": 2014 } - } - } - }, - { - "workId": "work-of:870970-basis:54945353", - "titles": { "full": ["The blacklist. Disc 1"], "original": [] }, - "abstract": [ - "Red er tilbage for at genopbygge sit forbrydersyndikat. Ved hans side har han Liz, der er splittet mellem jobbet som FBI-agent og sine mere kriminelle instinkter" - ], - "creators": [{ "display": "Jon Bokenkamp", "__typename": "Person" }], - "series": [ - { - "title": "Krimiserien med Harry Hole", - "isPopular": true, - "members": [ - { - "numberInSeries": "1", - "work": { - "workId": "work-of:870970-basis:26701139", - "titles": { - "main": ["Flagermusmanden"], - "full": ["Flagermusmanden"], - "original": ["Flaggermusmannen"] - } - } - }, - { - "numberInSeries": "1", - "work": { - "workId": "work-of:870970-basis:26701112", - "titles": { - "main": ["Kakerlakkerne"], - "full": ["Kakerlakkerne"], - "original": ["Kakerlakkene"] - } - } - }, - { - "numberInSeries": "1", - "work": { - "workId": "work-of:870970-basis:25660722", - "titles": { - "main": ["Rødhals"], - "full": ["Rødhals"], - "original": ["Rødstrupe"] - } - } - }, - { - "numberInSeries": "1", - "work": { - "workId": "work-of:870970-basis:25932625", - "titles": { - "main": ["Sorgenfri"], - "full": ["Sorgenfri"], - "original": ["Sorgenfri (norsk)"] - } - } - }, - { - "numberInSeries": "1", - "work": { - "workId": "work-of:870970-basis:26264340", - "titles": { - "main": ["Marekors"], - "full": ["Marekors"], - "original": ["Marekors (norsk)"] - } - } - }, - { - "numberInSeries": "1", - "work": { - "workId": "work-of:870970-basis:26856353", - "titles": { - "main": ["Frelseren"], - "full": ["Frelseren"], - "original": ["Frelseren (norsk)"] - } - } - }, - { - "numberInSeries": "1", - "work": { - "workId": "work-of:870970-basis:27275745", - "titles": { - "main": ["Snemanden"], - "full": ["Snemanden"], - "original": ["Snømannen"] - } - } - }, - { - "numberInSeries": "1", - "work": { - "workId": "work-of:870970-basis:45363899", - "titles": { - "main": ["Panserhjerte"], - "full": ["Panserhjerte"], - "original": ["Panserhjerte (norsk)"] - } - } - }, - { - "numberInSeries": "1", - "work": { - "workId": "work-of:870970-basis:29788596", - "titles": { - "main": ["Genfærd"], - "full": ["Genfærd"], - "original": ["Gjenferd"] - } - } - }, - { - "numberInSeries": "1", - "work": { - "workId": "work-of:870970-basis:50689360", - "titles": { - "main": ["Politi"], - "full": ["Politi"], - "original": ["Politi (norsk)"] - } - } - }, - { - "numberInSeries": "1", - "work": { - "workId": "work-of:870970-basis:53045650", - "titles": { - "main": ["Tørst"], - "full": ["Tørst"], - "original": ["Tørst (norsk)"] - } - } - }, - { - "numberInSeries": "1", - "work": { - "workId": "work-of:870970-basis:46510534", - "titles": { - "main": ["Kniv"], - "full": ["Kniv"], - "original": ["Kniv (norsk)"] - } - } - }, - { - "numberInSeries": "1", - "work": { - "workId": "work-of:870970-basis:134877804", - "titles": { - "main": ["Blodmånen"], - "full": ["Blodmånen"], - "original": ["Blodmåne (norsk)"] - } - } - } - ], - "readThisFirst": null, - "readThisWhenever": null - } - ], - "workYear": null, - "genreAndForm": ["tv-serier", "krimi"], - "manifestations": { - "all": [ - { - "pid": "870970-basis:54945280", - "genreAndForm": ["tv-serier", "krimi"], - "source": ["Bibliotekskatalog"], - "languages": { - "main": [{ "display": "engelsk", "isoCode": "eng" }] - }, - "titles": { - "main": ["The blacklist (Sæson 5). Disc 1"], - "original": [] - }, - "fictionNonfiction": { - "display": "fiktion", - "code": "FICTION" - }, - "materialTypes": [ - { "materialTypeSpecific": { "display": "tv-serie (dvd)" } } - ], - "creators": [ - { "display": "Jon Bokenkamp", "__typename": "Person" } - ], - "publisher": [ - "Universal Sony Pictures Home Entertainment Nordic" - ], - "identifiers": [{ "value": "52 GSD 3100550" }], - "contributors": [ - { "display": "James Spader" }, - { "display": "Megan Boone" }, - { "display": "Diego Klattenhoff" }, - { "display": "Ryan Eggold" }, - { "display": "Amir Arison" }, - { "display": "Mozhan Marnò" }, - { "display": "Hisham Tawfiq" }, - { "display": "Harry Lennix" } - ], - "edition": { - "summary": "2018", - "publicationYear": { "display": "2018" } - }, - "dateFirstEdition": null, - "audience": { - "generalAudience": ["Mærkning: Tilladt for børn over 15 år"] - }, - "physicalDescription": { - "numberOfPages": null, - "materialUnits": [{ "extent": null }] - }, - "accessTypes": [{ "code": "PHYSICAL" }], - "access": [ - { "__typename": "InterLibraryLoan", "loanIsPossible": true } - ], - "shelfmark": { "postfix": "blacklist", "shelfmark": "77.7" }, - "workYear": null - }, - { - "pid": "870970-basis:54945353", - "genreAndForm": ["tv-serier", "krimi"], - "source": ["Bibliotekskatalog"], - "languages": { - "main": [{ "display": "engelsk", "isoCode": "eng" }] - }, - "titles": { - "main": ["The blacklist (Sæson 5). Disc 1"], - "original": [] - }, - "fictionNonfiction": { - "display": "fiktion", - "code": "FICTION" - }, - "materialTypes": [ - { - "materialTypeSpecific": { "display": "tv-serie (blu-ray)" } - } - ], - "creators": [ - { "display": "Jon Bokenkamp", "__typename": "Person" } - ], - "publisher": [ - "Universal Sony Pictures Home Entertainment Nordic" - ], - "identifiers": [{ "value": "52 GSB 3100551" }], - "contributors": [ - { "display": "James Spader" }, - { "display": "Megan Boone" }, - { "display": "Diego Klattenhoff" }, - { "display": "Ryan Eggold" }, - { "display": "Amir Arison" }, - { "display": "Mozhan Marnò" }, - { "display": "Hisham Tawfiq" }, - { "display": "Harry Lennix" } - ], - "edition": { - "summary": "2018", - "publicationYear": { "display": "2018" } - }, - "dateFirstEdition": null, - "audience": { - "generalAudience": ["Mærkning: Tilladt for børn over 15 år"] - }, - "physicalDescription": { - "numberOfPages": null, - "materialUnits": [{ "extent": null }] - }, - "accessTypes": [{ "code": "PHYSICAL" }], - "access": [ - { "__typename": "InterLibraryLoan", "loanIsPossible": true } - ], - "shelfmark": { "postfix": "blacklist", "shelfmark": "77.7" }, - "workYear": null - } - ], - "latest": { - "pid": "870970-basis:54945353", - "genreAndForm": ["tv-serier", "krimi"], - "source": ["Bibliotekskatalog"], - "languages": { - "main": [{ "display": "engelsk", "isoCode": "eng" }] - }, - "titles": { - "main": ["The blacklist (Sæson 5). Disc 1"], - "original": [] - }, - "fictionNonfiction": { "display": "fiktion", "code": "FICTION" }, - "materialTypes": [ - { "materialTypeSpecific": { "display": "tv-serie (blu-ray)" } } - ], - "creators": [ - { "display": "Jon Bokenkamp", "__typename": "Person" } - ], - "publisher": [ - "Universal Sony Pictures Home Entertainment Nordic" - ], - "identifiers": [{ "value": "52 GSB 3100551" }], - "contributors": [ - { "display": "James Spader" }, - { "display": "Megan Boone" }, - { "display": "Diego Klattenhoff" }, - { "display": "Ryan Eggold" }, - { "display": "Amir Arison" }, - { "display": "Mozhan Marnò" }, - { "display": "Hisham Tawfiq" }, - { "display": "Harry Lennix" } - ], - "edition": { - "summary": "2018", - "publicationYear": { "display": "2018" } - }, - "dateFirstEdition": null, - "audience": { - "generalAudience": ["Mærkning: Tilladt for børn over 15 år"] - }, - "physicalDescription": { - "numberOfPages": null, - "materialUnits": [{ "extent": null }] - }, - "accessTypes": [{ "code": "PHYSICAL" }], - "access": [ - { "__typename": "InterLibraryLoan", "loanIsPossible": true } - ], - "shelfmark": { "postfix": "blacklist", "shelfmark": "77.7" }, - "workYear": null - }, - "bestRepresentation": { - "pid": "870970-basis:54945353", - "genreAndForm": ["tv-serier", "krimi"], - "source": ["Bibliotekskatalog"], - "languages": { - "main": [{ "display": "engelsk", "isoCode": "eng" }] - }, - "titles": { - "main": ["The blacklist (Sæson 5). Disc 1"], - "original": [] - }, - "fictionNonfiction": { "display": "fiktion", "code": "FICTION" }, - "materialTypes": [ - { "materialTypeSpecific": { "display": "tv-serie (blu-ray)" } } - ], - "creators": [ - { "display": "Jon Bokenkamp", "__typename": "Person" } - ], - "publisher": [ - "Universal Sony Pictures Home Entertainment Nordic" - ], - "identifiers": [{ "value": "52 GSB 3100551" }], - "contributors": [ - { "display": "James Spader" }, - { "display": "Megan Boone" }, - { "display": "Diego Klattenhoff" }, - { "display": "Ryan Eggold" }, - { "display": "Amir Arison" }, - { "display": "Mozhan Marnò" }, - { "display": "Hisham Tawfiq" }, - { "display": "Harry Lennix" } - ], - "edition": { - "summary": "2018", - "publicationYear": { "display": "2018" } - }, - "dateFirstEdition": null, - "audience": { - "generalAudience": ["Mærkning: Tilladt for børn over 15 år"] - }, - "physicalDescription": { - "numberOfPages": null, - "materialUnits": [{ "extent": null }] - }, - "accessTypes": [{ "code": "PHYSICAL" }], - "access": [ - { "__typename": "InterLibraryLoan", "loanIsPossible": true } - ], - "shelfmark": { "postfix": "blacklist", "shelfmark": "77.7" }, - "workYear": null - } - } } ] } From ece65a68f2d1dd5fbff68169ec09ab2e59961261 Mon Sep 17 00:00:00 2001 From: Adam Antal Date: Thu, 7 Nov 2024 14:42:06 +0100 Subject: [PATCH 10/28] Update fbi-api.json fixtures to reflect new FBI API changes --- cypress/fixtures/material/fbi-api.json | 16 ++++++++-------- src/apps/material/material.test.ts | 2 +- 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/cypress/fixtures/material/fbi-api.json b/cypress/fixtures/material/fbi-api.json index ae0f22bb5d..0711a423d7 100644 --- a/cypress/fixtures/material/fbi-api.json +++ b/cypress/fixtures/material/fbi-api.json @@ -21,7 +21,7 @@ "isPopular": true, "members": [ { - "numberInSeries": "1", + "numberInSeries": "Del 1", "work": { "workId": "work-of:870970-basis:52557240", "titles": { @@ -32,7 +32,7 @@ } }, { - "numberInSeries": "1", + "numberInSeries": "Del 1", "work": { "workId": "work-of:870970-basis:52970628", "titles": { @@ -43,7 +43,7 @@ } }, { - "numberInSeries": "1", + "numberInSeries": "Del 1", "work": { "workId": "work-of:870970-basis:53280749", "titles": { @@ -55,7 +55,7 @@ }, { - "numberInSeries": "1", + "numberInSeries": "Del 1", "work": { "workId": "work-of:870970-basis:53802001", "titles": { @@ -66,7 +66,7 @@ } }, { - "numberInSeries": "1", + "numberInSeries": "Del 1", "work": { "workId": "work-of:870970-basis:54189141", "titles": { @@ -77,7 +77,7 @@ } }, { - "numberInSeries": "1", + "numberInSeries": "Del 1", "work": { "workId": "work-of:870970-basis:46656172", "titles": { @@ -88,7 +88,7 @@ } }, { - "numberInSeries": "1", + "numberInSeries": "Del 1", "work": { "workId": "work-of:870970-basis:38500775", "titles": { @@ -99,7 +99,7 @@ } }, { - "numberInSeries": "1", + "numberInSeries": "Del 1", "work": { "workId": "work-of:870970-basis:134823658", "titles": { diff --git a/src/apps/material/material.test.ts b/src/apps/material/material.test.ts index 99fd8d5a21..923aac61f2 100644 --- a/src/apps/material/material.test.ts +++ b/src/apps/material/material.test.ts @@ -45,7 +45,7 @@ describe("Material", () => { cy.getBySel("material-description-series-0") .should("be.visible") - .and("contain.text", "Nr. 1 in seriesDe syv søstre-serien"); + .and("contain.text", "Del 1 in seriesDe syv søstre-serien"); }); it("Renders only first 3 horizontal lines items", () => { From 6f9cdbbc032a7f480ca4a83399436dbe6664bb01 Mon Sep 17 00:00:00 2001 From: Adam Antal Date: Thu, 7 Nov 2024 14:53:27 +0100 Subject: [PATCH 11/28] Add dataCy prop to SeriesList component for testing --- .../card-item-list/card-list-item/series-list.tsx | 12 ++++++++++-- src/components/material/MaterialDescription.tsx | 1 + 2 files changed, 11 insertions(+), 2 deletions(-) diff --git a/src/components/card-item-list/card-list-item/series-list.tsx b/src/components/card-item-list/card-list-item/series-list.tsx index 713fe41bf9..391cfc4b4f 100644 --- a/src/components/card-item-list/card-list-item/series-list.tsx +++ b/src/components/card-item-list/card-list-item/series-list.tsx @@ -10,12 +10,19 @@ type SeriesListProps = { workId: Work["workId"]; searchUrl: URL; t: UseTextFunction; + dataCy?: string; }; -const SeriesList = ({ series, workId, searchUrl, t }: SeriesListProps) => { +const SeriesList = ({ + series, + workId, + searchUrl, + t, + dataCy = "series-list" +}: SeriesListProps) => { return ( <> - {series.map((serie) => { + {series.map((serie, index) => { return ( !!getNumberInSeries(serie, workId) && ( { } ]} classNames="horizontal-term-line--no-wrap" + dataCy={`${dataCy}-${index}`} /> ) ); diff --git a/src/components/material/MaterialDescription.tsx b/src/components/material/MaterialDescription.tsx index 0dae182d79..90dca843e1 100644 --- a/src/components/material/MaterialDescription.tsx +++ b/src/components/material/MaterialDescription.tsx @@ -97,6 +97,7 @@ const MaterialDescription: React.FC = ({ work }) => { searchUrl={searchUrl} t={t} workId={work.workId} + dataCy="material-description-series" /> Date: Thu, 7 Nov 2024 15:27:09 +0100 Subject: [PATCH 12/28] Fix typo in material description test assertion --- src/apps/material/material.test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/apps/material/material.test.ts b/src/apps/material/material.test.ts index 923aac61f2..682618ab14 100644 --- a/src/apps/material/material.test.ts +++ b/src/apps/material/material.test.ts @@ -45,7 +45,7 @@ describe("Material", () => { cy.getBySel("material-description-series-0") .should("be.visible") - .and("contain.text", "Del 1 in seriesDe syv søstre-serien"); + .and("contain.text", "Del 1 in seriesDe syv søstre-serien"); }); it("Renders only first 3 horizontal lines items", () => { From 7a832ed134c16eb4bdfd93a9515d81ec87e07186 Mon Sep 17 00:00:00 2001 From: Adam Antal Date: Thu, 7 Nov 2024 15:45:48 +0100 Subject: [PATCH 13/28] Remove unused classNames prop from SeriesList component and add null check for empty series members in getNumberInSeries helper function --- src/components/card-item-list/card-list-item/series-list.tsx | 1 - src/components/card-item-list/helper.ts | 3 +++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/src/components/card-item-list/card-list-item/series-list.tsx b/src/components/card-item-list/card-list-item/series-list.tsx index 391cfc4b4f..9675215091 100644 --- a/src/components/card-item-list/card-list-item/series-list.tsx +++ b/src/components/card-item-list/card-list-item/series-list.tsx @@ -34,7 +34,6 @@ const SeriesList = ({ term: serie.title } ]} - classNames="horizontal-term-line--no-wrap" dataCy={`${dataCy}-${index}`} /> ) diff --git a/src/components/card-item-list/helper.ts b/src/components/card-item-list/helper.ts index 4cf8971bf7..bc0f78d666 100644 --- a/src/components/card-item-list/helper.ts +++ b/src/components/card-item-list/helper.ts @@ -2,6 +2,9 @@ import { Work } from "../../core/utils/types/entities"; import { WorkId } from "../../core/utils/types/ids"; export const getNumberInSeries = (serie: Work["series"][0], id: WorkId) => { + if (!serie.members || serie.members.length === 0) { + return null; + } const filteredMembers = [ ...serie.members.filter((member) => member.work.workId === id) ]; From 1105a11fc35002d667ca461dc6608d42f094fe36 Mon Sep 17 00:00:00 2001 From: Adam Antal Date: Fri, 8 Nov 2024 11:21:24 +0100 Subject: [PATCH 14/28] Delete series that don't have workId in searchWithPagination variation fixtures --- ...WithPagination_terms_joanne-k-rowling.json | 15313 +++++++--------- .../searchWithPagination_terms_krimi.json | 576 - 2 files changed, 6674 insertions(+), 9215 deletions(-) diff --git a/cypress/fixtures/search-result/facet-browser/searchWithPagination_terms_joanne-k-rowling.json b/cypress/fixtures/search-result/facet-browser/searchWithPagination_terms_joanne-k-rowling.json index fdc2e9ddb0..27d6c1df4c 100644 --- a/cypress/fixtures/search-result/facet-browser/searchWithPagination_terms_joanne-k-rowling.json +++ b/cypress/fixtures/search-result/facet-browser/searchWithPagination_terms_joanne-k-rowling.json @@ -6139,13 +6139,13 @@ } }, { - "workId": "work-of:870970-basis:27267912", + "workId": "work-of:870970-basis:22995154", "titles": { - "full": ["Harry Potter og dødsregalierne"], - "original": ["Harry Potter and the deathly hallows"] + "full": ["Harry Potter og fangen fra Azkaban"], + "original": ["Harry Potter and the prisoner of Azkaban"] }, "abstract": [ - "Fantasy. Harry Potter er sammen med sine gode venner Ron og Hermione taget ud på en farlig færd. De skal finde den onde troldmand Voldemorts Horcruxer og ødelægge dem. Deres søgen bringer dem mange steder hen og ofte er de i livsfare. Men Voldemort og hans kumpaner er også på jagt efter de forsvundne Horcruxer" + "Fantasy. Harry Potter er elev på trolddomsskolen på tredje år. Han får at vide, at hans forældres morder er flygtet fra Azkabanfængslet og nu også vil dræbe ham" ], "creators": [ { @@ -6161,7 +6161,7 @@ "readThisWhenever": null, "members": [ { - "numberInSeries": "7", + "numberInSeries": "3", "work": { "workId": "work-of:870970-basis:22629344", "titles": { @@ -6172,7 +6172,7 @@ } }, { - "numberInSeries": "7", + "numberInSeries": "3", "work": { "workId": "work-of:870970-basis:22677780", "titles": { @@ -6183,7 +6183,7 @@ } }, { - "numberInSeries": "7", + "numberInSeries": "3", "work": { "workId": "work-of:870970-basis:22995154", "titles": { @@ -6194,7 +6194,7 @@ } }, { - "numberInSeries": "7", + "numberInSeries": "3", "work": { "workId": "work-of:870970-basis:23540703", "titles": { @@ -6205,7 +6205,7 @@ } }, { - "numberInSeries": "7", + "numberInSeries": "3", "work": { "workId": "work-of:870970-basis:25245784", "titles": { @@ -6216,7 +6216,7 @@ } }, { - "numberInSeries": "7", + "numberInSeries": "3", "work": { "workId": "work-of:870970-basis:25807995", "titles": { @@ -6227,7 +6227,7 @@ } }, { - "numberInSeries": "7", + "numberInSeries": "3", "work": { "workId": "work-of:870970-basis:27267912", "titles": { @@ -6238,7 +6238,7 @@ } }, { - "numberInSeries": "7", + "numberInSeries": "3", "work": { "workId": "work-of:870970-basis:52646251", "titles": { @@ -6254,13 +6254,18 @@ } ], "workYear": { - "year": 2007 + "year": 1999 }, - "genreAndForm": ["roman", "fantasy", "eventyrlige fortællinger"], + "genreAndForm": [ + "roman", + "eventyrlige fortællinger", + "fantasy", + "romaner" + ], "manifestations": { "all": [ { - "pid": "870970-basis:26917921", + "pid": "870970-basis:22639862", "genreAndForm": ["roman", "fantasy"], "source": ["Bibliotekskatalog"], "languages": { @@ -6272,8 +6277,8 @@ ] }, "titles": { - "main": ["Harry Potter og dødsregalierne"], - "original": ["Harry Potter and the deathly hallows"] + "main": ["Harry Potter og fangen fra Azkaban"], + "original": ["Harry Potter and the prisoner of Azkaban"] }, "fictionNonfiction": { "display": "skønlitteratur", @@ -6295,26 +6300,26 @@ "publisher": ["Gyldendal"], "identifiers": [ { - "value": "9788702062281" + "value": "87-00-39628-1" } ], "contributors": [], "edition": { - "summary": "2007", + "summary": "3. oplag, 1999", "publicationYear": { - "display": "2007" + "display": "1999" } }, "dateFirstEdition": { - "display": "2007", - "year": 2007 + "display": "1999", + "year": 1999 }, "audience": { "generalAudience": [] }, "physicalDescriptions": [ { - "numberOfPages": 655, + "numberOfPages": 407, "playingTime": { "materialUnits": [ { @@ -6337,11 +6342,11 @@ ], "shelfmark": null, "workYear": { - "year": 2007 + "year": 1999 } }, { - "pid": "870970-basis:26931215", + "pid": "870970-basis:22843737", "genreAndForm": ["roman"], "source": ["Bibliotekskatalog"], "languages": { @@ -6353,8 +6358,8 @@ ] }, "titles": { - "main": ["Harry Potter og dødsregalierne"], - "original": ["Harry Potter and the deathly hallows"] + "main": ["Harry Potter og fangen fra Azkaban"], + "original": ["Harry Potter and the prisoner of Azkaban"] }, "fictionNonfiction": { "display": "skønlitteratur", @@ -6363,7 +6368,7 @@ "materialTypes": [ { "materialTypeSpecific": { - "display": "lydbog (cd)" + "display": "bog" } } ], @@ -6371,23 +6376,19 @@ { "display": "Joanne K. Rowling", "__typename": "Person" - }, - { - "display": "Jesper Christensen (f. 1948)", - "__typename": "Person" } ], - "publisher": ["Gyldendal Lyd"], + "publisher": ["Gyldendals Bogklubber"], "identifiers": [ { - "value": "9788702062311" + "value": "87-00-65233-4" } ], "contributors": [], "edition": { - "summary": "2007", + "summary": "1. bogklubudgave, 1999", "publicationYear": { - "display": "2007" + "display": "1999" } }, "dateFirstEdition": null, @@ -6396,7 +6397,7 @@ }, "physicalDescriptions": [ { - "numberOfPages": null, + "numberOfPages": 407, "playingTime": { "materialUnits": [ { @@ -6418,12 +6419,10 @@ } ], "shelfmark": null, - "workYear": { - "year": 2007 - } + "workYear": null }, { - "pid": "870970-basis:27267912", + "pid": "870970-basis:22995154", "genreAndForm": ["roman", "fantasy"], "source": ["Bibliotekskatalog"], "languages": { @@ -6435,8 +6434,8 @@ ] }, "titles": { - "main": ["Harry Potter og dødsregalierne"], - "original": ["Harry Potter and the deathly hallows"] + "main": ["Harry Potter og fangen fra Azkaban"], + "original": ["Harry Potter and the prisoner of Azkaban"] }, "fictionNonfiction": { "display": "skønlitteratur", @@ -6458,26 +6457,29 @@ "publisher": ["Gyldendal"], "identifiers": [ { - "value": "9788702069990" + "value": "9788700470460" + }, + { + "value": "87-00-47046-5" } ], "contributors": [], "edition": { - "summary": "2. udgave, 2008", + "summary": "2. udgave, 2000", "publicationYear": { - "display": "2008" + "display": "2000" } }, "dateFirstEdition": { - "display": "2007", - "year": 2007 + "display": "1999", + "year": 1999 }, "audience": { "generalAudience": [] }, "physicalDescriptions": [ { - "numberOfPages": 655, + "numberOfPages": 407, "playingTime": { "materialUnits": [ { @@ -6500,11 +6502,11 @@ ], "shelfmark": null, "workYear": { - "year": 2007 + "year": 1999 } }, { - "pid": "870970-basis:27639798", + "pid": "870970-basis:23189151", "genreAndForm": ["roman"], "source": ["Bibliotekskatalog"], "languages": { @@ -6516,8 +6518,8 @@ ] }, "titles": { - "main": ["Harry Potter og dødsregalierne (mp3)"], - "original": ["Harry Potter and the deathly hallows"] + "main": ["Harry Potter og fangen fra Azkaban"], + "original": ["Harry Potter and the prisoner of Azkaban"] }, "fictionNonfiction": { "display": "skønlitteratur", @@ -6526,7 +6528,7 @@ "materialTypes": [ { "materialTypeSpecific": { - "display": "lydbog (cd-mp3)" + "display": "punktskrift" } } ], @@ -6536,24 +6538,113 @@ "__typename": "Person" } ], - "publisher": ["Gyldendal Lyd"], + "publisher": ["Danmarks Blindebibliotek"], "identifiers": [ { - "value": "9788702075441" + "value": "Best.nr. 100031" } ], - "contributors": [ + "contributors": [], + "edition": { + "summary": "2000", + "publicationYear": { + "display": "2000" + } + }, + "dateFirstEdition": { + "display": "1999", + "year": 1999 + }, + "audience": { + "generalAudience": [] + }, + "physicalDescriptions": [ { - "display": "Jesper Christensen (f. 1948)" + "numberOfPages": null, + "playingTime": { + "materialUnits": [ + { + "extent": null + } + ] + } + } + ], + "accessTypes": [ + { + "code": "PHYSICAL" + } + ], + "access": [ + { + "__typename": "AccessUrl", + "origin": "nota.dk", + "url": "https://nota.dk/bibliotek/bogid/100031", + "loginRequired": false + }, + { + "__typename": "InterLibraryLoan", + "loanIsPossible": true + } + ], + "shelfmark": null, + "workYear": { + "year": 1999 + } + }, + { + "pid": "870970-basis:23208903", + "genreAndForm": ["roman", "eventyrlige fortællinger"], + "source": ["Bibliotekskatalog"], + "languages": { + "main": [ + { + "display": "dansk", + "isoCode": "dan" + } + ] + }, + "titles": { + "main": ["Harry Potter og fangen fra Azkaban"], + "original": ["Harry Potter and the prisoner of Azkaban"] + }, + "fictionNonfiction": { + "display": "skønlitteratur", + "code": "FICTION" + }, + "materialTypes": [ + { + "materialTypeSpecific": { + "display": "diskette" + } + } + ], + "creators": [ + { + "display": "Joanne K. Rowling", + "__typename": "Person" + } + ], + "publisher": ["Danmarks Blindebibliotek"], + "identifiers": [ + { + "value": "Best.nr. wp 400039" + }, + { + "value": "Best.nr. ascii 500039" } ], + "contributors": [], "edition": { - "summary": "2009", + "summary": "2000", "publicationYear": { - "display": "2009" + "display": "2000" } }, - "dateFirstEdition": null, + "dateFirstEdition": { + "display": "1999", + "year": 1999 + }, "audience": { "generalAudience": [] }, @@ -6582,12 +6673,12 @@ ], "shelfmark": null, "workYear": { - "year": 2007 + "year": 1999 } }, { - "pid": "870970-basis:29316910", - "genreAndForm": ["roman", "fantasy"], + "pid": "870970-basis:23227932", + "genreAndForm": [], "source": ["Bibliotekskatalog"], "languages": { "main": [ @@ -6598,8 +6689,8 @@ ] }, "titles": { - "main": ["Harry Potter og dødsregalierne"], - "original": ["Harry Potter and the deathly hallows"] + "main": ["Harry Potter og fangen fra Azkaban (I 1 mappe)"], + "original": ["Harry Potter and the prisoner of Azkaban"] }, "fictionNonfiction": { "display": "skønlitteratur", @@ -6608,7 +6699,7 @@ "materialTypes": [ { "materialTypeSpecific": { - "display": "bog" + "display": "lydbog (cd)" } } ], @@ -6618,21 +6709,21 @@ "__typename": "Person" } ], - "publisher": ["Gyldendal"], + "publisher": ["Gyldendal Lydbøger"], "identifiers": [ { - "value": "9788702114430" + "value": "87-605-7334-1" } ], "contributors": [ { - "display": "Hanna Lützen" + "display": "Torben Sekov" } ], "edition": { - "summary": "4. udgave, 2012", + "summary": "2000", "publicationYear": { - "display": "2012" + "display": "2000" } }, "dateFirstEdition": null, @@ -6641,7 +6732,7 @@ }, "physicalDescriptions": [ { - "numberOfPages": 655, + "numberOfPages": null, "playingTime": { "materialUnits": [ { @@ -6664,12 +6755,12 @@ ], "shelfmark": null, "workYear": { - "year": 2007 + "year": 1999 } }, { - "pid": "870970-basis:51979591", - "genreAndForm": ["roman", "fantasy"], + "pid": "870970-basis:23240769", + "genreAndForm": ["roman"], "source": ["Bibliotekskatalog"], "languages": { "main": [ @@ -6680,8 +6771,10 @@ ] }, "titles": { - "main": ["Harry Potter og dødsregalierne"], - "original": ["Harry Potter and the deathly hallows"] + "main": [ + "Harry Potter og fangen fra Azkaban (Ved Thomas Gulstad)" + ], + "original": ["Harry Potter and the prisoner of Azkaban"] }, "fictionNonfiction": { "display": "skønlitteratur", @@ -6690,7 +6783,7 @@ "materialTypes": [ { "materialTypeSpecific": { - "display": "bog" + "display": "lydbog (bånd)" } } ], @@ -6698,32 +6791,39 @@ { "display": "Joanne K. Rowling", "__typename": "Person" + }, + { + "display": "Thomas Gulstad", + "__typename": "Person" } ], - "publisher": ["Gyldendal"], + "publisher": ["Danmarks Blindebibliotek"], "identifiers": [ { - "value": "9788702173284" + "value": "Best.nr. 13322" } ], "contributors": [ { - "display": "Hanna Lützen" + "display": "\\Thomas Gulstad\\" } ], "edition": { - "summary": "5. udgave, 2015", + "summary": "2000", "publicationYear": { - "display": "2015" + "display": "2000" } }, - "dateFirstEdition": null, + "dateFirstEdition": { + "display": "1999", + "year": 1999 + }, "audience": { "generalAudience": [] }, "physicalDescriptions": [ { - "numberOfPages": 648, + "numberOfPages": null, "playingTime": { "materialUnits": [ { @@ -6746,11 +6846,11 @@ ], "shelfmark": null, "workYear": { - "year": 2007 + "year": 1999 } }, { - "pid": "870970-basis:54872186", + "pid": "870970-basis:25197879", "genreAndForm": ["roman", "fantasy"], "source": ["Bibliotekskatalog"], "languages": { @@ -6762,8 +6862,8 @@ ] }, "titles": { - "main": ["Harry Potter og dødsregalierne"], - "original": ["Harry Potter and the deathly hallows"] + "main": ["Harry Potter og fangen fra Azkaban"], + "original": ["Harry Potter and the prisoner of Azkaban"] }, "fictionNonfiction": { "display": "skønlitteratur", @@ -6785,18 +6885,14 @@ "publisher": ["Gyldendal"], "identifiers": [ { - "value": "9788702272420" - } - ], - "contributors": [ - { - "display": "Hanna Lützen" + "value": "87-02-02771-2" } ], + "contributors": [], "edition": { - "summary": "6. udgave, 2018", + "summary": "3. udgave, 2004", "publicationYear": { - "display": "2018" + "display": "2004" } }, "dateFirstEdition": null, @@ -6805,7 +6901,7 @@ }, "physicalDescriptions": [ { - "numberOfPages": 648, + "numberOfPages": 407, "playingTime": { "materialUnits": [ { @@ -6828,374 +6924,12 @@ ], "shelfmark": null, "workYear": { - "year": 2007 + "year": 1999 } - } - ], - "latest": { - "pid": "870970-basis:54872186", - "genreAndForm": ["roman", "fantasy"], - "source": ["Bibliotekskatalog"], - "languages": { - "main": [ - { - "display": "dansk", - "isoCode": "dan" - } - ] - }, - "titles": { - "main": ["Harry Potter og dødsregalierne"], - "original": ["Harry Potter and the deathly hallows"] - }, - "fictionNonfiction": { - "display": "skønlitteratur", - "code": "FICTION" }, - "materialTypes": [ - { - "materialTypeSpecific": { - "display": "bog" - } - } - ], - "creators": [ - { - "display": "Joanne K. Rowling", - "__typename": "Person" - } - ], - "publisher": ["Gyldendal"], - "identifiers": [ - { - "value": "9788702272420" - } - ], - "contributors": [ - { - "display": "Hanna Lützen" - } - ], - "edition": { - "summary": "6. udgave, 2018", - "publicationYear": { - "display": "2018" - } - }, - "dateFirstEdition": null, - "audience": { - "generalAudience": [] - }, - "physicalDescriptions": [ - { - "numberOfPages": 648, - "playingTime": null - } - ], - "accessTypes": [ - { - "code": "PHYSICAL" - } - ], - "access": [ - { - "__typename": "InterLibraryLoan", - "loanIsPossible": true - } - ], - "shelfmark": null, - "workYear": { - "year": 2007 - } - }, - "bestRepresentation": { - "pid": "870970-basis:54872186", - "genreAndForm": ["roman", "fantasy"], - "source": ["Bibliotekskatalog"], - "languages": { - "main": [ - { - "display": "dansk", - "isoCode": "dan" - } - ] - }, - "titles": { - "main": ["Harry Potter og dødsregalierne"], - "original": ["Harry Potter and the deathly hallows"] - }, - "fictionNonfiction": { - "display": "skønlitteratur", - "code": "FICTION" - }, - "materialTypes": [ - { - "materialTypeSpecific": { - "display": "bog" - } - } - ], - "creators": [ - { - "display": "Joanne K. Rowling", - "__typename": "Person" - } - ], - "publisher": ["Gyldendal"], - "identifiers": [ - { - "value": "9788702272420" - } - ], - "contributors": [ - { - "display": "Hanna Lützen" - } - ], - "edition": { - "summary": "6. udgave, 2018", - "publicationYear": { - "display": "2018" - } - }, - "dateFirstEdition": null, - "audience": { - "generalAudience": [] - }, - "physicalDescriptions": [ - { - "numberOfPages": 648, - "playingTime": null - } - ], - "accessTypes": [ - { - "code": "PHYSICAL" - } - ], - "access": [ - { - "__typename": "InterLibraryLoan", - "loanIsPossible": true - } - ], - "shelfmark": null, - "workYear": { - "year": 2007 - } - } - } - }, - { - "workId": "work-of:870970-basis:22995154", - "titles": { - "full": ["Harry Potter og fangen fra Azkaban"], - "original": ["Harry Potter and the prisoner of Azkaban"] - }, - "abstract": [ - "Fantasy. Harry Potter er elev på trolddomsskolen på tredje år. Han får at vide, at hans forældres morder er flygtet fra Azkabanfængslet og nu også vil dræbe ham" - ], - "creators": [ - { - "display": "Joanne K. Rowling", - "__typename": "Person" - } - ], - "series": [ - { - "title": "Harry Potter (bøger)", - "isPopular": true, - "readThisFirst": null, - "readThisWhenever": null, - "members": [ - { - "numberInSeries": "3", - "work": { - "workId": "work-of:870970-basis:22629344", - "titles": { - "main": ["Harry Potter og de vises sten"], - "full": ["Harry Potter og de vises sten"], - "original": ["Harry Potter and the philosopher's stone"] - } - } - }, - { - "numberInSeries": "3", - "work": { - "workId": "work-of:870970-basis:22677780", - "titles": { - "main": ["Harry Potter og Hemmelighedernes Kammer"], - "full": ["Harry Potter og Hemmelighedernes Kammer"], - "original": ["Harry Potter and the Chamber of Secrets"] - } - } - }, - { - "numberInSeries": "3", - "work": { - "workId": "work-of:870970-basis:22995154", - "titles": { - "main": ["Harry Potter og fangen fra Azkaban"], - "full": ["Harry Potter og fangen fra Azkaban"], - "original": ["Harry Potter and the prisoner of Azkaban"] - } - } - }, - { - "numberInSeries": "3", - "work": { - "workId": "work-of:870970-basis:23540703", - "titles": { - "main": ["Harry Potter og Flammernes Pokal"], - "full": ["Harry Potter og Flammernes Pokal"], - "original": ["Harry Potter and the goblet of fire"] - } - } - }, - { - "numberInSeries": "3", - "work": { - "workId": "work-of:870970-basis:25245784", - "titles": { - "main": ["Harry Potter og Fønixordenen"], - "full": ["Harry Potter og Fønixordenen"], - "original": ["Harry Potter and the Order of the Phoenix"] - } - } - }, - { - "numberInSeries": "3", - "work": { - "workId": "work-of:870970-basis:25807995", - "titles": { - "main": ["Harry Potter og halvblodsprinsen"], - "full": ["Harry Potter og halvblodsprinsen"], - "original": ["Harry Potter and the half-blood prince"] - } - } - }, - { - "numberInSeries": "3", - "work": { - "workId": "work-of:870970-basis:27267912", - "titles": { - "main": ["Harry Potter og dødsregalierne"], - "full": ["Harry Potter og dødsregalierne"], - "original": ["Harry Potter and the deathly hallows"] - } - } - }, - { - "numberInSeries": "3", - "work": { - "workId": "work-of:870970-basis:52646251", - "titles": { - "main": ["Harry Potter og det forbandede barn"], - "full": [ - "Harry Potter og det forbandede barn : del et & to" - ], - "original": ["Harry Potter and the cursed child"] - } - } - } - ] - } - ], - "workYear": { - "year": 1999 - }, - "genreAndForm": [ - "roman", - "eventyrlige fortællinger", - "fantasy", - "romaner" - ], - "manifestations": { - "all": [ { - "pid": "870970-basis:22639862", - "genreAndForm": ["roman", "fantasy"], - "source": ["Bibliotekskatalog"], - "languages": { - "main": [ - { - "display": "dansk", - "isoCode": "dan" - } - ] - }, - "titles": { - "main": ["Harry Potter og fangen fra Azkaban"], - "original": ["Harry Potter and the prisoner of Azkaban"] - }, - "fictionNonfiction": { - "display": "skønlitteratur", - "code": "FICTION" - }, - "materialTypes": [ - { - "materialTypeSpecific": { - "display": "bog" - } - } - ], - "creators": [ - { - "display": "Joanne K. Rowling", - "__typename": "Person" - } - ], - "publisher": ["Gyldendal"], - "identifiers": [ - { - "value": "87-00-39628-1" - } - ], - "contributors": [], - "edition": { - "summary": "3. oplag, 1999", - "publicationYear": { - "display": "1999" - } - }, - "dateFirstEdition": { - "display": "1999", - "year": 1999 - }, - "audience": { - "generalAudience": [] - }, - "physicalDescriptions": [ - { - "numberOfPages": 407, - "playingTime": { - "materialUnits": [ - { - "extent": null - } - ] - } - } - ], - "accessTypes": [ - { - "code": "PHYSICAL" - } - ], - "access": [ - { - "__typename": "InterLibraryLoan", - "loanIsPossible": true - } - ], - "shelfmark": null, - "workYear": { - "year": 1999 - } - }, - { - "pid": "870970-basis:22843737", - "genreAndForm": ["roman"], + "pid": "870970-basis:26178509", + "genreAndForm": ["roman"], "source": ["Bibliotekskatalog"], "languages": { "main": [ @@ -7229,14 +6963,17 @@ "publisher": ["Gyldendals Bogklubber"], "identifiers": [ { - "value": "87-00-65233-4" + "value": "9788703011738" + }, + { + "value": "87-03-01173-9" } ], "contributors": [], "edition": { - "summary": "1. bogklubudgave, 1999", + "summary": "2. bogklubudgave, 2006", "publicationYear": { - "display": "1999" + "display": "2006" } }, "dateFirstEdition": null, @@ -7270,8 +7007,8 @@ "workYear": null }, { - "pid": "870970-basis:22995154", - "genreAndForm": ["roman", "fantasy"], + "pid": "870970-basis:26239699", + "genreAndForm": ["roman"], "source": ["Bibliotekskatalog"], "languages": { "main": [ @@ -7282,7 +7019,9 @@ ] }, "titles": { - "main": ["Harry Potter og fangen fra Azkaban"], + "main": [ + "Harry Potter og fangen fra Azkaban (Ved Jesper Christensen)" + ], "original": ["Harry Potter and the prisoner of Azkaban"] }, "fictionNonfiction": { @@ -7292,7 +7031,7 @@ "materialTypes": [ { "materialTypeSpecific": { - "display": "bog" + "display": "lydbog (cd)" } } ], @@ -7300,34 +7039,32 @@ { "display": "Joanne K. Rowling", "__typename": "Person" + }, + { + "display": "Jesper Christensen (f. 1948)", + "__typename": "Person" } ], - "publisher": ["Gyldendal"], + "publisher": ["Gyldendal Lyd"], "identifiers": [ { - "value": "9788700470460" - }, - { - "value": "87-00-47046-5" + "value": "87-02-04791-8" } ], "contributors": [], "edition": { - "summary": "2. udgave, 2000", + "summary": "2006", "publicationYear": { - "display": "2000" + "display": "2006" } }, - "dateFirstEdition": { - "display": "1999", - "year": 1999 - }, + "dateFirstEdition": null, "audience": { "generalAudience": [] }, "physicalDescriptions": [ { - "numberOfPages": 407, + "numberOfPages": null, "playingTime": { "materialUnits": [ { @@ -7354,7 +7091,7 @@ } }, { - "pid": "870970-basis:23189151", + "pid": "870970-basis:27639151", "genreAndForm": ["roman"], "source": ["Bibliotekskatalog"], "languages": { @@ -7366,7 +7103,9 @@ ] }, "titles": { - "main": ["Harry Potter og fangen fra Azkaban"], + "main": [ + "Harry Potter og fangen fra Azkaban (Ved Jesper Christensen, mp3)" + ], "original": ["Harry Potter and the prisoner of Azkaban"] }, "fictionNonfiction": { @@ -7376,7 +7115,7 @@ "materialTypes": [ { "materialTypeSpecific": { - "display": "punktskrift" + "display": "lydbog (cd-mp3)" } } ], @@ -7386,23 +7125,24 @@ "__typename": "Person" } ], - "publisher": ["Danmarks Blindebibliotek"], + "publisher": ["Gyldendal Lyd"], "identifiers": [ { - "value": "Best.nr. 100031" + "value": "9788702075403" + } + ], + "contributors": [ + { + "display": "Jesper Christensen (f. 1948)" } ], - "contributors": [], "edition": { - "summary": "2000", + "summary": "2009", "publicationYear": { - "display": "2000" + "display": "2009" } }, - "dateFirstEdition": { - "display": "1999", - "year": 1999 - }, + "dateFirstEdition": null, "audience": { "generalAudience": [] }, @@ -7424,12 +7164,6 @@ } ], "access": [ - { - "__typename": "AccessUrl", - "origin": "nota.dk", - "url": "https://nota.dk/bibliotek/bogid/100031", - "loginRequired": false - }, { "__typename": "InterLibraryLoan", "loanIsPossible": true @@ -7441,8 +7175,8 @@ } }, { - "pid": "870970-basis:23208903", - "genreAndForm": ["roman", "eventyrlige fortællinger"], + "pid": "870970-basis:29317003", + "genreAndForm": ["roman", "fantasy"], "source": ["Bibliotekskatalog"], "languages": { "main": [ @@ -7463,7 +7197,7 @@ "materialTypes": [ { "materialTypeSpecific": { - "display": "diskette" + "display": "bog" } } ], @@ -7473,32 +7207,30 @@ "__typename": "Person" } ], - "publisher": ["Danmarks Blindebibliotek"], + "publisher": ["Gyldendal"], "identifiers": [ { - "value": "Best.nr. wp 400039" - }, + "value": "9788702114348" + } + ], + "contributors": [ { - "value": "Best.nr. ascii 500039" + "display": "Hanna Lützen" } ], - "contributors": [], "edition": { - "summary": "2000", + "summary": "5. udgave, 2012", "publicationYear": { - "display": "2000" + "display": "2012" } }, - "dateFirstEdition": { - "display": "1999", - "year": 1999 - }, + "dateFirstEdition": null, "audience": { "generalAudience": [] }, "physicalDescriptions": [ { - "numberOfPages": null, + "numberOfPages": 407, "playingTime": { "materialUnits": [ { @@ -7525,8 +7257,8 @@ } }, { - "pid": "870970-basis:23227932", - "genreAndForm": [], + "pid": "870970-basis:51980220", + "genreAndForm": ["roman", "fantasy"], "source": ["Bibliotekskatalog"], "languages": { "main": [ @@ -7537,7 +7269,7 @@ ] }, "titles": { - "main": ["Harry Potter og fangen fra Azkaban (I 1 mappe)"], + "main": ["Harry Potter og fangen fra Azkaban"], "original": ["Harry Potter and the prisoner of Azkaban"] }, "fictionNonfiction": { @@ -7547,7 +7279,7 @@ "materialTypes": [ { "materialTypeSpecific": { - "display": "lydbog (cd)" + "display": "bog" } } ], @@ -7557,21 +7289,21 @@ "__typename": "Person" } ], - "publisher": ["Gyldendal Lydbøger"], + "publisher": ["Gyldendal"], "identifiers": [ { - "value": "87-605-7334-1" + "value": "9788702173246" } ], "contributors": [ { - "display": "Torben Sekov" + "display": "Hanna Lützen" } ], "edition": { - "summary": "2000", + "summary": "6. udgave, 2015", "publicationYear": { - "display": "2000" + "display": "2015" } }, "dateFirstEdition": null, @@ -7580,7 +7312,7 @@ }, "physicalDescriptions": [ { - "numberOfPages": null, + "numberOfPages": 482, "playingTime": { "materialUnits": [ { @@ -7607,8 +7339,8 @@ } }, { - "pid": "870970-basis:23240769", - "genreAndForm": ["roman"], + "pid": "870970-basis:53516033", + "genreAndForm": ["roman", "fantasy"], "source": ["Bibliotekskatalog"], "languages": { "main": [ @@ -7619,9 +7351,7 @@ ] }, "titles": { - "main": [ - "Harry Potter og fangen fra Azkaban (Ved Thomas Gulstad)" - ], + "main": ["Harry Potter og fangen fra Azkaban (ill. Jim Kay)"], "original": ["Harry Potter and the prisoner of Azkaban"] }, "fictionNonfiction": { @@ -7631,7 +7361,7 @@ "materialTypes": [ { "materialTypeSpecific": { - "display": "lydbog (bånd)" + "display": "bog" } } ], @@ -7639,39 +7369,35 @@ { "display": "Joanne K. Rowling", "__typename": "Person" - }, - { - "display": "Thomas Gulstad", - "__typename": "Person" } ], - "publisher": ["Danmarks Blindebibliotek"], + "publisher": ["Gyldendal"], "identifiers": [ { - "value": "Best.nr. 13322" + "value": "9788702227888" } ], "contributors": [ { - "display": "\\Thomas Gulstad\\" + "display": "Jim Kay" + }, + { + "display": "Hanna Lützen" } ], "edition": { - "summary": "2000", + "summary": "Illustreret udgave, 7. udgave, 2017", "publicationYear": { - "display": "2000" + "display": "2017" } }, - "dateFirstEdition": { - "display": "1999", - "year": 1999 - }, + "dateFirstEdition": null, "audience": { "generalAudience": [] }, "physicalDescriptions": [ { - "numberOfPages": null, + "numberOfPages": 326, "playingTime": { "materialUnits": [ { @@ -7698,7 +7424,7 @@ } }, { - "pid": "870970-basis:25197879", + "pid": "870970-basis:54871945", "genreAndForm": ["roman", "fantasy"], "source": ["Bibliotekskatalog"], "languages": { @@ -7733,14 +7459,18 @@ "publisher": ["Gyldendal"], "identifiers": [ { - "value": "87-02-02771-2" + "value": "9788702272468" + } + ], + "contributors": [ + { + "display": "Hanna Lützen" } ], - "contributors": [], "edition": { - "summary": "3. udgave, 2004", + "summary": "8. udgave, 2018", "publicationYear": { - "display": "2004" + "display": "2018" } }, "dateFirstEdition": null, @@ -7749,585 +7479,7 @@ }, "physicalDescriptions": [ { - "numberOfPages": 407, - "playingTime": { - "materialUnits": [ - { - "extent": null - } - ] - } - } - ], - "accessTypes": [ - { - "code": "PHYSICAL" - } - ], - "access": [ - { - "__typename": "InterLibraryLoan", - "loanIsPossible": true - } - ], - "shelfmark": null, - "workYear": { - "year": 1999 - } - }, - { - "pid": "870970-basis:26178509", - "genreAndForm": ["roman"], - "source": ["Bibliotekskatalog"], - "languages": { - "main": [ - { - "display": "dansk", - "isoCode": "dan" - } - ] - }, - "titles": { - "main": ["Harry Potter og fangen fra Azkaban"], - "original": ["Harry Potter and the prisoner of Azkaban"] - }, - "fictionNonfiction": { - "display": "skønlitteratur", - "code": "FICTION" - }, - "materialTypes": [ - { - "materialTypeSpecific": { - "display": "bog" - } - } - ], - "creators": [ - { - "display": "Joanne K. Rowling", - "__typename": "Person" - } - ], - "publisher": ["Gyldendals Bogklubber"], - "identifiers": [ - { - "value": "9788703011738" - }, - { - "value": "87-03-01173-9" - } - ], - "contributors": [], - "edition": { - "summary": "2. bogklubudgave, 2006", - "publicationYear": { - "display": "2006" - } - }, - "dateFirstEdition": null, - "audience": { - "generalAudience": [] - }, - "physicalDescriptions": [ - { - "numberOfPages": 407, - "playingTime": { - "materialUnits": [ - { - "extent": null - } - ] - } - } - ], - "accessTypes": [ - { - "code": "PHYSICAL" - } - ], - "access": [ - { - "__typename": "InterLibraryLoan", - "loanIsPossible": true - } - ], - "shelfmark": null, - "workYear": null - }, - { - "pid": "870970-basis:26239699", - "genreAndForm": ["roman"], - "source": ["Bibliotekskatalog"], - "languages": { - "main": [ - { - "display": "dansk", - "isoCode": "dan" - } - ] - }, - "titles": { - "main": [ - "Harry Potter og fangen fra Azkaban (Ved Jesper Christensen)" - ], - "original": ["Harry Potter and the prisoner of Azkaban"] - }, - "fictionNonfiction": { - "display": "skønlitteratur", - "code": "FICTION" - }, - "materialTypes": [ - { - "materialTypeSpecific": { - "display": "lydbog (cd)" - } - } - ], - "creators": [ - { - "display": "Joanne K. Rowling", - "__typename": "Person" - }, - { - "display": "Jesper Christensen (f. 1948)", - "__typename": "Person" - } - ], - "publisher": ["Gyldendal Lyd"], - "identifiers": [ - { - "value": "87-02-04791-8" - } - ], - "contributors": [], - "edition": { - "summary": "2006", - "publicationYear": { - "display": "2006" - } - }, - "dateFirstEdition": null, - "audience": { - "generalAudience": [] - }, - "physicalDescriptions": [ - { - "numberOfPages": null, - "playingTime": { - "materialUnits": [ - { - "extent": null - } - ] - } - } - ], - "accessTypes": [ - { - "code": "PHYSICAL" - } - ], - "access": [ - { - "__typename": "InterLibraryLoan", - "loanIsPossible": true - } - ], - "shelfmark": null, - "workYear": { - "year": 1999 - } - }, - { - "pid": "870970-basis:27639151", - "genreAndForm": ["roman"], - "source": ["Bibliotekskatalog"], - "languages": { - "main": [ - { - "display": "dansk", - "isoCode": "dan" - } - ] - }, - "titles": { - "main": [ - "Harry Potter og fangen fra Azkaban (Ved Jesper Christensen, mp3)" - ], - "original": ["Harry Potter and the prisoner of Azkaban"] - }, - "fictionNonfiction": { - "display": "skønlitteratur", - "code": "FICTION" - }, - "materialTypes": [ - { - "materialTypeSpecific": { - "display": "lydbog (cd-mp3)" - } - } - ], - "creators": [ - { - "display": "Joanne K. Rowling", - "__typename": "Person" - } - ], - "publisher": ["Gyldendal Lyd"], - "identifiers": [ - { - "value": "9788702075403" - } - ], - "contributors": [ - { - "display": "Jesper Christensen (f. 1948)" - } - ], - "edition": { - "summary": "2009", - "publicationYear": { - "display": "2009" - } - }, - "dateFirstEdition": null, - "audience": { - "generalAudience": [] - }, - "physicalDescriptions": [ - { - "numberOfPages": null, - "playingTime": { - "materialUnits": [ - { - "extent": null - } - ] - } - } - ], - "accessTypes": [ - { - "code": "PHYSICAL" - } - ], - "access": [ - { - "__typename": "InterLibraryLoan", - "loanIsPossible": true - } - ], - "shelfmark": null, - "workYear": { - "year": 1999 - } - }, - { - "pid": "870970-basis:29317003", - "genreAndForm": ["roman", "fantasy"], - "source": ["Bibliotekskatalog"], - "languages": { - "main": [ - { - "display": "dansk", - "isoCode": "dan" - } - ] - }, - "titles": { - "main": ["Harry Potter og fangen fra Azkaban"], - "original": ["Harry Potter and the prisoner of Azkaban"] - }, - "fictionNonfiction": { - "display": "skønlitteratur", - "code": "FICTION" - }, - "materialTypes": [ - { - "materialTypeSpecific": { - "display": "bog" - } - } - ], - "creators": [ - { - "display": "Joanne K. Rowling", - "__typename": "Person" - } - ], - "publisher": ["Gyldendal"], - "identifiers": [ - { - "value": "9788702114348" - } - ], - "contributors": [ - { - "display": "Hanna Lützen" - } - ], - "edition": { - "summary": "5. udgave, 2012", - "publicationYear": { - "display": "2012" - } - }, - "dateFirstEdition": null, - "audience": { - "generalAudience": [] - }, - "physicalDescriptions": [ - { - "numberOfPages": 407, - "playingTime": { - "materialUnits": [ - { - "extent": null - } - ] - } - } - ], - "accessTypes": [ - { - "code": "PHYSICAL" - } - ], - "access": [ - { - "__typename": "InterLibraryLoan", - "loanIsPossible": true - } - ], - "shelfmark": null, - "workYear": { - "year": 1999 - } - }, - { - "pid": "870970-basis:51980220", - "genreAndForm": ["roman", "fantasy"], - "source": ["Bibliotekskatalog"], - "languages": { - "main": [ - { - "display": "dansk", - "isoCode": "dan" - } - ] - }, - "titles": { - "main": ["Harry Potter og fangen fra Azkaban"], - "original": ["Harry Potter and the prisoner of Azkaban"] - }, - "fictionNonfiction": { - "display": "skønlitteratur", - "code": "FICTION" - }, - "materialTypes": [ - { - "materialTypeSpecific": { - "display": "bog" - } - } - ], - "creators": [ - { - "display": "Joanne K. Rowling", - "__typename": "Person" - } - ], - "publisher": ["Gyldendal"], - "identifiers": [ - { - "value": "9788702173246" - } - ], - "contributors": [ - { - "display": "Hanna Lützen" - } - ], - "edition": { - "summary": "6. udgave, 2015", - "publicationYear": { - "display": "2015" - } - }, - "dateFirstEdition": null, - "audience": { - "generalAudience": [] - }, - "physicalDescriptions": [ - { - "numberOfPages": 482, - "playingTime": { - "materialUnits": [ - { - "extent": null - } - ] - } - } - ], - "accessTypes": [ - { - "code": "PHYSICAL" - } - ], - "access": [ - { - "__typename": "InterLibraryLoan", - "loanIsPossible": true - } - ], - "shelfmark": null, - "workYear": { - "year": 1999 - } - }, - { - "pid": "870970-basis:53516033", - "genreAndForm": ["roman", "fantasy"], - "source": ["Bibliotekskatalog"], - "languages": { - "main": [ - { - "display": "dansk", - "isoCode": "dan" - } - ] - }, - "titles": { - "main": ["Harry Potter og fangen fra Azkaban (ill. Jim Kay)"], - "original": ["Harry Potter and the prisoner of Azkaban"] - }, - "fictionNonfiction": { - "display": "skønlitteratur", - "code": "FICTION" - }, - "materialTypes": [ - { - "materialTypeSpecific": { - "display": "bog" - } - } - ], - "creators": [ - { - "display": "Joanne K. Rowling", - "__typename": "Person" - } - ], - "publisher": ["Gyldendal"], - "identifiers": [ - { - "value": "9788702227888" - } - ], - "contributors": [ - { - "display": "Jim Kay" - }, - { - "display": "Hanna Lützen" - } - ], - "edition": { - "summary": "Illustreret udgave, 7. udgave, 2017", - "publicationYear": { - "display": "2017" - } - }, - "dateFirstEdition": null, - "audience": { - "generalAudience": [] - }, - "physicalDescriptions": [ - { - "numberOfPages": 326, - "playingTime": { - "materialUnits": [ - { - "extent": null - } - ] - } - } - ], - "accessTypes": [ - { - "code": "PHYSICAL" - } - ], - "access": [ - { - "__typename": "InterLibraryLoan", - "loanIsPossible": true - } - ], - "shelfmark": null, - "workYear": { - "year": 1999 - } - }, - { - "pid": "870970-basis:54871945", - "genreAndForm": ["roman", "fantasy"], - "source": ["Bibliotekskatalog"], - "languages": { - "main": [ - { - "display": "dansk", - "isoCode": "dan" - } - ] - }, - "titles": { - "main": ["Harry Potter og fangen fra Azkaban"], - "original": ["Harry Potter and the prisoner of Azkaban"] - }, - "fictionNonfiction": { - "display": "skønlitteratur", - "code": "FICTION" - }, - "materialTypes": [ - { - "materialTypeSpecific": { - "display": "bog" - } - } - ], - "creators": [ - { - "display": "Joanne K. Rowling", - "__typename": "Person" - } - ], - "publisher": ["Gyldendal"], - "identifiers": [ - { - "value": "9788702272468" - } - ], - "contributors": [ - { - "display": "Hanna Lützen" - } - ], - "edition": { - "summary": "8. udgave, 2018", - "publicationYear": { - "display": "2018" - } - }, - "dateFirstEdition": null, - "audience": { - "generalAudience": [] - }, - "physicalDescriptions": [ - { - "numberOfPages": 482, + "numberOfPages": 482, "playingTime": { "materialUnits": [ { @@ -9339,256 +8491,7 @@ "edition": { "summary": "2006", "publicationYear": { - "display": "2006" - } - }, - "dateFirstEdition": null, - "audience": { - "generalAudience": [] - }, - "physicalDescriptions": [ - { - "numberOfPages": null, - "playingTime": { - "materialUnits": [ - { - "extent": null - } - ] - } - } - ], - "accessTypes": [ - { - "code": "PHYSICAL" - } - ], - "access": [ - { - "__typename": "InterLibraryLoan", - "loanIsPossible": true - } - ], - "shelfmark": null, - "workYear": { - "year": 2000 - } - }, - { - "pid": "870970-basis:27639240", - "genreAndForm": ["roman"], - "source": ["Bibliotekskatalog"], - "languages": { - "main": [ - { - "display": "dansk", - "isoCode": "dan" - } - ] - }, - "titles": { - "main": ["Harry Potter og Flammernes Pokal (mp3)"], - "original": ["Harry Potter and the goblet of fire"] - }, - "fictionNonfiction": { - "display": "skønlitteratur", - "code": "FICTION" - }, - "materialTypes": [ - { - "materialTypeSpecific": { - "display": "lydbog (cd-mp3)" - } - } - ], - "creators": [ - { - "display": "Joanne K. Rowling", - "__typename": "Person" - } - ], - "publisher": ["Gyldendal Lyd"], - "identifiers": [ - { - "value": "9788702075410" - } - ], - "contributors": [ - { - "display": "Jesper Christensen (f. 1948)" - } - ], - "edition": { - "summary": "2009", - "publicationYear": { - "display": "2009" - } - }, - "dateFirstEdition": null, - "audience": { - "generalAudience": [] - }, - "physicalDescriptions": [ - { - "numberOfPages": null, - "playingTime": { - "materialUnits": [ - { - "extent": null - } - ] - } - } - ], - "accessTypes": [ - { - "code": "PHYSICAL" - } - ], - "access": [ - { - "__typename": "InterLibraryLoan", - "loanIsPossible": true - } - ], - "shelfmark": null, - "workYear": { - "year": 2000 - } - }, - { - "pid": "870970-basis:29317070", - "genreAndForm": ["roman", "fantasy"], - "source": ["Bibliotekskatalog"], - "languages": { - "main": [ - { - "display": "dansk", - "isoCode": "dan" - } - ] - }, - "titles": { - "main": ["Harry Potter og Flammernes Pokal"], - "original": ["Harry Potter and the goblet of fire"] - }, - "fictionNonfiction": { - "display": "skønlitteratur", - "code": "FICTION" - }, - "materialTypes": [ - { - "materialTypeSpecific": { - "display": "bog" - } - } - ], - "creators": [ - { - "display": "Joanne K. Rowling", - "__typename": "Person" - } - ], - "publisher": ["Gyldendal"], - "identifiers": [ - { - "value": "9788702114362" - } - ], - "contributors": [ - { - "display": "Hanna Lützen" - } - ], - "edition": { - "summary": "5. udgave, 2012", - "publicationYear": { - "display": "2012" - } - }, - "dateFirstEdition": null, - "audience": { - "generalAudience": [] - }, - "physicalDescriptions": [ - { - "numberOfPages": 684, - "playingTime": { - "materialUnits": [ - { - "extent": null - } - ] - } - } - ], - "accessTypes": [ - { - "code": "PHYSICAL" - } - ], - "access": [ - { - "__typename": "InterLibraryLoan", - "loanIsPossible": true - } - ], - "shelfmark": null, - "workYear": { - "year": 2000 - } - }, - { - "pid": "870970-basis:47092183", - "genreAndForm": ["roman", "fantasy"], - "source": ["Bibliotekskatalog"], - "languages": { - "main": [ - { - "display": "dansk", - "isoCode": "dan" - } - ] - }, - "titles": { - "main": ["Harry Potter og Flammernes Pokal (Ill. Jim Kay)"], - "original": ["Harry Potter and the goblet of fire"] - }, - "fictionNonfiction": { - "display": "skønlitteratur", - "code": "FICTION" - }, - "materialTypes": [ - { - "materialTypeSpecific": { - "display": "bog" - } - } - ], - "creators": [ - { - "display": "Joanne K. Rowling", - "__typename": "Person" - } - ], - "publisher": ["Gyldendal"], - "identifiers": [ - { - "value": "9788702284799" - } - ], - "contributors": [ - { - "display": "Hanna Lützen" - }, - { - "display": "Jim Kay" - } - ], - "edition": { - "summary": "Illustreret udgave, 8. udgave, 2019", - "publicationYear": { - "display": "2019" + "display": "2006" } }, "dateFirstEdition": null, @@ -9597,7 +8500,7 @@ }, "physicalDescriptions": [ { - "numberOfPages": 450, + "numberOfPages": null, "playingTime": { "materialUnits": [ { @@ -9624,8 +8527,8 @@ } }, { - "pid": "870970-basis:51980190", - "genreAndForm": ["roman", "fantasy"], + "pid": "870970-basis:27639240", + "genreAndForm": ["roman"], "source": ["Bibliotekskatalog"], "languages": { "main": [ @@ -9636,7 +8539,7 @@ ] }, "titles": { - "main": ["Harry Potter og Flammernes Pokal"], + "main": ["Harry Potter og Flammernes Pokal (mp3)"], "original": ["Harry Potter and the goblet of fire"] }, "fictionNonfiction": { @@ -9646,7 +8549,7 @@ "materialTypes": [ { "materialTypeSpecific": { - "display": "bog" + "display": "lydbog (cd-mp3)" } } ], @@ -9656,21 +8559,21 @@ "__typename": "Person" } ], - "publisher": ["Gyldendal"], + "publisher": ["Gyldendal Lyd"], "identifiers": [ { - "value": "9788702173253" + "value": "9788702075410" } ], "contributors": [ { - "display": "Hanna Lützen" + "display": "Jesper Christensen (f. 1948)" } ], "edition": { - "summary": "6. udgave, 2015", + "summary": "2009", "publicationYear": { - "display": "2015" + "display": "2009" } }, "dateFirstEdition": null, @@ -9679,7 +8582,7 @@ }, "physicalDescriptions": [ { - "numberOfPages": 615, + "numberOfPages": null, "playingTime": { "materialUnits": [ { @@ -9706,7 +8609,7 @@ } }, { - "pid": "870970-basis:54871953", + "pid": "870970-basis:29317070", "genreAndForm": ["roman", "fantasy"], "source": ["Bibliotekskatalog"], "languages": { @@ -9741,7 +8644,7 @@ "publisher": ["Gyldendal"], "identifiers": [ { - "value": "9788702272475" + "value": "9788702114362" } ], "contributors": [ @@ -9750,9 +8653,9 @@ } ], "edition": { - "summary": "7. udgave, 2018", + "summary": "5. udgave, 2012", "publicationYear": { - "display": "2018" + "display": "2012" } }, "dateFirstEdition": null, @@ -9761,7 +8664,7 @@ }, "physicalDescriptions": [ { - "numberOfPages": 615, + "numberOfPages": 684, "playingTime": { "materialUnits": [ { @@ -9786,304 +8689,177 @@ "workYear": { "year": 2000 } - } - ], - "latest": { - "pid": "870970-basis:47092183", - "genreAndForm": ["roman", "fantasy"], - "source": ["Bibliotekskatalog"], - "languages": { - "main": [ - { - "display": "dansk", - "isoCode": "dan" - } - ] - }, - "titles": { - "main": ["Harry Potter og Flammernes Pokal (Ill. Jim Kay)"], - "original": ["Harry Potter and the goblet of fire"] - }, - "fictionNonfiction": { - "display": "skønlitteratur", - "code": "FICTION" - }, - "materialTypes": [ - { - "materialTypeSpecific": { - "display": "bog" - } - } - ], - "creators": [ - { - "display": "Joanne K. Rowling", - "__typename": "Person" - } - ], - "publisher": ["Gyldendal"], - "identifiers": [ - { - "value": "9788702284799" - } - ], - "contributors": [ - { - "display": "Hanna Lützen" - }, - { - "display": "Jim Kay" - } - ], - "edition": { - "summary": "Illustreret udgave, 8. udgave, 2019", - "publicationYear": { - "display": "2019" - } - }, - "dateFirstEdition": null, - "audience": { - "generalAudience": [] - }, - "physicalDescriptions": [ - { - "numberOfPages": 450, - "playingTime": null - } - ], - "accessTypes": [ - { - "code": "PHYSICAL" - } - ], - "access": [ - { - "__typename": "InterLibraryLoan", - "loanIsPossible": true - } - ], - "shelfmark": null, - "workYear": { - "year": 2000 - } - }, - "bestRepresentation": { - "pid": "870970-basis:47092183", - "genreAndForm": ["roman", "fantasy"], - "source": ["Bibliotekskatalog"], - "languages": { - "main": [ - { - "display": "dansk", - "isoCode": "dan" - } - ] - }, - "titles": { - "main": ["Harry Potter og Flammernes Pokal (Ill. Jim Kay)"], - "original": ["Harry Potter and the goblet of fire"] - }, - "fictionNonfiction": { - "display": "skønlitteratur", - "code": "FICTION" - }, - "materialTypes": [ - { - "materialTypeSpecific": { - "display": "bog" - } - } - ], - "creators": [ - { - "display": "Joanne K. Rowling", - "__typename": "Person" - } - ], - "publisher": ["Gyldendal"], - "identifiers": [ - { - "value": "9788702284799" - } - ], - "contributors": [ - { - "display": "Hanna Lützen" - }, - { - "display": "Jim Kay" - } - ], - "edition": { - "summary": "Illustreret udgave, 8. udgave, 2019", - "publicationYear": { - "display": "2019" - } - }, - "dateFirstEdition": null, - "audience": { - "generalAudience": [] - }, - "physicalDescriptions": [ - { - "numberOfPages": 450, - "playingTime": null - } - ], - "accessTypes": [ - { - "code": "PHYSICAL" - } - ], - "access": [ - { - "__typename": "InterLibraryLoan", - "loanIsPossible": true - } - ], - "shelfmark": null, - "workYear": { - "year": 2000 - } - } - } - }, - { - "workId": "work-of:870970-basis:52646251", - "titles": { - "full": ["Harry Potter og det forbandede barn : del et & to"], - "original": ["Harry Potter and the cursed child"] - }, - "abstract": [ - "Fantasy. 19 år er gået siden slaget om Hogwarts. Harry Potter er blevet voksen og far til 3 børn. Ved hjælp af en forbudt Tidsvender, rejser Harrys søn Albus og Albus' bedste ven Scorpius Malfoy, ud på en farlig tidsrejse. En rejse der får fortid og nutid til at smelte ildevarslende sammen" - ], - "creators": [ - { - "display": "Joanne K. Rowling", - "__typename": "Person" - }, - { - "display": "John Tiffany", - "__typename": "Person" - }, - { - "display": "Jack Thorne", - "__typename": "Person" - } - ], - "series": [ - { - "title": "Harry Potter (bøger)", - "isPopular": true, - "numberInSeries": { - "display": "8", - "number": [8] }, - "readThisFirst": null, - "readThisWhenever": null, - "members": [ - { - "numberInSeries": "8", - "work": { - "workId": "work-of:870970-basis:22629344", - "titles": { - "main": ["Harry Potter og de vises sten"], - "full": ["Harry Potter og de vises sten"], - "original": ["Harry Potter and the philosopher's stone"] - } - } - }, - { - "numberInSeries": "8", - "work": { - "workId": "work-of:870970-basis:22677780", - "titles": { - "main": ["Harry Potter og Hemmelighedernes Kammer"], - "full": ["Harry Potter og Hemmelighedernes Kammer"], - "original": ["Harry Potter and the Chamber of Secrets"] + { + "pid": "870970-basis:47092183", + "genreAndForm": ["roman", "fantasy"], + "source": ["Bibliotekskatalog"], + "languages": { + "main": [ + { + "display": "dansk", + "isoCode": "dan" } - } + ] }, - { - "numberInSeries": "8", - "work": { - "workId": "work-of:870970-basis:22995154", - "titles": { - "main": ["Harry Potter og fangen fra Azkaban"], - "full": ["Harry Potter og fangen fra Azkaban"], - "original": ["Harry Potter and the prisoner of Azkaban"] - } - } + "titles": { + "main": ["Harry Potter og Flammernes Pokal (Ill. Jim Kay)"], + "original": ["Harry Potter and the goblet of fire"] }, - { - "numberInSeries": "8", - "work": { - "workId": "work-of:870970-basis:23540703", - "titles": { - "main": ["Harry Potter og Flammernes Pokal"], - "full": ["Harry Potter og Flammernes Pokal"], - "original": ["Harry Potter and the goblet of fire"] - } - } + "fictionNonfiction": { + "display": "skønlitteratur", + "code": "FICTION" }, - { - "numberInSeries": "8", - "work": { - "workId": "work-of:870970-basis:25245784", - "titles": { - "main": ["Harry Potter og Fønixordenen"], - "full": ["Harry Potter og Fønixordenen"], - "original": ["Harry Potter and the Order of the Phoenix"] + "materialTypes": [ + { + "materialTypeSpecific": { + "display": "bog" } } + ], + "creators": [ + { + "display": "Joanne K. Rowling", + "__typename": "Person" + } + ], + "publisher": ["Gyldendal"], + "identifiers": [ + { + "value": "9788702284799" + } + ], + "contributors": [ + { + "display": "Hanna Lützen" + }, + { + "display": "Jim Kay" + } + ], + "edition": { + "summary": "Illustreret udgave, 8. udgave, 2019", + "publicationYear": { + "display": "2019" + } }, - { - "numberInSeries": "8", - "work": { - "workId": "work-of:870970-basis:25807995", - "titles": { - "main": ["Harry Potter og halvblodsprinsen"], - "full": ["Harry Potter og halvblodsprinsen"], - "original": ["Harry Potter and the half-blood prince"] + "dateFirstEdition": null, + "audience": { + "generalAudience": [] + }, + "physicalDescriptions": [ + { + "numberOfPages": 450, + "playingTime": { + "materialUnits": [ + { + "extent": null + } + ] } } + ], + "accessTypes": [ + { + "code": "PHYSICAL" + } + ], + "access": [ + { + "__typename": "InterLibraryLoan", + "loanIsPossible": true + } + ], + "shelfmark": null, + "workYear": { + "year": 2000 + } + }, + { + "pid": "870970-basis:51980190", + "genreAndForm": ["roman", "fantasy"], + "source": ["Bibliotekskatalog"], + "languages": { + "main": [ + { + "display": "dansk", + "isoCode": "dan" + } + ] }, - { - "numberInSeries": "8", - "work": { - "workId": "work-of:870970-basis:27267912", - "titles": { - "main": ["Harry Potter og dødsregalierne"], - "full": ["Harry Potter og dødsregalierne"], - "original": ["Harry Potter and the deathly hallows"] + "titles": { + "main": ["Harry Potter og Flammernes Pokal"], + "original": ["Harry Potter and the goblet of fire"] + }, + "fictionNonfiction": { + "display": "skønlitteratur", + "code": "FICTION" + }, + "materialTypes": [ + { + "materialTypeSpecific": { + "display": "bog" } } + ], + "creators": [ + { + "display": "Joanne K. Rowling", + "__typename": "Person" + } + ], + "publisher": ["Gyldendal"], + "identifiers": [ + { + "value": "9788702173253" + } + ], + "contributors": [ + { + "display": "Hanna Lützen" + } + ], + "edition": { + "summary": "6. udgave, 2015", + "publicationYear": { + "display": "2015" + } }, - { - "numberInSeries": "8", - "work": { - "workId": "work-of:870970-basis:52646251", - "titles": { - "main": ["Harry Potter og det forbandede barn"], - "full": [ - "Harry Potter og det forbandede barn : del et & to" - ], - "original": ["Harry Potter and the cursed child"] + "dateFirstEdition": null, + "audience": { + "generalAudience": [] + }, + "physicalDescriptions": [ + { + "numberOfPages": 615, + "playingTime": { + "materialUnits": [ + { + "extent": null + } + ] } } + ], + "accessTypes": [ + { + "code": "PHYSICAL" + } + ], + "access": [ + { + "__typename": "InterLibraryLoan", + "loanIsPossible": true + } + ], + "shelfmark": null, + "workYear": { + "year": 2000 } - ] - } - ], - "workYear": { - "year": 2016 - }, - "genreAndForm": ["dramatik", "fantasy"], - "manifestations": { - "all": [ + }, { - "pid": "870970-basis:52646251", - "genreAndForm": ["dramatik", "fantasy"], + "pid": "870970-basis:54871953", + "genreAndForm": ["roman", "fantasy"], "source": ["Bibliotekskatalog"], "languages": { "main": [ @@ -10094,8 +8870,8 @@ ] }, "titles": { - "main": ["Harry Potter og det forbandede barn"], - "original": ["Harry Potter and the cursed child"] + "main": ["Harry Potter og Flammernes Pokal"], + "original": ["Harry Potter and the goblet of fire"] }, "fictionNonfiction": { "display": "skønlitteratur", @@ -10112,34 +8888,23 @@ { "display": "Joanne K. Rowling", "__typename": "Person" - }, - { - "display": "John Tiffany", - "__typename": "Person" - }, - { - "display": "Jack Thorne", - "__typename": "Person" } ], "publisher": ["Gyldendal"], "identifiers": [ { - "value": "9788702215694" + "value": "9788702272475" } ], "contributors": [ { "display": "Hanna Lützen" - }, - { - "display": "Mette Nejmann" } ], "edition": { - "summary": "1. udgave af manuskriptbogen, 2016", + "summary": "7. udgave, 2018", "publicationYear": { - "display": "2016" + "display": "2018" } }, "dateFirstEdition": null, @@ -10148,7 +8913,7 @@ }, "physicalDescriptions": [ { - "numberOfPages": 369, + "numberOfPages": 615, "playingTime": { "materialUnits": [ { @@ -10171,13 +8936,13 @@ ], "shelfmark": null, "workYear": { - "year": 2016 + "year": 2000 } } ], "latest": { - "pid": "870970-basis:52646251", - "genreAndForm": ["dramatik", "fantasy"], + "pid": "870970-basis:47092183", + "genreAndForm": ["roman", "fantasy"], "source": ["Bibliotekskatalog"], "languages": { "main": [ @@ -10188,8 +8953,8 @@ ] }, "titles": { - "main": ["Harry Potter og det forbandede barn"], - "original": ["Harry Potter and the cursed child"] + "main": ["Harry Potter og Flammernes Pokal (Ill. Jim Kay)"], + "original": ["Harry Potter and the goblet of fire"] }, "fictionNonfiction": { "display": "skønlitteratur", @@ -10206,20 +8971,12 @@ { "display": "Joanne K. Rowling", "__typename": "Person" - }, - { - "display": "John Tiffany", - "__typename": "Person" - }, - { - "display": "Jack Thorne", - "__typename": "Person" } ], "publisher": ["Gyldendal"], "identifiers": [ { - "value": "9788702215694" + "value": "9788702284799" } ], "contributors": [ @@ -10227,13 +8984,13 @@ "display": "Hanna Lützen" }, { - "display": "Mette Nejmann" + "display": "Jim Kay" } ], "edition": { - "summary": "1. udgave af manuskriptbogen, 2016", + "summary": "Illustreret udgave, 8. udgave, 2019", "publicationYear": { - "display": "2016" + "display": "2019" } }, "dateFirstEdition": null, @@ -10242,7 +8999,7 @@ }, "physicalDescriptions": [ { - "numberOfPages": 369, + "numberOfPages": 450, "playingTime": null } ], @@ -10259,12 +9016,12 @@ ], "shelfmark": null, "workYear": { - "year": 2016 + "year": 2000 } }, "bestRepresentation": { - "pid": "870970-basis:52646251", - "genreAndForm": ["dramatik", "fantasy"], + "pid": "870970-basis:47092183", + "genreAndForm": ["roman", "fantasy"], "source": ["Bibliotekskatalog"], "languages": { "main": [ @@ -10275,8 +9032,8 @@ ] }, "titles": { - "main": ["Harry Potter og det forbandede barn"], - "original": ["Harry Potter and the cursed child"] + "main": ["Harry Potter og Flammernes Pokal (Ill. Jim Kay)"], + "original": ["Harry Potter and the goblet of fire"] }, "fictionNonfiction": { "display": "skønlitteratur", @@ -10293,20 +9050,12 @@ { "display": "Joanne K. Rowling", "__typename": "Person" - }, - { - "display": "John Tiffany", - "__typename": "Person" - }, - { - "display": "Jack Thorne", - "__typename": "Person" } ], "publisher": ["Gyldendal"], "identifiers": [ { - "value": "9788702215694" + "value": "9788702284799" } ], "contributors": [ @@ -10314,13 +9063,13 @@ "display": "Hanna Lützen" }, { - "display": "Mette Nejmann" + "display": "Jim Kay" } ], "edition": { - "summary": "1. udgave af manuskriptbogen, 2016", + "summary": "Illustreret udgave, 8. udgave, 2019", "publicationYear": { - "display": "2016" + "display": "2019" } }, "dateFirstEdition": null, @@ -10329,7 +9078,7 @@ }, "physicalDescriptions": [ { - "numberOfPages": 369, + "numberOfPages": 450, "playingTime": null } ], @@ -10346,39 +9095,47 @@ ], "shelfmark": null, "workYear": { - "year": 2016 + "year": 2000 } } } }, { - "workId": "work-of:870970-basis:42042455", + "workId": "work-of:870970-basis:52646251", "titles": { - "full": ["Harry Potter and the philosopher's stone"], - "original": [] + "full": ["Harry Potter og det forbandede barn : del et & to"], + "original": ["Harry Potter and the cursed child"] }, "abstract": [ - "Harry Potter lives in a cupboard under the stairs at his Aunt and Uncle's house. He is bullied by them and his spoilt cousin, and lives a very unremarkable life. But then Harry is transported to a world of magic and excitement" + "Fantasy. 19 år er gået siden slaget om Hogwarts. Harry Potter er blevet voksen og far til 3 børn. Ved hjælp af en forbudt Tidsvender, rejser Harrys søn Albus og Albus' bedste ven Scorpius Malfoy, ud på en farlig tidsrejse. En rejse der får fortid og nutid til at smelte ildevarslende sammen" ], "creators": [ { "display": "Joanne K. Rowling", "__typename": "Person" + }, + { + "display": "John Tiffany", + "__typename": "Person" + }, + { + "display": "Jack Thorne", + "__typename": "Person" } ], "series": [ { - "title": "Harry Potter (engelsk)", + "title": "Harry Potter (bøger)", "isPopular": true, "numberInSeries": { - "display": "1", - "number": [1] + "display": "8", + "number": [8] }, - "readThisFirst": true, + "readThisFirst": null, "readThisWhenever": null, "members": [ { - "numberInSeries": "1", + "numberInSeries": "8", "work": { "workId": "work-of:870970-basis:22629344", "titles": { @@ -10389,7 +9146,7 @@ } }, { - "numberInSeries": "1", + "numberInSeries": "8", "work": { "workId": "work-of:870970-basis:22677780", "titles": { @@ -10400,7 +9157,7 @@ } }, { - "numberInSeries": "1", + "numberInSeries": "8", "work": { "workId": "work-of:870970-basis:22995154", "titles": { @@ -10411,7 +9168,7 @@ } }, { - "numberInSeries": "1", + "numberInSeries": "8", "work": { "workId": "work-of:870970-basis:23540703", "titles": { @@ -10422,7 +9179,7 @@ } }, { - "numberInSeries": "1", + "numberInSeries": "8", "work": { "workId": "work-of:870970-basis:25245784", "titles": { @@ -10433,7 +9190,7 @@ } }, { - "numberInSeries": "1", + "numberInSeries": "8", "work": { "workId": "work-of:870970-basis:25807995", "titles": { @@ -10444,230 +9201,53 @@ } }, { - "numberInSeries": "1", + "numberInSeries": "8", "work": { "workId": "work-of:870970-basis:27267912", "titles": { "main": ["Harry Potter og dødsregalierne"], - "full": ["Harry Potter og dødsregalierne"], - "original": ["Harry Potter and the deathly hallows"] - } - } - }, - { - "numberInSeries": "1", - "work": { - "workId": "work-of:870970-basis:52646251", - "titles": { - "main": ["Harry Potter og det forbandede barn"], - "full": [ - "Harry Potter og det forbandede barn : del et & to" - ], - "original": ["Harry Potter and the cursed child"] - } - } - } - ] - } - ], - "workYear": { - "year": 1997 - }, - "genreAndForm": [ - "roman", - "eventyrlige fortællinger", - "fantasy", - "romaner" - ], - "manifestations": { - "all": [ - { - "pid": "870970-basis:134987766", - "genreAndForm": ["roman", "fantasy"], - "source": ["Bibliotekskatalog"], - "languages": { - "main": [ - { - "display": "engelsk", - "isoCode": "eng" - } - ] - }, - "titles": { - "main": ["Harry Potter and the philosopher's stone"], - "original": [] - }, - "fictionNonfiction": { - "display": "skønlitteratur", - "code": "FICTION" - }, - "materialTypes": [ - { - "materialTypeSpecific": { - "display": "bog" - } - } - ], - "creators": [ - { - "display": "Joanne K. Rowling", - "__typename": "Person" - } - ], - "publisher": ["Bloomsbury"], - "identifiers": [ - { - "value": "9781526646651" - } - ], - "contributors": [ - { - "display": "Thomas Taylor" - } - ], - "edition": { - "summary": "Bloomsbury, silver anniversary edition 2022, 2022", - "publicationYear": { - "display": "2022" - } - }, - "dateFirstEdition": { - "display": "1997", - "year": 1997 - }, - "audience": { - "generalAudience": [] - }, - "physicalDescriptions": [ - { - "numberOfPages": 331, - "playingTime": { - "materialUnits": [ - { - "extent": null - } - ] - } - } - ], - "accessTypes": [ - { - "code": "PHYSICAL" - } - ], - "access": [ - { - "__typename": "InterLibraryLoan", - "loanIsPossible": true - } - ], - "shelfmark": { - "postfix": "Rowling", - "shelfmark": "83" - }, - "workYear": { - "year": 1997 - } - }, - { - "pid": "870970-basis:23353873", - "genreAndForm": ["roman"], - "source": ["Bibliotekskatalog"], - "languages": { - "main": [ - { - "display": "engelsk", - "isoCode": "eng" - } - ] - }, - "titles": { - "main": ["Harry Potter and the philosopher's stone"], - "original": [] - }, - "fictionNonfiction": { - "display": "skønlitteratur", - "code": "FICTION" - }, - "materialTypes": [ - { - "materialTypeSpecific": { - "display": "bog" - } - } - ], - "creators": [ - { - "display": "Joanne K. Rowling", - "__typename": "Person" - } - ], - "publisher": ["Bloomsbury"], - "identifiers": [ - { - "value": "0-7475-4572-3" - } - ], - "contributors": [], - "edition": { - "summary": "Special edition, 1999", - "publicationYear": { - "display": "1999" - } - }, - "dateFirstEdition": { - "display": "1997", - "year": 1997 - }, - "audience": { - "generalAudience": [] - }, - "physicalDescriptions": [ - { - "numberOfPages": 223, - "playingTime": { - "materialUnits": [ - { - "extent": null - } - ] + "full": ["Harry Potter og dødsregalierne"], + "original": ["Harry Potter and the deathly hallows"] } } - ], - "accessTypes": [ - { - "code": "PHYSICAL" - } - ], - "access": [ - { - "__typename": "InterLibraryLoan", - "loanIsPossible": true - } - ], - "shelfmark": { - "postfix": "Rowling", - "shelfmark": "83" }, - "workYear": { - "year": 1997 + { + "numberInSeries": "8", + "work": { + "workId": "work-of:870970-basis:52646251", + "titles": { + "main": ["Harry Potter og det forbandede barn"], + "full": [ + "Harry Potter og det forbandede barn : del et & to" + ], + "original": ["Harry Potter and the cursed child"] + } + } } - }, + ] + } + ], + "workYear": { + "year": 2016 + }, + "genreAndForm": ["dramatik", "fantasy"], + "manifestations": { + "all": [ { - "pid": "870970-basis:24047520", - "genreAndForm": ["roman"], + "pid": "870970-basis:52646251", + "genreAndForm": ["dramatik", "fantasy"], "source": ["Bibliotekskatalog"], "languages": { "main": [ { - "display": "engelsk", - "isoCode": "eng" + "display": "dansk", + "isoCode": "dan" } ] }, "titles": { - "main": ["Harry Potter and the philosopher's stone"], - "original": [] + "main": ["Harry Potter og det forbandede barn"], + "original": ["Harry Potter and the cursed child"] }, "fictionNonfiction": { "display": "skønlitteratur", @@ -10676,7 +9256,7 @@ "materialTypes": [ { "materialTypeSpecific": { - "display": "lydbog (bånd)" + "display": "bog" } } ], @@ -10686,33 +9266,41 @@ "__typename": "Person" }, { - "display": "Stephen Fry", + "display": "John Tiffany", + "__typename": "Person" + }, + { + "display": "Jack Thorne", "__typename": "Person" } ], - "publisher": ["Cover to Cover"], + "publisher": ["Gyldendal"], "identifiers": [ { - "value": "1-85549-860-X" + "value": "9788702215694" + } + ], + "contributors": [ + { + "display": "Hanna Lützen" + }, + { + "display": "Mette Nejmann" } ], - "contributors": [], "edition": { - "summary": "DBC (dist.), 2002", + "summary": "1. udgave af manuskriptbogen, 2016", "publicationYear": { - "display": "2002" + "display": "2016" } }, - "dateFirstEdition": { - "display": "1997", - "year": 1997 - }, + "dateFirstEdition": null, "audience": { "generalAudience": [] }, "physicalDescriptions": [ { - "numberOfPages": null, + "numberOfPages": 369, "playingTime": { "materialUnits": [ { @@ -10733,193 +9321,321 @@ "loanIsPossible": true } ], - "shelfmark": { - "postfix": "Rowling", - "shelfmark": "83" - }, + "shelfmark": null, "workYear": { - "year": 1997 + "year": 2016 + } + } + ], + "latest": { + "pid": "870970-basis:52646251", + "genreAndForm": ["dramatik", "fantasy"], + "source": ["Bibliotekskatalog"], + "languages": { + "main": [ + { + "display": "dansk", + "isoCode": "dan" + } + ] + }, + "titles": { + "main": ["Harry Potter og det forbandede barn"], + "original": ["Harry Potter and the cursed child"] + }, + "fictionNonfiction": { + "display": "skønlitteratur", + "code": "FICTION" + }, + "materialTypes": [ + { + "materialTypeSpecific": { + "display": "bog" + } + } + ], + "creators": [ + { + "display": "Joanne K. Rowling", + "__typename": "Person" + }, + { + "display": "John Tiffany", + "__typename": "Person" + }, + { + "display": "Jack Thorne", + "__typename": "Person" + } + ], + "publisher": ["Gyldendal"], + "identifiers": [ + { + "value": "9788702215694" + } + ], + "contributors": [ + { + "display": "Hanna Lützen" + }, + { + "display": "Mette Nejmann" + } + ], + "edition": { + "summary": "1. udgave af manuskriptbogen, 2016", + "publicationYear": { + "display": "2016" + } + }, + "dateFirstEdition": null, + "audience": { + "generalAudience": [] + }, + "physicalDescriptions": [ + { + "numberOfPages": 369, + "playingTime": null + } + ], + "accessTypes": [ + { + "code": "PHYSICAL" + } + ], + "access": [ + { + "__typename": "InterLibraryLoan", + "loanIsPossible": true + } + ], + "shelfmark": null, + "workYear": { + "year": 2016 + } + }, + "bestRepresentation": { + "pid": "870970-basis:52646251", + "genreAndForm": ["dramatik", "fantasy"], + "source": ["Bibliotekskatalog"], + "languages": { + "main": [ + { + "display": "dansk", + "isoCode": "dan" + } + ] + }, + "titles": { + "main": ["Harry Potter og det forbandede barn"], + "original": ["Harry Potter and the cursed child"] + }, + "fictionNonfiction": { + "display": "skønlitteratur", + "code": "FICTION" + }, + "materialTypes": [ + { + "materialTypeSpecific": { + "display": "bog" + } + } + ], + "creators": [ + { + "display": "Joanne K. Rowling", + "__typename": "Person" + }, + { + "display": "John Tiffany", + "__typename": "Person" + }, + { + "display": "Jack Thorne", + "__typename": "Person" + } + ], + "publisher": ["Gyldendal"], + "identifiers": [ + { + "value": "9788702215694" + } + ], + "contributors": [ + { + "display": "Hanna Lützen" + }, + { + "display": "Mette Nejmann" + } + ], + "edition": { + "summary": "1. udgave af manuskriptbogen, 2016", + "publicationYear": { + "display": "2016" + } + }, + "dateFirstEdition": null, + "audience": { + "generalAudience": [] + }, + "physicalDescriptions": [ + { + "numberOfPages": 369, + "playingTime": null + } + ], + "accessTypes": [ + { + "code": "PHYSICAL" } + ], + "access": [ + { + "__typename": "InterLibraryLoan", + "loanIsPossible": true + } + ], + "shelfmark": null, + "workYear": { + "year": 2016 + } + } + } + }, + { + "workId": "work-of:870970-basis:42042455", + "titles": { + "full": ["Harry Potter and the philosopher's stone"], + "original": [] + }, + "abstract": [ + "Harry Potter lives in a cupboard under the stairs at his Aunt and Uncle's house. He is bullied by them and his spoilt cousin, and lives a very unremarkable life. But then Harry is transported to a world of magic and excitement" + ], + "creators": [ + { + "display": "Joanne K. Rowling", + "__typename": "Person" + } + ], + "series": [ + { + "title": "Harry Potter (engelsk)", + "isPopular": true, + "numberInSeries": { + "display": "1", + "number": [1] }, - { - "pid": "870970-basis:25699815", - "genreAndForm": ["roman"], - "source": ["Bibliotekskatalog"], - "languages": { - "main": [ - { - "display": "engelsk", - "isoCode": "eng" + "readThisFirst": true, + "readThisWhenever": null, + "members": [ + { + "numberInSeries": "1", + "work": { + "workId": "work-of:870970-basis:22629344", + "titles": { + "main": ["Harry Potter og de vises sten"], + "full": ["Harry Potter og de vises sten"], + "original": ["Harry Potter and the philosopher's stone"] } - ] - }, - "titles": { - "main": ["Harry Potter and the philosopher's stone"], - "original": [] - }, - "fictionNonfiction": { - "display": "skønlitteratur", - "code": "FICTION" + } }, - "materialTypes": [ - { - "materialTypeSpecific": { - "display": "lydbog (bånd)" + { + "numberInSeries": "1", + "work": { + "workId": "work-of:870970-basis:22677780", + "titles": { + "main": ["Harry Potter og Hemmelighedernes Kammer"], + "full": ["Harry Potter og Hemmelighedernes Kammer"], + "original": ["Harry Potter and the Chamber of Secrets"] } } - ], - "creators": [ - { - "display": "Joanne K. Rowling", - "__typename": "Person" - }, - { - "display": "Stephen Fry", - "__typename": "Person" - } - ], - "publisher": ["Danmarks Blindebibliotek"], - "identifiers": [ - { - "value": "Best.nr. 15613" - } - ], - "contributors": [ - { - "display": "Stephen Fry" - } - ], - "edition": { - "summary": "2005", - "publicationYear": { - "display": "2005" - } - }, - "dateFirstEdition": { - "display": "1997", - "year": 1997 - }, - "audience": { - "generalAudience": [] }, - "physicalDescriptions": [ - { - "numberOfPages": null, - "playingTime": { - "materialUnits": [ - { - "extent": null - } - ] + { + "numberInSeries": "1", + "work": { + "workId": "work-of:870970-basis:22995154", + "titles": { + "main": ["Harry Potter og fangen fra Azkaban"], + "full": ["Harry Potter og fangen fra Azkaban"], + "original": ["Harry Potter and the prisoner of Azkaban"] } } - ], - "accessTypes": [ - { - "code": "PHYSICAL" - } - ], - "access": [ - { - "__typename": "InterLibraryLoan", - "loanIsPossible": true - } - ], - "shelfmark": { - "postfix": "Rowling", - "shelfmark": "83" }, - "workYear": { - "year": 1997 - } - }, - { - "pid": "870970-basis:28090757", - "genreAndForm": ["eventyrlige fortællinger"], - "source": ["Bibliotekskatalog"], - "languages": { - "main": [ - { - "display": "engelsk", - "isoCode": "eng" + { + "numberInSeries": "1", + "work": { + "workId": "work-of:870970-basis:23540703", + "titles": { + "main": ["Harry Potter og Flammernes Pokal"], + "full": ["Harry Potter og Flammernes Pokal"], + "original": ["Harry Potter and the goblet of fire"] } - ] - }, - "titles": { - "main": ["Harry Potter and the philosopher's stone"], - "original": [] - }, - "fictionNonfiction": { - "display": "skønlitteratur", - "code": "FICTION" + } }, - "materialTypes": [ - { - "materialTypeSpecific": { - "display": "bog" + { + "numberInSeries": "1", + "work": { + "workId": "work-of:870970-basis:25245784", + "titles": { + "main": ["Harry Potter og Fønixordenen"], + "full": ["Harry Potter og Fønixordenen"], + "original": ["Harry Potter and the Order of the Phoenix"] } } - ], - "creators": [ - { - "display": "Joanne K. Rowling", - "__typename": "Person" - } - ], - "publisher": ["Bloomsbury"], - "identifiers": [ - { - "value": "0-7475-7447-2" - } - ], - "contributors": [], - "edition": { - "summary": "Paperback edition, 2004", - "publicationYear": { - "display": "2004" - } - }, - "dateFirstEdition": { - "display": "1997", - "year": 1997 - }, - "audience": { - "generalAudience": [] }, - "physicalDescriptions": [ - { - "numberOfPages": 332, - "playingTime": { - "materialUnits": [ - { - "extent": null - } - ] + { + "numberInSeries": "1", + "work": { + "workId": "work-of:870970-basis:25807995", + "titles": { + "main": ["Harry Potter og halvblodsprinsen"], + "full": ["Harry Potter og halvblodsprinsen"], + "original": ["Harry Potter and the half-blood prince"] } } - ], - "accessTypes": [ - { - "code": "PHYSICAL" + }, + { + "numberInSeries": "1", + "work": { + "workId": "work-of:870970-basis:27267912", + "titles": { + "main": ["Harry Potter og dødsregalierne"], + "full": ["Harry Potter og dødsregalierne"], + "original": ["Harry Potter and the deathly hallows"] + } } - ], - "access": [ - { - "__typename": "InterLibraryLoan", - "loanIsPossible": true + }, + { + "numberInSeries": "1", + "work": { + "workId": "work-of:870970-basis:52646251", + "titles": { + "main": ["Harry Potter og det forbandede barn"], + "full": [ + "Harry Potter og det forbandede barn : del et & to" + ], + "original": ["Harry Potter and the cursed child"] + } } - ], - "shelfmark": { - "postfix": "Rowling", - "shelfmark": "83" - }, - "workYear": { - "year": 1997 } - }, + ] + } + ], + "workYear": { + "year": 1997 + }, + "genreAndForm": [ + "roman", + "eventyrlige fortællinger", + "fantasy", + "romaner" + ], + "manifestations": { + "all": [ { - "pid": "870970-basis:42042455", - "genreAndForm": ["roman"], + "pid": "870970-basis:134987766", + "genreAndForm": ["roman", "fantasy"], "source": ["Bibliotekskatalog"], "languages": { "main": [ @@ -10953,17 +9669,18 @@ "publisher": ["Bloomsbury"], "identifiers": [ { - "value": "0-7475-5362-9" - }, + "value": "9781526646651" + } + ], + "contributors": [ { - "value": "0-7475-3269-9" + "display": "Thomas Taylor" } ], - "contributors": [], "edition": { - "summary": "1997", + "summary": "Bloomsbury, silver anniversary edition 2022, 2022", "publicationYear": { - "display": "1997" + "display": "2022" } }, "dateFirstEdition": { @@ -10975,7 +9692,7 @@ }, "physicalDescriptions": [ { - "numberOfPages": 223, + "numberOfPages": 331, "playingTime": { "materialUnits": [ { @@ -11005,7 +9722,7 @@ } }, { - "pid": "870970-basis:42118982", + "pid": "870970-basis:23353873", "genreAndForm": ["roman"], "source": ["Bibliotekskatalog"], "languages": { @@ -11027,7 +9744,7 @@ "materialTypes": [ { "materialTypeSpecific": { - "display": "lydbog (bånd)" + "display": "bog" } } ], @@ -11035,21 +9752,17 @@ { "display": "Joanne K. Rowling", "__typename": "Person" - }, - { - "display": "Stephen Fry", - "__typename": "Person" } ], - "publisher": ["Cover to Cover"], + "publisher": ["Bloomsbury"], "identifiers": [ { - "value": "1-85549-860-X" + "value": "0-7475-4572-3" } ], "contributors": [], "edition": { - "summary": "1999", + "summary": "Special edition, 1999", "publicationYear": { "display": "1999" } @@ -11063,7 +9776,7 @@ }, "physicalDescriptions": [ { - "numberOfPages": null, + "numberOfPages": 223, "playingTime": { "materialUnits": [ { @@ -11093,7 +9806,7 @@ } }, { - "pid": "870970-basis:42235504", + "pid": "870970-basis:24047520", "genreAndForm": ["roman"], "source": ["Bibliotekskatalog"], "languages": { @@ -11115,7 +9828,7 @@ "materialTypes": [ { "materialTypeSpecific": { - "display": "lydbog (cd)" + "display": "lydbog (bånd)" } } ], @@ -11132,14 +9845,14 @@ "publisher": ["Cover to Cover"], "identifiers": [ { - "value": "1-85549-670-4" + "value": "1-85549-860-X" } ], "contributors": [], "edition": { - "summary": "1999", + "summary": "DBC (dist.), 2002", "publicationYear": { - "display": "1999" + "display": "2002" } }, "dateFirstEdition": { @@ -11181,7 +9894,7 @@ } }, { - "pid": "870970-basis:42388173", + "pid": "870970-basis:25699815", "genreAndForm": ["roman"], "source": ["Bibliotekskatalog"], "languages": { @@ -11203,7 +9916,7 @@ "materialTypes": [ { "materialTypeSpecific": { - "display": "bog" + "display": "lydbog (bånd)" } } ], @@ -11211,22 +9924,27 @@ { "display": "Joanne K. Rowling", "__typename": "Person" + }, + { + "display": "Stephen Fry", + "__typename": "Person" } ], - "publisher": ["Bloomsbury"], + "publisher": ["Danmarks Blindebibliotek"], "identifiers": [ { - "value": "0-7475-3274-5" - }, + "value": "Best.nr. 15613" + } + ], + "contributors": [ { - "value": "0-7475-5701-2" + "display": "Stephen Fry" } ], - "contributors": [], "edition": { - "summary": "Bloomsbury, New pbk. edition 1997, 1997", + "summary": "2005", "publicationYear": { - "display": "1997" + "display": "2005" } }, "dateFirstEdition": { @@ -11238,7 +9956,7 @@ }, "physicalDescriptions": [ { - "numberOfPages": 223, + "numberOfPages": null, "playingTime": { "materialUnits": [ { @@ -11268,8 +9986,8 @@ } }, { - "pid": "870970-basis:42793825", - "genreAndForm": ["roman"], + "pid": "870970-basis:28090757", + "genreAndForm": ["eventyrlige fortællinger"], "source": ["Bibliotekskatalog"], "languages": { "main": [ @@ -11303,14 +10021,14 @@ "publisher": ["Bloomsbury"], "identifiers": [ { - "value": "0-7475-5819-1" + "value": "0-7475-7447-2" } ], "contributors": [], "edition": { - "summary": "Bloomsbury, New edition 2001, 2001", + "summary": "Paperback edition, 2004", "publicationYear": { - "display": "2001" + "display": "2004" } }, "dateFirstEdition": { @@ -11322,7 +10040,7 @@ }, "physicalDescriptions": [ { - "numberOfPages": 223, + "numberOfPages": 332, "playingTime": { "materialUnits": [ { @@ -11352,8 +10070,8 @@ } }, { - "pid": "870970-basis:42810215", - "genreAndForm": ["roman", "eventyrlige fortællinger"], + "pid": "870970-basis:42042455", + "genreAndForm": ["roman"], "source": ["Bibliotekskatalog"], "languages": { "main": [ @@ -11387,14 +10105,17 @@ "publisher": ["Bloomsbury"], "identifiers": [ { - "value": "0-7475-4955-9" + "value": "0-7475-5362-9" + }, + { + "value": "0-7475-3269-9" } ], "contributors": [], "edition": { - "summary": "2000", + "summary": "1997", "publicationYear": { - "display": "2000" + "display": "1997" } }, "dateFirstEdition": { @@ -11406,7 +10127,7 @@ }, "physicalDescriptions": [ { - "numberOfPages": 332, + "numberOfPages": 223, "playingTime": { "materialUnits": [ { @@ -11436,7 +10157,7 @@ } }, { - "pid": "870970-basis:43072994", + "pid": "870970-basis:42118982", "genreAndForm": ["roman"], "source": ["Bibliotekskatalog"], "languages": { @@ -11458,7 +10179,7 @@ "materialTypes": [ { "materialTypeSpecific": { - "display": "bog" + "display": "lydbog (bånd)" } } ], @@ -11466,22 +10187,23 @@ { "display": "Joanne K. Rowling", "__typename": "Person" + }, + { + "display": "Stephen Fry", + "__typename": "Person" } ], - "publisher": ["Bloomsbury"], + "publisher": ["Cover to Cover"], "identifiers": [ { - "value": "0-7475-6000-5" - }, - { - "value": "0-7475-4298-8" + "value": "1-85549-860-X" } ], "contributors": [], "edition": { - "summary": "1998", + "summary": "1999", "publicationYear": { - "display": "1998" + "display": "1999" } }, "dateFirstEdition": { @@ -11493,7 +10215,7 @@ }, "physicalDescriptions": [ { - "numberOfPages": 223, + "numberOfPages": null, "playingTime": { "materialUnits": [ { @@ -11523,7 +10245,7 @@ } }, { - "pid": "870970-basis:43903977", + "pid": "870970-basis:42235504", "genreAndForm": ["roman"], "source": ["Bibliotekskatalog"], "languages": { @@ -11535,9 +10257,7 @@ ] }, "titles": { - "main": [ - "Harry Potter and the philosopher's stone (Ved Stephen Fry)" - ], + "main": ["Harry Potter and the philosopher's stone"], "original": [] }, "fictionNonfiction": { @@ -11564,14 +10284,14 @@ "publisher": ["Cover to Cover"], "identifiers": [ { - "value": "1-85549-631-3" + "value": "1-85549-670-4" } ], "contributors": [], "edition": { - "summary": "2000", + "summary": "1999", "publicationYear": { - "display": "2000" + "display": "1999" } }, "dateFirstEdition": { @@ -11613,12 +10333,8 @@ } }, { - "pid": "870970-basis:44227843", - "genreAndForm": [ - "roman", - "eventyrlige fortællinger", - "fantasy" - ], + "pid": "870970-basis:42388173", + "genreAndForm": ["roman"], "source": ["Bibliotekskatalog"], "languages": { "main": [ @@ -11652,14 +10368,17 @@ "publisher": ["Bloomsbury"], "identifiers": [ { - "value": "9780747532699" + "value": "0-7475-3274-5" + }, + { + "value": "0-7475-5701-2" } ], "contributors": [], "edition": { - "summary": "Bloomsbury, New edition 2000, 2000", + "summary": "Bloomsbury, New pbk. edition 1997, 1997", "publicationYear": { - "display": "2000" + "display": "1997" } }, "dateFirstEdition": { @@ -11701,8 +10420,8 @@ } }, { - "pid": "870970-basis:44513323", - "genreAndForm": ["eventyrlige fortællinger"], + "pid": "870970-basis:42793825", + "genreAndForm": ["roman"], "source": ["Bibliotekskatalog"], "languages": { "main": [ @@ -11736,14 +10455,14 @@ "publisher": ["Bloomsbury"], "identifiers": [ { - "value": "0-7475-7360-3" + "value": "0-7475-5819-1" } ], "contributors": [], "edition": { - "summary": "Adult edition, 2004", + "summary": "Bloomsbury, New edition 2001, 2001", "publicationYear": { - "display": "2004" + "display": "2001" } }, "dateFirstEdition": { @@ -11755,7 +10474,7 @@ }, "physicalDescriptions": [ { - "numberOfPages": 224, + "numberOfPages": 223, "playingTime": { "materialUnits": [ { @@ -11785,8 +10504,8 @@ } }, { - "pid": "870970-basis:44815702", - "genreAndForm": ["roman"], + "pid": "870970-basis:42810215", + "genreAndForm": ["roman", "eventyrlige fortællinger"], "source": ["Bibliotekskatalog"], "languages": { "main": [ @@ -11797,9 +10516,7 @@ ] }, "titles": { - "main": [ - "Harry Potter and the philosopher's stone (Ved Stephen Fry)" - ], + "main": ["Harry Potter and the philosopher's stone"], "original": [] }, "fictionNonfiction": { @@ -11809,7 +10526,7 @@ "materialTypes": [ { "materialTypeSpecific": { - "display": "lydbog (cd)" + "display": "bog" } } ], @@ -11817,29 +10534,19 @@ { "display": "Joanne K. Rowling", "__typename": "Person" - }, - { - "display": "Stephen Fry", - "__typename": "Person" } ], - "publisher": ["HNP"], + "publisher": ["Bloomsbury"], "identifiers": [ { - "value": "9781907545016" - }, - { - "value": "9781907545009" - }, - { - "value": "9781408882221" + "value": "0-7475-4955-9" } ], "contributors": [], "edition": { - "summary": "HNP, 1999", + "summary": "2000", "publicationYear": { - "display": "1999" + "display": "2000" } }, "dateFirstEdition": { @@ -11851,7 +10558,7 @@ }, "physicalDescriptions": [ { - "numberOfPages": null, + "numberOfPages": 332, "playingTime": { "materialUnits": [ { @@ -11881,8 +10588,8 @@ } }, { - "pid": "870970-basis:44931885", - "genreAndForm": ["roman", "eventyrlige fortællinger"], + "pid": "870970-basis:43072994", + "genreAndForm": ["roman"], "source": ["Bibliotekskatalog"], "languages": { "main": [ @@ -11916,14 +10623,17 @@ "publisher": ["Bloomsbury"], "identifiers": [ { - "value": "9781408810545" + "value": "0-7475-6000-5" + }, + { + "value": "0-7475-4298-8" } ], "contributors": [], "edition": { - "summary": "Signature edition, 2010", + "summary": "1998", "publicationYear": { - "display": "2010" + "display": "1998" } }, "dateFirstEdition": { @@ -11965,8 +10675,8 @@ } }, { - "pid": "870970-basis:45654222", - "genreAndForm": ["roman", "fantasy"], + "pid": "870970-basis:43903977", + "genreAndForm": ["roman"], "source": ["Bibliotekskatalog"], "languages": { "main": [ @@ -11977,7 +10687,9 @@ ] }, "titles": { - "main": ["Harry Potter and the philosopher's stone"], + "main": [ + "Harry Potter and the philosopher's stone (Ved Stephen Fry)" + ], "original": [] }, "fictionNonfiction": { @@ -11987,7 +10699,7 @@ "materialTypes": [ { "materialTypeSpecific": { - "display": "bog" + "display": "lydbog (cd)" } } ], @@ -11995,22 +10707,23 @@ { "display": "Joanne K. Rowling", "__typename": "Person" + }, + { + "display": "Stephen Fry", + "__typename": "Person" } ], - "publisher": ["Bloomsbury"], + "publisher": ["Cover to Cover"], "identifiers": [ { - "value": "9781408855652" - }, - { - "value": "9781408855898" + "value": "1-85549-631-3" } ], "contributors": [], "edition": { - "summary": "Bloomsbury, new edition 2014, 2014", + "summary": "2000", "publicationYear": { - "display": "2014" + "display": "2000" } }, "dateFirstEdition": { @@ -12022,7 +10735,7 @@ }, "physicalDescriptions": [ { - "numberOfPages": 331, + "numberOfPages": null, "playingTime": { "materialUnits": [ { @@ -12052,8 +10765,12 @@ } }, { - "pid": "870970-basis:51811925", - "genreAndForm": ["roman", "fantasy"], + "pid": "870970-basis:44227843", + "genreAndForm": [ + "roman", + "eventyrlige fortællinger", + "fantasy" + ], "source": ["Bibliotekskatalog"], "languages": { "main": [ @@ -12064,9 +10781,7 @@ ] }, "titles": { - "main": [ - "Harry Potter and the Philosopher's Stone (Ill. Jim Kay)" - ], + "main": ["Harry Potter and the philosopher's stone"], "original": [] }, "fictionNonfiction": { @@ -12089,348 +10804,140 @@ "publisher": ["Bloomsbury"], "identifiers": [ { - "value": "9781408845646" - } - ], - "contributors": [ - { - "display": "Jim Kay" + "value": "9780747532699" } ], + "contributors": [], "edition": { - "summary": "2015", - "publicationYear": { - "display": "2015" - } - }, - "dateFirstEdition": null, - "audience": { - "generalAudience": [] - }, - "physicalDescriptions": [ - { - "numberOfPages": 245, - "playingTime": { - "materialUnits": [ - { - "extent": null - } - ] - } - } - ], - "accessTypes": [ - { - "code": "PHYSICAL" - } - ], - "access": [ - { - "__typename": "InterLibraryLoan", - "loanIsPossible": true - } - ], - "shelfmark": { - "postfix": "Rowling", - "shelfmark": "83" - }, - "workYear": null - } - ], - "latest": { - "pid": "870970-basis:134987766", - "genreAndForm": ["roman", "fantasy"], - "source": ["Bibliotekskatalog"], - "languages": { - "main": [ - { - "display": "engelsk", - "isoCode": "eng" - } - ] - }, - "titles": { - "main": ["Harry Potter and the philosopher's stone"], - "original": [] - }, - "fictionNonfiction": { - "display": "skønlitteratur", - "code": "FICTION" - }, - "materialTypes": [ - { - "materialTypeSpecific": { - "display": "bog" - } - } - ], - "creators": [ - { - "display": "Joanne K. Rowling", - "__typename": "Person" - } - ], - "publisher": ["Bloomsbury"], - "identifiers": [ - { - "value": "9781526646651" - } - ], - "contributors": [ - { - "display": "Thomas Taylor" - } - ], - "edition": { - "summary": "Bloomsbury, silver anniversary edition 2022, 2022", - "publicationYear": { - "display": "2022" - } - }, - "dateFirstEdition": { - "display": "1997", - "year": 1997 - }, - "audience": { - "generalAudience": [] - }, - "physicalDescriptions": [ - { - "numberOfPages": 331, - "playingTime": null - } - ], - "accessTypes": [ - { - "code": "PHYSICAL" - } - ], - "access": [ - { - "__typename": "InterLibraryLoan", - "loanIsPossible": true - } - ], - "shelfmark": { - "postfix": "Rowling", - "shelfmark": "83" - }, - "workYear": { - "year": 1997 - } - }, - "bestRepresentation": { - "pid": "870970-basis:134987766", - "genreAndForm": ["roman", "fantasy"], - "source": ["Bibliotekskatalog"], - "languages": { - "main": [ - { - "display": "engelsk", - "isoCode": "eng" - } - ] - }, - "titles": { - "main": ["Harry Potter and the philosopher's stone"], - "original": [] - }, - "fictionNonfiction": { - "display": "skønlitteratur", - "code": "FICTION" - }, - "materialTypes": [ - { - "materialTypeSpecific": { - "display": "bog" - } - } - ], - "creators": [ - { - "display": "Joanne K. Rowling", - "__typename": "Person" - } - ], - "publisher": ["Bloomsbury"], - "identifiers": [ - { - "value": "9781526646651" - } - ], - "contributors": [ - { - "display": "Thomas Taylor" - } - ], - "edition": { - "summary": "Bloomsbury, silver anniversary edition 2022, 2022", - "publicationYear": { - "display": "2022" - } - }, - "dateFirstEdition": { - "display": "1997", - "year": 1997 - }, - "audience": { - "generalAudience": [] - }, - "physicalDescriptions": [ - { - "numberOfPages": 331, - "playingTime": null - } - ], - "accessTypes": [ - { - "code": "PHYSICAL" - } - ], - "access": [ - { - "__typename": "InterLibraryLoan", - "loanIsPossible": true - } - ], - "shelfmark": { - "postfix": "Rowling", - "shelfmark": "83" - }, - "workYear": { - "year": 1997 - } - } - } - }, - { - "workId": "work-of:870970-basis:42242098", - "titles": { - "full": ["Harry Potter and the goblet of fire"], - "original": [] - }, - "abstract": [ - "The Triwizard Tournament is to be held at Hogwarts. Only wizards who are over seventeen are allowed to enter - but that doesn't stop Harry dreaming that he will win the competition" - ], - "creators": [ - { - "display": "Joanne K. Rowling", - "__typename": "Person" - } - ], - "series": [ - { - "title": "Harry Potter (engelsk)", - "isPopular": true, - "readThisFirst": null, - "readThisWhenever": null, - "members": [ - { - "numberInSeries": "4", - "work": { - "workId": "work-of:870970-basis:22629344", - "titles": { - "main": ["Harry Potter og de vises sten"], - "full": ["Harry Potter og de vises sten"], - "original": ["Harry Potter and the philosopher's stone"] - } + "summary": "Bloomsbury, New edition 2000, 2000", + "publicationYear": { + "display": "2000" } }, - { - "numberInSeries": "4", - "work": { - "workId": "work-of:870970-basis:22677780", - "titles": { - "main": ["Harry Potter og Hemmelighedernes Kammer"], - "full": ["Harry Potter og Hemmelighedernes Kammer"], - "original": ["Harry Potter and the Chamber of Secrets"] - } - } + "dateFirstEdition": { + "display": "1997", + "year": 1997 }, - { - "numberInSeries": "4", - "work": { - "workId": "work-of:870970-basis:22995154", - "titles": { - "main": ["Harry Potter og fangen fra Azkaban"], - "full": ["Harry Potter og fangen fra Azkaban"], - "original": ["Harry Potter and the prisoner of Azkaban"] - } - } + "audience": { + "generalAudience": [] }, - { - "numberInSeries": "4", - "work": { - "workId": "work-of:870970-basis:23540703", - "titles": { - "main": ["Harry Potter og Flammernes Pokal"], - "full": ["Harry Potter og Flammernes Pokal"], - "original": ["Harry Potter and the goblet of fire"] + "physicalDescriptions": [ + { + "numberOfPages": 223, + "playingTime": { + "materialUnits": [ + { + "extent": null + } + ] } } - }, - { - "numberInSeries": "4", - "work": { - "workId": "work-of:870970-basis:25245784", - "titles": { - "main": ["Harry Potter og Fønixordenen"], - "full": ["Harry Potter og Fønixordenen"], - "original": ["Harry Potter and the Order of the Phoenix"] - } + ], + "accessTypes": [ + { + "code": "PHYSICAL" + } + ], + "access": [ + { + "__typename": "InterLibraryLoan", + "loanIsPossible": true } + ], + "shelfmark": { + "postfix": "Rowling", + "shelfmark": "83" }, - { - "numberInSeries": "4", - "work": { - "workId": "work-of:870970-basis:25807995", - "titles": { - "main": ["Harry Potter og halvblodsprinsen"], - "full": ["Harry Potter og halvblodsprinsen"], - "original": ["Harry Potter and the half-blood prince"] + "workYear": { + "year": 1997 + } + }, + { + "pid": "870970-basis:44513323", + "genreAndForm": ["eventyrlige fortællinger"], + "source": ["Bibliotekskatalog"], + "languages": { + "main": [ + { + "display": "engelsk", + "isoCode": "eng" } - } + ] }, - { - "numberInSeries": "4", - "work": { - "workId": "work-of:870970-basis:27267912", - "titles": { - "main": ["Harry Potter og dødsregalierne"], - "full": ["Harry Potter og dødsregalierne"], - "original": ["Harry Potter and the deathly hallows"] + "titles": { + "main": ["Harry Potter and the philosopher's stone"], + "original": [] + }, + "fictionNonfiction": { + "display": "skønlitteratur", + "code": "FICTION" + }, + "materialTypes": [ + { + "materialTypeSpecific": { + "display": "bog" } } + ], + "creators": [ + { + "display": "Joanne K. Rowling", + "__typename": "Person" + } + ], + "publisher": ["Bloomsbury"], + "identifiers": [ + { + "value": "0-7475-7360-3" + } + ], + "contributors": [], + "edition": { + "summary": "Adult edition, 2004", + "publicationYear": { + "display": "2004" + } }, - { - "numberInSeries": "4", - "work": { - "workId": "work-of:870970-basis:52646251", - "titles": { - "main": ["Harry Potter og det forbandede barn"], - "full": [ - "Harry Potter og det forbandede barn : del et & to" - ], - "original": ["Harry Potter and the cursed child"] + "dateFirstEdition": { + "display": "1997", + "year": 1997 + }, + "audience": { + "generalAudience": [] + }, + "physicalDescriptions": [ + { + "numberOfPages": 224, + "playingTime": { + "materialUnits": [ + { + "extent": null + } + ] } } + ], + "accessTypes": [ + { + "code": "PHYSICAL" + } + ], + "access": [ + { + "__typename": "InterLibraryLoan", + "loanIsPossible": true + } + ], + "shelfmark": { + "postfix": "Rowling", + "shelfmark": "83" + }, + "workYear": { + "year": 1997 } - ] - } - ], - "workYear": { - "year": 2000 - }, - "genreAndForm": [ - "roman", - "eventyrlige fortællinger", - "fantasy", - "romaner" - ], - "manifestations": { - "all": [ + }, { - "pid": "870970-basis:24047571", + "pid": "870970-basis:44815702", "genreAndForm": ["roman"], "source": ["Bibliotekskatalog"], "languages": { @@ -12442,7 +10949,9 @@ ] }, "titles": { - "main": ["Harry Potter and the goblet of fire"], + "main": [ + "Harry Potter and the philosopher's stone (Ved Stephen Fry)" + ], "original": [] }, "fictionNonfiction": { @@ -12452,7 +10961,7 @@ "materialTypes": [ { "materialTypeSpecific": { - "display": "lydbog (bånd)" + "display": "lydbog (cd)" } } ], @@ -12466,22 +10975,28 @@ "__typename": "Person" } ], - "publisher": ["Cover to Cover"], + "publisher": ["HNP"], "identifiers": [ { - "value": "1-85549-880-4" + "value": "9781907545016" + }, + { + "value": "9781907545009" + }, + { + "value": "9781408882221" } ], "contributors": [], "edition": { - "summary": "DBC (dist.), 2002", + "summary": "HNP, 1999", "publicationYear": { - "display": "2002" + "display": "1999" } }, "dateFirstEdition": { - "display": "2000", - "year": 2000 + "display": "1997", + "year": 1997 }, "audience": { "generalAudience": [] @@ -12514,12 +11029,12 @@ "shelfmark": "83" }, "workYear": { - "year": 2000 + "year": 1997 } }, { - "pid": "870970-basis:25699793", - "genreAndForm": ["roman"], + "pid": "870970-basis:44931885", + "genreAndForm": ["roman", "eventyrlige fortællinger"], "source": ["Bibliotekskatalog"], "languages": { "main": [ @@ -12530,7 +11045,7 @@ ] }, "titles": { - "main": ["Harry Potter and the goblet of fire"], + "main": ["Harry Potter and the philosopher's stone"], "original": [] }, "fictionNonfiction": { @@ -12540,7 +11055,7 @@ "materialTypes": [ { "materialTypeSpecific": { - "display": "lydbog (bånd)" + "display": "bog" } } ], @@ -12548,39 +11063,31 @@ { "display": "Joanne K. Rowling", "__typename": "Person" - }, - { - "display": "Stephen Fry", - "__typename": "Person" } ], - "publisher": ["Danmarks Blindebibliotek"], + "publisher": ["Bloomsbury"], "identifiers": [ { - "value": "Best.nr. 15616" - } - ], - "contributors": [ - { - "display": "Stephen Fry" + "value": "9781408810545" } ], + "contributors": [], "edition": { - "summary": "2005", + "summary": "Signature edition, 2010", "publicationYear": { - "display": "2005" + "display": "2010" } }, "dateFirstEdition": { - "display": "2000", - "year": 2000 + "display": "1997", + "year": 1997 }, "audience": { "generalAudience": [] }, "physicalDescriptions": [ { - "numberOfPages": null, + "numberOfPages": 223, "playingTime": { "materialUnits": [ { @@ -12606,12 +11113,12 @@ "shelfmark": "83" }, "workYear": { - "year": 2000 + "year": 1997 } }, { - "pid": "870970-basis:27925340", - "genreAndForm": ["roman", "eventyrlige fortællinger"], + "pid": "870970-basis:45654222", + "genreAndForm": ["roman", "fantasy"], "source": ["Bibliotekskatalog"], "languages": { "main": [ @@ -12622,7 +11129,7 @@ ] }, "titles": { - "main": ["Harry Potter and the goblet of fire"], + "main": ["Harry Potter and the philosopher's stone"], "original": [] }, "fictionNonfiction": { @@ -12645,26 +11152,29 @@ "publisher": ["Bloomsbury"], "identifiers": [ { - "value": "9780747574507" + "value": "9781408855652" + }, + { + "value": "9781408855898" } ], "contributors": [], "edition": { - "summary": "Bloomsbury paperbacks, 2004", + "summary": "Bloomsbury, new edition 2014, 2014", "publicationYear": { - "display": "2004" + "display": "2014" } }, "dateFirstEdition": { - "display": "2000", - "year": 2000 + "display": "1997", + "year": 1997 }, "audience": { "generalAudience": [] }, "physicalDescriptions": [ { - "numberOfPages": 796, + "numberOfPages": 331, "playingTime": { "materialUnits": [ { @@ -12690,12 +11200,12 @@ "shelfmark": "83" }, "workYear": { - "year": 2000 + "year": 1997 } }, { - "pid": "870970-basis:42242098", - "genreAndForm": ["roman", "eventyrlige fortællinger"], + "pid": "870970-basis:51811925", + "genreAndForm": ["roman", "fantasy"], "source": ["Bibliotekskatalog"], "languages": { "main": [ @@ -12706,7 +11216,9 @@ ] }, "titles": { - "main": ["Harry Potter and the goblet of fire"], + "main": [ + "Harry Potter and the Philosopher's Stone (Ill. Jim Kay)" + ], "original": [] }, "fictionNonfiction": { @@ -12729,32 +11241,27 @@ "publisher": ["Bloomsbury"], "identifiers": [ { - "value": "0-7475-4971-0" - }, - { - "value": "0-7475-4624-X" - }, + "value": "9781408845646" + } + ], + "contributors": [ { - "value": "0-7475-5362-9" + "display": "Jim Kay" } ], - "contributors": [], "edition": { - "summary": "1. edition, 2000", + "summary": "2015", "publicationYear": { - "display": "2000" + "display": "2015" } }, - "dateFirstEdition": { - "display": "2000", - "year": 2000 - }, + "dateFirstEdition": null, "audience": { "generalAudience": [] }, "physicalDescriptions": [ { - "numberOfPages": 636, + "numberOfPages": 245, "playingTime": { "materialUnits": [ { @@ -12779,191 +11286,303 @@ "postfix": "Rowling", "shelfmark": "83" }, - "workYear": { - "year": 2000 + "workYear": null + } + ], + "latest": { + "pid": "870970-basis:134987766", + "genreAndForm": ["roman", "fantasy"], + "source": ["Bibliotekskatalog"], + "languages": { + "main": [ + { + "display": "engelsk", + "isoCode": "eng" + } + ] + }, + "titles": { + "main": ["Harry Potter and the philosopher's stone"], + "original": [] + }, + "fictionNonfiction": { + "display": "skønlitteratur", + "code": "FICTION" + }, + "materialTypes": [ + { + "materialTypeSpecific": { + "display": "bog" + } + } + ], + "creators": [ + { + "display": "Joanne K. Rowling", + "__typename": "Person" + } + ], + "publisher": ["Bloomsbury"], + "identifiers": [ + { + "value": "9781526646651" + } + ], + "contributors": [ + { + "display": "Thomas Taylor" + } + ], + "edition": { + "summary": "Bloomsbury, silver anniversary edition 2022, 2022", + "publicationYear": { + "display": "2022" } }, - { - "pid": "870970-basis:42259705", - "genreAndForm": [ - "roman", - "eventyrlige fortællinger", - "fantasy" - ], - "source": ["Bibliotekskatalog"], - "languages": { - "main": [ - { - "display": "engelsk", - "isoCode": "eng" + "dateFirstEdition": { + "display": "1997", + "year": 1997 + }, + "audience": { + "generalAudience": [] + }, + "physicalDescriptions": [ + { + "numberOfPages": 331, + "playingTime": null + } + ], + "accessTypes": [ + { + "code": "PHYSICAL" + } + ], + "access": [ + { + "__typename": "InterLibraryLoan", + "loanIsPossible": true + } + ], + "shelfmark": { + "postfix": "Rowling", + "shelfmark": "83" + }, + "workYear": { + "year": 1997 + } + }, + "bestRepresentation": { + "pid": "870970-basis:134987766", + "genreAndForm": ["roman", "fantasy"], + "source": ["Bibliotekskatalog"], + "languages": { + "main": [ + { + "display": "engelsk", + "isoCode": "eng" + } + ] + }, + "titles": { + "main": ["Harry Potter and the philosopher's stone"], + "original": [] + }, + "fictionNonfiction": { + "display": "skønlitteratur", + "code": "FICTION" + }, + "materialTypes": [ + { + "materialTypeSpecific": { + "display": "bog" + } + } + ], + "creators": [ + { + "display": "Joanne K. Rowling", + "__typename": "Person" + } + ], + "publisher": ["Bloomsbury"], + "identifiers": [ + { + "value": "9781526646651" + } + ], + "contributors": [ + { + "display": "Thomas Taylor" + } + ], + "edition": { + "summary": "Bloomsbury, silver anniversary edition 2022, 2022", + "publicationYear": { + "display": "2022" + } + }, + "dateFirstEdition": { + "display": "1997", + "year": 1997 + }, + "audience": { + "generalAudience": [] + }, + "physicalDescriptions": [ + { + "numberOfPages": 331, + "playingTime": null + } + ], + "accessTypes": [ + { + "code": "PHYSICAL" + } + ], + "access": [ + { + "__typename": "InterLibraryLoan", + "loanIsPossible": true + } + ], + "shelfmark": { + "postfix": "Rowling", + "shelfmark": "83" + }, + "workYear": { + "year": 1997 + } + } + } + }, + { + "workId": "work-of:870970-basis:42242098", + "titles": { + "full": ["Harry Potter and the goblet of fire"], + "original": [] + }, + "abstract": [ + "The Triwizard Tournament is to be held at Hogwarts. Only wizards who are over seventeen are allowed to enter - but that doesn't stop Harry dreaming that he will win the competition" + ], + "creators": [ + { + "display": "Joanne K. Rowling", + "__typename": "Person" + } + ], + "series": [ + { + "title": "Harry Potter (engelsk)", + "isPopular": true, + "readThisFirst": null, + "readThisWhenever": null, + "members": [ + { + "numberInSeries": "4", + "work": { + "workId": "work-of:870970-basis:22629344", + "titles": { + "main": ["Harry Potter og de vises sten"], + "full": ["Harry Potter og de vises sten"], + "original": ["Harry Potter and the philosopher's stone"] } - ] - }, - "titles": { - "main": ["Harry Potter and the Goblet of Fire"], - "original": [] - }, - "fictionNonfiction": { - "display": "skønlitteratur", - "code": "FICTION" + } }, - "materialTypes": [ - { - "materialTypeSpecific": { - "display": "bog" + { + "numberInSeries": "4", + "work": { + "workId": "work-of:870970-basis:22677780", + "titles": { + "main": ["Harry Potter og Hemmelighedernes Kammer"], + "full": ["Harry Potter og Hemmelighedernes Kammer"], + "original": ["Harry Potter and the Chamber of Secrets"] } } - ], - "creators": [ - { - "display": "Joanne K. Rowling", - "__typename": "Person" - } - ], - "publisher": ["Levine"], - "identifiers": [ - { - "value": "0-439-13959-7" - }, - { - "value": "9780439139595" - } - ], - "contributors": [], - "edition": { - "summary": "Levine, 2000", - "publicationYear": { - "display": "2000" - } - }, - "dateFirstEdition": { - "display": "2000", - "year": 2000 - }, - "audience": { - "generalAudience": [] }, - "physicalDescriptions": [ - { - "numberOfPages": 734, - "playingTime": { - "materialUnits": [ - { - "extent": null - } - ] + { + "numberInSeries": "4", + "work": { + "workId": "work-of:870970-basis:22995154", + "titles": { + "main": ["Harry Potter og fangen fra Azkaban"], + "full": ["Harry Potter og fangen fra Azkaban"], + "original": ["Harry Potter and the prisoner of Azkaban"] } } - ], - "accessTypes": [ - { - "code": "PHYSICAL" - } - ], - "access": [ - { - "__typename": "InterLibraryLoan", - "loanIsPossible": true - } - ], - "shelfmark": { - "postfix": "Rowling", - "shelfmark": "83" }, - "workYear": { - "year": 2000 - } - }, - { - "pid": "870970-basis:42372544", - "genreAndForm": ["roman"], - "source": ["Bibliotekskatalog"], - "languages": { - "main": [ - { - "display": "engelsk", - "isoCode": "eng" + { + "numberInSeries": "4", + "work": { + "workId": "work-of:870970-basis:23540703", + "titles": { + "main": ["Harry Potter og Flammernes Pokal"], + "full": ["Harry Potter og Flammernes Pokal"], + "original": ["Harry Potter and the goblet of fire"] } - ] - }, - "titles": { - "main": ["Harry Potter and the goblet of fire"], - "original": [] - }, - "fictionNonfiction": { - "display": "skønlitteratur", - "code": "FICTION" + } }, - "materialTypes": [ - { - "materialTypeSpecific": { - "display": "lydbog (cd)" + { + "numberInSeries": "4", + "work": { + "workId": "work-of:870970-basis:25245784", + "titles": { + "main": ["Harry Potter og Fønixordenen"], + "full": ["Harry Potter og Fønixordenen"], + "original": ["Harry Potter and the Order of the Phoenix"] } } - ], - "creators": [ - { - "display": "Joanne K. Rowling", - "__typename": "Person" - }, - { - "display": "Jim Dale", - "__typename": "Person" - } - ], - "publisher": ["Random House"], - "identifiers": [ - { - "value": "0-8072-8259-6" - } - ], - "contributors": [], - "edition": { - "summary": "2000", - "publicationYear": { - "display": "2000" - } - }, - "dateFirstEdition": { - "display": "2000", - "year": 2000 - }, - "audience": { - "generalAudience": [] }, - "physicalDescriptions": [ - { - "numberOfPages": null, - "playingTime": { - "materialUnits": [ - { - "extent": null - } - ] + { + "numberInSeries": "4", + "work": { + "workId": "work-of:870970-basis:25807995", + "titles": { + "main": ["Harry Potter og halvblodsprinsen"], + "full": ["Harry Potter og halvblodsprinsen"], + "original": ["Harry Potter and the half-blood prince"] } } - ], - "accessTypes": [ - { - "code": "PHYSICAL" - } - ], - "access": [ - { - "__typename": "InterLibraryLoan", - "loanIsPossible": true + }, + { + "numberInSeries": "4", + "work": { + "workId": "work-of:870970-basis:27267912", + "titles": { + "main": ["Harry Potter og dødsregalierne"], + "full": ["Harry Potter og dødsregalierne"], + "original": ["Harry Potter and the deathly hallows"] + } } - ], - "shelfmark": { - "postfix": "Rowling", - "shelfmark": "83" }, - "workYear": { - "year": 2000 + { + "numberInSeries": "4", + "work": { + "workId": "work-of:870970-basis:52646251", + "titles": { + "main": ["Harry Potter og det forbandede barn"], + "full": [ + "Harry Potter og det forbandede barn : del et & to" + ], + "original": ["Harry Potter and the cursed child"] + } + } } - }, + ] + } + ], + "workYear": { + "year": 2000 + }, + "genreAndForm": [ + "roman", + "eventyrlige fortællinger", + "fantasy", + "romaner" + ], + "manifestations": { + "all": [ { - "pid": "870970-basis:42427616", + "pid": "870970-basis:24047571", "genreAndForm": ["roman"], "source": ["Bibliotekskatalog"], "languages": { @@ -12975,9 +11594,7 @@ ] }, "titles": { - "main": [ - "Harry Potter and the goblet of fire (Ved Stephen Fry)" - ], + "main": ["Harry Potter and the goblet of fire"], "original": [] }, "fictionNonfiction": { @@ -13009,9 +11626,9 @@ ], "contributors": [], "edition": { - "summary": "2001", + "summary": "DBC (dist.), 2002", "publicationYear": { - "display": "2001" + "display": "2002" } }, "dateFirstEdition": { @@ -13053,7 +11670,7 @@ } }, { - "pid": "870970-basis:42465089", + "pid": "870970-basis:25699793", "genreAndForm": ["roman"], "source": ["Bibliotekskatalog"], "languages": { @@ -13065,9 +11682,7 @@ ] }, "titles": { - "main": [ - "Harry Potter and the goblet of fire (Ved Stephen Fry)" - ], + "main": ["Harry Potter and the goblet of fire"], "original": [] }, "fictionNonfiction": { @@ -13077,7 +11692,7 @@ "materialTypes": [ { "materialTypeSpecific": { - "display": "lydbog (cd)" + "display": "lydbog (bånd)" } } ], @@ -13091,17 +11706,21 @@ "__typename": "Person" } ], - "publisher": ["Cover to Cover"], + "publisher": ["Danmarks Blindebibliotek"], "identifiers": [ { - "value": "1-85549-677-1" + "value": "Best.nr. 15616" + } + ], + "contributors": [ + { + "display": "Stephen Fry" } ], - "contributors": [], "edition": { - "summary": "2001", + "summary": "2005", "publicationYear": { - "display": "2001" + "display": "2005" } }, "dateFirstEdition": { @@ -13143,7 +11762,7 @@ } }, { - "pid": "870970-basis:42946370", + "pid": "870970-basis:27925340", "genreAndForm": ["roman", "eventyrlige fortællinger"], "source": ["Bibliotekskatalog"], "languages": { @@ -13178,14 +11797,14 @@ "publisher": ["Bloomsbury"], "identifiers": [ { - "value": "0-7475-5442-0" + "value": "9780747574507" } ], "contributors": [], "edition": { - "summary": "Paperback edition, 2001", + "summary": "Bloomsbury paperbacks, 2004", "publicationYear": { - "display": "2001" + "display": "2004" } }, "dateFirstEdition": { @@ -13227,7 +11846,7 @@ } }, { - "pid": "870970-basis:43072978", + "pid": "870970-basis:42242098", "genreAndForm": ["roman", "eventyrlige fortællinger"], "source": ["Bibliotekskatalog"], "languages": { @@ -13262,15 +11881,18 @@ "publisher": ["Bloomsbury"], "identifiers": [ { - "value": "0-7475-5701-2" + "value": "0-7475-4971-0" }, { - "value": "0-7475-5099-9" + "value": "0-7475-4624-X" + }, + { + "value": "0-7475-5362-9" } ], "contributors": [], "edition": { - "summary": "Bloomsbury, New pbk. edition 2002, 2000", + "summary": "1. edition, 2000", "publicationYear": { "display": "2000" } @@ -13314,8 +11936,12 @@ } }, { - "pid": "870970-basis:43072986", - "genreAndForm": ["roman", "eventyrlige fortællinger"], + "pid": "870970-basis:42259705", + "genreAndForm": [ + "roman", + "eventyrlige fortællinger", + "fantasy" + ], "source": ["Bibliotekskatalog"], "languages": { "main": [ @@ -13326,7 +11952,7 @@ ] }, "titles": { - "main": ["Harry Potter and the goblet of fire"], + "main": ["Harry Potter and the Goblet of Fire"], "original": [] }, "fictionNonfiction": { @@ -13346,20 +11972,20 @@ "__typename": "Person" } ], - "publisher": ["Bloomsbury"], + "publisher": ["Levine"], "identifiers": [ { - "value": "0-7475-6000-5" + "value": "0-439-13959-7" }, { - "value": "0-7475-5079-4" + "value": "9780439139595" } ], "contributors": [], "edition": { - "summary": "2001", + "summary": "Levine, 2000", "publicationYear": { - "display": "2001" + "display": "2000" } }, "dateFirstEdition": { @@ -13371,7 +11997,7 @@ }, "physicalDescriptions": [ { - "numberOfPages": 636, + "numberOfPages": 734, "playingTime": { "materialUnits": [ { @@ -13401,7 +12027,7 @@ } }, { - "pid": "870970-basis:43903969", + "pid": "870970-basis:42372544", "genreAndForm": ["roman"], "source": ["Bibliotekskatalog"], "languages": { @@ -13413,9 +12039,7 @@ ] }, "titles": { - "main": [ - "Harry Potter and the goblet of fire (Ved Stephen Fry)" - ], + "main": ["Harry Potter and the goblet of fire"], "original": [] }, "fictionNonfiction": { @@ -13435,14 +12059,14 @@ "__typename": "Person" }, { - "display": "Stephen Fry", + "display": "Jim Dale", "__typename": "Person" } ], - "publisher": ["Cover to Cover"], + "publisher": ["Random House"], "identifiers": [ { - "value": "1-85549-634-8" + "value": "0-8072-8259-6" } ], "contributors": [], @@ -13491,8 +12115,8 @@ } }, { - "pid": "870970-basis:44050889", - "genreAndForm": ["roman", "eventyrlige fortællinger"], + "pid": "870970-basis:42427616", + "genreAndForm": ["roman"], "source": ["Bibliotekskatalog"], "languages": { "main": [ @@ -13503,7 +12127,9 @@ ] }, "titles": { - "main": ["Harry Potter and the goblet of fire"], + "main": [ + "Harry Potter and the goblet of fire (Ved Stephen Fry)" + ], "original": [] }, "fictionNonfiction": { @@ -13513,7 +12139,7 @@ "materialTypes": [ { "materialTypeSpecific": { - "display": "bog" + "display": "lydbog (bånd)" } } ], @@ -13521,19 +12147,23 @@ { "display": "Joanne K. Rowling", "__typename": "Person" + }, + { + "display": "Stephen Fry", + "__typename": "Person" } ], - "publisher": ["Bloomsbury"], + "publisher": ["Cover to Cover"], "identifiers": [ { - "value": "0-7475-7363-8" + "value": "1-85549-880-4" } ], "contributors": [], "edition": { - "summary": "New edition 2004, 2004", + "summary": "2001", "publicationYear": { - "display": "2004" + "display": "2001" } }, "dateFirstEdition": { @@ -13545,7 +12175,7 @@ }, "physicalDescriptions": [ { - "numberOfPages": 636, + "numberOfPages": null, "playingTime": { "materialUnits": [ { @@ -13575,12 +12205,8 @@ } }, { - "pid": "870970-basis:44227851", - "genreAndForm": [ - "roman", - "eventyrlige fortællinger", - "fantasy" - ], + "pid": "870970-basis:42465089", + "genreAndForm": ["roman"], "source": ["Bibliotekskatalog"], "languages": { "main": [ @@ -13591,7 +12217,9 @@ ] }, "titles": { - "main": ["Harry Potter and the goblet of fire"], + "main": [ + "Harry Potter and the goblet of fire (Ved Stephen Fry)" + ], "original": [] }, "fictionNonfiction": { @@ -13601,7 +12229,7 @@ "materialTypes": [ { "materialTypeSpecific": { - "display": "bog" + "display": "lydbog (cd)" } } ], @@ -13609,19 +12237,23 @@ { "display": "Joanne K. Rowling", "__typename": "Person" + }, + { + "display": "Stephen Fry", + "__typename": "Person" } ], - "publisher": ["Bloomsbury"], + "publisher": ["Cover to Cover"], "identifiers": [ { - "value": "9780747546245" + "value": "1-85549-677-1" } ], "contributors": [], "edition": { - "summary": "New edition 2003, 2003", + "summary": "2001", "publicationYear": { - "display": "2003" + "display": "2001" } }, "dateFirstEdition": { @@ -13633,7 +12265,7 @@ }, "physicalDescriptions": [ { - "numberOfPages": 636, + "numberOfPages": null, "playingTime": { "materialUnits": [ { @@ -13663,8 +12295,8 @@ } }, { - "pid": "870970-basis:44279274", - "genreAndForm": ["roman"], + "pid": "870970-basis:42946370", + "genreAndForm": ["roman", "eventyrlige fortællinger"], "source": ["Bibliotekskatalog"], "languages": { "main": [ @@ -13675,9 +12307,7 @@ ] }, "titles": { - "main": [ - "Harry Potter and the goblet of fire (Ved Stephen Fry)" - ], + "main": ["Harry Potter and the goblet of fire"], "original": [] }, "fictionNonfiction": { @@ -13687,7 +12317,7 @@ "materialTypes": [ { "materialTypeSpecific": { - "display": "lydbog (cd)" + "display": "bog" } } ], @@ -13697,31 +12327,15 @@ "__typename": "Person" } ], - "publisher": ["HNP", "Bloomsbury"], + "publisher": ["Bloomsbury"], "identifiers": [ { - "value": "9781408882276" - }, - { - "value": "9780747587088" - }, - { - "value": "9780747587040" - }, - { - "value": "9781408824108" - }, - { - "value": "9781408821589" - } - ], - "contributors": [ - { - "display": "Stephen Fry" + "value": "0-7475-5442-0" } ], + "contributors": [], "edition": { - "summary": "HNP, Bloomsbury, 2001", + "summary": "Paperback edition, 2001", "publicationYear": { "display": "2001" } @@ -13735,7 +12349,7 @@ }, "physicalDescriptions": [ { - "numberOfPages": null, + "numberOfPages": 796, "playingTime": { "materialUnits": [ { @@ -13765,7 +12379,7 @@ } }, { - "pid": "870970-basis:44931877", + "pid": "870970-basis:43072978", "genreAndForm": ["roman", "eventyrlige fortællinger"], "source": ["Bibliotekskatalog"], "languages": { @@ -13800,14 +12414,17 @@ "publisher": ["Bloomsbury"], "identifiers": [ { - "value": "9781408810576" + "value": "0-7475-5701-2" + }, + { + "value": "0-7475-5099-9" } ], "contributors": [], "edition": { - "summary": "Signature edition, 2010", + "summary": "Bloomsbury, New pbk. edition 2002, 2000", "publicationYear": { - "display": "2010" + "display": "2000" } }, "dateFirstEdition": { @@ -13849,8 +12466,8 @@ } }, { - "pid": "870970-basis:45293807", - "genreAndForm": ["roman", "fantasy"], + "pid": "870970-basis:43072986", + "genreAndForm": ["roman", "eventyrlige fortællinger"], "source": ["Bibliotekskatalog"], "languages": { "main": [ @@ -13884,14 +12501,17 @@ "publisher": ["Bloomsbury"], "identifiers": [ { - "value": "9780747582380" + "value": "0-7475-6000-5" + }, + { + "value": "0-7475-5079-4" } ], "contributors": [], "edition": { - "summary": "Bloomsbury, new pbk. edition 2005, 2005", + "summary": "2001", "publicationYear": { - "display": "2005" + "display": "2001" } }, "dateFirstEdition": { @@ -13933,8 +12553,8 @@ } }, { - "pid": "870970-basis:45654249", - "genreAndForm": ["roman", "fantasy"], + "pid": "870970-basis:43903969", + "genreAndForm": ["roman"], "source": ["Bibliotekskatalog"], "languages": { "main": [ @@ -13945,7 +12565,9 @@ ] }, "titles": { - "main": ["Harry Potter and the goblet of fire"], + "main": [ + "Harry Potter and the goblet of fire (Ved Stephen Fry)" + ], "original": [] }, "fictionNonfiction": { @@ -13955,7 +12577,7 @@ "materialTypes": [ { "materialTypeSpecific": { - "display": "bog" + "display": "lydbog (cd)" } } ], @@ -13963,22 +12585,23 @@ { "display": "Joanne K. Rowling", "__typename": "Person" + }, + { + "display": "Stephen Fry", + "__typename": "Person" } ], - "publisher": ["Bloomsbury"], + "publisher": ["Cover to Cover"], "identifiers": [ { - "value": "9781408855683" - }, - { - "value": "9781408855928" + "value": "1-85549-634-8" } ], "contributors": [], "edition": { - "summary": "Bloomsbury, Pbk. edition 2014, 2014", + "summary": "2000", "publicationYear": { - "display": "2014" + "display": "2000" } }, "dateFirstEdition": { @@ -13990,7 +12613,7 @@ }, "physicalDescriptions": [ { - "numberOfPages": 616, + "numberOfPages": null, "playingTime": { "materialUnits": [ { @@ -14020,8 +12643,8 @@ } }, { - "pid": "870970-basis:45671003", - "genreAndForm": ["roman"], + "pid": "870970-basis:44050889", + "genreAndForm": ["roman", "eventyrlige fortællinger"], "source": ["Bibliotekskatalog"], "languages": { "main": [ @@ -14032,7 +12655,7 @@ ] }, "titles": { - "main": ["Harry Potter and the Goblet of fire"], + "main": ["Harry Potter and the goblet of fire"], "original": [] }, "fictionNonfiction": { @@ -14042,7 +12665,7 @@ "materialTypes": [ { "materialTypeSpecific": { - "display": "lydbog (cd)" + "display": "bog" } } ], @@ -14055,18 +12678,14 @@ "publisher": ["Bloomsbury"], "identifiers": [ { - "value": "9781408821589" - } - ], - "contributors": [ - { - "display": "Stephen Fry" + "value": "0-7475-7363-8" } ], + "contributors": [], "edition": { - "summary": "2001", + "summary": "New edition 2004, 2004", "publicationYear": { - "display": "2001" + "display": "2004" } }, "dateFirstEdition": { @@ -14078,7 +12697,7 @@ }, "physicalDescriptions": [ { - "numberOfPages": null, + "numberOfPages": 636, "playingTime": { "materialUnits": [ { @@ -14101,15 +12720,19 @@ ], "shelfmark": { "postfix": "Rowling", - "shelfmark": "Uden klassemærke" + "shelfmark": "83" }, "workYear": { "year": 2000 } }, { - "pid": "870970-basis:45943429", - "genreAndForm": ["roman", "eventyrlige fortællinger"], + "pid": "870970-basis:44227851", + "genreAndForm": [ + "roman", + "eventyrlige fortællinger", + "fantasy" + ], "source": ["Bibliotekskatalog"], "languages": { "main": [ @@ -14140,21 +12763,17 @@ "__typename": "Person" } ], - "publisher": ["Scholastic"], + "publisher": ["Bloomsbury"], "identifiers": [ { - "value": "9780439139601" - } - ], - "contributors": [ - { - "display": "Mary Grandpré" + "value": "9780747546245" } ], + "contributors": [], "edition": { - "summary": "1. Scholastic trade paperback, 2002", + "summary": "New edition 2003, 2003", "publicationYear": { - "display": "2002" + "display": "2003" } }, "dateFirstEdition": { @@ -14166,7 +12785,7 @@ }, "physicalDescriptions": [ { - "numberOfPages": 745, + "numberOfPages": 636, "playingTime": { "materialUnits": [ { @@ -14196,8 +12815,8 @@ } }, { - "pid": "870970-basis:47086868", - "genreAndForm": ["roman", "fantasy"], + "pid": "870970-basis:44279274", + "genreAndForm": ["roman"], "source": ["Bibliotekskatalog"], "languages": { "main": [ @@ -14209,7 +12828,7 @@ }, "titles": { "main": [ - "Harry Potter and the goblet of fire (Ill. Jim Kay)" + "Harry Potter and the goblet of fire (Ved Stephen Fry)" ], "original": [] }, @@ -14220,7 +12839,7 @@ "materialTypes": [ { "materialTypeSpecific": { - "display": "bog" + "display": "lydbog (cd)" } } ], @@ -14230,21 +12849,33 @@ "__typename": "Person" } ], - "publisher": ["Bloomsbury Children's Books"], + "publisher": ["HNP", "Bloomsbury"], "identifiers": [ { - "value": "9781408845677" + "value": "9781408882276" + }, + { + "value": "9780747587088" + }, + { + "value": "9780747587040" + }, + { + "value": "9781408824108" + }, + { + "value": "9781408821589" } ], "contributors": [ { - "display": "Jim Kay" + "display": "Stephen Fry" } ], "edition": { - "summary": "2019", + "summary": "HNP, Bloomsbury, 2001", "publicationYear": { - "display": "2019" + "display": "2001" } }, "dateFirstEdition": { @@ -14256,7 +12887,7 @@ }, "physicalDescriptions": [ { - "numberOfPages": 450, + "numberOfPages": null, "playingTime": { "materialUnits": [ { @@ -14284,304 +12915,178 @@ "workYear": { "year": 2000 } - } - ], - "latest": { - "pid": "870970-basis:47086868", - "genreAndForm": ["roman", "fantasy"], - "source": ["Bibliotekskatalog"], - "languages": { - "main": [ - { - "display": "engelsk", - "isoCode": "eng" - } - ] - }, - "titles": { - "main": ["Harry Potter and the goblet of fire (Ill. Jim Kay)"], - "original": [] - }, - "fictionNonfiction": { - "display": "skønlitteratur", - "code": "FICTION" }, - "materialTypes": [ - { - "materialTypeSpecific": { - "display": "bog" + { + "pid": "870970-basis:44931877", + "genreAndForm": ["roman", "eventyrlige fortællinger"], + "source": ["Bibliotekskatalog"], + "languages": { + "main": [ + { + "display": "engelsk", + "isoCode": "eng" + } + ] + }, + "titles": { + "main": ["Harry Potter and the goblet of fire"], + "original": [] + }, + "fictionNonfiction": { + "display": "skønlitteratur", + "code": "FICTION" + }, + "materialTypes": [ + { + "materialTypeSpecific": { + "display": "bog" + } } - } - ], - "creators": [ - { - "display": "Joanne K. Rowling", - "__typename": "Person" - } - ], - "publisher": ["Bloomsbury Children's Books"], - "identifiers": [ - { - "value": "9781408845677" - } - ], - "contributors": [ - { - "display": "Jim Kay" - } - ], - "edition": { - "summary": "2019", - "publicationYear": { - "display": "2019" - } - }, - "dateFirstEdition": { - "display": "2000", - "year": 2000 - }, - "audience": { - "generalAudience": [] - }, - "physicalDescriptions": [ - { - "numberOfPages": 450, - "playingTime": null - } - ], - "accessTypes": [ - { - "code": "PHYSICAL" - } - ], - "access": [ - { - "__typename": "InterLibraryLoan", - "loanIsPossible": true - } - ], - "shelfmark": { - "postfix": "Rowling", - "shelfmark": "83" - }, - "workYear": { - "year": 2000 - } - }, - "bestRepresentation": { - "pid": "870970-basis:47086868", - "genreAndForm": ["roman", "fantasy"], - "source": ["Bibliotekskatalog"], - "languages": { - "main": [ + ], + "creators": [ { - "display": "engelsk", - "isoCode": "eng" + "display": "Joanne K. Rowling", + "__typename": "Person" } - ] - }, - "titles": { - "main": ["Harry Potter and the goblet of fire (Ill. Jim Kay)"], - "original": [] - }, - "fictionNonfiction": { - "display": "skønlitteratur", - "code": "FICTION" - }, - "materialTypes": [ - { - "materialTypeSpecific": { - "display": "bog" + ], + "publisher": ["Bloomsbury"], + "identifiers": [ + { + "value": "9781408810576" } - } - ], - "creators": [ - { - "display": "Joanne K. Rowling", - "__typename": "Person" - } - ], - "publisher": ["Bloomsbury Children's Books"], - "identifiers": [ - { - "value": "9781408845677" - } - ], - "contributors": [ - { - "display": "Jim Kay" - } - ], - "edition": { - "summary": "2019", - "publicationYear": { - "display": "2019" - } - }, - "dateFirstEdition": { - "display": "2000", - "year": 2000 - }, - "audience": { - "generalAudience": [] - }, - "physicalDescriptions": [ - { - "numberOfPages": 450, - "playingTime": null - } - ], - "accessTypes": [ - { - "code": "PHYSICAL" - } - ], - "access": [ - { - "__typename": "InterLibraryLoan", - "loanIsPossible": true - } - ], - "shelfmark": { - "postfix": "Rowling", - "shelfmark": "83" - }, - "workYear": { - "year": 2000 - } - } - } - }, - { - "workId": "work-of:870970-basis:43078607", - "titles": { - "full": ["Harry Potter and the Chamber of Secrets"], - "original": [] - }, - "abstract": [ - "Fantasy. Den 12-årige Harry Potter har trolddomsevner. Derfor er han blevet optaget på troldmandsskolen Hogwarts, som ligger i en parallelverden. Men nu indtræffer der uhyggelige og mystiske hændelser på troldmandsskolen", - "This is a follow up to \"Harry Potter and the Philosopher's Stone\". Harry Potter is in his second year at Hogwarts School of Witchcraft and Wizardry, and this year promises to be just as eventful as the last" - ], - "creators": [ - { - "display": "Joanne K. Rowling", - "__typename": "Person" - } - ], - "series": [ - { - "title": "Harry Potter (engelsk)", - "isPopular": true, - "readThisFirst": null, - "readThisWhenever": null, - "members": [ - { - "numberInSeries": "2", - "work": { - "workId": "work-of:870970-basis:22629344", - "titles": { - "main": ["Harry Potter og de vises sten"], - "full": ["Harry Potter og de vises sten"], - "original": ["Harry Potter and the philosopher's stone"] - } + ], + "contributors": [], + "edition": { + "summary": "Signature edition, 2010", + "publicationYear": { + "display": "2010" } }, - { - "numberInSeries": "2", - "work": { - "workId": "work-of:870970-basis:22677780", - "titles": { - "main": ["Harry Potter og Hemmelighedernes Kammer"], - "full": ["Harry Potter og Hemmelighedernes Kammer"], - "original": ["Harry Potter and the Chamber of Secrets"] - } - } + "dateFirstEdition": { + "display": "2000", + "year": 2000 }, - { - "numberInSeries": "2", - "work": { - "workId": "work-of:870970-basis:22995154", - "titles": { - "main": ["Harry Potter og fangen fra Azkaban"], - "full": ["Harry Potter og fangen fra Azkaban"], - "original": ["Harry Potter and the prisoner of Azkaban"] - } - } + "audience": { + "generalAudience": [] }, - { - "numberInSeries": "2", - "work": { - "workId": "work-of:870970-basis:23540703", - "titles": { - "main": ["Harry Potter og Flammernes Pokal"], - "full": ["Harry Potter og Flammernes Pokal"], - "original": ["Harry Potter and the goblet of fire"] + "physicalDescriptions": [ + { + "numberOfPages": 636, + "playingTime": { + "materialUnits": [ + { + "extent": null + } + ] } } - }, - { - "numberInSeries": "2", - "work": { - "workId": "work-of:870970-basis:25245784", - "titles": { - "main": ["Harry Potter og Fønixordenen"], - "full": ["Harry Potter og Fønixordenen"], - "original": ["Harry Potter and the Order of the Phoenix"] - } + ], + "accessTypes": [ + { + "code": "PHYSICAL" + } + ], + "access": [ + { + "__typename": "InterLibraryLoan", + "loanIsPossible": true } + ], + "shelfmark": { + "postfix": "Rowling", + "shelfmark": "83" }, - { - "numberInSeries": "2", - "work": { - "workId": "work-of:870970-basis:25807995", - "titles": { - "main": ["Harry Potter og halvblodsprinsen"], - "full": ["Harry Potter og halvblodsprinsen"], - "original": ["Harry Potter and the half-blood prince"] + "workYear": { + "year": 2000 + } + }, + { + "pid": "870970-basis:45293807", + "genreAndForm": ["roman", "fantasy"], + "source": ["Bibliotekskatalog"], + "languages": { + "main": [ + { + "display": "engelsk", + "isoCode": "eng" } - } + ] }, - { - "numberInSeries": "2", - "work": { - "workId": "work-of:870970-basis:27267912", - "titles": { - "main": ["Harry Potter og dødsregalierne"], - "full": ["Harry Potter og dødsregalierne"], - "original": ["Harry Potter and the deathly hallows"] + "titles": { + "main": ["Harry Potter and the goblet of fire"], + "original": [] + }, + "fictionNonfiction": { + "display": "skønlitteratur", + "code": "FICTION" + }, + "materialTypes": [ + { + "materialTypeSpecific": { + "display": "bog" } } + ], + "creators": [ + { + "display": "Joanne K. Rowling", + "__typename": "Person" + } + ], + "publisher": ["Bloomsbury"], + "identifiers": [ + { + "value": "9780747582380" + } + ], + "contributors": [], + "edition": { + "summary": "Bloomsbury, new pbk. edition 2005, 2005", + "publicationYear": { + "display": "2005" + } }, - { - "numberInSeries": "2", - "work": { - "workId": "work-of:870970-basis:52646251", - "titles": { - "main": ["Harry Potter og det forbandede barn"], - "full": [ - "Harry Potter og det forbandede barn : del et & to" - ], - "original": ["Harry Potter and the cursed child"] + "dateFirstEdition": { + "display": "2000", + "year": 2000 + }, + "audience": { + "generalAudience": [] + }, + "physicalDescriptions": [ + { + "numberOfPages": 636, + "playingTime": { + "materialUnits": [ + { + "extent": null + } + ] } } + ], + "accessTypes": [ + { + "code": "PHYSICAL" + } + ], + "access": [ + { + "__typename": "InterLibraryLoan", + "loanIsPossible": true + } + ], + "shelfmark": { + "postfix": "Rowling", + "shelfmark": "83" + }, + "workYear": { + "year": 2000 } - ] - } - ], - "workYear": { - "year": 1998 - }, - "genreAndForm": [ - "roman", - "eventyrlige fortællinger", - "fantasy", - "romaner" - ], - "manifestations": { - "all": [ + }, { - "pid": "870970-basis:24047563", - "genreAndForm": ["roman"], + "pid": "870970-basis:45654249", + "genreAndForm": ["roman", "fantasy"], "source": ["Bibliotekskatalog"], "languages": { "main": [ @@ -14592,7 +13097,7 @@ ] }, "titles": { - "main": ["Harry Potter and the Chamber of Secrets"], + "main": ["Harry Potter and the goblet of fire"], "original": [] }, "fictionNonfiction": { @@ -14602,7 +13107,7 @@ "materialTypes": [ { "materialTypeSpecific": { - "display": "lydbog (bånd)" + "display": "bog" } } ], @@ -14610,35 +13115,34 @@ { "display": "Joanne K. Rowling", "__typename": "Person" - }, - { - "display": "Stephen Fry", - "__typename": "Person" } ], - "publisher": ["Cover to Cover Cassettes"], + "publisher": ["Bloomsbury"], "identifiers": [ { - "value": "1-85549-650-X" + "value": "9781408855683" + }, + { + "value": "9781408855928" } ], "contributors": [], "edition": { - "summary": "DBC (dist.), 2002", + "summary": "Bloomsbury, Pbk. edition 2014, 2014", "publicationYear": { - "display": "2002" + "display": "2014" } }, "dateFirstEdition": { - "display": "1998", - "year": 1998 + "display": "2000", + "year": 2000 }, "audience": { "generalAudience": [] }, "physicalDescriptions": [ { - "numberOfPages": null, + "numberOfPages": 616, "playingTime": { "materialUnits": [ { @@ -14664,11 +13168,11 @@ "shelfmark": "83" }, "workYear": { - "year": 1998 + "year": 2000 } }, { - "pid": "870970-basis:25698886", + "pid": "870970-basis:45671003", "genreAndForm": ["roman"], "source": ["Bibliotekskatalog"], "languages": { @@ -14680,7 +13184,7 @@ ] }, "titles": { - "main": ["Harry Potter and the Chamber of Secrets"], + "main": ["Harry Potter and the Goblet of fire"], "original": [] }, "fictionNonfiction": { @@ -14690,7 +13194,7 @@ "materialTypes": [ { "materialTypeSpecific": { - "display": "lydbog (bånd)" + "display": "lydbog (cd)" } } ], @@ -14698,16 +13202,12 @@ { "display": "Joanne K. Rowling", "__typename": "Person" - }, - { - "display": "Stephen Fry", - "__typename": "Person" } ], - "publisher": ["Danmarks Blindebibliotek"], + "publisher": ["Bloomsbury"], "identifiers": [ { - "value": "Best.nr. 15614" + "value": "9781408821589" } ], "contributors": [ @@ -14716,14 +13216,14 @@ } ], "edition": { - "summary": "2005", + "summary": "2001", "publicationYear": { - "display": "2005" + "display": "2001" } }, "dateFirstEdition": { - "display": "1998", - "year": 1998 + "display": "2000", + "year": 2000 }, "audience": { "generalAudience": [] @@ -14753,14 +13253,14 @@ ], "shelfmark": { "postfix": "Rowling", - "shelfmark": "83" + "shelfmark": "Uden klassemærke" }, "workYear": { - "year": 1998 + "year": 2000 } }, { - "pid": "870970-basis:28091036", + "pid": "870970-basis:45943429", "genreAndForm": ["roman", "eventyrlige fortællinger"], "source": ["Bibliotekskatalog"], "languages": { @@ -14772,7 +13272,7 @@ ] }, "titles": { - "main": ["Harry Potter and the Chamber of Secrets"], + "main": ["Harry Potter and the goblet of fire"], "original": [] }, "fictionNonfiction": { @@ -14792,29 +13292,33 @@ "__typename": "Person" } ], - "publisher": ["Bloomsbury"], + "publisher": ["Scholastic"], "identifiers": [ { - "value": "0-7475-7448-0" + "value": "9780439139601" + } + ], + "contributors": [ + { + "display": "Mary Grandpré" } ], - "contributors": [], "edition": { - "summary": "Paperback edition, 2004", + "summary": "1. Scholastic trade paperback, 2002", "publicationYear": { - "display": "2004" + "display": "2002" } }, "dateFirstEdition": { - "display": "1998", - "year": 1998 + "display": "2000", + "year": 2000 }, "audience": { "generalAudience": [] }, "physicalDescriptions": [ { - "numberOfPages": 366, + "numberOfPages": 745, "playingTime": { "materialUnits": [ { @@ -14840,16 +13344,12 @@ "shelfmark": "83" }, "workYear": { - "year": 1998 + "year": 2000 } }, { - "pid": "870970-basis:42061115", - "genreAndForm": [ - "roman", - "eventyrlige fortællinger", - "fantasy" - ], + "pid": "870970-basis:47086868", + "genreAndForm": ["roman", "fantasy"], "source": ["Bibliotekskatalog"], "languages": { "main": [ @@ -14860,7 +13360,9 @@ ] }, "titles": { - "main": ["Harry Potter and the Chamber of Secrets"], + "main": [ + "Harry Potter and the goblet of fire (Ill. Jim Kay)" + ], "original": [] }, "fictionNonfiction": { @@ -14880,32 +13382,33 @@ "__typename": "Person" } ], - "publisher": ["Arthur A. Levine Books"], + "publisher": ["Bloomsbury Children's Books"], "identifiers": [ { - "value": "0-439-06486-4" - }, + "value": "9781408845677" + } + ], + "contributors": [ { - "value": "9780439064866" + "display": "Jim Kay" } ], - "contributors": [], "edition": { - "summary": "1999", + "summary": "2019", "publicationYear": { - "display": "1999" + "display": "2019" } }, "dateFirstEdition": { - "display": "1998", - "year": 1998 + "display": "2000", + "year": 2000 }, "audience": { "generalAudience": [] }, "physicalDescriptions": [ { - "numberOfPages": 341, + "numberOfPages": 450, "playingTime": { "materialUnits": [ { @@ -14925,194 +13428,311 @@ "__typename": "InterLibraryLoan", "loanIsPossible": true } - ], - "shelfmark": { - "postfix": "Rowling", - "shelfmark": "83" + ], + "shelfmark": { + "postfix": "Rowling", + "shelfmark": "83" + }, + "workYear": { + "year": 2000 + } + } + ], + "latest": { + "pid": "870970-basis:47086868", + "genreAndForm": ["roman", "fantasy"], + "source": ["Bibliotekskatalog"], + "languages": { + "main": [ + { + "display": "engelsk", + "isoCode": "eng" + } + ] + }, + "titles": { + "main": ["Harry Potter and the goblet of fire (Ill. Jim Kay)"], + "original": [] + }, + "fictionNonfiction": { + "display": "skønlitteratur", + "code": "FICTION" + }, + "materialTypes": [ + { + "materialTypeSpecific": { + "display": "bog" + } + } + ], + "creators": [ + { + "display": "Joanne K. Rowling", + "__typename": "Person" + } + ], + "publisher": ["Bloomsbury Children's Books"], + "identifiers": [ + { + "value": "9781408845677" + } + ], + "contributors": [ + { + "display": "Jim Kay" + } + ], + "edition": { + "summary": "2019", + "publicationYear": { + "display": "2019" + } + }, + "dateFirstEdition": { + "display": "2000", + "year": 2000 + }, + "audience": { + "generalAudience": [] + }, + "physicalDescriptions": [ + { + "numberOfPages": 450, + "playingTime": null + } + ], + "accessTypes": [ + { + "code": "PHYSICAL" + } + ], + "access": [ + { + "__typename": "InterLibraryLoan", + "loanIsPossible": true + } + ], + "shelfmark": { + "postfix": "Rowling", + "shelfmark": "83" + }, + "workYear": { + "year": 2000 + } + }, + "bestRepresentation": { + "pid": "870970-basis:47086868", + "genreAndForm": ["roman", "fantasy"], + "source": ["Bibliotekskatalog"], + "languages": { + "main": [ + { + "display": "engelsk", + "isoCode": "eng" + } + ] + }, + "titles": { + "main": ["Harry Potter and the goblet of fire (Ill. Jim Kay)"], + "original": [] + }, + "fictionNonfiction": { + "display": "skønlitteratur", + "code": "FICTION" + }, + "materialTypes": [ + { + "materialTypeSpecific": { + "display": "bog" + } + } + ], + "creators": [ + { + "display": "Joanne K. Rowling", + "__typename": "Person" + } + ], + "publisher": ["Bloomsbury Children's Books"], + "identifiers": [ + { + "value": "9781408845677" + } + ], + "contributors": [ + { + "display": "Jim Kay" + } + ], + "edition": { + "summary": "2019", + "publicationYear": { + "display": "2019" + } + }, + "dateFirstEdition": { + "display": "2000", + "year": 2000 + }, + "audience": { + "generalAudience": [] + }, + "physicalDescriptions": [ + { + "numberOfPages": 450, + "playingTime": null + } + ], + "accessTypes": [ + { + "code": "PHYSICAL" + } + ], + "access": [ + { + "__typename": "InterLibraryLoan", + "loanIsPossible": true + } + ], + "shelfmark": { + "postfix": "Rowling", + "shelfmark": "83" + }, + "workYear": { + "year": 2000 + } + } + } + }, + { + "workId": "work-of:870970-basis:43078607", + "titles": { + "full": ["Harry Potter and the Chamber of Secrets"], + "original": [] + }, + "abstract": [ + "Fantasy. Den 12-årige Harry Potter har trolddomsevner. Derfor er han blevet optaget på troldmandsskolen Hogwarts, som ligger i en parallelverden. Men nu indtræffer der uhyggelige og mystiske hændelser på troldmandsskolen", + "This is a follow up to \"Harry Potter and the Philosopher's Stone\". Harry Potter is in his second year at Hogwarts School of Witchcraft and Wizardry, and this year promises to be just as eventful as the last" + ], + "creators": [ + { + "display": "Joanne K. Rowling", + "__typename": "Person" + } + ], + "series": [ + { + "title": "Harry Potter (engelsk)", + "isPopular": true, + "readThisFirst": null, + "readThisWhenever": null, + "members": [ + { + "numberInSeries": "2", + "work": { + "workId": "work-of:870970-basis:22629344", + "titles": { + "main": ["Harry Potter og de vises sten"], + "full": ["Harry Potter og de vises sten"], + "original": ["Harry Potter and the philosopher's stone"] + } + } }, - "workYear": { - "year": 1998 - } - }, - { - "pid": "870970-basis:42067423", - "genreAndForm": ["roman", "eventyrlige fortællinger"], - "source": ["Bibliotekskatalog"], - "languages": { - "main": [ - { - "display": "engelsk", - "isoCode": "eng" + { + "numberInSeries": "2", + "work": { + "workId": "work-of:870970-basis:22677780", + "titles": { + "main": ["Harry Potter og Hemmelighedernes Kammer"], + "full": ["Harry Potter og Hemmelighedernes Kammer"], + "original": ["Harry Potter and the Chamber of Secrets"] } - ] - }, - "titles": { - "main": ["Harry Potter and the Chamber of Secrets"], - "original": [] - }, - "fictionNonfiction": { - "display": "skønlitteratur", - "code": "FICTION" + } }, - "materialTypes": [ - { - "materialTypeSpecific": { - "display": "bog" + { + "numberInSeries": "2", + "work": { + "workId": "work-of:870970-basis:22995154", + "titles": { + "main": ["Harry Potter og fangen fra Azkaban"], + "full": ["Harry Potter og fangen fra Azkaban"], + "original": ["Harry Potter and the prisoner of Azkaban"] } } - ], - "creators": [ - { - "display": "Joanne K. Rowling", - "__typename": "Person" - } - ], - "publisher": ["Bloomsbury"], - "identifiers": [ - { - "value": "0-7475-5362-9" - }, - { - "value": "0-7475-3849-2" - }, - { - "value": "0-7475-4577-4" - } - ], - "contributors": [], - "edition": { - "summary": "1998", - "publicationYear": { - "display": "1998" - } - }, - "dateFirstEdition": { - "display": "1998", - "year": 1998 - }, - "audience": { - "generalAudience": [] }, - "physicalDescriptions": [ - { - "numberOfPages": 251, - "playingTime": { - "materialUnits": [ - { - "extent": null - } - ] + { + "numberInSeries": "2", + "work": { + "workId": "work-of:870970-basis:23540703", + "titles": { + "main": ["Harry Potter og Flammernes Pokal"], + "full": ["Harry Potter og Flammernes Pokal"], + "original": ["Harry Potter and the goblet of fire"] } } - ], - "accessTypes": [ - { - "code": "PHYSICAL" - } - ], - "access": [ - { - "__typename": "InterLibraryLoan", - "loanIsPossible": true - } - ], - "shelfmark": { - "postfix": "Rowling", - "shelfmark": "83" }, - "workYear": { - "year": 1998 - } - }, - { - "pid": "870970-basis:42123412", - "genreAndForm": ["roman", "eventyrlige fortællinger"], - "source": ["Bibliotekskatalog"], - "languages": { - "main": [ - { - "display": "engelsk", - "isoCode": "eng" + { + "numberInSeries": "2", + "work": { + "workId": "work-of:870970-basis:25245784", + "titles": { + "main": ["Harry Potter og Fønixordenen"], + "full": ["Harry Potter og Fønixordenen"], + "original": ["Harry Potter and the Order of the Phoenix"] } - ] - }, - "titles": { - "main": ["Harry Potter and the Chamber of Secrets"], - "original": [] - }, - "fictionNonfiction": { - "display": "skønlitteratur", - "code": "FICTION" + } }, - "materialTypes": [ - { - "materialTypeSpecific": { - "display": "bog" + { + "numberInSeries": "2", + "work": { + "workId": "work-of:870970-basis:25807995", + "titles": { + "main": ["Harry Potter og halvblodsprinsen"], + "full": ["Harry Potter og halvblodsprinsen"], + "original": ["Harry Potter and the half-blood prince"] } } - ], - "creators": [ - { - "display": "Joanne K. Rowling", - "__typename": "Person" - } - ], - "publisher": ["Bloomsbury"], - "identifiers": [ - { - "value": "0-7475-6000-5" - }, - { - "value": "0-7475-4407-7" - } - ], - "contributors": [], - "edition": { - "summary": "1999", - "publicationYear": { - "display": "1999" - } - }, - "dateFirstEdition": { - "display": "1998", - "year": 1998 - }, - "audience": { - "generalAudience": [] }, - "physicalDescriptions": [ - { - "numberOfPages": 251, - "playingTime": { - "materialUnits": [ - { - "extent": null - } - ] + { + "numberInSeries": "2", + "work": { + "workId": "work-of:870970-basis:27267912", + "titles": { + "main": ["Harry Potter og dødsregalierne"], + "full": ["Harry Potter og dødsregalierne"], + "original": ["Harry Potter and the deathly hallows"] } } - ], - "accessTypes": [ - { - "code": "PHYSICAL" - } - ], - "access": [ - { - "__typename": "InterLibraryLoan", - "loanIsPossible": true - } - ], - "shelfmark": { - "postfix": "Rowling", - "shelfmark": "83" }, - "workYear": { - "year": 1998 + { + "numberInSeries": "2", + "work": { + "workId": "work-of:870970-basis:52646251", + "titles": { + "main": ["Harry Potter og det forbandede barn"], + "full": [ + "Harry Potter og det forbandede barn : del et & to" + ], + "original": ["Harry Potter and the cursed child"] + } + } } - }, + ] + } + ], + "workYear": { + "year": 1998 + }, + "genreAndForm": [ + "roman", + "eventyrlige fortællinger", + "fantasy", + "romaner" + ], + "manifestations": { + "all": [ { - "pid": "870970-basis:42223395", + "pid": "870970-basis:24047563", "genreAndForm": ["roman"], "source": ["Bibliotekskatalog"], "languages": { @@ -15148,7 +13768,7 @@ "__typename": "Person" } ], - "publisher": ["Cover to Cover"], + "publisher": ["Cover to Cover Cassettes"], "identifiers": [ { "value": "1-85549-650-X" @@ -15156,9 +13776,9 @@ ], "contributors": [], "edition": { - "summary": "2000", + "summary": "DBC (dist.), 2002", "publicationYear": { - "display": "2000" + "display": "2002" } }, "dateFirstEdition": { @@ -15200,7 +13820,7 @@ } }, { - "pid": "870970-basis:42235512", + "pid": "870970-basis:25698886", "genreAndForm": ["roman"], "source": ["Bibliotekskatalog"], "languages": { @@ -15222,7 +13842,7 @@ "materialTypes": [ { "materialTypeSpecific": { - "display": "lydbog (cd)" + "display": "lydbog (bånd)" } } ], @@ -15236,17 +13856,21 @@ "__typename": "Person" } ], - "publisher": ["Cover to Cover"], + "publisher": ["Danmarks Blindebibliotek"], "identifiers": [ { - "value": "1-85549-671-2" + "value": "Best.nr. 15614" + } + ], + "contributors": [ + { + "display": "Stephen Fry" } ], - "contributors": [], "edition": { - "summary": "1999", + "summary": "2005", "publicationYear": { - "display": "1999" + "display": "2005" } }, "dateFirstEdition": { @@ -15288,8 +13912,8 @@ } }, { - "pid": "870970-basis:42299472", - "genreAndForm": [], + "pid": "870970-basis:28091036", + "genreAndForm": ["roman", "eventyrlige fortællinger"], "source": ["Bibliotekskatalog"], "languages": { "main": [ @@ -15323,14 +13947,14 @@ "publisher": ["Bloomsbury"], "identifiers": [ { - "value": "0-7475-4960-5" + "value": "0-7475-7448-0" } ], "contributors": [], "edition": { - "summary": "2000", + "summary": "Paperback edition, 2004", "publicationYear": { - "display": "2000" + "display": "2004" } }, "dateFirstEdition": { @@ -15372,8 +13996,12 @@ } }, { - "pid": "870970-basis:43078607", - "genreAndForm": ["roman", "eventyrlige fortællinger"], + "pid": "870970-basis:42061115", + "genreAndForm": [ + "roman", + "eventyrlige fortællinger", + "fantasy" + ], "source": ["Bibliotekskatalog"], "languages": { "main": [ @@ -15404,20 +14032,20 @@ "__typename": "Person" } ], - "publisher": ["Bloomsbury"], + "publisher": ["Arthur A. Levine Books"], "identifiers": [ { - "value": "0-7475-5701-2" + "value": "0-439-06486-4" }, { - "value": "0-7475-3848-4" + "value": "9780439064866" } ], "contributors": [], "edition": { - "summary": "Bloomsbury, New pbk. edition 1998, 1998", + "summary": "1999", "publicationYear": { - "display": "1998" + "display": "1999" } }, "dateFirstEdition": { @@ -15429,7 +14057,7 @@ }, "physicalDescriptions": [ { - "numberOfPages": 251, + "numberOfPages": 341, "playingTime": { "materialUnits": [ { @@ -15445,12 +14073,6 @@ } ], "access": [ - { - "__typename": "AccessUrl", - "origin": "www.perma-bound.com", - "url": "http://www.perma-bound.com/ws/image/cover/000172780/m", - "loginRequired": false - }, { "__typename": "InterLibraryLoan", "loanIsPossible": true @@ -15465,8 +14087,8 @@ } }, { - "pid": "870970-basis:43888331", - "genreAndForm": ["roman"], + "pid": "870970-basis:42067423", + "genreAndForm": ["roman", "eventyrlige fortællinger"], "source": ["Bibliotekskatalog"], "languages": { "main": [ @@ -15477,9 +14099,7 @@ ] }, "titles": { - "main": [ - "Harry Potter and the chamber of secrets (Ved Stephen Fry)" - ], + "main": ["Harry Potter and the Chamber of Secrets"], "original": [] }, "fictionNonfiction": { @@ -15489,7 +14109,7 @@ "materialTypes": [ { "materialTypeSpecific": { - "display": "lydbog (cd)" + "display": "bog" } } ], @@ -15497,23 +14117,25 @@ { "display": "Joanne K. Rowling", "__typename": "Person" - }, - { - "display": "Stephen Fry", - "__typename": "Person" } ], - "publisher": ["Cover to Cover"], + "publisher": ["Bloomsbury"], "identifiers": [ { - "value": "1-85549-632-1" + "value": "0-7475-5362-9" + }, + { + "value": "0-7475-3849-2" + }, + { + "value": "0-7475-4577-4" } ], "contributors": [], "edition": { - "summary": "2000", + "summary": "1998", "publicationYear": { - "display": "2000" + "display": "1998" } }, "dateFirstEdition": { @@ -15525,7 +14147,7 @@ }, "physicalDescriptions": [ { - "numberOfPages": null, + "numberOfPages": 251, "playingTime": { "materialUnits": [ { @@ -15555,8 +14177,8 @@ } }, { - "pid": "870970-basis:44043602", - "genreAndForm": ["roman"], + "pid": "870970-basis:42123412", + "genreAndForm": ["roman", "eventyrlige fortællinger"], "source": ["Bibliotekskatalog"], "languages": { "main": [ @@ -15577,7 +14199,7 @@ "materialTypes": [ { "materialTypeSpecific": { - "display": "lydbog (cd)" + "display": "bog" } } ], @@ -15585,23 +14207,22 @@ { "display": "Joanne K. Rowling", "__typename": "Person" - }, - { - "display": "Stephen Fry", - "__typename": "Person" } ], "publisher": ["Bloomsbury"], "identifiers": [ { - "value": "0-7475-8642-X" + "value": "0-7475-6000-5" + }, + { + "value": "0-7475-4407-7" } ], "contributors": [], "edition": { - "summary": "Bloomsbury, 2000", + "summary": "1999", "publicationYear": { - "display": "2000" + "display": "1999" } }, "dateFirstEdition": { @@ -15613,7 +14234,7 @@ }, "physicalDescriptions": [ { - "numberOfPages": null, + "numberOfPages": 251, "playingTime": { "materialUnits": [ { @@ -15643,7 +14264,7 @@ } }, { - "pid": "870970-basis:44083108", + "pid": "870970-basis:42223395", "genreAndForm": ["roman"], "source": ["Bibliotekskatalog"], "languages": { @@ -15655,9 +14276,7 @@ ] }, "titles": { - "main": [ - "Harry Potter and the chamber of secrets (Ved Stephen Fry)" - ], + "main": ["Harry Potter and the Chamber of Secrets"], "original": [] }, "fictionNonfiction": { @@ -15667,7 +14286,7 @@ "materialTypes": [ { "materialTypeSpecific": { - "display": "lydbog (cd)" + "display": "lydbog (bånd)" } } ], @@ -15684,14 +14303,14 @@ "publisher": ["Cover to Cover"], "identifiers": [ { - "value": "1-85549-667-4" + "value": "1-85549-650-X" } ], "contributors": [], "edition": { - "summary": "New edition 2004, 2004", + "summary": "2000", "publicationYear": { - "display": "2004" + "display": "2000" } }, "dateFirstEdition": { @@ -15733,7 +14352,7 @@ } }, { - "pid": "870970-basis:44211777", + "pid": "870970-basis:42235512", "genreAndForm": ["roman"], "source": ["Bibliotekskatalog"], "languages": { @@ -15745,9 +14364,7 @@ ] }, "titles": { - "main": [ - "Harry Potter and the chamber of secrets (ved Jim Dale)" - ], + "main": ["Harry Potter and the Chamber of Secrets"], "original": [] }, "fictionNonfiction": { @@ -15767,14 +14384,14 @@ "__typename": "Person" }, { - "display": "Jim Dale", + "display": "Stephen Fry", "__typename": "Person" } ], - "publisher": ["Listening Library"], + "publisher": ["Cover to Cover"], "identifiers": [ { - "value": "0-8072-8194-8" + "value": "1-85549-671-2" } ], "contributors": [], @@ -15823,8 +14440,8 @@ } }, { - "pid": "870970-basis:44327112", - "genreAndForm": ["roman"], + "pid": "870970-basis:42299472", + "genreAndForm": [], "source": ["Bibliotekskatalog"], "languages": { "main": [ @@ -15835,9 +14452,7 @@ ] }, "titles": { - "main": [ - "Harry Potter and the Chamber of Secrets (Ved Stephen Fry)" - ], + "main": ["Harry Potter and the Chamber of Secrets"], "original": [] }, "fictionNonfiction": { @@ -15847,7 +14462,7 @@ "materialTypes": [ { "materialTypeSpecific": { - "display": "lydbog (bånd)" + "display": "bog" } } ], @@ -15860,12 +14475,12 @@ "publisher": ["Bloomsbury"], "identifiers": [ { - "value": "0-7475-8644-6" + "value": "0-7475-4960-5" } ], "contributors": [], "edition": { - "summary": "Complete & unabridged, 2000", + "summary": "2000", "publicationYear": { "display": "2000" } @@ -15879,7 +14494,7 @@ }, "physicalDescriptions": [ { - "numberOfPages": null, + "numberOfPages": 366, "playingTime": { "materialUnits": [ { @@ -15909,8 +14524,8 @@ } }, { - "pid": "870970-basis:44513315", - "genreAndForm": ["eventyrlige fortællinger"], + "pid": "870970-basis:43078607", + "genreAndForm": ["roman", "eventyrlige fortællinger"], "source": ["Bibliotekskatalog"], "languages": { "main": [ @@ -15921,7 +14536,7 @@ ] }, "titles": { - "main": ["Harry Potter and the chamber of secrets"], + "main": ["Harry Potter and the Chamber of Secrets"], "original": [] }, "fictionNonfiction": { @@ -15944,14 +14559,17 @@ "publisher": ["Bloomsbury"], "identifiers": [ { - "value": "0-7475-7361-1" + "value": "0-7475-5701-2" + }, + { + "value": "0-7475-3848-4" } ], "contributors": [], "edition": { - "summary": "Adult edition, 2004", + "summary": "Bloomsbury, New pbk. edition 1998, 1998", "publicationYear": { - "display": "2004" + "display": "1998" } }, "dateFirstEdition": { @@ -15963,7 +14581,7 @@ }, "physicalDescriptions": [ { - "numberOfPages": 256, + "numberOfPages": 251, "playingTime": { "materialUnits": [ { @@ -15979,6 +14597,12 @@ } ], "access": [ + { + "__typename": "AccessUrl", + "origin": "www.perma-bound.com", + "url": "http://www.perma-bound.com/ws/image/cover/000172780/m", + "loginRequired": false + }, { "__typename": "InterLibraryLoan", "loanIsPossible": true @@ -15993,8 +14617,8 @@ } }, { - "pid": "870970-basis:44931850", - "genreAndForm": ["roman", "eventyrlige fortællinger"], + "pid": "870970-basis:43888331", + "genreAndForm": ["roman"], "source": ["Bibliotekskatalog"], "languages": { "main": [ @@ -16005,7 +14629,9 @@ ] }, "titles": { - "main": ["Harry Potter and the Chamber of Secrets"], + "main": [ + "Harry Potter and the chamber of secrets (Ved Stephen Fry)" + ], "original": [] }, "fictionNonfiction": { @@ -16015,7 +14641,7 @@ "materialTypes": [ { "materialTypeSpecific": { - "display": "bog" + "display": "lydbog (cd)" } } ], @@ -16023,19 +14649,23 @@ { "display": "Joanne K. Rowling", "__typename": "Person" + }, + { + "display": "Stephen Fry", + "__typename": "Person" } ], - "publisher": ["Bloomsbury"], + "publisher": ["Cover to Cover"], "identifiers": [ { - "value": "9781408810552" + "value": "1-85549-632-1" } ], "contributors": [], "edition": { - "summary": "Signature edition, 2010", + "summary": "2000", "publicationYear": { - "display": "2010" + "display": "2000" } }, "dateFirstEdition": { @@ -16047,7 +14677,7 @@ }, "physicalDescriptions": [ { - "numberOfPages": 251, + "numberOfPages": null, "playingTime": { "materialUnits": [ { @@ -16077,8 +14707,8 @@ } }, { - "pid": "870970-basis:45293890", - "genreAndForm": ["roman", "fantasy"], + "pid": "870970-basis:44043602", + "genreAndForm": ["roman"], "source": ["Bibliotekskatalog"], "languages": { "main": [ @@ -16099,7 +14729,7 @@ "materialTypes": [ { "materialTypeSpecific": { - "display": "bog" + "display": "lydbog (cd)" } } ], @@ -16107,19 +14737,23 @@ { "display": "Joanne K. Rowling", "__typename": "Person" + }, + { + "display": "Stephen Fry", + "__typename": "Person" } ], "publisher": ["Bloomsbury"], "identifiers": [ { - "value": "9780747562184" + "value": "0-7475-8642-X" } ], "contributors": [], "edition": { - "summary": "Bloomsbury, new pbk. edition 2002, 2002", + "summary": "Bloomsbury, 2000", "publicationYear": { - "display": "2002" + "display": "2000" } }, "dateFirstEdition": { @@ -16131,7 +14765,7 @@ }, "physicalDescriptions": [ { - "numberOfPages": 251, + "numberOfPages": null, "playingTime": { "materialUnits": [ { @@ -16161,8 +14795,8 @@ } }, { - "pid": "870970-basis:45654230", - "genreAndForm": ["roman", "fantasy"], + "pid": "870970-basis:44083108", + "genreAndForm": ["roman"], "source": ["Bibliotekskatalog"], "languages": { "main": [ @@ -16173,7 +14807,9 @@ ] }, "titles": { - "main": ["Harry Potter and the chamber of secrets"], + "main": [ + "Harry Potter and the chamber of secrets (Ved Stephen Fry)" + ], "original": [] }, "fictionNonfiction": { @@ -16183,7 +14819,7 @@ "materialTypes": [ { "materialTypeSpecific": { - "display": "bog" + "display": "lydbog (cd)" } } ], @@ -16191,22 +14827,23 @@ { "display": "Joanne K. Rowling", "__typename": "Person" + }, + { + "display": "Stephen Fry", + "__typename": "Person" } ], - "publisher": ["Bloomsbury"], + "publisher": ["Cover to Cover"], "identifiers": [ { - "value": "9781408855669" - }, - { - "value": "9781408855904" + "value": "1-85549-667-4" } ], "contributors": [], "edition": { - "summary": "Bloomsbury, Pbk. edition 2014, 2014", + "summary": "New edition 2004, 2004", "publicationYear": { - "display": "2014" + "display": "2004" } }, "dateFirstEdition": { @@ -16218,7 +14855,7 @@ }, "physicalDescriptions": [ { - "numberOfPages": 359, + "numberOfPages": null, "playingTime": { "materialUnits": [ { @@ -16248,7 +14885,7 @@ } }, { - "pid": "870970-basis:45674541", + "pid": "870970-basis:44211777", "genreAndForm": ["roman"], "source": ["Bibliotekskatalog"], "languages": { @@ -16261,7 +14898,7 @@ }, "titles": { "main": [ - "Harry Potter and the chamber of secrets (Ved Stephen Fry)" + "Harry Potter and the chamber of secrets (ved Jim Dale)" ], "original": [] }, @@ -16280,26 +14917,23 @@ { "display": "Joanne K. Rowling", "__typename": "Person" - } - ], - "publisher": ["HNP", "Bloomsbury"], - "identifiers": [ - { - "value": "9781408821510" }, { - "value": "9781408882252" + "display": "Jim Dale", + "__typename": "Person" } ], - "contributors": [ + "publisher": ["Listening Library"], + "identifiers": [ { - "display": "Stephen Fry" + "value": "0-8072-8194-8" } ], + "contributors": [], "edition": { - "summary": "HNP, Bloomsbury, New edition 201?, 201-", + "summary": "1999", "publicationYear": { - "display": "201-" + "display": "1999" } }, "dateFirstEdition": { @@ -16341,8 +14975,8 @@ } }, { - "pid": "870970-basis:52561604", - "genreAndForm": ["roman", "fantasy"], + "pid": "870970-basis:44327112", + "genreAndForm": ["roman"], "source": ["Bibliotekskatalog"], "languages": { "main": [ @@ -16354,7 +14988,7 @@ }, "titles": { "main": [ - "Harry Potter and the Chamber of Secrets (Ill. Jim Kay)" + "Harry Potter and the Chamber of Secrets (Ved Stephen Fry)" ], "original": [] }, @@ -16365,7 +14999,7 @@ "materialTypes": [ { "materialTypeSpecific": { - "display": "bog" + "display": "lydbog (bånd)" } } ], @@ -16378,348 +15012,141 @@ "publisher": ["Bloomsbury"], "identifiers": [ { - "value": "9781408845653" - } - ], - "contributors": [ - { - "display": "Jim Kay" + "value": "0-7475-8644-6" } ], + "contributors": [], "edition": { - "summary": "2016", + "summary": "Complete & unabridged, 2000", "publicationYear": { - "display": "2016" + "display": "2000" } }, - "dateFirstEdition": null, + "dateFirstEdition": { + "display": "1998", + "year": 1998 + }, "audience": { "generalAudience": [] }, "physicalDescriptions": [ { - "numberOfPages": 258, + "numberOfPages": null, "playingTime": { "materialUnits": [ { "extent": null } - ] - } - } - ], - "accessTypes": [ - { - "code": "PHYSICAL" - } - ], - "access": [ - { - "__typename": "InterLibraryLoan", - "loanIsPossible": true - } - ], - "shelfmark": { - "postfix": "Rowling", - "shelfmark": "83" - }, - "workYear": null - } - ], - "latest": { - "pid": "870970-basis:52561604", - "genreAndForm": ["roman", "fantasy"], - "source": ["Bibliotekskatalog"], - "languages": { - "main": [ - { - "display": "engelsk", - "isoCode": "eng" - } - ] - }, - "titles": { - "main": [ - "Harry Potter and the Chamber of Secrets (Ill. Jim Kay)" - ], - "original": [] - }, - "fictionNonfiction": { - "display": "skønlitteratur", - "code": "FICTION" - }, - "materialTypes": [ - { - "materialTypeSpecific": { - "display": "bog" - } - } - ], - "creators": [ - { - "display": "Joanne K. Rowling", - "__typename": "Person" - } - ], - "publisher": ["Bloomsbury"], - "identifiers": [ - { - "value": "9781408845653" - } - ], - "contributors": [ - { - "display": "Jim Kay" - } - ], - "edition": { - "summary": "2016", - "publicationYear": { - "display": "2016" - } - }, - "dateFirstEdition": null, - "audience": { - "generalAudience": [] - }, - "physicalDescriptions": [ - { - "numberOfPages": 258, - "playingTime": null - } - ], - "accessTypes": [ - { - "code": "PHYSICAL" - } - ], - "access": [ - { - "__typename": "InterLibraryLoan", - "loanIsPossible": true - } - ], - "shelfmark": { - "postfix": "Rowling", - "shelfmark": "83" - }, - "workYear": null - }, - "bestRepresentation": { - "pid": "870970-basis:52561604", - "genreAndForm": ["roman", "fantasy"], - "source": ["Bibliotekskatalog"], - "languages": { - "main": [ - { - "display": "engelsk", - "isoCode": "eng" - } - ] - }, - "titles": { - "main": [ - "Harry Potter and the Chamber of Secrets (Ill. Jim Kay)" - ], - "original": [] - }, - "fictionNonfiction": { - "display": "skønlitteratur", - "code": "FICTION" - }, - "materialTypes": [ - { - "materialTypeSpecific": { - "display": "bog" - } - } - ], - "creators": [ - { - "display": "Joanne K. Rowling", - "__typename": "Person" - } - ], - "publisher": ["Bloomsbury"], - "identifiers": [ - { - "value": "9781408845653" - } - ], - "contributors": [ - { - "display": "Jim Kay" - } - ], - "edition": { - "summary": "2016", - "publicationYear": { - "display": "2016" - } - }, - "dateFirstEdition": null, - "audience": { - "generalAudience": [] - }, - "physicalDescriptions": [ - { - "numberOfPages": 258, - "playingTime": null - } - ], - "accessTypes": [ - { - "code": "PHYSICAL" - } - ], - "access": [ - { - "__typename": "InterLibraryLoan", - "loanIsPossible": true - } - ], - "shelfmark": { - "postfix": "Rowling", - "shelfmark": "83" - }, - "workYear": null - } - } - }, - { - "workId": "work-of:870970-basis:27091423", - "titles": { - "full": ["Harry Potter og Fønixordenen"], - "original": [] - }, - "abstract": [ - "Harry Potter er overbevist om at den onde Lord Voldemort er vendt tilbage, men ingen tror på ham. Slet ikke den emsige Dolora Nidkjær, der har overtaget ledelsen af troldmandsskolen Hogwarts og især holder øje med Harry Potter, der i skjul må mobilisere vennerne" - ], - "creators": [ - { - "display": "David Yates", - "__typename": "Person" - }, - { - "display": "Michael Goldenberg", - "__typename": "Person" - }, - { - "display": "Sławomir Idziak", - "__typename": "Person" - }, - { - "display": "Joanne K. Rowling", - "__typename": "Person" - } - ], - "series": [ - { - "title": "Harry Potter (film)", - "isPopular": true, - "readThisFirst": null, - "readThisWhenever": null, - "members": [ - { - "numberInSeries": "5", - "work": { - "workId": "work-of:870970-basis:22629344", - "titles": { - "main": ["Harry Potter og de vises sten"], - "full": ["Harry Potter og de vises sten"], - "original": ["Harry Potter and the philosopher's stone"] + ] } } - }, - { - "numberInSeries": "5", - "work": { - "workId": "work-of:870970-basis:22677780", - "titles": { - "main": ["Harry Potter og Hemmelighedernes Kammer"], - "full": ["Harry Potter og Hemmelighedernes Kammer"], - "original": ["Harry Potter and the Chamber of Secrets"] - } + ], + "accessTypes": [ + { + "code": "PHYSICAL" } - }, - { - "numberInSeries": "5", - "work": { - "workId": "work-of:870970-basis:22995154", - "titles": { - "main": ["Harry Potter og fangen fra Azkaban"], - "full": ["Harry Potter og fangen fra Azkaban"], - "original": ["Harry Potter and the prisoner of Azkaban"] - } + ], + "access": [ + { + "__typename": "InterLibraryLoan", + "loanIsPossible": true } + ], + "shelfmark": { + "postfix": "Rowling", + "shelfmark": "83" }, - { - "numberInSeries": "5", - "work": { - "workId": "work-of:870970-basis:23540703", - "titles": { - "main": ["Harry Potter og Flammernes Pokal"], - "full": ["Harry Potter og Flammernes Pokal"], - "original": ["Harry Potter and the goblet of fire"] + "workYear": { + "year": 1998 + } + }, + { + "pid": "870970-basis:44513315", + "genreAndForm": ["eventyrlige fortællinger"], + "source": ["Bibliotekskatalog"], + "languages": { + "main": [ + { + "display": "engelsk", + "isoCode": "eng" } - } + ] }, - { - "numberInSeries": "5", - "work": { - "workId": "work-of:870970-basis:25245784", - "titles": { - "main": ["Harry Potter og Fønixordenen"], - "full": ["Harry Potter og Fønixordenen"], - "original": ["Harry Potter and the Order of the Phoenix"] - } - } + "titles": { + "main": ["Harry Potter and the chamber of secrets"], + "original": [] }, - { - "numberInSeries": "5", - "work": { - "workId": "work-of:870970-basis:25807995", - "titles": { - "main": ["Harry Potter og halvblodsprinsen"], - "full": ["Harry Potter og halvblodsprinsen"], - "original": ["Harry Potter and the half-blood prince"] - } - } + "fictionNonfiction": { + "display": "skønlitteratur", + "code": "FICTION" }, - { - "numberInSeries": "5", - "work": { - "workId": "work-of:870970-basis:27267912", - "titles": { - "main": ["Harry Potter og dødsregalierne"], - "full": ["Harry Potter og dødsregalierne"], - "original": ["Harry Potter and the deathly hallows"] + "materialTypes": [ + { + "materialTypeSpecific": { + "display": "bog" } } + ], + "creators": [ + { + "display": "Joanne K. Rowling", + "__typename": "Person" + } + ], + "publisher": ["Bloomsbury"], + "identifiers": [ + { + "value": "0-7475-7361-1" + } + ], + "contributors": [], + "edition": { + "summary": "Adult edition, 2004", + "publicationYear": { + "display": "2004" + } }, - { - "numberInSeries": "5", - "work": { - "workId": "work-of:870970-basis:52646251", - "titles": { - "main": ["Harry Potter og det forbandede barn"], - "full": [ - "Harry Potter og det forbandede barn : del et & to" - ], - "original": ["Harry Potter and the cursed child"] + "dateFirstEdition": { + "display": "1998", + "year": 1998 + }, + "audience": { + "generalAudience": [] + }, + "physicalDescriptions": [ + { + "numberOfPages": 256, + "playingTime": { + "materialUnits": [ + { + "extent": null + } + ] } } + ], + "accessTypes": [ + { + "code": "PHYSICAL" + } + ], + "access": [ + { + "__typename": "InterLibraryLoan", + "loanIsPossible": true + } + ], + "shelfmark": { + "postfix": "Rowling", + "shelfmark": "83" + }, + "workYear": { + "year": 1998 } - ] - } - ], - "workYear": null, - "genreAndForm": ["børnefilm"], - "manifestations": { - "all": [ + }, { - "pid": "870970-basis:27091423", - "genreAndForm": [], + "pid": "870970-basis:44931850", + "genreAndForm": ["roman", "eventyrlige fortællinger"], "source": ["Bibliotekskatalog"], "languages": { "main": [ @@ -16730,80 +15157,133 @@ ] }, "titles": { - "main": ["Harry Potter og Fønixordenen"], + "main": ["Harry Potter and the Chamber of Secrets"], "original": [] }, "fictionNonfiction": { - "display": "fiktion", + "display": "skønlitteratur", "code": "FICTION" }, "materialTypes": [ { "materialTypeSpecific": { - "display": "film (dvd)" + "display": "bog" } } ], "creators": [ { - "display": "David Yates", + "display": "Joanne K. Rowling", "__typename": "Person" - }, + } + ], + "publisher": ["Bloomsbury"], + "identifiers": [ { - "display": "Michael Goldenberg", - "__typename": "Person" - }, + "value": "9781408810552" + } + ], + "contributors": [], + "edition": { + "summary": "Signature edition, 2010", + "publicationYear": { + "display": "2010" + } + }, + "dateFirstEdition": { + "display": "1998", + "year": 1998 + }, + "audience": { + "generalAudience": [] + }, + "physicalDescriptions": [ { - "display": "Sławomir Idziak", - "__typename": "Person" - }, + "numberOfPages": 251, + "playingTime": { + "materialUnits": [ + { + "extent": null + } + ] + } + } + ], + "accessTypes": [ + { + "code": "PHYSICAL" + } + ], + "access": [ + { + "__typename": "InterLibraryLoan", + "loanIsPossible": true + } + ], + "shelfmark": { + "postfix": "Rowling", + "shelfmark": "83" + }, + "workYear": { + "year": 1998 + } + }, + { + "pid": "870970-basis:45293890", + "genreAndForm": ["roman", "fantasy"], + "source": ["Bibliotekskatalog"], + "languages": { + "main": [ + { + "display": "engelsk", + "isoCode": "eng" + } + ] + }, + "titles": { + "main": ["Harry Potter and the Chamber of Secrets"], + "original": [] + }, + "fictionNonfiction": { + "display": "skønlitteratur", + "code": "FICTION" + }, + "materialTypes": [ { - "display": "Joanne K. Rowling", - "__typename": "Person" + "materialTypeSpecific": { + "display": "bog" + } } ], - "publisher": ["Warner Bros. Entertainment Danmark"], - "identifiers": [ + "creators": [ { - "value": "59326" + "display": "Joanne K. Rowling", + "__typename": "Person" } ], - "contributors": [ - { - "display": "Daniel Radcliffe" - }, - { - "display": "Rupert Grint" - }, - { - "display": "Emma Watson" - }, - { - "display": "Robbie Coltrane" - }, - { - "display": "Ralph Fiennes" - }, - { - "display": "Michael Gambon" - }, + "publisher": ["Bloomsbury"], + "identifiers": [ { - "display": "Brendan Gleeson" + "value": "9780747562184" } ], + "contributors": [], "edition": { - "summary": "2007", + "summary": "Bloomsbury, new pbk. edition 2002, 2002", "publicationYear": { - "display": "2007" + "display": "2002" } }, - "dateFirstEdition": null, + "dateFirstEdition": { + "display": "1998", + "year": 1998 + }, "audience": { - "generalAudience": ["Mærkning: Tilladt for børn over 11 år"] + "generalAudience": [] }, "physicalDescriptions": [ { - "numberOfPages": null, + "numberOfPages": 251, "playingTime": { "materialUnits": [ { @@ -16825,14 +15305,16 @@ } ], "shelfmark": { - "postfix": "Harry", - "shelfmark": "77.7" + "postfix": "Rowling", + "shelfmark": "83" }, - "workYear": null + "workYear": { + "year": 1998 + } }, { - "pid": "870970-basis:27123295", - "genreAndForm": [], + "pid": "870970-basis:45654230", + "genreAndForm": ["roman", "fantasy"], "source": ["Bibliotekskatalog"], "languages": { "main": [ @@ -16843,80 +15325,52 @@ ] }, "titles": { - "main": ["Harry Potter og Fønixordenen"], + "main": ["Harry Potter and the chamber of secrets"], "original": [] }, "fictionNonfiction": { - "display": "fiktion", + "display": "skønlitteratur", "code": "FICTION" }, "materialTypes": [ { "materialTypeSpecific": { - "display": "film (blu-ray)" + "display": "bog" } } ], "creators": [ - { - "display": "David Yates", - "__typename": "Person" - }, - { - "display": "Michael Goldenberg", - "__typename": "Person" - }, - { - "display": "Sławomir Idziak", - "__typename": "Person" - }, { "display": "Joanne K. Rowling", "__typename": "Person" } ], - "publisher": ["Warner Bros. Entertainment Danmark"], + "publisher": ["Bloomsbury"], "identifiers": [ { - "value": "Y 15694" - } - ], - "contributors": [ - { - "display": "Daniel Radcliffe" - }, - { - "display": "Rupert Grint" - }, - { - "display": "Emma Watson" - }, - { - "display": "Robbie Coltrane" - }, - { - "display": "Ralph Fiennes" - }, - { - "display": "Michael Gambon" + "value": "9781408855669" }, { - "display": "Brendan Gleeson" + "value": "9781408855904" } ], + "contributors": [], "edition": { - "summary": "2007", + "summary": "Bloomsbury, Pbk. edition 2014, 2014", "publicationYear": { - "display": "2007" + "display": "2014" } }, - "dateFirstEdition": null, + "dateFirstEdition": { + "display": "1998", + "year": 1998 + }, "audience": { - "generalAudience": ["Mærkning: Tilladt for børn over 11 år"] + "generalAudience": [] }, "physicalDescriptions": [ { - "numberOfPages": null, + "numberOfPages": 359, "playingTime": { "materialUnits": [ { @@ -16938,14 +15392,16 @@ } ], "shelfmark": { - "postfix": "Harry", - "shelfmark": "77.7" + "postfix": "Rowling", + "shelfmark": "83" }, - "workYear": null + "workYear": { + "year": 1998 + } }, { - "pid": "870970-basis:27125255", - "genreAndForm": [], + "pid": "870970-basis:45674541", + "genreAndForm": ["roman"], "source": ["Bibliotekskatalog"], "languages": { "main": [ @@ -16956,76 +15412,54 @@ ] }, "titles": { - "main": ["Harry Potter og Fønixordenen"], + "main": [ + "Harry Potter and the chamber of secrets (Ved Stephen Fry)" + ], "original": [] }, "fictionNonfiction": { - "display": "fiktion", + "display": "skønlitteratur", "code": "FICTION" }, "materialTypes": [ { "materialTypeSpecific": { - "display": "film (dvd)" + "display": "lydbog (cd)" } } ], "creators": [ - { - "display": "David Yates", - "__typename": "Person" - }, - { - "display": "Michael Goldenberg", - "__typename": "Person" - }, - { - "display": "Sławomir Idziak", - "__typename": "Person" - }, { "display": "Joanne K. Rowling", "__typename": "Person" } ], - "publisher": ["Warner Bros. Entertainment Danmark"], + "publisher": ["HNP", "Bloomsbury"], "identifiers": [ { - "value": "Y 15696" + "value": "9781408821510" + }, + { + "value": "9781408882252" } ], "contributors": [ { - "display": "Daniel Radcliffe" - }, - { - "display": "Rupert Grint" - }, - { - "display": "Emma Watson" - }, - { - "display": "Robbie Coltrane" - }, - { - "display": "Ralph Fiennes" - }, - { - "display": "Michael Gambon" - }, - { - "display": "Brendan Gleeson" + "display": "Stephen Fry" } ], "edition": { - "summary": "2007", + "summary": "HNP, Bloomsbury, New edition 201?, 201-", "publicationYear": { - "display": "2007" + "display": "201-" } }, - "dateFirstEdition": null, + "dateFirstEdition": { + "display": "1998", + "year": 1998 + }, "audience": { - "generalAudience": ["Mærkning: Tilladt for børn over 11 år"] + "generalAudience": [] }, "physicalDescriptions": [ { @@ -17051,14 +15485,16 @@ } ], "shelfmark": { - "postfix": "Harry", - "shelfmark": "77.7" + "postfix": "Rowling", + "shelfmark": "83" }, - "workYear": null + "workYear": { + "year": 1998 + } }, { - "pid": "870970-basis:27131158", - "genreAndForm": [], + "pid": "870970-basis:52561604", + "genreAndForm": ["roman", "fantasy"], "source": ["Bibliotekskatalog"], "languages": { "main": [ @@ -17069,80 +15505,52 @@ ] }, "titles": { - "main": ["Harry Potter og Fønixordenen"], + "main": [ + "Harry Potter and the Chamber of Secrets (Ill. Jim Kay)" + ], "original": [] }, "fictionNonfiction": { - "display": "fiktion", + "display": "skønlitteratur", "code": "FICTION" }, "materialTypes": [ { "materialTypeSpecific": { - "display": "film (dvd)" + "display": "bog" } } ], "creators": [ - { - "display": "David Yates", - "__typename": "Person" - }, - { - "display": "Michael Goldenberg", - "__typename": "Person" - }, - { - "display": "Sławomir Idziak", - "__typename": "Person" - }, { "display": "Joanne K. Rowling", "__typename": "Person" } ], - "publisher": ["Warner Bros. Entertainment Danmark"], + "publisher": ["Bloomsbury"], "identifiers": [ { - "value": "Y 17492" + "value": "9781408845653" } ], "contributors": [ { - "display": "Daniel Radcliffe" - }, - { - "display": "Rupert Grint" - }, - { - "display": "Emma Watson" - }, - { - "display": "Robbie Coltrane" - }, - { - "display": "Ralph Fiennes" - }, - { - "display": "Michael Gambon" - }, - { - "display": "Brendan Gleeson" + "display": "Jim Kay" } ], "edition": { - "summary": "2-disc special edition, 2007", + "summary": "2016", "publicationYear": { - "display": "2007" + "display": "2016" } }, "dateFirstEdition": null, "audience": { - "generalAudience": ["Mærkning: Tilladt for børn over 11 år"] + "generalAudience": [] }, "physicalDescriptions": [ { - "numberOfPages": null, + "numberOfPages": 258, "playingTime": { "materialUnits": [ { @@ -17163,16 +15571,16 @@ "loanIsPossible": true } ], - "shelfmark": { - "postfix": "Harry", - "shelfmark": "77.7" + "shelfmark": { + "postfix": "Rowling", + "shelfmark": "83" }, "workYear": null } ], "latest": { - "pid": "870970-basis:27131158", - "genreAndForm": [], + "pid": "870970-basis:52561604", + "genreAndForm": ["roman", "fantasy"], "source": ["Bibliotekskatalog"], "languages": { "main": [ @@ -17183,81 +15591,53 @@ ] }, "titles": { - "main": ["Harry Potter og Fønixordenen"], + "main": [ + "Harry Potter and the Chamber of Secrets (Ill. Jim Kay)" + ], "original": [] }, "fictionNonfiction": { - "display": "fiktion", + "display": "skønlitteratur", "code": "FICTION" }, "materialTypes": [ { "materialTypeSpecific": { - "display": "film (dvd)" + "display": "bog" } } ], "creators": [ - { - "display": "David Yates", - "__typename": "Person" - }, - { - "display": "Michael Goldenberg", - "__typename": "Person" - }, - { - "display": "Sławomir Idziak", - "__typename": "Person" - }, { "display": "Joanne K. Rowling", "__typename": "Person" } ], - "publisher": ["Warner Bros. Entertainment Danmark"], + "publisher": ["Bloomsbury"], "identifiers": [ { - "value": "Y 17492" + "value": "9781408845653" } ], "contributors": [ { - "display": "Daniel Radcliffe" - }, - { - "display": "Rupert Grint" - }, - { - "display": "Emma Watson" - }, - { - "display": "Robbie Coltrane" - }, - { - "display": "Ralph Fiennes" - }, - { - "display": "Michael Gambon" - }, - { - "display": "Brendan Gleeson" + "display": "Jim Kay" } ], "edition": { - "summary": "2-disc special edition, 2007", + "summary": "2016", "publicationYear": { - "display": "2007" + "display": "2016" } }, "dateFirstEdition": null, "audience": { - "generalAudience": ["Mærkning: Tilladt for børn over 11 år"] + "generalAudience": [] }, "physicalDescriptions": [ { - "numberOfPages": null, - "playingTime": "ca. 2 t., 12 min." + "numberOfPages": 258, + "playingTime": null } ], "accessTypes": [ @@ -17272,14 +15652,14 @@ } ], "shelfmark": { - "postfix": "Harry", - "shelfmark": "77.7" + "postfix": "Rowling", + "shelfmark": "83" }, "workYear": null }, "bestRepresentation": { - "pid": "870970-basis:27091423", - "genreAndForm": [], + "pid": "870970-basis:52561604", + "genreAndForm": ["roman", "fantasy"], "source": ["Bibliotekskatalog"], "languages": { "main": [ @@ -17290,81 +15670,53 @@ ] }, "titles": { - "main": ["Harry Potter og Fønixordenen"], + "main": [ + "Harry Potter and the Chamber of Secrets (Ill. Jim Kay)" + ], "original": [] }, "fictionNonfiction": { - "display": "fiktion", + "display": "skønlitteratur", "code": "FICTION" }, "materialTypes": [ { "materialTypeSpecific": { - "display": "film (dvd)" + "display": "bog" } } ], "creators": [ - { - "display": "David Yates", - "__typename": "Person" - }, - { - "display": "Michael Goldenberg", - "__typename": "Person" - }, - { - "display": "Sławomir Idziak", - "__typename": "Person" - }, { "display": "Joanne K. Rowling", "__typename": "Person" } ], - "publisher": ["Warner Bros. Entertainment Danmark"], + "publisher": ["Bloomsbury"], "identifiers": [ { - "value": "59326" + "value": "9781408845653" } ], "contributors": [ { - "display": "Daniel Radcliffe" - }, - { - "display": "Rupert Grint" - }, - { - "display": "Emma Watson" - }, - { - "display": "Robbie Coltrane" - }, - { - "display": "Ralph Fiennes" - }, - { - "display": "Michael Gambon" - }, - { - "display": "Brendan Gleeson" + "display": "Jim Kay" } ], "edition": { - "summary": "2007", + "summary": "2016", "publicationYear": { - "display": "2007" + "display": "2016" } }, "dateFirstEdition": null, "audience": { - "generalAudience": ["Mærkning: Tilladt for børn over 11 år"] + "generalAudience": [] }, "physicalDescriptions": [ { - "numberOfPages": null, - "playingTime": "ca. 2 t., 12 min." + "numberOfPages": 258, + "playingTime": null } ], "accessTypes": [ @@ -17379,21 +15731,21 @@ } ], "shelfmark": { - "postfix": "Harry", - "shelfmark": "77.7" + "postfix": "Rowling", + "shelfmark": "83" }, "workYear": null } } }, { - "workId": "work-of:870970-basis:27831184", + "workId": "work-of:870970-basis:27091423", "titles": { - "full": ["Harry Potter og halvblodsprinsen"], + "full": ["Harry Potter og Fønixordenen"], "original": [] }, "abstract": [ - "Harry Potter er den udvalgte troldmandselev, som skal kæmpe mod den onde Lord Voldemort. Men Lord Voldemort har mange forklædninger og mange skjulesteder, og meget tyder på, at han befinder sig inden for troldmandsskolens mure. Og hvem kan man så stole på?" + "Harry Potter er overbevist om at den onde Lord Voldemort er vendt tilbage, men ingen tror på ham. Slet ikke den emsige Dolora Nidkjær, der har overtaget ledelsen af troldmandsskolen Hogwarts og især holder øje med Harry Potter, der i skjul må mobilisere vennerne" ], "creators": [ { @@ -17401,11 +15753,11 @@ "__typename": "Person" }, { - "display": "Bruno Delbonnel", + "display": "Michael Goldenberg", "__typename": "Person" }, { - "display": "Steve Kloves", + "display": "Sławomir Idziak", "__typename": "Person" }, { @@ -17421,7 +15773,7 @@ "readThisWhenever": null, "members": [ { - "numberInSeries": "6", + "numberInSeries": "5", "work": { "workId": "work-of:870970-basis:22629344", "titles": { @@ -17432,7 +15784,7 @@ } }, { - "numberInSeries": "6", + "numberInSeries": "5", "work": { "workId": "work-of:870970-basis:22677780", "titles": { @@ -17443,7 +15795,7 @@ } }, { - "numberInSeries": "6", + "numberInSeries": "5", "work": { "workId": "work-of:870970-basis:22995154", "titles": { @@ -17454,7 +15806,7 @@ } }, { - "numberInSeries": "6", + "numberInSeries": "5", "work": { "workId": "work-of:870970-basis:23540703", "titles": { @@ -17465,7 +15817,7 @@ } }, { - "numberInSeries": "6", + "numberInSeries": "5", "work": { "workId": "work-of:870970-basis:25245784", "titles": { @@ -17476,7 +15828,7 @@ } }, { - "numberInSeries": "6", + "numberInSeries": "5", "work": { "workId": "work-of:870970-basis:25807995", "titles": { @@ -17487,7 +15839,7 @@ } }, { - "numberInSeries": "6", + "numberInSeries": "5", "work": { "workId": "work-of:870970-basis:27267912", "titles": { @@ -17498,7 +15850,7 @@ } }, { - "numberInSeries": "6", + "numberInSeries": "5", "work": { "workId": "work-of:870970-basis:52646251", "titles": { @@ -17509,16 +15861,129 @@ "original": ["Harry Potter and the cursed child"] } } - } - ] - } - ], - "workYear": null, - "genreAndForm": ["børnefilm"], - "manifestations": { - "all": [ + } + ] + } + ], + "workYear": null, + "genreAndForm": ["børnefilm"], + "manifestations": { + "all": [ + { + "pid": "870970-basis:27091423", + "genreAndForm": [], + "source": ["Bibliotekskatalog"], + "languages": { + "main": [ + { + "display": "engelsk", + "isoCode": "eng" + } + ] + }, + "titles": { + "main": ["Harry Potter og Fønixordenen"], + "original": [] + }, + "fictionNonfiction": { + "display": "fiktion", + "code": "FICTION" + }, + "materialTypes": [ + { + "materialTypeSpecific": { + "display": "film (dvd)" + } + } + ], + "creators": [ + { + "display": "David Yates", + "__typename": "Person" + }, + { + "display": "Michael Goldenberg", + "__typename": "Person" + }, + { + "display": "Sławomir Idziak", + "__typename": "Person" + }, + { + "display": "Joanne K. Rowling", + "__typename": "Person" + } + ], + "publisher": ["Warner Bros. Entertainment Danmark"], + "identifiers": [ + { + "value": "59326" + } + ], + "contributors": [ + { + "display": "Daniel Radcliffe" + }, + { + "display": "Rupert Grint" + }, + { + "display": "Emma Watson" + }, + { + "display": "Robbie Coltrane" + }, + { + "display": "Ralph Fiennes" + }, + { + "display": "Michael Gambon" + }, + { + "display": "Brendan Gleeson" + } + ], + "edition": { + "summary": "2007", + "publicationYear": { + "display": "2007" + } + }, + "dateFirstEdition": null, + "audience": { + "generalAudience": ["Mærkning: Tilladt for børn over 11 år"] + }, + "physicalDescriptions": [ + { + "numberOfPages": null, + "playingTime": { + "materialUnits": [ + { + "extent": null + } + ] + } + } + ], + "accessTypes": [ + { + "code": "PHYSICAL" + } + ], + "access": [ + { + "__typename": "InterLibraryLoan", + "loanIsPossible": true + } + ], + "shelfmark": { + "postfix": "Harry", + "shelfmark": "77.7" + }, + "workYear": null + }, { - "pid": "870970-basis:27831184", + "pid": "870970-basis:27123295", "genreAndForm": [], "source": ["Bibliotekskatalog"], "languages": { @@ -17530,7 +15995,7 @@ ] }, "titles": { - "main": ["Harry Potter og halvblodsprinsen"], + "main": ["Harry Potter og Fønixordenen"], "original": [] }, "fictionNonfiction": { @@ -17540,7 +16005,7 @@ "materialTypes": [ { "materialTypeSpecific": { - "display": "film (dvd)" + "display": "film (blu-ray)" } } ], @@ -17550,11 +16015,11 @@ "__typename": "Person" }, { - "display": "Bruno Delbonnel", + "display": "Michael Goldenberg", "__typename": "Person" }, { - "display": "Steve Kloves", + "display": "Sławomir Idziak", "__typename": "Person" }, { @@ -17565,7 +16030,7 @@ "publisher": ["Warner Bros. Entertainment Danmark"], "identifiers": [ { - "value": "Y 22513" + "value": "Y 15694" } ], "contributors": [ @@ -17582,19 +16047,13 @@ "display": "Robbie Coltrane" }, { - "display": "Helena Bonham Carter" - }, - { - "display": "Jim Broadbent" + "display": "Ralph Fiennes" }, { "display": "Michael Gambon" }, { - "display": "Alan Rickman" - }, - { - "display": "Maggie Smith" + "display": "Brendan Gleeson" } ], "edition": { @@ -17637,7 +16096,7 @@ "workYear": null }, { - "pid": "870970-basis:28058306", + "pid": "870970-basis:27125255", "genreAndForm": [], "source": ["Bibliotekskatalog"], "languages": { @@ -17649,7 +16108,7 @@ ] }, "titles": { - "main": ["Harry Potter og halvblodsprinsen"], + "main": ["Harry Potter og Fønixordenen"], "original": [] }, "fictionNonfiction": { @@ -17669,11 +16128,11 @@ "__typename": "Person" }, { - "display": "Bruno Delbonnel", + "display": "Michael Goldenberg", "__typename": "Person" }, { - "display": "Steve Kloves", + "display": "Sławomir Idziak", "__typename": "Person" }, { @@ -17684,7 +16143,7 @@ "publisher": ["Warner Bros. Entertainment Danmark"], "identifiers": [ { - "value": "Y 22512" + "value": "Y 15696" } ], "contributors": [ @@ -17701,25 +16160,19 @@ "display": "Robbie Coltrane" }, { - "display": "Helena Bonham Carter" - }, - { - "display": "Jim Broadbent" + "display": "Ralph Fiennes" }, { "display": "Michael Gambon" }, { - "display": "Alan Rickman" - }, - { - "display": "Maggie Smith" + "display": "Brendan Gleeson" } ], "edition": { - "summary": "2-disc special edition, 2009", + "summary": "2007", "publicationYear": { - "display": "2009" + "display": "2007" } }, "dateFirstEdition": null, @@ -17754,123 +16207,123 @@ "shelfmark": "77.7" }, "workYear": null - } - ], - "latest": { - "pid": "870970-basis:28058306", - "genreAndForm": [], - "source": ["Bibliotekskatalog"], - "languages": { - "main": [ - { - "display": "engelsk", - "isoCode": "eng" - } - ] - }, - "titles": { - "main": ["Harry Potter og halvblodsprinsen"], - "original": [] - }, - "fictionNonfiction": { - "display": "fiktion", - "code": "FICTION" }, - "materialTypes": [ - { - "materialTypeSpecific": { - "display": "film (dvd)" - } - } - ], - "creators": [ - { - "display": "David Yates", - "__typename": "Person" - }, - { - "display": "Bruno Delbonnel", - "__typename": "Person" - }, - { - "display": "Steve Kloves", - "__typename": "Person" - }, - { - "display": "Joanne K. Rowling", - "__typename": "Person" - } - ], - "publisher": ["Warner Bros. Entertainment Danmark"], - "identifiers": [ - { - "value": "Y 22512" - } - ], - "contributors": [ - { - "display": "Daniel Radcliffe" - }, - { - "display": "Rupert Grint" - }, - { - "display": "Emma Watson" - }, - { - "display": "Robbie Coltrane" - }, - { - "display": "Helena Bonham Carter" - }, - { - "display": "Jim Broadbent" + { + "pid": "870970-basis:27131158", + "genreAndForm": [], + "source": ["Bibliotekskatalog"], + "languages": { + "main": [ + { + "display": "engelsk", + "isoCode": "eng" + } + ] }, - { - "display": "Michael Gambon" + "titles": { + "main": ["Harry Potter og Fønixordenen"], + "original": [] }, - { - "display": "Alan Rickman" + "fictionNonfiction": { + "display": "fiktion", + "code": "FICTION" }, - { - "display": "Maggie Smith" - } - ], - "edition": { - "summary": "2-disc special edition, 2009", - "publicationYear": { - "display": "2009" - } - }, - "dateFirstEdition": null, - "audience": { - "generalAudience": ["Mærkning: Tilladt for børn over 11 år"] - }, - "physicalDescriptions": [ - { - "numberOfPages": null, - "playingTime": "ca. 2 t., 27 min." - } - ], - "accessTypes": [ - { - "code": "PHYSICAL" - } - ], - "access": [ - { - "__typename": "InterLibraryLoan", - "loanIsPossible": true - } - ], - "shelfmark": { - "postfix": "Harry", - "shelfmark": "77.7" - }, - "workYear": null - }, - "bestRepresentation": { - "pid": "870970-basis:28058306", + "materialTypes": [ + { + "materialTypeSpecific": { + "display": "film (dvd)" + } + } + ], + "creators": [ + { + "display": "David Yates", + "__typename": "Person" + }, + { + "display": "Michael Goldenberg", + "__typename": "Person" + }, + { + "display": "Sławomir Idziak", + "__typename": "Person" + }, + { + "display": "Joanne K. Rowling", + "__typename": "Person" + } + ], + "publisher": ["Warner Bros. Entertainment Danmark"], + "identifiers": [ + { + "value": "Y 17492" + } + ], + "contributors": [ + { + "display": "Daniel Radcliffe" + }, + { + "display": "Rupert Grint" + }, + { + "display": "Emma Watson" + }, + { + "display": "Robbie Coltrane" + }, + { + "display": "Ralph Fiennes" + }, + { + "display": "Michael Gambon" + }, + { + "display": "Brendan Gleeson" + } + ], + "edition": { + "summary": "2-disc special edition, 2007", + "publicationYear": { + "display": "2007" + } + }, + "dateFirstEdition": null, + "audience": { + "generalAudience": ["Mærkning: Tilladt for børn over 11 år"] + }, + "physicalDescriptions": [ + { + "numberOfPages": null, + "playingTime": { + "materialUnits": [ + { + "extent": null + } + ] + } + } + ], + "accessTypes": [ + { + "code": "PHYSICAL" + } + ], + "access": [ + { + "__typename": "InterLibraryLoan", + "loanIsPossible": true + } + ], + "shelfmark": { + "postfix": "Harry", + "shelfmark": "77.7" + }, + "workYear": null + } + ], + "latest": { + "pid": "870970-basis:27131158", "genreAndForm": [], "source": ["Bibliotekskatalog"], "languages": { @@ -17882,7 +16335,7 @@ ] }, "titles": { - "main": ["Harry Potter og halvblodsprinsen"], + "main": ["Harry Potter og Fønixordenen"], "original": [] }, "fictionNonfiction": { @@ -17902,11 +16355,11 @@ "__typename": "Person" }, { - "display": "Bruno Delbonnel", + "display": "Michael Goldenberg", "__typename": "Person" }, { - "display": "Steve Kloves", + "display": "Sławomir Idziak", "__typename": "Person" }, { @@ -17917,7 +16370,7 @@ "publisher": ["Warner Bros. Entertainment Danmark"], "identifiers": [ { - "value": "Y 22512" + "value": "Y 17492" } ], "contributors": [ @@ -17934,517 +16387,290 @@ "display": "Robbie Coltrane" }, { - "display": "Helena Bonham Carter" - }, - { - "display": "Jim Broadbent" + "display": "Ralph Fiennes" }, { "display": "Michael Gambon" }, { - "display": "Alan Rickman" - }, - { - "display": "Maggie Smith" + "display": "Brendan Gleeson" } ], "edition": { - "summary": "2-disc special edition, 2009", + "summary": "2-disc special edition, 2007", "publicationYear": { - "display": "2009" - } - }, - "dateFirstEdition": null, - "audience": { - "generalAudience": ["Mærkning: Tilladt for børn over 11 år"] - }, - "physicalDescriptions": [ - { - "numberOfPages": null, - "playingTime": "ca. 2 t., 27 min." - } - ], - "accessTypes": [ - { - "code": "PHYSICAL" - } - ], - "access": [ - { - "__typename": "InterLibraryLoan", - "loanIsPossible": true - } - ], - "shelfmark": { - "postfix": "Harry", - "shelfmark": "77.7" - }, - "workYear": null - } - } - }, - { - "workId": "work-of:870970-basis:23346346", - "titles": { - "full": ["Harry Potter and the prisoner of Azkaban"], - "original": [] - }, - "abstract": [ - "Fantasy. Harry Potter er elev på trolddomsskolen på tredje år. Han får at vide, at hans forældres morder er flygtet fra Azkabanfængslet og nu også vil dræbe ham" - ], - "creators": [ - { - "display": "Joanne K. Rowling", - "__typename": "Person" - } - ], - "series": [ - { - "title": "Harry Potter (engelsk)", - "isPopular": true, - "readThisFirst": null, - "readThisWhenever": null, - "members": [ - { - "numberInSeries": "3", - "work": { - "workId": "work-of:870970-basis:22629344", - "titles": { - "main": ["Harry Potter og de vises sten"], - "full": ["Harry Potter og de vises sten"], - "original": ["Harry Potter and the philosopher's stone"] - } - } - }, - { - "numberInSeries": "3", - "work": { - "workId": "work-of:870970-basis:22677780", - "titles": { - "main": ["Harry Potter og Hemmelighedernes Kammer"], - "full": ["Harry Potter og Hemmelighedernes Kammer"], - "original": ["Harry Potter and the Chamber of Secrets"] - } - } - }, - { - "numberInSeries": "3", - "work": { - "workId": "work-of:870970-basis:22995154", - "titles": { - "main": ["Harry Potter og fangen fra Azkaban"], - "full": ["Harry Potter og fangen fra Azkaban"], - "original": ["Harry Potter and the prisoner of Azkaban"] - } - } - }, - { - "numberInSeries": "3", - "work": { - "workId": "work-of:870970-basis:23540703", - "titles": { - "main": ["Harry Potter og Flammernes Pokal"], - "full": ["Harry Potter og Flammernes Pokal"], - "original": ["Harry Potter and the goblet of fire"] - } - } - }, - { - "numberInSeries": "3", - "work": { - "workId": "work-of:870970-basis:25245784", - "titles": { - "main": ["Harry Potter og Fønixordenen"], - "full": ["Harry Potter og Fønixordenen"], - "original": ["Harry Potter and the Order of the Phoenix"] - } - } - }, - { - "numberInSeries": "3", - "work": { - "workId": "work-of:870970-basis:25807995", - "titles": { - "main": ["Harry Potter og halvblodsprinsen"], - "full": ["Harry Potter og halvblodsprinsen"], - "original": ["Harry Potter and the half-blood prince"] - } - } - }, - { - "numberInSeries": "3", - "work": { - "workId": "work-of:870970-basis:27267912", - "titles": { - "main": ["Harry Potter og dødsregalierne"], - "full": ["Harry Potter og dødsregalierne"], - "original": ["Harry Potter and the deathly hallows"] - } - } - }, - { - "numberInSeries": "3", - "work": { - "workId": "work-of:870970-basis:52646251", - "titles": { - "main": ["Harry Potter og det forbandede barn"], - "full": [ - "Harry Potter og det forbandede barn : del et & to" - ], - "original": ["Harry Potter and the cursed child"] - } - } - } - ] - } - ], - "workYear": { - "year": 1999 - }, - "genreAndForm": [ - "roman", - "fantasy", - "eventyrlige fortællinger", - "romaner" - ], - "manifestations": { - "all": [ - { - "pid": "870970-basis:23346346", - "genreAndForm": [], - "source": ["Bibliotekskatalog"], - "languages": { - "main": [ - { - "display": "engelsk", - "isoCode": "eng" - } - ] - }, - "titles": { - "main": ["Harry Potter and the prisoner of Azkaban"], - "original": [] - }, - "fictionNonfiction": { - "display": "skønlitteratur", - "code": "FICTION" - }, - "materialTypes": [ - { - "materialTypeSpecific": { - "display": "bog" - } - } - ], - "creators": [ - { - "display": "Joanne K. Rowling", - "__typename": "Person" - } - ], - "publisher": ["Bloomsbury"], - "identifiers": [ + "display": "2007" + } + }, + "dateFirstEdition": null, + "audience": { + "generalAudience": ["Mærkning: Tilladt for børn over 11 år"] + }, + "physicalDescriptions": [ + { + "numberOfPages": null, + "playingTime": "ca. 2 t., 12 min." + } + ], + "accessTypes": [ + { + "code": "PHYSICAL" + } + ], + "access": [ + { + "__typename": "InterLibraryLoan", + "loanIsPossible": true + } + ], + "shelfmark": { + "postfix": "Harry", + "shelfmark": "77.7" + }, + "workYear": null + }, + "bestRepresentation": { + "pid": "870970-basis:27091423", + "genreAndForm": [], + "source": ["Bibliotekskatalog"], + "languages": { + "main": [ { - "value": "0-7475-4511-1" + "display": "engelsk", + "isoCode": "eng" } - ], - "contributors": [], - "edition": { - "summary": "Bloomsbury, 1999", - "publicationYear": { - "display": "1999" + ] + }, + "titles": { + "main": ["Harry Potter og Fønixordenen"], + "original": [] + }, + "fictionNonfiction": { + "display": "fiktion", + "code": "FICTION" + }, + "materialTypes": [ + { + "materialTypeSpecific": { + "display": "film (dvd)" } + } + ], + "creators": [ + { + "display": "David Yates", + "__typename": "Person" }, - "dateFirstEdition": null, - "audience": { - "generalAudience": [] + { + "display": "Michael Goldenberg", + "__typename": "Person" }, - "physicalDescriptions": [ - { - "numberOfPages": 317, - "playingTime": { - "materialUnits": [ - { - "extent": null - } - ] - } - } - ], - "accessTypes": [ - { - "code": "PHYSICAL" - } - ], - "access": [ - { - "__typename": "InterLibraryLoan", - "loanIsPossible": true - } - ], - "shelfmark": { - "postfix": "Rowling", - "shelfmark": "83" + { + "display": "Sławomir Idziak", + "__typename": "Person" }, - "workYear": null - }, - { - "pid": "870970-basis:25699785", - "genreAndForm": ["roman"], - "source": ["Bibliotekskatalog"], - "languages": { - "main": [ - { - "display": "engelsk", - "isoCode": "eng" - } - ] + { + "display": "Joanne K. Rowling", + "__typename": "Person" + } + ], + "publisher": ["Warner Bros. Entertainment Danmark"], + "identifiers": [ + { + "value": "59326" + } + ], + "contributors": [ + { + "display": "Daniel Radcliffe" }, - "titles": { - "main": ["Harry Potter and the prisoner of Azkaban"], - "original": [] + { + "display": "Rupert Grint" }, - "fictionNonfiction": { - "display": "skønlitteratur", - "code": "FICTION" + { + "display": "Emma Watson" }, - "materialTypes": [ - { - "materialTypeSpecific": { - "display": "lydbog (bånd)" - } - } - ], - "creators": [ - { - "display": "Joanne K. Rowling", - "__typename": "Person" - }, - { - "display": "Stephen Fry", - "__typename": "Person" - } - ], - "publisher": ["Danmarks Blindebibliotek"], - "identifiers": [ - { - "value": "Best.nr. 15615" - } - ], - "contributors": [ - { - "display": "Stephen Fry" - } - ], - "edition": { - "summary": "2005", - "publicationYear": { - "display": "2005" - } + { + "display": "Robbie Coltrane" }, - "dateFirstEdition": { - "display": "1999", - "year": 1999 + { + "display": "Ralph Fiennes" }, - "audience": { - "generalAudience": [] + { + "display": "Michael Gambon" }, - "physicalDescriptions": [ - { - "numberOfPages": null, - "playingTime": { - "materialUnits": [ - { - "extent": null - } - ] + { + "display": "Brendan Gleeson" + } + ], + "edition": { + "summary": "2007", + "publicationYear": { + "display": "2007" + } + }, + "dateFirstEdition": null, + "audience": { + "generalAudience": ["Mærkning: Tilladt for børn over 11 år"] + }, + "physicalDescriptions": [ + { + "numberOfPages": null, + "playingTime": "ca. 2 t., 12 min." + } + ], + "accessTypes": [ + { + "code": "PHYSICAL" + } + ], + "access": [ + { + "__typename": "InterLibraryLoan", + "loanIsPossible": true + } + ], + "shelfmark": { + "postfix": "Harry", + "shelfmark": "77.7" + }, + "workYear": null + } + } + }, + { + "workId": "work-of:870970-basis:27831184", + "titles": { + "full": ["Harry Potter og halvblodsprinsen"], + "original": [] + }, + "abstract": [ + "Harry Potter er den udvalgte troldmandselev, som skal kæmpe mod den onde Lord Voldemort. Men Lord Voldemort har mange forklædninger og mange skjulesteder, og meget tyder på, at han befinder sig inden for troldmandsskolens mure. Og hvem kan man så stole på?" + ], + "creators": [ + { + "display": "David Yates", + "__typename": "Person" + }, + { + "display": "Bruno Delbonnel", + "__typename": "Person" + }, + { + "display": "Steve Kloves", + "__typename": "Person" + }, + { + "display": "Joanne K. Rowling", + "__typename": "Person" + } + ], + "series": [ + { + "title": "Harry Potter (film)", + "isPopular": true, + "readThisFirst": null, + "readThisWhenever": null, + "members": [ + { + "numberInSeries": "6", + "work": { + "workId": "work-of:870970-basis:22629344", + "titles": { + "main": ["Harry Potter og de vises sten"], + "full": ["Harry Potter og de vises sten"], + "original": ["Harry Potter and the philosopher's stone"] } } - ], - "accessTypes": [ - { - "code": "PHYSICAL" - } - ], - "access": [ - { - "__typename": "InterLibraryLoan", - "loanIsPossible": true - } - ], - "shelfmark": { - "postfix": "Rowling", - "shelfmark": "83" }, - "workYear": null - }, - { - "pid": "870970-basis:42042463", - "genreAndForm": ["roman"], - "source": ["Bibliotekskatalog"], - "languages": { - "main": [ - { - "display": "engelsk", - "isoCode": "eng" + { + "numberInSeries": "6", + "work": { + "workId": "work-of:870970-basis:22677780", + "titles": { + "main": ["Harry Potter og Hemmelighedernes Kammer"], + "full": ["Harry Potter og Hemmelighedernes Kammer"], + "original": ["Harry Potter and the Chamber of Secrets"] } - ] - }, - "titles": { - "main": ["Harry Potter and the prisoner of Azkaban"], - "original": [] - }, - "fictionNonfiction": { - "display": "skønlitteratur", - "code": "FICTION" + } }, - "materialTypes": [ - { - "materialTypeSpecific": { - "display": "bog" + { + "numberInSeries": "6", + "work": { + "workId": "work-of:870970-basis:22995154", + "titles": { + "main": ["Harry Potter og fangen fra Azkaban"], + "full": ["Harry Potter og fangen fra Azkaban"], + "original": ["Harry Potter and the prisoner of Azkaban"] } } - ], - "creators": [ - { - "display": "Joanne K. Rowling", - "__typename": "Person" - } - ], - "publisher": ["Bloomsbury Children's"], - "identifiers": [ - { - "value": "0-7475-5362-9" - }, - { - "value": "0-7475-4215-5" - } - ], - "contributors": [], - "edition": { - "summary": "1999", - "publicationYear": { - "display": "1999" - } - }, - "dateFirstEdition": null, - "audience": { - "generalAudience": [] }, - "physicalDescriptions": [ - { - "numberOfPages": 317, - "playingTime": { - "materialUnits": [ - { - "extent": null - } - ] + { + "numberInSeries": "6", + "work": { + "workId": "work-of:870970-basis:23540703", + "titles": { + "main": ["Harry Potter og Flammernes Pokal"], + "full": ["Harry Potter og Flammernes Pokal"], + "original": ["Harry Potter and the goblet of fire"] } } - ], - "accessTypes": [ - { - "code": "PHYSICAL" - } - ], - "access": [ - { - "__typename": "InterLibraryLoan", - "loanIsPossible": true - } - ], - "shelfmark": { - "postfix": "Rowling", - "shelfmark": "83" }, - "workYear": null - }, - { - "pid": "870970-basis:42260851", - "genreAndForm": ["roman"], - "source": ["Bibliotekskatalog"], - "languages": { - "main": [ - { - "display": "engelsk", - "isoCode": "eng" + { + "numberInSeries": "6", + "work": { + "workId": "work-of:870970-basis:25245784", + "titles": { + "main": ["Harry Potter og Fønixordenen"], + "full": ["Harry Potter og Fønixordenen"], + "original": ["Harry Potter and the Order of the Phoenix"] } - ] - }, - "titles": { - "main": ["Harry Potter and the prisoner of Azkaban"], - "original": [] - }, - "fictionNonfiction": { - "display": "skønlitteratur", - "code": "FICTION" + } }, - "materialTypes": [ - { - "materialTypeSpecific": { - "display": "bog" + { + "numberInSeries": "6", + "work": { + "workId": "work-of:870970-basis:25807995", + "titles": { + "main": ["Harry Potter og halvblodsprinsen"], + "full": ["Harry Potter og halvblodsprinsen"], + "original": ["Harry Potter and the half-blood prince"] } } - ], - "creators": [ - { - "display": "Joanne K. Rowling", - "__typename": "Person" - } - ], - "publisher": ["Bloomsbury"], - "identifiers": [ - { - "value": "0-7475-6000-5" - }, - { - "value": "0-7475-4634-7" - } - ], - "contributors": [], - "edition": { - "summary": "2000", - "publicationYear": { - "display": "2000" - } - }, - "dateFirstEdition": null, - "audience": { - "generalAudience": [] }, - "physicalDescriptions": [ - { - "numberOfPages": 317, - "playingTime": { - "materialUnits": [ - { - "extent": null - } - ] + { + "numberInSeries": "6", + "work": { + "workId": "work-of:870970-basis:27267912", + "titles": { + "main": ["Harry Potter og dødsregalierne"], + "full": ["Harry Potter og dødsregalierne"], + "original": ["Harry Potter and the deathly hallows"] } } - ], - "accessTypes": [ - { - "code": "PHYSICAL" - } - ], - "access": [ - { - "__typename": "InterLibraryLoan", - "loanIsPossible": true - } - ], - "shelfmark": { - "postfix": "Rowling", - "shelfmark": "83" }, - "workYear": null - }, + { + "numberInSeries": "6", + "work": { + "workId": "work-of:870970-basis:52646251", + "titles": { + "main": ["Harry Potter og det forbandede barn"], + "full": [ + "Harry Potter og det forbandede barn : del et & to" + ], + "original": ["Harry Potter and the cursed child"] + } + } + } + ] + } + ], + "workYear": null, + "genreAndForm": ["børnefilm"], + "manifestations": { + "all": [ { - "pid": "870970-basis:42299464", + "pid": "870970-basis:27831184", "genreAndForm": [], "source": ["Bibliotekskatalog"], "languages": { @@ -18456,46 +16682,86 @@ ] }, "titles": { - "main": ["Harry Potter and the prisoner of Azkaban"], + "main": ["Harry Potter og halvblodsprinsen"], "original": [] }, "fictionNonfiction": { - "display": "skønlitteratur", + "display": "fiktion", "code": "FICTION" }, "materialTypes": [ { "materialTypeSpecific": { - "display": "bog" + "display": "film (dvd)" } } ], "creators": [ + { + "display": "David Yates", + "__typename": "Person" + }, + { + "display": "Bruno Delbonnel", + "__typename": "Person" + }, + { + "display": "Steve Kloves", + "__typename": "Person" + }, { "display": "Joanne K. Rowling", "__typename": "Person" } ], - "publisher": ["Bloomsbury"], + "publisher": ["Warner Bros. Entertainment Danmark"], "identifiers": [ { - "value": "0-7475-4950-8" + "value": "Y 22513" + } + ], + "contributors": [ + { + "display": "Daniel Radcliffe" + }, + { + "display": "Rupert Grint" + }, + { + "display": "Emma Watson" + }, + { + "display": "Robbie Coltrane" + }, + { + "display": "Helena Bonham Carter" + }, + { + "display": "Jim Broadbent" + }, + { + "display": "Michael Gambon" + }, + { + "display": "Alan Rickman" + }, + { + "display": "Maggie Smith" } ], - "contributors": [], "edition": { - "summary": "1999", + "summary": "2007", "publicationYear": { - "display": "1999" + "display": "2007" } }, "dateFirstEdition": null, "audience": { - "generalAudience": [] + "generalAudience": ["Mærkning: Tilladt for børn over 11 år"] }, "physicalDescriptions": [ { - "numberOfPages": 468, + "numberOfPages": null, "playingTime": { "materialUnits": [ { @@ -18517,14 +16783,14 @@ } ], "shelfmark": { - "postfix": "Rowling", - "shelfmark": "83" + "postfix": "Harry", + "shelfmark": "77.7" }, "workYear": null }, { - "pid": "870970-basis:42340294", - "genreAndForm": ["roman"], + "pid": "870970-basis:28058306", + "genreAndForm": [], "source": ["Bibliotekskatalog"], "languages": { "main": [ @@ -18535,49 +16801,82 @@ ] }, "titles": { - "main": ["Harry Potter and the prisoner of Azkaban"], + "main": ["Harry Potter og halvblodsprinsen"], "original": [] }, "fictionNonfiction": { - "display": "skønlitteratur", + "display": "fiktion", "code": "FICTION" }, "materialTypes": [ { "materialTypeSpecific": { - "display": "lydbog (cd)" + "display": "film (dvd)" } } ], "creators": [ { - "display": "Joanne K. Rowling", + "display": "David Yates", "__typename": "Person" }, { - "display": "Stephen Fry", + "display": "Bruno Delbonnel", + "__typename": "Person" + }, + { + "display": "Steve Kloves", + "__typename": "Person" + }, + { + "display": "Joanne K. Rowling", "__typename": "Person" } ], - "publisher": ["Cover to Cover"], + "publisher": ["Warner Bros. Entertainment Danmark"], "identifiers": [ { - "value": "1-85549-672-0" + "value": "Y 22512" + } + ], + "contributors": [ + { + "display": "Daniel Radcliffe" + }, + { + "display": "Rupert Grint" + }, + { + "display": "Emma Watson" + }, + { + "display": "Robbie Coltrane" + }, + { + "display": "Helena Bonham Carter" + }, + { + "display": "Jim Broadbent" + }, + { + "display": "Michael Gambon" + }, + { + "display": "Alan Rickman" + }, + { + "display": "Maggie Smith" } ], - "contributors": [], "edition": { - "summary": "2000", + "summary": "2-disc special edition, 2009", "publicationYear": { - "display": "2000" + "display": "2009" } }, - "dateFirstEdition": { - "display": "1999", - "year": 1999 - }, + "dateFirstEdition": null, "audience": { - "generalAudience": [] + "generalAudience": ["Mærkning: Tilladt for børn over 11 år"] }, "physicalDescriptions": [ { @@ -18598,283 +16897,374 @@ ], "access": [ { - "__typename": "InterLibraryLoan", - "loanIsPossible": true + "__typename": "InterLibraryLoan", + "loanIsPossible": true + } + ], + "shelfmark": { + "postfix": "Harry", + "shelfmark": "77.7" + }, + "workYear": null + } + ], + "latest": { + "pid": "870970-basis:28058306", + "genreAndForm": [], + "source": ["Bibliotekskatalog"], + "languages": { + "main": [ + { + "display": "engelsk", + "isoCode": "eng" + } + ] + }, + "titles": { + "main": ["Harry Potter og halvblodsprinsen"], + "original": [] + }, + "fictionNonfiction": { + "display": "fiktion", + "code": "FICTION" + }, + "materialTypes": [ + { + "materialTypeSpecific": { + "display": "film (dvd)" + } + } + ], + "creators": [ + { + "display": "David Yates", + "__typename": "Person" + }, + { + "display": "Bruno Delbonnel", + "__typename": "Person" + }, + { + "display": "Steve Kloves", + "__typename": "Person" + }, + { + "display": "Joanne K. Rowling", + "__typename": "Person" + } + ], + "publisher": ["Warner Bros. Entertainment Danmark"], + "identifiers": [ + { + "value": "Y 22512" + } + ], + "contributors": [ + { + "display": "Daniel Radcliffe" + }, + { + "display": "Rupert Grint" + }, + { + "display": "Emma Watson" + }, + { + "display": "Robbie Coltrane" + }, + { + "display": "Helena Bonham Carter" + }, + { + "display": "Jim Broadbent" + }, + { + "display": "Michael Gambon" + }, + { + "display": "Alan Rickman" + }, + { + "display": "Maggie Smith" + } + ], + "edition": { + "summary": "2-disc special edition, 2009", + "publicationYear": { + "display": "2009" + } + }, + "dateFirstEdition": null, + "audience": { + "generalAudience": ["Mærkning: Tilladt for børn over 11 år"] + }, + "physicalDescriptions": [ + { + "numberOfPages": null, + "playingTime": "ca. 2 t., 27 min." + } + ], + "accessTypes": [ + { + "code": "PHYSICAL" + } + ], + "access": [ + { + "__typename": "InterLibraryLoan", + "loanIsPossible": true + } + ], + "shelfmark": { + "postfix": "Harry", + "shelfmark": "77.7" + }, + "workYear": null + }, + "bestRepresentation": { + "pid": "870970-basis:28058306", + "genreAndForm": [], + "source": ["Bibliotekskatalog"], + "languages": { + "main": [ + { + "display": "engelsk", + "isoCode": "eng" } - ], - "shelfmark": { - "postfix": "Rowling", - "shelfmark": "83" - }, - "workYear": { - "year": 1999 - } + ] }, - { - "pid": "870970-basis:42346039", - "genreAndForm": ["roman"], - "source": ["Bibliotekskatalog"], - "languages": { - "main": [ - { - "display": "engelsk", - "isoCode": "eng" - } - ] + "titles": { + "main": ["Harry Potter og halvblodsprinsen"], + "original": [] + }, + "fictionNonfiction": { + "display": "fiktion", + "code": "FICTION" + }, + "materialTypes": [ + { + "materialTypeSpecific": { + "display": "film (dvd)" + } + } + ], + "creators": [ + { + "display": "David Yates", + "__typename": "Person" }, - "titles": { - "main": ["Harry Potter and the prisoner of Azkaban"], - "original": [] + { + "display": "Bruno Delbonnel", + "__typename": "Person" }, - "fictionNonfiction": { - "display": "skønlitteratur", - "code": "FICTION" + { + "display": "Steve Kloves", + "__typename": "Person" }, - "materialTypes": [ - { - "materialTypeSpecific": { - "display": "bog" - } - } - ], - "creators": [ - { - "display": "Joanne K. Rowling", - "__typename": "Person" - } - ], - "publisher": ["Bloomsbury"], - "identifiers": [ - { - "value": "0-7475-5701-2" - }, - { - "value": "0-7475-4629-0" - } - ], - "contributors": [], - "edition": { - "summary": "Bloomsbury New pbk. edition 1999, 1999", - "publicationYear": { - "display": "1999" - } + { + "display": "Joanne K. Rowling", + "__typename": "Person" + } + ], + "publisher": ["Warner Bros. Entertainment Danmark"], + "identifiers": [ + { + "value": "Y 22512" + } + ], + "contributors": [ + { + "display": "Daniel Radcliffe" }, - "dateFirstEdition": null, - "audience": { - "generalAudience": [] + { + "display": "Rupert Grint" }, - "physicalDescriptions": [ - { - "numberOfPages": 317, - "playingTime": { - "materialUnits": [ - { - "extent": null - } - ] - } - } - ], - "accessTypes": [ - { - "code": "PHYSICAL" - } - ], - "access": [ - { - "__typename": "InterLibraryLoan", - "loanIsPossible": true - } - ], - "shelfmark": { - "postfix": "Rowling", - "shelfmark": "83" + { + "display": "Emma Watson" }, - "workYear": null - }, - { - "pid": "870970-basis:42394599", - "genreAndForm": ["roman"], - "source": ["Bibliotekskatalog"], - "languages": { - "main": [ - { - "display": "engelsk", - "isoCode": "eng" - } - ] + { + "display": "Robbie Coltrane" }, - "titles": { - "main": ["Harry Potter and the prisoner of Azkaban"], - "original": [] + { + "display": "Helena Bonham Carter" }, - "fictionNonfiction": { - "display": "skønlitteratur", - "code": "FICTION" + { + "display": "Jim Broadbent" }, - "materialTypes": [ - { - "materialTypeSpecific": { - "display": "lydbog (bånd)" - } - } - ], - "creators": [ - { - "display": "Joanne K. Rowling", - "__typename": "Person" - }, - { - "display": "Stephen Fry", - "__typename": "Person" - } - ], - "publisher": ["Cover to Cover"], - "identifiers": [ - { - "value": "1-85549-875-8" - } - ], - "contributors": [], - "edition": { - "summary": "2000", - "publicationYear": { - "display": "2000" + { + "display": "Michael Gambon" + }, + { + "display": "Alan Rickman" + }, + { + "display": "Maggie Smith" + } + ], + "edition": { + "summary": "2-disc special edition, 2009", + "publicationYear": { + "display": "2009" + } + }, + "dateFirstEdition": null, + "audience": { + "generalAudience": ["Mærkning: Tilladt for børn over 11 år"] + }, + "physicalDescriptions": [ + { + "numberOfPages": null, + "playingTime": "ca. 2 t., 27 min." + } + ], + "accessTypes": [ + { + "code": "PHYSICAL" + } + ], + "access": [ + { + "__typename": "InterLibraryLoan", + "loanIsPossible": true + } + ], + "shelfmark": { + "postfix": "Harry", + "shelfmark": "77.7" + }, + "workYear": null + } + } + }, + { + "workId": "work-of:870970-basis:23346346", + "titles": { + "full": ["Harry Potter and the prisoner of Azkaban"], + "original": [] + }, + "abstract": [ + "Fantasy. Harry Potter er elev på trolddomsskolen på tredje år. Han får at vide, at hans forældres morder er flygtet fra Azkabanfængslet og nu også vil dræbe ham" + ], + "creators": [ + { + "display": "Joanne K. Rowling", + "__typename": "Person" + } + ], + "series": [ + { + "title": "Harry Potter (engelsk)", + "isPopular": true, + "readThisFirst": null, + "readThisWhenever": null, + "members": [ + { + "numberInSeries": "3", + "work": { + "workId": "work-of:870970-basis:22629344", + "titles": { + "main": ["Harry Potter og de vises sten"], + "full": ["Harry Potter og de vises sten"], + "original": ["Harry Potter and the philosopher's stone"] + } } }, - "dateFirstEdition": { - "display": "1999", - "year": 1999 - }, - "audience": { - "generalAudience": [] - }, - "physicalDescriptions": [ - { - "numberOfPages": null, - "playingTime": { - "materialUnits": [ - { - "extent": null - } - ] + { + "numberInSeries": "3", + "work": { + "workId": "work-of:870970-basis:22677780", + "titles": { + "main": ["Harry Potter og Hemmelighedernes Kammer"], + "full": ["Harry Potter og Hemmelighedernes Kammer"], + "original": ["Harry Potter and the Chamber of Secrets"] } } - ], - "accessTypes": [ - { - "code": "PHYSICAL" - } - ], - "access": [ - { - "__typename": "InterLibraryLoan", - "loanIsPossible": true - } - ], - "shelfmark": { - "postfix": "Rowling", - "shelfmark": "83" }, - "workYear": { - "year": 1999 - } - }, - { - "pid": "870970-basis:42414670", - "genreAndForm": ["roman"], - "source": ["Bibliotekskatalog"], - "languages": { - "main": [ - { - "display": "engelsk", - "isoCode": "eng" + { + "numberInSeries": "3", + "work": { + "workId": "work-of:870970-basis:22995154", + "titles": { + "main": ["Harry Potter og fangen fra Azkaban"], + "full": ["Harry Potter og fangen fra Azkaban"], + "original": ["Harry Potter and the prisoner of Azkaban"] } - ] - }, - "titles": { - "main": ["Harry Potter and the prisoner of Azkaban"], - "original": [] - }, - "fictionNonfiction": { - "display": "skønlitteratur", - "code": "FICTION" + } }, - "materialTypes": [ - { - "materialTypeSpecific": { - "display": "lydbog (cd)" + { + "numberInSeries": "3", + "work": { + "workId": "work-of:870970-basis:23540703", + "titles": { + "main": ["Harry Potter og Flammernes Pokal"], + "full": ["Harry Potter og Flammernes Pokal"], + "original": ["Harry Potter and the goblet of fire"] } } - ], - "creators": [ - { - "display": "Joanne K. Rowling", - "__typename": "Person" - }, - { - "display": "Stephen Fry", - "__typename": "Person" - } - ], - "publisher": ["Cover to Cover"], - "identifiers": [ - { - "value": "1-85549-875-8" - } - ], - "contributors": [], - "edition": { - "summary": "2000", - "publicationYear": { - "display": "2000" - } - }, - "dateFirstEdition": { - "display": "1999", - "year": 1999 - }, - "audience": { - "generalAudience": [] }, - "physicalDescriptions": [ - { - "numberOfPages": null, - "playingTime": { - "materialUnits": [ - { - "extent": null - } - ] + { + "numberInSeries": "3", + "work": { + "workId": "work-of:870970-basis:25245784", + "titles": { + "main": ["Harry Potter og Fønixordenen"], + "full": ["Harry Potter og Fønixordenen"], + "original": ["Harry Potter and the Order of the Phoenix"] } } - ], - "accessTypes": [ - { - "code": "PHYSICAL" + }, + { + "numberInSeries": "3", + "work": { + "workId": "work-of:870970-basis:25807995", + "titles": { + "main": ["Harry Potter og halvblodsprinsen"], + "full": ["Harry Potter og halvblodsprinsen"], + "original": ["Harry Potter and the half-blood prince"] + } } - ], - "access": [ - { - "__typename": "InterLibraryLoan", - "loanIsPossible": true + }, + { + "numberInSeries": "3", + "work": { + "workId": "work-of:870970-basis:27267912", + "titles": { + "main": ["Harry Potter og dødsregalierne"], + "full": ["Harry Potter og dødsregalierne"], + "original": ["Harry Potter and the deathly hallows"] + } } - ], - "shelfmark": { - "postfix": "Rowling", - "shelfmark": "83" }, - "workYear": { - "year": 1999 + { + "numberInSeries": "3", + "work": { + "workId": "work-of:870970-basis:52646251", + "titles": { + "main": ["Harry Potter og det forbandede barn"], + "full": [ + "Harry Potter og det forbandede barn : del et & to" + ], + "original": ["Harry Potter and the cursed child"] + } + } } - }, + ] + } + ], + "workYear": { + "year": 1999 + }, + "genreAndForm": [ + "roman", + "fantasy", + "eventyrlige fortællinger", + "romaner" + ], + "manifestations": { + "all": [ { - "pid": "870970-basis:42722367", - "genreAndForm": [ - "roman", - "eventyrlige fortællinger", - "fantasy" - ], + "pid": "870970-basis:23346346", + "genreAndForm": [], "source": ["Bibliotekskatalog"], "languages": { "main": [ @@ -18905,32 +17295,26 @@ "__typename": "Person" } ], - "publisher": ["Arthur A. Levine Books"], + "publisher": ["Bloomsbury"], "identifiers": [ { - "value": "0439136350" - }, - { - "value": "9780439136358" + "value": "0-7475-4511-1" } ], "contributors": [], "edition": { - "summary": "1999", + "summary": "Bloomsbury, 1999", "publicationYear": { "display": "1999" } }, - "dateFirstEdition": { - "display": "1998", - "year": 1998 - }, + "dateFirstEdition": null, "audience": { "generalAudience": [] }, "physicalDescriptions": [ { - "numberOfPages": 435, + "numberOfPages": 317, "playingTime": { "materialUnits": [ { @@ -18955,12 +17339,10 @@ "postfix": "Rowling", "shelfmark": "83" }, - "workYear": { - "year": 1998 - } + "workYear": null }, { - "pid": "870970-basis:43565575", + "pid": "870970-basis:25699785", "genreAndForm": ["roman"], "source": ["Bibliotekskatalog"], "languages": { @@ -18982,7 +17364,7 @@ "materialTypes": [ { "materialTypeSpecific": { - "display": "bog" + "display": "lydbog (bånd)" } } ], @@ -18990,19 +17372,27 @@ { "display": "Joanne K. Rowling", "__typename": "Person" + }, + { + "display": "Stephen Fry", + "__typename": "Person" } ], - "publisher": ["Bloomsbury"], + "publisher": ["Danmarks Blindebibliotek"], "identifiers": [ { - "value": "0-7475-7449-9" + "value": "Best.nr. 15615" + } + ], + "contributors": [ + { + "display": "Stephen Fry" } ], - "contributors": [], "edition": { - "summary": "Bloomsbury, New pbk. edition 2004, 2004", + "summary": "2005", "publicationYear": { - "display": "2004" + "display": "2005" } }, "dateFirstEdition": { @@ -19014,7 +17404,7 @@ }, "physicalDescriptions": [ { - "numberOfPages": 468, + "numberOfPages": null, "playingTime": { "materialUnits": [ { @@ -19039,12 +17429,10 @@ "postfix": "Rowling", "shelfmark": "83" }, - "workYear": { - "year": 1999 - } + "workYear": null }, { - "pid": "870970-basis:43903950", + "pid": "870970-basis:42042463", "genreAndForm": ["roman"], "source": ["Bibliotekskatalog"], "languages": { @@ -19056,9 +17444,7 @@ ] }, "titles": { - "main": [ - "Harry Potter and the prisoner of Azkaban (Ved Stephen Fry)" - ], + "main": ["Harry Potter and the prisoner of Azkaban"], "original": [] }, "fictionNonfiction": { @@ -19068,7 +17454,7 @@ "materialTypes": [ { "materialTypeSpecific": { - "display": "lydbog (cd)" + "display": "bog" } } ], @@ -19076,35 +17462,31 @@ { "display": "Joanne K. Rowling", "__typename": "Person" - }, - { - "display": "Stephen Fry", - "__typename": "Person" } ], - "publisher": ["Cover to Cover"], + "publisher": ["Bloomsbury Children's"], "identifiers": [ { - "value": "1-85549-633-X" + "value": "0-7475-5362-9" + }, + { + "value": "0-7475-4215-5" } ], "contributors": [], "edition": { - "summary": "2000", + "summary": "1999", "publicationYear": { - "display": "2000" + "display": "1999" } }, - "dateFirstEdition": { - "display": "1999", - "year": 1999 - }, + "dateFirstEdition": null, "audience": { "generalAudience": [] }, "physicalDescriptions": [ { - "numberOfPages": null, + "numberOfPages": 317, "playingTime": { "materialUnits": [ { @@ -19129,12 +17511,10 @@ "postfix": "Rowling", "shelfmark": "83" }, - "workYear": { - "year": 1999 - } + "workYear": null }, { - "pid": "870970-basis:44043599", + "pid": "870970-basis:42260851", "genreAndForm": ["roman"], "source": ["Bibliotekskatalog"], "languages": { @@ -19156,7 +17536,7 @@ "materialTypes": [ { "materialTypeSpecific": { - "display": "lydbog (cd)" + "display": "bog" } } ], @@ -19169,26 +17549,26 @@ "publisher": ["Bloomsbury"], "identifiers": [ { - "value": "0-7475-8650-0" + "value": "0-7475-6000-5" + }, + { + "value": "0-7475-4634-7" } ], "contributors": [], "edition": { - "summary": "Bloomsbury, 2000", + "summary": "2000", "publicationYear": { "display": "2000" } }, - "dateFirstEdition": { - "display": "1999", - "year": 1999 - }, + "dateFirstEdition": null, "audience": { "generalAudience": [] }, "physicalDescriptions": [ { - "numberOfPages": null, + "numberOfPages": 317, "playingTime": { "materialUnits": [ { @@ -19213,13 +17593,11 @@ "postfix": "Rowling", "shelfmark": "83" }, - "workYear": { - "year": 1999 - } + "workYear": null }, { - "pid": "870970-basis:44050897", - "genreAndForm": ["roman", "eventyrlige fortællinger"], + "pid": "870970-basis:42299464", + "genreAndForm": [], "source": ["Bibliotekskatalog"], "languages": { "main": [ @@ -19253,26 +17631,23 @@ "publisher": ["Bloomsbury"], "identifiers": [ { - "value": "0-7475-7362-X" + "value": "0-7475-4950-8" } ], "contributors": [], "edition": { - "summary": "New edition 2004, 2004", + "summary": "1999", "publicationYear": { - "display": "2004" + "display": "1999" } }, - "dateFirstEdition": { - "display": "1999", - "year": 1999 - }, + "dateFirstEdition": null, "audience": { "generalAudience": [] }, "physicalDescriptions": [ { - "numberOfPages": 317, + "numberOfPages": 468, "playingTime": { "materialUnits": [ { @@ -19297,12 +17672,10 @@ "postfix": "Rowling", "shelfmark": "83" }, - "workYear": { - "year": 1999 - } + "workYear": null }, { - "pid": "870970-basis:44211785", + "pid": "870970-basis:42340294", "genreAndForm": ["roman"], "source": ["Bibliotekskatalog"], "languages": { @@ -19314,9 +17687,7 @@ ] }, "titles": { - "main": [ - "Harry Potter and the prisoner of Azkaban (Ved Jim Dale)" - ], + "main": ["Harry Potter and the prisoner of Azkaban"], "original": [] }, "fictionNonfiction": { @@ -19336,14 +17707,14 @@ "__typename": "Person" }, { - "display": "Jim Dale", + "display": "Stephen Fry", "__typename": "Person" } ], - "publisher": ["Listening Library"], + "publisher": ["Cover to Cover"], "identifiers": [ { - "value": "0-8072-8232-4" + "value": "1-85549-672-0" } ], "contributors": [], @@ -19392,12 +17763,8 @@ } }, { - "pid": "870970-basis:44227878", - "genreAndForm": [ - "roman", - "eventyrlige fortællinger", - "fantasy" - ], + "pid": "870970-basis:42346039", + "genreAndForm": ["roman"], "source": ["Bibliotekskatalog"], "languages": { "main": [ @@ -19431,20 +17798,20 @@ "publisher": ["Bloomsbury"], "identifiers": [ { - "value": "9780747542155" + "value": "0-7475-5701-2" + }, + { + "value": "0-7475-4629-0" } ], "contributors": [], "edition": { - "summary": "New edition 2000, 2000", + "summary": "Bloomsbury New pbk. edition 1999, 1999", "publicationYear": { - "display": "2000" + "display": "1999" } }, - "dateFirstEdition": { - "display": "1999", - "year": 1999 - }, + "dateFirstEdition": null, "audience": { "generalAudience": [] }, @@ -19475,12 +17842,10 @@ "postfix": "Rowling", "shelfmark": "83" }, - "workYear": { - "year": 1999 - } + "workYear": null }, { - "pid": "870970-basis:44327120", + "pid": "870970-basis:42394599", "genreAndForm": ["roman"], "source": ["Bibliotekskatalog"], "languages": { @@ -19492,9 +17857,7 @@ ] }, "titles": { - "main": [ - "Harry Potter and the prisoner of Azkaban (Ved Stephen Fry)" - ], + "main": ["Harry Potter and the prisoner of Azkaban"], "original": [] }, "fictionNonfiction": { @@ -19512,17 +17875,21 @@ { "display": "Joanne K. Rowling", "__typename": "Person" + }, + { + "display": "Stephen Fry", + "__typename": "Person" } ], - "publisher": ["Bloomsbury"], + "publisher": ["Cover to Cover"], "identifiers": [ { - "value": "0-7475-8652-7" + "value": "1-85549-875-8" } ], "contributors": [], "edition": { - "summary": "Complete & unabridged, 2000", + "summary": "2000", "publicationYear": { "display": "2000" } @@ -19566,7 +17933,7 @@ } }, { - "pid": "870970-basis:44827352", + "pid": "870970-basis:42414670", "genreAndForm": ["roman"], "source": ["Bibliotekskatalog"], "languages": { @@ -19578,9 +17945,7 @@ ] }, "titles": { - "main": [ - "Harry Potter and the prisoner of Azkaban (Ved Stephen Fry)" - ], + "main": ["Harry Potter and the prisoner of Azkaban"], "original": [] }, "fictionNonfiction": { @@ -19598,29 +17963,23 @@ { "display": "Joanne K. Rowling", "__typename": "Person" - } - ], - "publisher": ["HNP", "Bloomsbury"], - "identifiers": [ - { - "value": "9780747586517" - }, - { - "value": "9781408821602" }, { - "value": "9781408882269" + "display": "Stephen Fry", + "__typename": "Person" } ], - "contributors": [ + "publisher": ["Cover to Cover"], + "identifiers": [ { - "display": "Stephen Fry" + "value": "1-85549-875-8" } ], + "contributors": [], "edition": { - "summary": "Bloomsbury, HNP, 2004", + "summary": "2000", "publicationYear": { - "display": "2004" + "display": "2000" } }, "dateFirstEdition": { @@ -19662,8 +18021,12 @@ } }, { - "pid": "870970-basis:44931869", - "genreAndForm": ["roman", "eventyrlige fortællinger"], + "pid": "870970-basis:42722367", + "genreAndForm": [ + "roman", + "eventyrlige fortællinger", + "fantasy" + ], "source": ["Bibliotekskatalog"], "languages": { "main": [ @@ -19694,29 +18057,32 @@ "__typename": "Person" } ], - "publisher": ["Bloomsbury"], + "publisher": ["Arthur A. Levine Books"], "identifiers": [ { - "value": "9781408810569" + "value": "0439136350" + }, + { + "value": "9780439136358" } ], "contributors": [], "edition": { - "summary": "Signature edition, 2010", + "summary": "1999", "publicationYear": { - "display": "2010" + "display": "1999" } }, "dateFirstEdition": { - "display": "1999", - "year": 1999 + "display": "1998", + "year": 1998 }, "audience": { "generalAudience": [] }, "physicalDescriptions": [ { - "numberOfPages": 317, + "numberOfPages": 435, "playingTime": { "materialUnits": [ { @@ -19742,12 +18108,12 @@ "shelfmark": "83" }, "workYear": { - "year": 1999 + "year": 1998 } }, { - "pid": "870970-basis:45293858", - "genreAndForm": ["roman", "fantasy"], + "pid": "870970-basis:43565575", + "genreAndForm": ["roman"], "source": ["Bibliotekskatalog"], "languages": { "main": [ @@ -19781,12 +18147,12 @@ "publisher": ["Bloomsbury"], "identifiers": [ { - "value": "9780747573760" + "value": "0-7475-7449-9" } ], "contributors": [], "edition": { - "summary": "Bloomsbury, new pbk. edition 2004, 2004", + "summary": "Bloomsbury, New pbk. edition 2004, 2004", "publicationYear": { "display": "2004" } @@ -19800,7 +18166,7 @@ }, "physicalDescriptions": [ { - "numberOfPages": 317, + "numberOfPages": 468, "playingTime": { "materialUnits": [ { @@ -19830,8 +18196,8 @@ } }, { - "pid": "870970-basis:45654257", - "genreAndForm": ["roman", "fantasy"], + "pid": "870970-basis:43903950", + "genreAndForm": ["roman"], "source": ["Bibliotekskatalog"], "languages": { "main": [ @@ -19842,7 +18208,9 @@ ] }, "titles": { - "main": ["Harry Potter and the prisoner of Azkaban"], + "main": [ + "Harry Potter and the prisoner of Azkaban (Ved Stephen Fry)" + ], "original": [] }, "fictionNonfiction": { @@ -19852,7 +18220,7 @@ "materialTypes": [ { "materialTypeSpecific": { - "display": "bog" + "display": "lydbog (cd)" } } ], @@ -19860,22 +18228,23 @@ { "display": "Joanne K. Rowling", "__typename": "Person" + }, + { + "display": "Stephen Fry", + "__typename": "Person" } ], - "publisher": ["Bloomsbury"], + "publisher": ["Cover to Cover"], "identifiers": [ { - "value": "9781408855676" - }, - { - "value": "9781408855911" + "value": "1-85549-633-X" } ], "contributors": [], "edition": { - "summary": "Bloomsbury, Pbk. edition 2014, 2014", + "summary": "2000", "publicationYear": { - "display": "2014" + "display": "2000" } }, "dateFirstEdition": { @@ -19887,7 +18256,7 @@ }, "physicalDescriptions": [ { - "numberOfPages": 461, + "numberOfPages": null, "playingTime": { "materialUnits": [ { @@ -19917,7 +18286,7 @@ } }, { - "pid": "870970-basis:45674533", + "pid": "870970-basis:44043599", "genreAndForm": ["roman"], "source": ["Bibliotekskatalog"], "languages": { @@ -19949,22 +18318,15 @@ "__typename": "Person" } ], - "publisher": ["HNP and Bloomsbury"], + "publisher": ["Bloomsbury"], "identifiers": [ { - "value": "9781408824139" - }, - { - "value": "9781408821602" - } - ], - "contributors": [ - { - "display": "Stephen Fry" + "value": "0-7475-8650-0" } ], + "contributors": [], "edition": { - "summary": "HNP, Bloomsbury, 2000", + "summary": "Bloomsbury, 2000", "publicationYear": { "display": "2000" } @@ -20008,8 +18370,8 @@ } }, { - "pid": "870970-basis:45919692", - "genreAndForm": ["roman", "fantasy"], + "pid": "870970-basis:44050897", + "genreAndForm": ["roman", "eventyrlige fortællinger"], "source": ["Bibliotekskatalog"], "languages": { "main": [ @@ -20020,9 +18382,7 @@ ] }, "titles": { - "main": [ - "Harry Potter and the prisoner of Azkaban (ill. Jim Kay)" - ], + "main": ["Harry Potter and the prisoner of Azkaban"], "original": [] }, "fictionNonfiction": { @@ -20042,30 +18402,29 @@ "__typename": "Person" } ], - "publisher": ["Bloomsbury Publishing"], + "publisher": ["Bloomsbury"], "identifiers": [ { - "value": "9781408845660" - } - ], - "contributors": [ - { - "display": "Jim Kay" + "value": "0-7475-7362-X" } ], + "contributors": [], "edition": { - "summary": "2017", + "summary": "New edition 2004, 2004", "publicationYear": { - "display": "2017" + "display": "2004" } }, - "dateFirstEdition": null, + "dateFirstEdition": { + "display": "1999", + "year": 1999 + }, "audience": { "generalAudience": [] }, "physicalDescriptions": [ { - "numberOfPages": 325, + "numberOfPages": 317, "playingTime": { "materialUnits": [ { @@ -20090,385 +18449,240 @@ "postfix": "Rowling", "shelfmark": "83" }, - "workYear": null - } - ], - "latest": { - "pid": "870970-basis:45919692", - "genreAndForm": ["roman", "fantasy"], - "source": ["Bibliotekskatalog"], - "languages": { - "main": [ - { - "display": "engelsk", - "isoCode": "eng" - } - ] - }, - "titles": { - "main": [ - "Harry Potter and the prisoner of Azkaban (ill. Jim Kay)" - ], - "original": [] - }, - "fictionNonfiction": { - "display": "skønlitteratur", - "code": "FICTION" - }, - "materialTypes": [ - { - "materialTypeSpecific": { - "display": "bog" - } - } - ], - "creators": [ - { - "display": "Joanne K. Rowling", - "__typename": "Person" - } - ], - "publisher": ["Bloomsbury Publishing"], - "identifiers": [ - { - "value": "9781408845660" - } - ], - "contributors": [ - { - "display": "Jim Kay" - } - ], - "edition": { - "summary": "2017", - "publicationYear": { - "display": "2017" - } - }, - "dateFirstEdition": null, - "audience": { - "generalAudience": [] - }, - "physicalDescriptions": [ - { - "numberOfPages": 325, - "playingTime": null - } - ], - "accessTypes": [ - { - "code": "PHYSICAL" - } - ], - "access": [ - { - "__typename": "InterLibraryLoan", - "loanIsPossible": true + "workYear": { + "year": 1999 } - ], - "shelfmark": { - "postfix": "Rowling", - "shelfmark": "83" }, - "workYear": null - }, - "bestRepresentation": { - "pid": "870970-basis:45919692", - "genreAndForm": ["roman", "fantasy"], - "source": ["Bibliotekskatalog"], - "languages": { - "main": [ + { + "pid": "870970-basis:44211785", + "genreAndForm": ["roman"], + "source": ["Bibliotekskatalog"], + "languages": { + "main": [ + { + "display": "engelsk", + "isoCode": "eng" + } + ] + }, + "titles": { + "main": [ + "Harry Potter and the prisoner of Azkaban (Ved Jim Dale)" + ], + "original": [] + }, + "fictionNonfiction": { + "display": "skønlitteratur", + "code": "FICTION" + }, + "materialTypes": [ { - "display": "engelsk", - "isoCode": "eng" + "materialTypeSpecific": { + "display": "lydbog (cd)" + } } - ] - }, - "titles": { - "main": [ - "Harry Potter and the prisoner of Azkaban (ill. Jim Kay)" ], - "original": [] - }, - "fictionNonfiction": { - "display": "skønlitteratur", - "code": "FICTION" - }, - "materialTypes": [ - { - "materialTypeSpecific": { - "display": "bog" - } - } - ], - "creators": [ - { - "display": "Joanne K. Rowling", - "__typename": "Person" - } - ], - "publisher": ["Bloomsbury Publishing"], - "identifiers": [ - { - "value": "9781408845660" - } - ], - "contributors": [ - { - "display": "Jim Kay" - } - ], - "edition": { - "summary": "2017", - "publicationYear": { - "display": "2017" - } - }, - "dateFirstEdition": null, - "audience": { - "generalAudience": [] - }, - "physicalDescriptions": [ - { - "numberOfPages": 325, - "playingTime": null - } - ], - "accessTypes": [ - { - "code": "PHYSICAL" - } - ], - "access": [ - { - "__typename": "InterLibraryLoan", - "loanIsPossible": true - } - ], - "shelfmark": { - "postfix": "Rowling", - "shelfmark": "83" - }, - "workYear": null - } - } - }, - { - "workId": "work-of:870970-basis:24229157", - "titles": { - "full": ["Harry Potter og de vises sten"], - "original": [] - }, - "abstract": [ - "Harry Potter er et uønsket hittebarn, men da han fylder elleve år, forandres hans liv for altid. Han har magiske evner og skal være studerende på en kostskole for troldmænd. Her får han brug for alle sine evner for at løse mysteriet om de vises sten" - ], - "creators": [ - { - "display": "Chris Columbus (f. 1958)", - "__typename": "Person" - }, - { - "display": "Steve Kloves", - "__typename": "Person" - }, - { - "display": "John Seale", - "__typename": "Person" - }, - { - "display": "Joanne K. Rowling", - "__typename": "Person" - } - ], - "series": [ - { - "title": "Harry Potter (film)", - "isPopular": true, - "readThisFirst": true, - "readThisWhenever": null, - "members": [ - { - "numberInSeries": "1", - "work": { - "workId": "work-of:870970-basis:22629344", - "titles": { - "main": ["Harry Potter og de vises sten"], - "full": ["Harry Potter og de vises sten"], - "original": ["Harry Potter and the philosopher's stone"] - } + "creators": [ + { + "display": "Joanne K. Rowling", + "__typename": "Person" + }, + { + "display": "Jim Dale", + "__typename": "Person" } - }, - { - "numberInSeries": "1", - "work": { - "workId": "work-of:870970-basis:22677780", - "titles": { - "main": ["Harry Potter og Hemmelighedernes Kammer"], - "full": ["Harry Potter og Hemmelighedernes Kammer"], - "original": ["Harry Potter and the Chamber of Secrets"] - } + ], + "publisher": ["Listening Library"], + "identifiers": [ + { + "value": "0-8072-8232-4" } - }, - { - "numberInSeries": "1", - "work": { - "workId": "work-of:870970-basis:22995154", - "titles": { - "main": ["Harry Potter og fangen fra Azkaban"], - "full": ["Harry Potter og fangen fra Azkaban"], - "original": ["Harry Potter and the prisoner of Azkaban"] - } + ], + "contributors": [], + "edition": { + "summary": "2000", + "publicationYear": { + "display": "2000" } }, - { - "numberInSeries": "1", - "work": { - "workId": "work-of:870970-basis:23540703", - "titles": { - "main": ["Harry Potter og Flammernes Pokal"], - "full": ["Harry Potter og Flammernes Pokal"], - "original": ["Harry Potter and the goblet of fire"] - } - } + "dateFirstEdition": { + "display": "1999", + "year": 1999 }, - { - "numberInSeries": "1", - "work": { - "workId": "work-of:870970-basis:25245784", - "titles": { - "main": ["Harry Potter og Fønixordenen"], - "full": ["Harry Potter og Fønixordenen"], - "original": ["Harry Potter and the Order of the Phoenix"] - } - } + "audience": { + "generalAudience": [] }, - { - "numberInSeries": "1", - "work": { - "workId": "work-of:870970-basis:25807995", - "titles": { - "main": ["Harry Potter og halvblodsprinsen"], - "full": ["Harry Potter og halvblodsprinsen"], - "original": ["Harry Potter and the half-blood prince"] + "physicalDescriptions": [ + { + "numberOfPages": null, + "playingTime": { + "materialUnits": [ + { + "extent": null + } + ] } } - }, - { - "numberInSeries": "1", - "work": { - "workId": "work-of:870970-basis:27267912", - "titles": { - "main": ["Harry Potter og dødsregalierne"], - "full": ["Harry Potter og dødsregalierne"], - "original": ["Harry Potter and the deathly hallows"] - } + ], + "accessTypes": [ + { + "code": "PHYSICAL" } - }, - { - "numberInSeries": "1", - "work": { - "workId": "work-of:870970-basis:52646251", - "titles": { - "main": ["Harry Potter og det forbandede barn"], - "full": [ - "Harry Potter og det forbandede barn : del et & to" - ], - "original": ["Harry Potter and the cursed child"] - } + ], + "access": [ + { + "__typename": "InterLibraryLoan", + "loanIsPossible": true } + ], + "shelfmark": { + "postfix": "Rowling", + "shelfmark": "83" + }, + "workYear": { + "year": 1999 } - ] - } - ], - "workYear": { - "year": 1492 - }, - "genreAndForm": ["børnefilm"], - "manifestations": { - "all": [ + }, { - "pid": "870970-basis:24229157", - "genreAndForm": [], + "pid": "870970-basis:44227878", + "genreAndForm": [ + "roman", + "eventyrlige fortællinger", + "fantasy" + ], "source": ["Bibliotekskatalog"], "languages": { "main": [ { - "display": "dansk", - "isoCode": "dan" + "display": "engelsk", + "isoCode": "eng" } ] }, "titles": { - "main": ["Harry Potter og de vises sten"], - "original": ["Harry Potter and the sorcerer's stone"] + "main": ["Harry Potter and the prisoner of Azkaban"], + "original": [] }, "fictionNonfiction": { - "display": "fiktion", + "display": "skønlitteratur", "code": "FICTION" }, "materialTypes": [ { "materialTypeSpecific": { - "display": "film (videobånd)" + "display": "bog" } } ], "creators": [ - { - "display": "Chris Columbus (f. 1958)", - "__typename": "Person" - }, - { - "display": "Steve Kloves", - "__typename": "Person" - }, - { - "display": "John Seale", - "__typename": "Person" - }, { "display": "Joanne K. Rowling", "__typename": "Person" } ], - "publisher": ["Sandrew Metronome"], - "identifiers": [], - "contributors": [ - { - "display": "Daniel Radcliffe" - }, - { - "display": "Rupert Grint" - }, + "publisher": ["Bloomsbury"], + "identifiers": [ { - "display": "Emma Watson" - }, + "value": "9780747542155" + } + ], + "contributors": [], + "edition": { + "summary": "New edition 2000, 2000", + "publicationYear": { + "display": "2000" + } + }, + "dateFirstEdition": { + "display": "1999", + "year": 1999 + }, + "audience": { + "generalAudience": [] + }, + "physicalDescriptions": [ { - "display": "John Cleese" - }, + "numberOfPages": 317, + "playingTime": { + "materialUnits": [ + { + "extent": null + } + ] + } + } + ], + "accessTypes": [ { - "display": "Robbie Coltrane" - }, + "code": "PHYSICAL" + } + ], + "access": [ { - "display": "Richard Griffiths" - }, + "__typename": "InterLibraryLoan", + "loanIsPossible": true + } + ], + "shelfmark": { + "postfix": "Rowling", + "shelfmark": "83" + }, + "workYear": { + "year": 1999 + } + }, + { + "pid": "870970-basis:44327120", + "genreAndForm": ["roman"], + "source": ["Bibliotekskatalog"], + "languages": { + "main": [ + { + "display": "engelsk", + "isoCode": "eng" + } + ] + }, + "titles": { + "main": [ + "Harry Potter and the prisoner of Azkaban (Ved Stephen Fry)" + ], + "original": [] + }, + "fictionNonfiction": { + "display": "skønlitteratur", + "code": "FICTION" + }, + "materialTypes": [ { - "display": "Richard Harris" - }, + "materialTypeSpecific": { + "display": "lydbog (bånd)" + } + } + ], + "creators": [ { - "display": "Ian Hart" - }, + "display": "Joanne K. Rowling", + "__typename": "Person" + } + ], + "publisher": ["Bloomsbury"], + "identifiers": [ { - "display": "John Hurt" + "value": "0-7475-8652-7" } ], + "contributors": [], "edition": { - "summary": "2002", + "summary": "Complete & unabridged, 2000", "publicationYear": { - "display": "2002" + "display": "2000" } }, - "dateFirstEdition": null, + "dateFirstEdition": { + "display": "1999", + "year": 1999 + }, "audience": { "generalAudience": [] }, @@ -20496,14 +18710,16 @@ } ], "shelfmark": { - "postfix": "Harry", - "shelfmark": "77.7" + "postfix": "Rowling", + "shelfmark": "83" }, - "workYear": null + "workYear": { + "year": 1999 + } }, { - "pid": "870970-basis:24284565", - "genreAndForm": [], + "pid": "870970-basis:44827352", + "genreAndForm": ["roman"], "source": ["Bibliotekskatalog"], "languages": { "main": [ @@ -20514,78 +18730,57 @@ ] }, "titles": { - "main": ["Harry Potter og de vises sten"], + "main": [ + "Harry Potter and the prisoner of Azkaban (Ved Stephen Fry)" + ], "original": [] }, "fictionNonfiction": { - "display": "fiktion", + "display": "skønlitteratur", "code": "FICTION" }, "materialTypes": [ { "materialTypeSpecific": { - "display": "film (videobånd)" + "display": "lydbog (cd)" } } ], "creators": [ - { - "display": "Chris Columbus (f. 1958)", - "__typename": "Person" - }, - { - "display": "Steve Kloves", - "__typename": "Person" - }, - { - "display": "John Seale", - "__typename": "Person" - }, { "display": "Joanne K. Rowling", "__typename": "Person" } ], - "publisher": ["Sandrew Metronome"], - "identifiers": [], - "contributors": [ - { - "display": "Daniel Radcliffe" - }, - { - "display": "Rupert Grint" - }, - { - "display": "Emma Watson" - }, - { - "display": "John Cleese" - }, - { - "display": "Robbie Coltrane" - }, + "publisher": ["HNP", "Bloomsbury"], + "identifiers": [ { - "display": "Richard Griffiths" + "value": "9780747586517" }, { - "display": "Richard Harris" + "value": "9781408821602" }, { - "display": "Ian Hart" - }, + "value": "9781408882269" + } + ], + "contributors": [ { - "display": "John Hurt" + "display": "Stephen Fry" } ], "edition": { - "summary": "2002", + "summary": "Bloomsbury, HNP, 2004", "publicationYear": { - "display": "2002" + "display": "2004" } }, - "dateFirstEdition": null, + "dateFirstEdition": { + "display": "1999", + "year": 1999 + }, "audience": { - "generalAudience": ["Mærkning: Tilladt for børn over 11 år"] + "generalAudience": [] }, "physicalDescriptions": [ { @@ -20611,16 +18806,16 @@ } ], "shelfmark": { - "postfix": "Harry", - "shelfmark": "77.7" + "postfix": "Rowling", + "shelfmark": "83" }, "workYear": { - "year": 1492 + "year": 1999 } }, { - "pid": "870970-basis:24347370", - "genreAndForm": [], + "pid": "870970-basis:44931869", + "genreAndForm": ["roman", "eventyrlige fortællinger"], "source": ["Bibliotekskatalog"], "languages": { "main": [ @@ -20631,82 +18826,49 @@ ] }, "titles": { - "main": ["Harry Potter og de vises sten"], + "main": ["Harry Potter and the prisoner of Azkaban"], "original": [] }, "fictionNonfiction": { - "display": "fiktion", + "display": "skønlitteratur", "code": "FICTION" }, "materialTypes": [ { "materialTypeSpecific": { - "display": "film (videobånd)" + "display": "bog" } } ], "creators": [ - { - "display": "Chris Columbus (f. 1958)", - "__typename": "Person" - }, - { - "display": "Steve Kloves", - "__typename": "Person" - }, - { - "display": "John Seale", - "__typename": "Person" - }, { "display": "Joanne K. Rowling", "__typename": "Person" } ], - "publisher": ["Sandrew Metronome", "Nordisk Film Vision"], - "identifiers": [], - "contributors": [ - { - "display": "Daniel Radcliffe" - }, - { - "display": "Rupert Grint" - }, - { - "display": "Emma Watson" - }, - { - "display": "John Cleese" - }, - { - "display": "Robbie Coltrane" - }, - { - "display": "Richard Griffiths" - }, - { - "display": "Richard Harris" - }, - { - "display": "Ian Hart" - }, + "publisher": ["Bloomsbury"], + "identifiers": [ { - "display": "John Hurt" + "value": "9781408810569" } ], + "contributors": [], "edition": { - "summary": "2002", + "summary": "Signature edition, 2010", "publicationYear": { - "display": "2002" + "display": "2010" } }, - "dateFirstEdition": null, + "dateFirstEdition": { + "display": "1999", + "year": 1999 + }, "audience": { "generalAudience": [] }, "physicalDescriptions": [ { - "numberOfPages": null, + "numberOfPages": 317, "playingTime": { "materialUnits": [ { @@ -20728,16 +18890,16 @@ } ], "shelfmark": { - "postfix": "Harry", - "shelfmark": "77.7" + "postfix": "Rowling", + "shelfmark": "83" }, "workYear": { - "year": 1492 + "year": 1999 } }, { - "pid": "870970-basis:24933946", - "genreAndForm": [], + "pid": "870970-basis:45293858", + "genreAndForm": ["roman", "fantasy"], "source": ["Bibliotekskatalog"], "languages": { "main": [ @@ -20748,84 +18910,49 @@ ] }, "titles": { - "main": ["Harry Potter og de vises sten"], + "main": ["Harry Potter and the prisoner of Azkaban"], "original": [] }, "fictionNonfiction": { - "display": "fiktion", + "display": "skønlitteratur", "code": "FICTION" }, "materialTypes": [ { "materialTypeSpecific": { - "display": "film (dvd)" + "display": "bog" } } ], "creators": [ - { - "display": "Chris Columbus (f. 1958)", - "__typename": "Person" - }, - { - "display": "Steve Kloves", - "__typename": "Person" - }, - { - "display": "John Seale", - "__typename": "Person" - }, { "display": "Joanne K. Rowling", "__typename": "Person" } ], - "publisher": ["Sandrew Metronome"], - "identifiers": [], - "contributors": [ - { - "display": "Daniel Radcliffe" - }, - { - "display": "Rupert Grint" - }, - { - "display": "Emma Watson" - }, - { - "display": "John Cleese" - }, - { - "display": "Robbie Coltrane" - }, - { - "display": "Richard Griffiths" - }, - { - "display": "Richard Harris" - }, - { - "display": "Ian Hart" - }, + "publisher": ["Bloomsbury"], + "identifiers": [ { - "display": "John Hurt" + "value": "9780747573760" } ], + "contributors": [], "edition": { - "summary": "2004", + "summary": "Bloomsbury, new pbk. edition 2004, 2004", "publicationYear": { "display": "2004" } }, - "dateFirstEdition": null, + "dateFirstEdition": { + "display": "1999", + "year": 1999 + }, "audience": { - "generalAudience": [ - "Mærkning: Tilladt for alle men frarådes børn under 7 år" - ] + "generalAudience": [] }, "physicalDescriptions": [ { - "numberOfPages": null, + "numberOfPages": 317, "playingTime": { "materialUnits": [ { @@ -20847,14 +18974,16 @@ } ], "shelfmark": { - "postfix": "Harry", - "shelfmark": "77.7" + "postfix": "Rowling", + "shelfmark": "83" }, - "workYear": null + "workYear": { + "year": 1999 + } }, { - "pid": "870970-basis:27123228", - "genreAndForm": [], + "pid": "870970-basis:45654257", + "genreAndForm": ["roman", "fantasy"], "source": ["Bibliotekskatalog"], "languages": { "main": [ @@ -20865,86 +18994,52 @@ ] }, "titles": { - "main": ["Harry Potter og de vises sten"], + "main": ["Harry Potter and the prisoner of Azkaban"], "original": [] }, "fictionNonfiction": { - "display": "fiktion", + "display": "skønlitteratur", "code": "FICTION" }, - "materialTypes": [ - { - "materialTypeSpecific": { - "display": "film (blu-ray)" - } - } - ], - "creators": [ - { - "display": "Chris Columbus (f. 1958)", - "__typename": "Person" - }, - { - "display": "Steve Kloves", - "__typename": "Person" - }, - { - "display": "John Seale", - "__typename": "Person" - }, + "materialTypes": [ { - "display": "Joanne K. Rowling", - "__typename": "Person" + "materialTypeSpecific": { + "display": "bog" + } } ], - "publisher": ["Warner Bros. Entertainment Danmark"], - "identifiers": [ + "creators": [ { - "value": "Y 20315" + "display": "Joanne K. Rowling", + "__typename": "Person" } ], - "contributors": [ - { - "display": "Daniel Radcliffe" - }, - { - "display": "Rupert Grint" - }, - { - "display": "Emma Watson" - }, - { - "display": "John Cleese" - }, - { - "display": "Robbie Coltrane" - }, - { - "display": "Richard Griffiths" - }, - { - "display": "Richard Harris" - }, + "publisher": ["Bloomsbury"], + "identifiers": [ { - "display": "Ian Hart" + "value": "9781408855676" }, { - "display": "John Hurt" + "value": "9781408855911" } ], + "contributors": [], "edition": { - "summary": "2007", + "summary": "Bloomsbury, Pbk. edition 2014, 2014", "publicationYear": { - "display": "2007" + "display": "2014" } }, - "dateFirstEdition": null, + "dateFirstEdition": { + "display": "1999", + "year": 1999 + }, "audience": { - "generalAudience": ["Mærkning: Tilladt for børn over 11 år"] + "generalAudience": [] }, "physicalDescriptions": [ { - "numberOfPages": null, + "numberOfPages": 461, "playingTime": { "materialUnits": [ { @@ -20966,14 +19061,16 @@ } ], "shelfmark": { - "postfix": "Harry", - "shelfmark": "77.7" + "postfix": "Rowling", + "shelfmark": "83" }, - "workYear": null + "workYear": { + "year": 1999 + } }, { - "pid": "870970-basis:27123279", - "genreAndForm": [], + "pid": "870970-basis:45674533", + "genreAndForm": ["roman"], "source": ["Bibliotekskatalog"], "languages": { "main": [ @@ -20984,82 +19081,52 @@ ] }, "titles": { - "main": ["Harry Potter og de vises sten"], + "main": ["Harry Potter and the prisoner of Azkaban"], "original": [] }, "fictionNonfiction": { - "display": "fiktion", + "display": "skønlitteratur", "code": "FICTION" }, "materialTypes": [ { "materialTypeSpecific": { - "display": "film (dvd)" + "display": "lydbog (cd)" } } ], "creators": [ - { - "display": "Chris Columbus (f. 1958)", - "__typename": "Person" - }, - { - "display": "Steve Kloves", - "__typename": "Person" - }, - { - "display": "John Seale", - "__typename": "Person" - }, { "display": "Joanne K. Rowling", "__typename": "Person" } ], - "publisher": ["Warner Bros. Entertainment Danmark"], + "publisher": ["HNP and Bloomsbury"], "identifiers": [ { - "value": "Y 20314" + "value": "9781408824139" + }, + { + "value": "9781408821602" } ], "contributors": [ { - "display": "Daniel Radcliffe" - }, - { - "display": "Rupert Grint" - }, - { - "display": "Emma Watson" - }, - { - "display": "John Cleese" - }, - { - "display": "Robbie Coltrane" - }, - { - "display": "Richard Griffiths" - }, - { - "display": "Richard Harris" - }, - { - "display": "Ian Hart" - }, - { - "display": "John Hurt" + "display": "Stephen Fry" } ], "edition": { - "summary": "2007", + "summary": "HNP, Bloomsbury, 2000", "publicationYear": { - "display": "2007" + "display": "2000" } }, - "dateFirstEdition": null, + "dateFirstEdition": { + "display": "1999", + "year": 1999 + }, "audience": { - "generalAudience": ["Mærkning: Tilladt for børn over 11 år"] + "generalAudience": [] }, "physicalDescriptions": [ { @@ -21085,14 +19152,16 @@ } ], "shelfmark": { - "postfix": "Harry", - "shelfmark": "77.7" + "postfix": "Rowling", + "shelfmark": "83" }, - "workYear": null + "workYear": { + "year": 1999 + } }, { - "pid": "870970-basis:27963390", - "genreAndForm": [], + "pid": "870970-basis:45919692", + "genreAndForm": ["roman", "fantasy"], "source": ["Bibliotekskatalog"], "languages": { "main": [ @@ -21103,86 +19172,52 @@ ] }, "titles": { - "main": ["Harry Potter og de vises sten"], + "main": [ + "Harry Potter and the prisoner of Azkaban (ill. Jim Kay)" + ], "original": [] }, "fictionNonfiction": { - "display": "fiktion", + "display": "skønlitteratur", "code": "FICTION" }, "materialTypes": [ { "materialTypeSpecific": { - "display": "film (dvd)" + "display": "bog" } } ], "creators": [ - { - "display": "Chris Columbus (f. 1958)", - "__typename": "Person" - }, - { - "display": "Steve Kloves", - "__typename": "Person" - }, - { - "display": "John Seale", - "__typename": "Person" - }, { "display": "Joanne K. Rowling", "__typename": "Person" } ], - "publisher": ["Warner Bros. Entertainment Danmark"], + "publisher": ["Bloomsbury Publishing"], "identifiers": [ { - "value": "58815" + "value": "9781408845660" } ], "contributors": [ { - "display": "Daniel Radcliffe" - }, - { - "display": "Rupert Grint" - }, - { - "display": "Emma Watson" - }, - { - "display": "John Cleese" - }, - { - "display": "Robbie Coltrane" - }, - { - "display": "Richard Griffiths" - }, - { - "display": "Richard Harris" - }, - { - "display": "Ian Hart" - }, - { - "display": "John Hurt" + "display": "Jim Kay" } ], "edition": { - "summary": "1-disc edition, 2009", + "summary": "2017", "publicationYear": { - "display": "2009" + "display": "2017" } }, "dateFirstEdition": null, "audience": { - "generalAudience": ["Mærkning: Tilladt for børn over 11 år"] + "generalAudience": [] }, "physicalDescriptions": [ { - "numberOfPages": null, + "numberOfPages": 325, "playingTime": { "materialUnits": [ { @@ -21204,15 +19239,15 @@ } ], "shelfmark": { - "postfix": "Harry", - "shelfmark": "77.7" + "postfix": "Rowling", + "shelfmark": "83" }, "workYear": null } ], "latest": { - "pid": "870970-basis:27963390", - "genreAndForm": [], + "pid": "870970-basis:45919692", + "genreAndForm": ["roman", "fantasy"], "source": ["Bibliotekskatalog"], "languages": { "main": [ @@ -21223,87 +19258,53 @@ ] }, "titles": { - "main": ["Harry Potter og de vises sten"], + "main": [ + "Harry Potter and the prisoner of Azkaban (ill. Jim Kay)" + ], "original": [] }, "fictionNonfiction": { - "display": "fiktion", + "display": "skønlitteratur", "code": "FICTION" }, "materialTypes": [ { "materialTypeSpecific": { - "display": "film (dvd)" + "display": "bog" } } ], "creators": [ - { - "display": "Chris Columbus (f. 1958)", - "__typename": "Person" - }, - { - "display": "Steve Kloves", - "__typename": "Person" - }, - { - "display": "John Seale", - "__typename": "Person" - }, { "display": "Joanne K. Rowling", "__typename": "Person" } ], - "publisher": ["Warner Bros. Entertainment Danmark"], + "publisher": ["Bloomsbury Publishing"], "identifiers": [ { - "value": "58815" + "value": "9781408845660" } ], "contributors": [ { - "display": "Daniel Radcliffe" - }, - { - "display": "Rupert Grint" - }, - { - "display": "Emma Watson" - }, - { - "display": "John Cleese" - }, - { - "display": "Robbie Coltrane" - }, - { - "display": "Richard Griffiths" - }, - { - "display": "Richard Harris" - }, - { - "display": "Ian Hart" - }, - { - "display": "John Hurt" + "display": "Jim Kay" } ], "edition": { - "summary": "1-disc edition, 2009", + "summary": "2017", "publicationYear": { - "display": "2009" + "display": "2017" } }, "dateFirstEdition": null, "audience": { - "generalAudience": ["Mærkning: Tilladt for børn over 11 år"] + "generalAudience": [] }, "physicalDescriptions": [ { - "numberOfPages": null, - "playingTime": "ca. 2 t., 27 min." + "numberOfPages": 325, + "playingTime": null } ], "accessTypes": [ @@ -21318,14 +19319,14 @@ } ], "shelfmark": { - "postfix": "Harry", - "shelfmark": "77.7" + "postfix": "Rowling", + "shelfmark": "83" }, "workYear": null }, "bestRepresentation": { - "pid": "870970-basis:27963390", - "genreAndForm": [], + "pid": "870970-basis:45919692", + "genreAndForm": ["roman", "fantasy"], "source": ["Bibliotekskatalog"], "languages": { "main": [ @@ -21336,87 +19337,53 @@ ] }, "titles": { - "main": ["Harry Potter og de vises sten"], + "main": [ + "Harry Potter and the prisoner of Azkaban (ill. Jim Kay)" + ], "original": [] }, "fictionNonfiction": { - "display": "fiktion", + "display": "skønlitteratur", "code": "FICTION" }, "materialTypes": [ { "materialTypeSpecific": { - "display": "film (dvd)" + "display": "bog" } } ], "creators": [ - { - "display": "Chris Columbus (f. 1958)", - "__typename": "Person" - }, - { - "display": "Steve Kloves", - "__typename": "Person" - }, - { - "display": "John Seale", - "__typename": "Person" - }, { "display": "Joanne K. Rowling", "__typename": "Person" } ], - "publisher": ["Warner Bros. Entertainment Danmark"], + "publisher": ["Bloomsbury Publishing"], "identifiers": [ { - "value": "58815" + "value": "9781408845660" } ], "contributors": [ { - "display": "Daniel Radcliffe" - }, - { - "display": "Rupert Grint" - }, - { - "display": "Emma Watson" - }, - { - "display": "John Cleese" - }, - { - "display": "Robbie Coltrane" - }, - { - "display": "Richard Griffiths" - }, - { - "display": "Richard Harris" - }, - { - "display": "Ian Hart" - }, - { - "display": "John Hurt" + "display": "Jim Kay" } ], "edition": { - "summary": "1-disc edition, 2009", + "summary": "2017", "publicationYear": { - "display": "2009" + "display": "2017" } }, "dateFirstEdition": null, "audience": { - "generalAudience": ["Mærkning: Tilladt for børn over 11 år"] + "generalAudience": [] }, "physicalDescriptions": [ { - "numberOfPages": null, - "playingTime": "ca. 2 t., 27 min." + "numberOfPages": 325, + "playingTime": null } ], "accessTypes": [ @@ -21431,41 +19398,49 @@ } ], "shelfmark": { - "postfix": "Harry", - "shelfmark": "77.7" + "postfix": "Rowling", + "shelfmark": "83" }, "workYear": null } } }, { - "workId": "work-of:870970-basis:43167669", + "workId": "work-of:870970-basis:24229157", "titles": { - "full": ["Harry Potter and the order of the Phoenix"], + "full": ["Harry Potter og de vises sten"], "original": [] }, "abstract": [ - "As the Order of the Phoenix keeps watch over Harry Potter, troubled times have come to Hogwarts in a year filled with secrets, subterfuge and suspicion. The deliciously dark fifth instalment of Jim Kay's inspired reimagining of J.K. Rowling's classic series is an epic artistic achievement, featuring over 160 illustrations in an astonishing range of visual styles" + "Harry Potter er et uønsket hittebarn, men da han fylder elleve år, forandres hans liv for altid. Han har magiske evner og skal være studerende på en kostskole for troldmænd. Her får han brug for alle sine evner for at løse mysteriet om de vises sten" ], "creators": [ { - "display": "Joanne K. Rowling", + "display": "Chris Columbus (f. 1958)", "__typename": "Person" }, { - "display": "Jim Kay", + "display": "Steve Kloves", + "__typename": "Person" + }, + { + "display": "John Seale", + "__typename": "Person" + }, + { + "display": "Joanne K. Rowling", "__typename": "Person" } ], "series": [ { - "title": "Harry Potter (engelsk)", + "title": "Harry Potter (film)", "isPopular": true, - "readThisFirst": null, + "readThisFirst": true, "readThisWhenever": null, "members": [ { - "numberInSeries": "5", + "numberInSeries": "1", "work": { "workId": "work-of:870970-basis:22629344", "titles": { @@ -21476,7 +19451,7 @@ } }, { - "numberInSeries": "5", + "numberInSeries": "1", "work": { "workId": "work-of:870970-basis:22677780", "titles": { @@ -21487,7 +19462,7 @@ } }, { - "numberInSeries": "5", + "numberInSeries": "1", "work": { "workId": "work-of:870970-basis:22995154", "titles": { @@ -21497,81 +19472,190 @@ } } }, - { - "numberInSeries": "5", - "work": { - "workId": "work-of:870970-basis:23540703", - "titles": { - "main": ["Harry Potter og Flammernes Pokal"], - "full": ["Harry Potter og Flammernes Pokal"], - "original": ["Harry Potter and the goblet of fire"] - } - } + { + "numberInSeries": "1", + "work": { + "workId": "work-of:870970-basis:23540703", + "titles": { + "main": ["Harry Potter og Flammernes Pokal"], + "full": ["Harry Potter og Flammernes Pokal"], + "original": ["Harry Potter and the goblet of fire"] + } + } + }, + { + "numberInSeries": "1", + "work": { + "workId": "work-of:870970-basis:25245784", + "titles": { + "main": ["Harry Potter og Fønixordenen"], + "full": ["Harry Potter og Fønixordenen"], + "original": ["Harry Potter and the Order of the Phoenix"] + } + } + }, + { + "numberInSeries": "1", + "work": { + "workId": "work-of:870970-basis:25807995", + "titles": { + "main": ["Harry Potter og halvblodsprinsen"], + "full": ["Harry Potter og halvblodsprinsen"], + "original": ["Harry Potter and the half-blood prince"] + } + } + }, + { + "numberInSeries": "1", + "work": { + "workId": "work-of:870970-basis:27267912", + "titles": { + "main": ["Harry Potter og dødsregalierne"], + "full": ["Harry Potter og dødsregalierne"], + "original": ["Harry Potter and the deathly hallows"] + } + } + }, + { + "numberInSeries": "1", + "work": { + "workId": "work-of:870970-basis:52646251", + "titles": { + "main": ["Harry Potter og det forbandede barn"], + "full": [ + "Harry Potter og det forbandede barn : del et & to" + ], + "original": ["Harry Potter and the cursed child"] + } + } + } + ] + } + ], + "workYear": { + "year": 1492 + }, + "genreAndForm": ["børnefilm"], + "manifestations": { + "all": [ + { + "pid": "870970-basis:24229157", + "genreAndForm": [], + "source": ["Bibliotekskatalog"], + "languages": { + "main": [ + { + "display": "dansk", + "isoCode": "dan" + } + ] + }, + "titles": { + "main": ["Harry Potter og de vises sten"], + "original": ["Harry Potter and the sorcerer's stone"] + }, + "fictionNonfiction": { + "display": "fiktion", + "code": "FICTION" + }, + "materialTypes": [ + { + "materialTypeSpecific": { + "display": "film (videobånd)" + } + } + ], + "creators": [ + { + "display": "Chris Columbus (f. 1958)", + "__typename": "Person" + }, + { + "display": "Steve Kloves", + "__typename": "Person" + }, + { + "display": "John Seale", + "__typename": "Person" + }, + { + "display": "Joanne K. Rowling", + "__typename": "Person" + } + ], + "publisher": ["Sandrew Metronome"], + "identifiers": [], + "contributors": [ + { + "display": "Daniel Radcliffe" + }, + { + "display": "Rupert Grint" + }, + { + "display": "Emma Watson" + }, + { + "display": "John Cleese" + }, + { + "display": "Robbie Coltrane" + }, + { + "display": "Richard Griffiths" + }, + { + "display": "Richard Harris" + }, + { + "display": "Ian Hart" + }, + { + "display": "John Hurt" + } + ], + "edition": { + "summary": "2002", + "publicationYear": { + "display": "2002" + } + }, + "dateFirstEdition": null, + "audience": { + "generalAudience": [] }, - { - "numberInSeries": "5", - "work": { - "workId": "work-of:870970-basis:25245784", - "titles": { - "main": ["Harry Potter og Fønixordenen"], - "full": ["Harry Potter og Fønixordenen"], - "original": ["Harry Potter and the Order of the Phoenix"] + "physicalDescriptions": [ + { + "numberOfPages": null, + "playingTime": { + "materialUnits": [ + { + "extent": null + } + ] } } - }, - { - "numberInSeries": "5", - "work": { - "workId": "work-of:870970-basis:25807995", - "titles": { - "main": ["Harry Potter og halvblodsprinsen"], - "full": ["Harry Potter og halvblodsprinsen"], - "original": ["Harry Potter and the half-blood prince"] - } + ], + "accessTypes": [ + { + "code": "PHYSICAL" } - }, - { - "numberInSeries": "5", - "work": { - "workId": "work-of:870970-basis:27267912", - "titles": { - "main": ["Harry Potter og dødsregalierne"], - "full": ["Harry Potter og dødsregalierne"], - "original": ["Harry Potter and the deathly hallows"] - } + ], + "access": [ + { + "__typename": "InterLibraryLoan", + "loanIsPossible": true } + ], + "shelfmark": { + "postfix": "Harry", + "shelfmark": "77.7" }, - { - "numberInSeries": "5", - "work": { - "workId": "work-of:870970-basis:52646251", - "titles": { - "main": ["Harry Potter og det forbandede barn"], - "full": [ - "Harry Potter og det forbandede barn : del et & to" - ], - "original": ["Harry Potter and the cursed child"] - } - } - } - ] - } - ], - "workYear": { - "year": 2003 - }, - "genreAndForm": [ - "roman", - "eventyrlige fortællinger", - "romaner", - "fantasy", - "noveller" - ], - "manifestations": { - "all": [ + "workYear": null + }, { - "pid": "870970-basis:134620226", - "genreAndForm": ["roman", "fantasy", "romaner"], + "pid": "870970-basis:24284565", + "genreAndForm": [], "source": ["Bibliotekskatalog"], "languages": { "main": [ @@ -21582,56 +19666,82 @@ ] }, "titles": { - "main": [ - "Harry Potter and the order of the Phoenix (Ill. Jim Kay)" - ], + "main": ["Harry Potter og de vises sten"], "original": [] }, "fictionNonfiction": { - "display": "skønlitteratur", + "display": "fiktion", "code": "FICTION" }, "materialTypes": [ { "materialTypeSpecific": { - "display": "bog" + "display": "film (videobånd)" } } ], "creators": [ { - "display": "Joanne K. Rowling", + "display": "Chris Columbus (f. 1958)", "__typename": "Person" }, { - "display": "Jim Kay", + "display": "Steve Kloves", "__typename": "Person" - } - ], - "publisher": ["Bloomsbury Children's Books"], - "identifiers": [ + }, { - "value": "9781408845684" + "display": "John Seale", + "__typename": "Person" + }, + { + "display": "Joanne K. Rowling", + "__typename": "Person" } ], + "publisher": ["Sandrew Metronome"], + "identifiers": [], "contributors": [ { - "display": "Neil Packer" + "display": "Daniel Radcliffe" + }, + { + "display": "Rupert Grint" + }, + { + "display": "Emma Watson" + }, + { + "display": "John Cleese" + }, + { + "display": "Robbie Coltrane" + }, + { + "display": "Richard Griffiths" + }, + { + "display": "Richard Harris" + }, + { + "display": "Ian Hart" + }, + { + "display": "John Hurt" } ], "edition": { - "summary": "2022", + "summary": "2002", "publicationYear": { - "display": "2022" + "display": "2002" } }, "dateFirstEdition": null, "audience": { - "generalAudience": [] + "generalAudience": ["Mærkning: Tilladt for børn over 11 år"] }, "physicalDescriptions": [ { - "numberOfPages": 564, + "numberOfPages": null, "playingTime": { "materialUnits": [ { @@ -21653,14 +19763,16 @@ } ], "shelfmark": { - "postfix": "Rowling", - "shelfmark": "83" + "postfix": "Harry", + "shelfmark": "77.7" }, - "workYear": null + "workYear": { + "year": 1492 + } }, { - "pid": "870970-basis:24713571", - "genreAndForm": ["roman", "eventyrlige fortællinger"], + "pid": "870970-basis:24347370", + "genreAndForm": [], "source": ["Bibliotekskatalog"], "languages": { "main": [ @@ -21671,49 +19783,82 @@ ] }, "titles": { - "main": ["Harry Potter and the Order of the Phoenix"], + "main": ["Harry Potter og de vises sten"], "original": [] }, "fictionNonfiction": { - "display": "skønlitteratur", + "display": "fiktion", "code": "FICTION" }, "materialTypes": [ { "materialTypeSpecific": { - "display": "bog" + "display": "film (videobånd)" } } ], "creators": [ + { + "display": "Chris Columbus (f. 1958)", + "__typename": "Person" + }, + { + "display": "Steve Kloves", + "__typename": "Person" + }, + { + "display": "John Seale", + "__typename": "Person" + }, { "display": "Joanne K. Rowling", "__typename": "Person" } ], - "publisher": ["Bloomsbury"], - "identifiers": [ + "publisher": ["Sandrew Metronome", "Nordisk Film Vision"], + "identifiers": [], + "contributors": [ { - "value": "0-7475-5100-6" + "display": "Daniel Radcliffe" + }, + { + "display": "Rupert Grint" + }, + { + "display": "Emma Watson" + }, + { + "display": "John Cleese" + }, + { + "display": "Robbie Coltrane" + }, + { + "display": "Richard Griffiths" + }, + { + "display": "Richard Harris" + }, + { + "display": "Ian Hart" + }, + { + "display": "John Hurt" } ], - "contributors": [], "edition": { - "summary": "1. edition, 2003", + "summary": "2002", "publicationYear": { - "display": "2003" + "display": "2002" } }, - "dateFirstEdition": { - "display": "2003", - "year": 2003 - }, + "dateFirstEdition": null, "audience": { "generalAudience": [] }, "physicalDescriptions": [ { - "numberOfPages": 766, + "numberOfPages": null, "playingTime": { "materialUnits": [ { @@ -21735,16 +19880,16 @@ } ], "shelfmark": { - "postfix": "Rowling", - "shelfmark": "83" + "postfix": "Harry", + "shelfmark": "77.7" }, "workYear": { - "year": 2003 + "year": 1492 } }, { - "pid": "870970-basis:24787834", - "genreAndForm": ["roman"], + "pid": "870970-basis:24933946", + "genreAndForm": [], "source": ["Bibliotekskatalog"], "languages": { "main": [ @@ -21755,49 +19900,80 @@ ] }, "titles": { - "main": ["Harry Potter and the Order of the Phoenix"], + "main": ["Harry Potter og de vises sten"], "original": [] }, "fictionNonfiction": { - "display": "skønlitteratur", + "display": "fiktion", "code": "FICTION" }, "materialTypes": [ { "materialTypeSpecific": { - "display": "lydbog (bånd)" + "display": "film (dvd)" } } ], "creators": [ { - "display": "Joanne K. Rowling", + "display": "Chris Columbus (f. 1958)", + "__typename": "Person" + }, + { + "display": "Steve Kloves", + "__typename": "Person" + }, + { + "display": "John Seale", "__typename": "Person" }, { - "display": "Stephen Fry", + "display": "Joanne K. Rowling", "__typename": "Person" } ], - "publisher": ["Cover to Cover"], - "identifiers": [ + "publisher": ["Sandrew Metronome"], + "identifiers": [], + "contributors": [ { - "value": "1-85549-661-5" + "display": "Daniel Radcliffe" + }, + { + "display": "Rupert Grint" + }, + { + "display": "Emma Watson" + }, + { + "display": "John Cleese" + }, + { + "display": "Robbie Coltrane" + }, + { + "display": "Richard Griffiths" + }, + { + "display": "Richard Harris" + }, + { + "display": "Ian Hart" + }, + { + "display": "John Hurt" } ], - "contributors": [], "edition": { - "summary": "2003", + "summary": "2004", "publicationYear": { - "display": "2003" + "display": "2004" } }, - "dateFirstEdition": { - "display": "2003", - "year": 2003 - }, + "dateFirstEdition": null, "audience": { - "generalAudience": [] + "generalAudience": [ + "Mærkning: Tilladt for alle men frarådes børn under 7 år" + ] }, "physicalDescriptions": [ { @@ -21823,16 +19999,14 @@ } ], "shelfmark": { - "postfix": "Rowling", - "shelfmark": "83" + "postfix": "Harry", + "shelfmark": "77.7" }, - "workYear": { - "year": 2003 - } + "workYear": null }, { - "pid": "870970-basis:24787966", - "genreAndForm": ["roman"], + "pid": "870970-basis:27123228", + "genreAndForm": [], "source": ["Bibliotekskatalog"], "languages": { "main": [ @@ -21843,49 +20017,82 @@ ] }, "titles": { - "main": ["Harry Potter and the Order of the Phoenix"], + "main": ["Harry Potter og de vises sten"], "original": [] }, "fictionNonfiction": { - "display": "skønlitteratur", + "display": "fiktion", "code": "FICTION" }, "materialTypes": [ { "materialTypeSpecific": { - "display": "lydbog (cd)" + "display": "film (blu-ray)" } } ], "creators": [ { - "display": "Joanne K. Rowling", + "display": "Chris Columbus (f. 1958)", "__typename": "Person" }, { - "display": "Stephen Fry", + "display": "Steve Kloves", + "__typename": "Person" + }, + { + "display": "John Seale", + "__typename": "Person" + }, + { + "display": "Joanne K. Rowling", "__typename": "Person" } ], - "publisher": ["Cover to Cover"], + "publisher": ["Warner Bros. Entertainment Danmark"], "identifiers": [ { - "value": "1-85549-682-8" + "value": "Y 20315" + } + ], + "contributors": [ + { + "display": "Daniel Radcliffe" + }, + { + "display": "Rupert Grint" + }, + { + "display": "Emma Watson" + }, + { + "display": "John Cleese" + }, + { + "display": "Robbie Coltrane" + }, + { + "display": "Richard Griffiths" + }, + { + "display": "Richard Harris" + }, + { + "display": "Ian Hart" + }, + { + "display": "John Hurt" } ], - "contributors": [], "edition": { - "summary": "2003", + "summary": "2007", "publicationYear": { - "display": "2003" + "display": "2007" } }, - "dateFirstEdition": { - "display": "2003", - "year": 2003 - }, + "dateFirstEdition": null, "audience": { - "generalAudience": [] + "generalAudience": ["Mærkning: Tilladt for børn over 11 år"] }, "physicalDescriptions": [ { @@ -21911,16 +20118,14 @@ } ], "shelfmark": { - "postfix": "Rowling", - "shelfmark": "83" + "postfix": "Harry", + "shelfmark": "77.7" }, - "workYear": { - "year": 2003 - } + "workYear": null }, { - "pid": "870970-basis:25699807", - "genreAndForm": ["roman"], + "pid": "870970-basis:27123279", + "genreAndForm": [], "source": ["Bibliotekskatalog"], "languages": { "main": [ @@ -21931,53 +20136,82 @@ ] }, "titles": { - "main": ["Harry Potter and the Order of the Phoenix"], + "main": ["Harry Potter og de vises sten"], "original": [] }, "fictionNonfiction": { - "display": "skønlitteratur", + "display": "fiktion", "code": "FICTION" }, "materialTypes": [ { "materialTypeSpecific": { - "display": "lydbog (bånd)" + "display": "film (dvd)" } } ], "creators": [ { - "display": "Joanne K. Rowling", + "display": "Chris Columbus (f. 1958)", "__typename": "Person" }, { - "display": "Stephen Fry", + "display": "Steve Kloves", + "__typename": "Person" + }, + { + "display": "John Seale", + "__typename": "Person" + }, + { + "display": "Joanne K. Rowling", "__typename": "Person" } ], - "publisher": ["Danmarks Blindebibliotek"], + "publisher": ["Warner Bros. Entertainment Danmark"], "identifiers": [ { - "value": "Best.nr. 15617" + "value": "Y 20314" } ], "contributors": [ { - "display": "Stephen Fry" + "display": "Daniel Radcliffe" + }, + { + "display": "Rupert Grint" + }, + { + "display": "Emma Watson" + }, + { + "display": "John Cleese" + }, + { + "display": "Robbie Coltrane" + }, + { + "display": "Richard Griffiths" + }, + { + "display": "Richard Harris" + }, + { + "display": "Ian Hart" + }, + { + "display": "John Hurt" } ], "edition": { - "summary": "2005", + "summary": "2007", "publicationYear": { - "display": "2005" + "display": "2007" } }, - "dateFirstEdition": { - "display": "2003", - "year": 2003 - }, + "dateFirstEdition": null, "audience": { - "generalAudience": [] + "generalAudience": ["Mærkning: Tilladt for børn over 11 år"] }, "physicalDescriptions": [ { @@ -22003,16 +20237,14 @@ } ], "shelfmark": { - "postfix": "Rowling", - "shelfmark": "83" + "postfix": "Harry", + "shelfmark": "77.7" }, - "workYear": { - "year": 2003 - } + "workYear": null }, { - "pid": "870970-basis:26678927", - "genreAndForm": ["roman", "eventyrlige fortællinger"], + "pid": "870970-basis:27963390", + "genreAndForm": [], "source": ["Bibliotekskatalog"], "languages": { "main": [ @@ -22023,49 +20255,86 @@ ] }, "titles": { - "main": ["Harry Potter and the Order of the Phoenix"], + "main": ["Harry Potter og de vises sten"], "original": [] }, "fictionNonfiction": { - "display": "skønlitteratur", + "display": "fiktion", "code": "FICTION" }, "materialTypes": [ { - "materialTypeSpecific": { - "display": "bog" - } - } - ], - "creators": [ + "materialTypeSpecific": { + "display": "film (dvd)" + } + } + ], + "creators": [ + { + "display": "Chris Columbus (f. 1958)", + "__typename": "Person" + }, + { + "display": "Steve Kloves", + "__typename": "Person" + }, + { + "display": "John Seale", + "__typename": "Person" + }, + { + "display": "Joanne K. Rowling", + "__typename": "Person" + } + ], + "publisher": ["Warner Bros. Entertainment Danmark"], + "identifiers": [ + { + "value": "58815" + } + ], + "contributors": [ + { + "display": "Daniel Radcliffe" + }, + { + "display": "Rupert Grint" + }, + { + "display": "Emma Watson" + }, + { + "display": "John Cleese" + }, + { + "display": "Robbie Coltrane" + }, + { + "display": "Richard Griffiths" + }, { - "display": "Joanne K. Rowling", - "__typename": "Person" - } - ], - "publisher": ["Bloomsbury"], - "identifiers": [ + "display": "Richard Harris" + }, { - "value": "0-7475-6107-9" + "display": "Ian Hart" + }, + { + "display": "John Hurt" } ], - "contributors": [], "edition": { - "summary": "Paperback edition, 2004", + "summary": "1-disc edition, 2009", "publicationYear": { - "display": "2004" + "display": "2009" } }, - "dateFirstEdition": { - "display": "2003", - "year": 2003 - }, + "dateFirstEdition": null, "audience": { - "generalAudience": [] + "generalAudience": ["Mærkning: Tilladt for børn over 11 år"] }, "physicalDescriptions": [ { - "numberOfPages": 766, + "numberOfPages": null, "playingTime": { "materialUnits": [ { @@ -22087,184 +20356,374 @@ } ], "shelfmark": { - "postfix": "Rowling", - "shelfmark": "83" + "postfix": "Harry", + "shelfmark": "77.7" }, - "workYear": { - "year": 2003 + "workYear": null + } + ], + "latest": { + "pid": "870970-basis:27963390", + "genreAndForm": [], + "source": ["Bibliotekskatalog"], + "languages": { + "main": [ + { + "display": "engelsk", + "isoCode": "eng" + } + ] + }, + "titles": { + "main": ["Harry Potter og de vises sten"], + "original": [] + }, + "fictionNonfiction": { + "display": "fiktion", + "code": "FICTION" + }, + "materialTypes": [ + { + "materialTypeSpecific": { + "display": "film (dvd)" + } + } + ], + "creators": [ + { + "display": "Chris Columbus (f. 1958)", + "__typename": "Person" + }, + { + "display": "Steve Kloves", + "__typename": "Person" + }, + { + "display": "John Seale", + "__typename": "Person" + }, + { + "display": "Joanne K. Rowling", + "__typename": "Person" + } + ], + "publisher": ["Warner Bros. Entertainment Danmark"], + "identifiers": [ + { + "value": "58815" + } + ], + "contributors": [ + { + "display": "Daniel Radcliffe" + }, + { + "display": "Rupert Grint" + }, + { + "display": "Emma Watson" + }, + { + "display": "John Cleese" + }, + { + "display": "Robbie Coltrane" + }, + { + "display": "Richard Griffiths" + }, + { + "display": "Richard Harris" + }, + { + "display": "Ian Hart" + }, + { + "display": "John Hurt" + } + ], + "edition": { + "summary": "1-disc edition, 2009", + "publicationYear": { + "display": "2009" + } + }, + "dateFirstEdition": null, + "audience": { + "generalAudience": ["Mærkning: Tilladt for børn over 11 år"] + }, + "physicalDescriptions": [ + { + "numberOfPages": null, + "playingTime": "ca. 2 t., 27 min." + } + ], + "accessTypes": [ + { + "code": "PHYSICAL" + } + ], + "access": [ + { + "__typename": "InterLibraryLoan", + "loanIsPossible": true + } + ], + "shelfmark": { + "postfix": "Harry", + "shelfmark": "77.7" + }, + "workYear": null + }, + "bestRepresentation": { + "pid": "870970-basis:27963390", + "genreAndForm": [], + "source": ["Bibliotekskatalog"], + "languages": { + "main": [ + { + "display": "engelsk", + "isoCode": "eng" + } + ] + }, + "titles": { + "main": ["Harry Potter og de vises sten"], + "original": [] + }, + "fictionNonfiction": { + "display": "fiktion", + "code": "FICTION" + }, + "materialTypes": [ + { + "materialTypeSpecific": { + "display": "film (dvd)" + } + } + ], + "creators": [ + { + "display": "Chris Columbus (f. 1958)", + "__typename": "Person" + }, + { + "display": "Steve Kloves", + "__typename": "Person" + }, + { + "display": "John Seale", + "__typename": "Person" + }, + { + "display": "Joanne K. Rowling", + "__typename": "Person" + } + ], + "publisher": ["Warner Bros. Entertainment Danmark"], + "identifiers": [ + { + "value": "58815" + } + ], + "contributors": [ + { + "display": "Daniel Radcliffe" + }, + { + "display": "Rupert Grint" + }, + { + "display": "Emma Watson" + }, + { + "display": "John Cleese" + }, + { + "display": "Robbie Coltrane" + }, + { + "display": "Richard Griffiths" + }, + { + "display": "Richard Harris" + }, + { + "display": "Ian Hart" + }, + { + "display": "John Hurt" + } + ], + "edition": { + "summary": "1-disc edition, 2009", + "publicationYear": { + "display": "2009" + } + }, + "dateFirstEdition": null, + "audience": { + "generalAudience": ["Mærkning: Tilladt for børn over 11 år"] + }, + "physicalDescriptions": [ + { + "numberOfPages": null, + "playingTime": "ca. 2 t., 27 min." + } + ], + "accessTypes": [ + { + "code": "PHYSICAL" + } + ], + "access": [ + { + "__typename": "InterLibraryLoan", + "loanIsPossible": true } + ], + "shelfmark": { + "postfix": "Harry", + "shelfmark": "77.7" }, - { - "pid": "870970-basis:28090684", - "genreAndForm": ["eventyrlige fortællinger"], - "source": ["Bibliotekskatalog"], - "languages": { - "main": [ - { - "display": "engelsk", - "isoCode": "eng" + "workYear": null + } + } + }, + { + "workId": "work-of:870970-basis:43167669", + "titles": { + "full": ["Harry Potter and the order of the Phoenix"], + "original": [] + }, + "abstract": [ + "As the Order of the Phoenix keeps watch over Harry Potter, troubled times have come to Hogwarts in a year filled with secrets, subterfuge and suspicion. The deliciously dark fifth instalment of Jim Kay's inspired reimagining of J.K. Rowling's classic series is an epic artistic achievement, featuring over 160 illustrations in an astonishing range of visual styles" + ], + "creators": [ + { + "display": "Joanne K. Rowling", + "__typename": "Person" + }, + { + "display": "Jim Kay", + "__typename": "Person" + } + ], + "series": [ + { + "title": "Harry Potter (engelsk)", + "isPopular": true, + "readThisFirst": null, + "readThisWhenever": null, + "members": [ + { + "numberInSeries": "5", + "work": { + "workId": "work-of:870970-basis:22629344", + "titles": { + "main": ["Harry Potter og de vises sten"], + "full": ["Harry Potter og de vises sten"], + "original": ["Harry Potter and the philosopher's stone"] } - ] - }, - "titles": { - "main": ["Harry Potter and the order of the Phoenix"], - "original": [] - }, - "fictionNonfiction": { - "display": "skønlitteratur", - "code": "FICTION" + } }, - "materialTypes": [ - { - "materialTypeSpecific": { - "display": "bog" + { + "numberInSeries": "5", + "work": { + "workId": "work-of:870970-basis:22677780", + "titles": { + "main": ["Harry Potter og Hemmelighedernes Kammer"], + "full": ["Harry Potter og Hemmelighedernes Kammer"], + "original": ["Harry Potter and the Chamber of Secrets"] } } - ], - "creators": [ - { - "display": "Joanne K. Rowling", - "__typename": "Person" - } - ], - "publisher": ["Bloomsbury"], - "identifiers": [ - { - "value": "0-7475-7073-6" - } - ], - "contributors": [], - "edition": { - "summary": "Paperback edition, 2004", - "publicationYear": { - "display": "2004" - } - }, - "dateFirstEdition": { - "display": "2003", - "year": 2003 - }, - "audience": { - "generalAudience": [] }, - "physicalDescriptions": [ - { - "numberOfPages": 956, - "playingTime": { - "materialUnits": [ - { - "extent": null - } - ] + { + "numberInSeries": "5", + "work": { + "workId": "work-of:870970-basis:22995154", + "titles": { + "main": ["Harry Potter og fangen fra Azkaban"], + "full": ["Harry Potter og fangen fra Azkaban"], + "original": ["Harry Potter and the prisoner of Azkaban"] } } - ], - "accessTypes": [ - { - "code": "PHYSICAL" - } - ], - "access": [ - { - "__typename": "InterLibraryLoan", - "loanIsPossible": true - } - ], - "shelfmark": { - "postfix": "Rowling", - "shelfmark": "83" }, - "workYear": { - "year": 2003 - } - }, - { - "pid": "870970-basis:38886509", - "genreAndForm": ["roman", "fantasy"], - "source": ["Bibliotekskatalog"], - "languages": { - "main": [ - { - "display": "engelsk", - "isoCode": "eng" + { + "numberInSeries": "5", + "work": { + "workId": "work-of:870970-basis:23540703", + "titles": { + "main": ["Harry Potter og Flammernes Pokal"], + "full": ["Harry Potter og Flammernes Pokal"], + "original": ["Harry Potter and the goblet of fire"] } - ] - }, - "titles": { - "main": ["Harry Potter and the Order of the Phoenix"], - "original": [] - }, - "fictionNonfiction": { - "display": "skønlitteratur", - "code": "FICTION" + } }, - "materialTypes": [ - { - "materialTypeSpecific": { - "display": "bog" + { + "numberInSeries": "5", + "work": { + "workId": "work-of:870970-basis:25245784", + "titles": { + "main": ["Harry Potter og Fønixordenen"], + "full": ["Harry Potter og Fønixordenen"], + "original": ["Harry Potter and the Order of the Phoenix"] } } - ], - "creators": [ - { - "display": "Joanne K. Rowling", - "__typename": "Person" - } - ], - "publisher": ["Bloomsbury Childrens books"], - "identifiers": [ - { - "value": "9781526618160" - } - ], - "contributors": [], - "edition": { - "summary": "Hogwarts house edition, 2020, 2020", - "publicationYear": { - "display": "2020" - } }, - "dateFirstEdition": { - "display": "2003", - "year": 2003 - }, - "audience": { - "generalAudience": [] - }, - "physicalDescriptions": [ - { - "numberOfPages": 802, - "playingTime": { - "materialUnits": [ - { - "extent": null - } - ] + { + "numberInSeries": "5", + "work": { + "workId": "work-of:870970-basis:25807995", + "titles": { + "main": ["Harry Potter og halvblodsprinsen"], + "full": ["Harry Potter og halvblodsprinsen"], + "original": ["Harry Potter and the half-blood prince"] } } - ], - "accessTypes": [ - { - "code": "PHYSICAL" - } - ], - "access": [ - { - "__typename": "InterLibraryLoan", - "loanIsPossible": true + }, + { + "numberInSeries": "5", + "work": { + "workId": "work-of:870970-basis:27267912", + "titles": { + "main": ["Harry Potter og dødsregalierne"], + "full": ["Harry Potter og dødsregalierne"], + "original": ["Harry Potter and the deathly hallows"] + } } - ], - "shelfmark": { - "postfix": "Rowling", - "shelfmark": "83" }, - "workYear": { - "year": 2003 + { + "numberInSeries": "5", + "work": { + "workId": "work-of:870970-basis:52646251", + "titles": { + "main": ["Harry Potter og det forbandede barn"], + "full": [ + "Harry Potter og det forbandede barn : del et & to" + ], + "original": ["Harry Potter and the cursed child"] + } + } } - }, + ] + } + ], + "workYear": { + "year": 2003 + }, + "genreAndForm": [ + "roman", + "eventyrlige fortællinger", + "romaner", + "fantasy", + "noveller" + ], + "manifestations": { + "all": [ { - "pid": "870970-basis:43167669", - "genreAndForm": ["roman", "eventyrlige fortællinger"], + "pid": "870970-basis:134620226", + "genreAndForm": ["roman", "fantasy", "romaner"], "source": ["Bibliotekskatalog"], "languages": { "main": [ @@ -22275,7 +20734,9 @@ ] }, "titles": { - "main": ["Harry Potter and the Order of the Phoenix"], + "main": [ + "Harry Potter and the order of the Phoenix (Ill. Jim Kay)" + ], "original": [] }, "fictionNonfiction": { @@ -22293,31 +20754,36 @@ { "display": "Joanne K. Rowling", "__typename": "Person" + }, + { + "display": "Jim Kay", + "__typename": "Person" } ], - "publisher": ["Bloomsbury"], + "publisher": ["Bloomsbury Children's Books"], "identifiers": [ { - "value": "0-7475-6940-1" + "value": "9781408845684" + } + ], + "contributors": [ + { + "display": "Neil Packer" } ], - "contributors": [], "edition": { - "summary": "Bloomsbury, 1. adult edition 2003, 2003", + "summary": "2022", "publicationYear": { - "display": "2003" + "display": "2022" } }, - "dateFirstEdition": { - "display": "2003", - "year": 2003 - }, + "dateFirstEdition": null, "audience": { "generalAudience": [] }, "physicalDescriptions": [ { - "numberOfPages": 766, + "numberOfPages": 564, "playingTime": { "materialUnits": [ { @@ -22342,12 +20808,10 @@ "postfix": "Rowling", "shelfmark": "83" }, - "workYear": { - "year": 2003 - } + "workYear": null }, { - "pid": "870970-basis:43216937", + "pid": "870970-basis:24713571", "genreAndForm": ["roman", "eventyrlige fortællinger"], "source": ["Bibliotekskatalog"], "languages": { @@ -22359,7 +20823,7 @@ ] }, "titles": { - "main": ["Harry Potter and the order of the phoenix"], + "main": ["Harry Potter and the Order of the Phoenix"], "original": [] }, "fictionNonfiction": { @@ -22387,7 +20851,7 @@ ], "contributors": [], "edition": { - "summary": "2003", + "summary": "1. edition, 2003", "publicationYear": { "display": "2003" } @@ -22431,7 +20895,7 @@ } }, { - "pid": "870970-basis:43236423", + "pid": "870970-basis:24787834", "genreAndForm": ["roman"], "source": ["Bibliotekskatalog"], "languages": { @@ -22470,12 +20934,12 @@ "publisher": ["Cover to Cover"], "identifiers": [ { - "value": "1-85549-648-8" + "value": "1-85549-661-5" } ], "contributors": [], "edition": { - "summary": "Cover to Cover, 1. adult edition 2003, 2003", + "summary": "2003", "publicationYear": { "display": "2003" } @@ -22519,7 +20983,7 @@ } }, { - "pid": "870970-basis:43236431", + "pid": "870970-basis:24787966", "genreAndForm": ["roman"], "source": ["Bibliotekskatalog"], "languages": { @@ -22531,9 +20995,7 @@ ] }, "titles": { - "main": [ - "Harry Potter and the Order of the Phoenix (Ved Stephen Fry)" - ], + "main": ["Harry Potter and the Order of the Phoenix"], "original": [] }, "fictionNonfiction": { @@ -22560,15 +21022,12 @@ "publisher": ["Cover to Cover"], "identifiers": [ { - "value": "9781408882238" - }, - { - "value": "1-85549-687-9" + "value": "1-85549-682-8" } ], "contributors": [], "edition": { - "summary": "Cover to Cover, 1. adult edition 2003, 2003", + "summary": "2003", "publicationYear": { "display": "2003" } @@ -22612,8 +21071,8 @@ } }, { - "pid": "870970-basis:44507870", - "genreAndForm": ["eventyrlige fortællinger"], + "pid": "870970-basis:25699807", + "genreAndForm": ["roman"], "source": ["Bibliotekskatalog"], "languages": { "main": [ @@ -22624,7 +21083,7 @@ ] }, "titles": { - "main": ["Harry Potter and the order of the phoenix"], + "main": ["Harry Potter and the Order of the Phoenix"], "original": [] }, "fictionNonfiction": { @@ -22634,7 +21093,7 @@ "materialTypes": [ { "materialTypeSpecific": { - "display": "bog" + "display": "lydbog (bånd)" } } ], @@ -22642,19 +21101,27 @@ { "display": "Joanne K. Rowling", "__typename": "Person" + }, + { + "display": "Stephen Fry", + "__typename": "Person" } ], - "publisher": ["Bloomsbury Children's Books"], + "publisher": ["Danmarks Blindebibliotek"], "identifiers": [ { - "value": "0-7475-6961-4" + "value": "Best.nr. 15617" + } + ], + "contributors": [ + { + "display": "Stephen Fry" } ], - "contributors": [], "edition": { - "summary": "2003", + "summary": "2005", "publicationYear": { - "display": "2003" + "display": "2005" } }, "dateFirstEdition": { @@ -22666,7 +21133,7 @@ }, "physicalDescriptions": [ { - "numberOfPages": 766, + "numberOfPages": null, "playingTime": { "materialUnits": [ { @@ -22696,8 +21163,8 @@ } }, { - "pid": "870970-basis:44761424", - "genreAndForm": ["roman", "fantasy"], + "pid": "870970-basis:26678927", + "genreAndForm": ["roman", "eventyrlige fortællinger"], "source": ["Bibliotekskatalog"], "languages": { "main": [ @@ -22708,7 +21175,7 @@ ] }, "titles": { - "main": ["Harry Potter and the order of the Phoenix"], + "main": ["Harry Potter and the Order of the Phoenix"], "original": [] }, "fictionNonfiction": { @@ -22731,14 +21198,14 @@ "publisher": ["Bloomsbury"], "identifiers": [ { - "value": "9780747591269" + "value": "0-7475-6107-9" } ], "contributors": [], "edition": { - "summary": "Bloomsbury, new pbk. edition 2007, 2007", + "summary": "Paperback edition, 2004", "publicationYear": { - "display": "2007" + "display": "2004" } }, "dateFirstEdition": { @@ -22780,8 +21247,8 @@ } }, { - "pid": "870970-basis:44931893", - "genreAndForm": ["roman", "eventyrlige fortællinger"], + "pid": "870970-basis:28090684", + "genreAndForm": ["eventyrlige fortællinger"], "source": ["Bibliotekskatalog"], "languages": { "main": [ @@ -22815,14 +21282,14 @@ "publisher": ["Bloomsbury"], "identifiers": [ { - "value": "9781408810590" + "value": "0-7475-7073-6" } ], "contributors": [], "edition": { - "summary": "Signature edition, 2010", + "summary": "Paperback edition, 2004", "publicationYear": { - "display": "2010" + "display": "2004" } }, "dateFirstEdition": { @@ -22834,7 +21301,7 @@ }, "physicalDescriptions": [ { - "numberOfPages": 766, + "numberOfPages": 956, "playingTime": { "materialUnits": [ { @@ -22864,95 +21331,7 @@ } }, { - "pid": "870970-basis:45671038", - "genreAndForm": ["roman"], - "source": ["Bibliotekskatalog"], - "languages": { - "main": [ - { - "display": "engelsk", - "isoCode": "eng" - } - ] - }, - "titles": { - "main": ["Harry Potter and the order of the phoenix"], - "original": [] - }, - "fictionNonfiction": { - "display": "skønlitteratur", - "code": "FICTION" - }, - "materialTypes": [ - { - "materialTypeSpecific": { - "display": "lydbog (cd)" - } - } - ], - "creators": [ - { - "display": "Joanne K. Rowling", - "__typename": "Person" - } - ], - "publisher": ["HNP"], - "identifiers": [ - { - "value": "9781907545122" - } - ], - "contributors": [ - { - "display": "Stephen Fry" - } - ], - "edition": { - "summary": "2010", - "publicationYear": { - "display": "2010" - } - }, - "dateFirstEdition": { - "display": "2003", - "year": 2003 - }, - "audience": { - "generalAudience": [] - }, - "physicalDescriptions": [ - { - "numberOfPages": null, - "playingTime": { - "materialUnits": [ - { - "extent": null - } - ] - } - } - ], - "accessTypes": [ - { - "code": "PHYSICAL" - } - ], - "access": [ - { - "__typename": "InterLibraryLoan", - "loanIsPossible": true - } - ], - "shelfmark": { - "postfix": "Rowling", - "shelfmark": "Uden klassemærke" - }, - "workYear": { - "year": 2003 - } - }, - { - "pid": "870970-basis:45696200", + "pid": "870970-basis:38886509", "genreAndForm": ["roman", "fantasy"], "source": ["Bibliotekskatalog"], "languages": { @@ -22964,7 +21343,7 @@ ] }, "titles": { - "main": ["Harry Potter and the order of the Phoenix"], + "main": ["Harry Potter and the Order of the Phoenix"], "original": [] }, "fictionNonfiction": { @@ -22984,20 +21363,17 @@ "__typename": "Person" } ], - "publisher": ["Bloomsbury"], + "publisher": ["Bloomsbury Childrens books"], "identifiers": [ { - "value": "9781408855935" - }, - { - "value": "9781408855690" + "value": "9781526618160" } ], "contributors": [], "edition": { - "summary": "Bloomsbury, new edition 2014, 2014", + "summary": "Hogwarts house edition, 2020, 2020", "publicationYear": { - "display": "2014" + "display": "2020" } }, "dateFirstEdition": { @@ -23009,7 +21385,7 @@ }, "physicalDescriptions": [ { - "numberOfPages": 799, + "numberOfPages": 802, "playingTime": { "materialUnits": [ { @@ -23039,12 +21415,8 @@ } }, { - "pid": "870970-basis:53235212", - "genreAndForm": [ - "roman", - "eventyrlige fortællinger", - "fantasy" - ], + "pid": "870970-basis:43167669", + "genreAndForm": ["roman", "eventyrlige fortællinger"], "source": ["Bibliotekskatalog"], "languages": { "main": [ @@ -23072,33 +21444,32 @@ "creators": [ { "display": "Joanne K. Rowling", - "__typename": "Person" - } - ], - "publisher": ["Levine"], - "identifiers": [ - { - "value": "9780439358064" + "__typename": "Person" } ], - "contributors": [ + "publisher": ["Bloomsbury"], + "identifiers": [ { - "display": "Mary Grandpré" + "value": "0-7475-6940-1" } ], + "contributors": [], "edition": { - "summary": "Levine, 2003", + "summary": "Bloomsbury, 1. adult edition 2003, 2003", "publicationYear": { "display": "2003" } }, - "dateFirstEdition": null, + "dateFirstEdition": { + "display": "2003", + "year": 2003 + }, "audience": { "generalAudience": [] }, "physicalDescriptions": [ { - "numberOfPages": 870, + "numberOfPages": 766, "playingTime": { "materialUnits": [ { @@ -23123,311 +21494,278 @@ "postfix": "Rowling", "shelfmark": "83" }, - "workYear": null - } - ], - "latest": { - "pid": "870970-basis:134620226", - "genreAndForm": ["roman", "fantasy", "romaner"], - "source": ["Bibliotekskatalog"], - "languages": { - "main": [ - { - "display": "engelsk", - "isoCode": "eng" - } - ] - }, - "titles": { - "main": [ - "Harry Potter and the order of the Phoenix (Ill. Jim Kay)" - ], - "original": [] - }, - "fictionNonfiction": { - "display": "skønlitteratur", - "code": "FICTION" - }, - "materialTypes": [ - { - "materialTypeSpecific": { - "display": "bog" - } - } - ], - "creators": [ - { - "display": "Joanne K. Rowling", - "__typename": "Person" - }, - { - "display": "Jim Kay", - "__typename": "Person" - } - ], - "publisher": ["Bloomsbury Children's Books"], - "identifiers": [ - { - "value": "9781408845684" - } - ], - "contributors": [ - { - "display": "Neil Packer" - } - ], - "edition": { - "summary": "2022", - "publicationYear": { - "display": "2022" - } - }, - "dateFirstEdition": null, - "audience": { - "generalAudience": [] - }, - "physicalDescriptions": [ - { - "numberOfPages": 564, - "playingTime": null - } - ], - "accessTypes": [ - { - "code": "PHYSICAL" - } - ], - "access": [ - { - "__typename": "InterLibraryLoan", - "loanIsPossible": true + "workYear": { + "year": 2003 } - ], - "shelfmark": { - "postfix": "Rowling", - "shelfmark": "83" }, - "workYear": null - }, - "bestRepresentation": { - "pid": "870970-basis:134620226", - "genreAndForm": ["roman", "fantasy", "romaner"], - "source": ["Bibliotekskatalog"], - "languages": { - "main": [ + { + "pid": "870970-basis:43216937", + "genreAndForm": ["roman", "eventyrlige fortællinger"], + "source": ["Bibliotekskatalog"], + "languages": { + "main": [ + { + "display": "engelsk", + "isoCode": "eng" + } + ] + }, + "titles": { + "main": ["Harry Potter and the order of the phoenix"], + "original": [] + }, + "fictionNonfiction": { + "display": "skønlitteratur", + "code": "FICTION" + }, + "materialTypes": [ { - "display": "engelsk", - "isoCode": "eng" + "materialTypeSpecific": { + "display": "bog" + } } - ] - }, - "titles": { - "main": [ - "Harry Potter and the order of the Phoenix (Ill. Jim Kay)" ], - "original": [] - }, - "fictionNonfiction": { - "display": "skønlitteratur", - "code": "FICTION" - }, - "materialTypes": [ - { - "materialTypeSpecific": { - "display": "bog" + "creators": [ + { + "display": "Joanne K. Rowling", + "__typename": "Person" } - } - ], - "creators": [ - { - "display": "Joanne K. Rowling", - "__typename": "Person" - }, - { - "display": "Jim Kay", - "__typename": "Person" - } - ], - "publisher": ["Bloomsbury Children's Books"], - "identifiers": [ - { - "value": "9781408845684" - } - ], - "contributors": [ - { - "display": "Neil Packer" - } - ], - "edition": { - "summary": "2022", - "publicationYear": { - "display": "2022" - } - }, - "dateFirstEdition": null, - "audience": { - "generalAudience": [] - }, - "physicalDescriptions": [ - { - "numberOfPages": 564, - "playingTime": null - } - ], - "accessTypes": [ - { - "code": "PHYSICAL" - } - ], - "access": [ - { - "__typename": "InterLibraryLoan", - "loanIsPossible": true - } - ], - "shelfmark": { - "postfix": "Rowling", - "shelfmark": "83" - }, - "workYear": null - } - } - }, - { - "workId": "work-of:870970-basis:26205530", - "titles": { - "full": ["Harry Potter og Flammernes Pokal"], - "original": [] - }, - "abstract": [ - "Troldmandsskolen Hogwarts skal dyste i magisk trekamp mod kollegaerne fra Durmstrang og Beauxbaton, og selv om Harry Potter ikke er fyldt de 17 år, som regler kræver, må han alligevel stille op i et grumt spil, som styres af selve mørkets herre" - ], - "creators": [ - { - "display": "Mike Newell", - "__typename": "Person" - }, - { - "display": "Steve Kloves", - "__typename": "Person" - }, - { - "display": "Roger Pratt", - "__typename": "Person" - }, - { - "display": "Joanne K. Rowling", - "__typename": "Person" - } - ], - "series": [ - { - "title": "Harry Potter (film)", - "isPopular": true, - "readThisFirst": null, - "readThisWhenever": null, - "members": [ - { - "numberInSeries": "4", - "work": { - "workId": "work-of:870970-basis:22629344", - "titles": { - "main": ["Harry Potter og de vises sten"], - "full": ["Harry Potter og de vises sten"], - "original": ["Harry Potter and the philosopher's stone"] - } + ], + "publisher": ["Bloomsbury"], + "identifiers": [ + { + "value": "0-7475-5100-6" + } + ], + "contributors": [], + "edition": { + "summary": "2003", + "publicationYear": { + "display": "2003" } }, - { - "numberInSeries": "4", - "work": { - "workId": "work-of:870970-basis:22677780", - "titles": { - "main": ["Harry Potter og Hemmelighedernes Kammer"], - "full": ["Harry Potter og Hemmelighedernes Kammer"], - "original": ["Harry Potter and the Chamber of Secrets"] + "dateFirstEdition": { + "display": "2003", + "year": 2003 + }, + "audience": { + "generalAudience": [] + }, + "physicalDescriptions": [ + { + "numberOfPages": 766, + "playingTime": { + "materialUnits": [ + { + "extent": null + } + ] } } + ], + "accessTypes": [ + { + "code": "PHYSICAL" + } + ], + "access": [ + { + "__typename": "InterLibraryLoan", + "loanIsPossible": true + } + ], + "shelfmark": { + "postfix": "Rowling", + "shelfmark": "83" }, - { - "numberInSeries": "4", - "work": { - "workId": "work-of:870970-basis:22995154", - "titles": { - "main": ["Harry Potter og fangen fra Azkaban"], - "full": ["Harry Potter og fangen fra Azkaban"], - "original": ["Harry Potter and the prisoner of Azkaban"] + "workYear": { + "year": 2003 + } + }, + { + "pid": "870970-basis:43236423", + "genreAndForm": ["roman"], + "source": ["Bibliotekskatalog"], + "languages": { + "main": [ + { + "display": "engelsk", + "isoCode": "eng" } - } + ] }, - { - "numberInSeries": "4", - "work": { - "workId": "work-of:870970-basis:23540703", - "titles": { - "main": ["Harry Potter og Flammernes Pokal"], - "full": ["Harry Potter og Flammernes Pokal"], - "original": ["Harry Potter and the goblet of fire"] + "titles": { + "main": ["Harry Potter and the Order of the Phoenix"], + "original": [] + }, + "fictionNonfiction": { + "display": "skønlitteratur", + "code": "FICTION" + }, + "materialTypes": [ + { + "materialTypeSpecific": { + "display": "lydbog (bånd)" } } + ], + "creators": [ + { + "display": "Joanne K. Rowling", + "__typename": "Person" + }, + { + "display": "Stephen Fry", + "__typename": "Person" + } + ], + "publisher": ["Cover to Cover"], + "identifiers": [ + { + "value": "1-85549-648-8" + } + ], + "contributors": [], + "edition": { + "summary": "Cover to Cover, 1. adult edition 2003, 2003", + "publicationYear": { + "display": "2003" + } }, - { - "numberInSeries": "4", - "work": { - "workId": "work-of:870970-basis:25245784", - "titles": { - "main": ["Harry Potter og Fønixordenen"], - "full": ["Harry Potter og Fønixordenen"], - "original": ["Harry Potter and the Order of the Phoenix"] + "dateFirstEdition": { + "display": "2003", + "year": 2003 + }, + "audience": { + "generalAudience": [] + }, + "physicalDescriptions": [ + { + "numberOfPages": null, + "playingTime": { + "materialUnits": [ + { + "extent": null + } + ] } } + ], + "accessTypes": [ + { + "code": "PHYSICAL" + } + ], + "access": [ + { + "__typename": "InterLibraryLoan", + "loanIsPossible": true + } + ], + "shelfmark": { + "postfix": "Rowling", + "shelfmark": "83" }, - { - "numberInSeries": "4", - "work": { - "workId": "work-of:870970-basis:25807995", - "titles": { - "main": ["Harry Potter og halvblodsprinsen"], - "full": ["Harry Potter og halvblodsprinsen"], - "original": ["Harry Potter and the half-blood prince"] + "workYear": { + "year": 2003 + } + }, + { + "pid": "870970-basis:43236431", + "genreAndForm": ["roman"], + "source": ["Bibliotekskatalog"], + "languages": { + "main": [ + { + "display": "engelsk", + "isoCode": "eng" } - } + ] }, - { - "numberInSeries": "4", - "work": { - "workId": "work-of:870970-basis:27267912", - "titles": { - "main": ["Harry Potter og dødsregalierne"], - "full": ["Harry Potter og dødsregalierne"], - "original": ["Harry Potter and the deathly hallows"] + "titles": { + "main": [ + "Harry Potter and the Order of the Phoenix (Ved Stephen Fry)" + ], + "original": [] + }, + "fictionNonfiction": { + "display": "skønlitteratur", + "code": "FICTION" + }, + "materialTypes": [ + { + "materialTypeSpecific": { + "display": "lydbog (cd)" } } + ], + "creators": [ + { + "display": "Joanne K. Rowling", + "__typename": "Person" + }, + { + "display": "Stephen Fry", + "__typename": "Person" + } + ], + "publisher": ["Cover to Cover"], + "identifiers": [ + { + "value": "9781408882238" + }, + { + "value": "1-85549-687-9" + } + ], + "contributors": [], + "edition": { + "summary": "Cover to Cover, 1. adult edition 2003, 2003", + "publicationYear": { + "display": "2003" + } }, - { - "numberInSeries": "4", - "work": { - "workId": "work-of:870970-basis:52646251", - "titles": { - "main": ["Harry Potter og det forbandede barn"], - "full": [ - "Harry Potter og det forbandede barn : del et & to" - ], - "original": ["Harry Potter and the cursed child"] + "dateFirstEdition": { + "display": "2003", + "year": 2003 + }, + "audience": { + "generalAudience": [] + }, + "physicalDescriptions": [ + { + "numberOfPages": null, + "playingTime": { + "materialUnits": [ + { + "extent": null + } + ] } } + ], + "accessTypes": [ + { + "code": "PHYSICAL" + } + ], + "access": [ + { + "__typename": "InterLibraryLoan", + "loanIsPossible": true + } + ], + "shelfmark": { + "postfix": "Rowling", + "shelfmark": "83" + }, + "workYear": { + "year": 2003 } - ] - } - ], - "workYear": null, - "genreAndForm": ["børnefilm"], - "manifestations": { - "all": [ + }, { - "pid": "870970-basis:26205530", - "genreAndForm": [], + "pid": "870970-basis:44507870", + "genreAndForm": ["eventyrlige fortællinger"], "source": ["Bibliotekskatalog"], "languages": { "main": [ @@ -23438,86 +21776,133 @@ ] }, "titles": { - "main": ["Harry Potter og Flammernes Pokal"], + "main": ["Harry Potter and the order of the phoenix"], "original": [] }, "fictionNonfiction": { - "display": "fiktion", + "display": "skønlitteratur", "code": "FICTION" }, "materialTypes": [ { "materialTypeSpecific": { - "display": "film (dvd)" + "display": "bog" } } ], "creators": [ - { - "display": "Mike Newell", - "__typename": "Person" - }, - { - "display": "Steve Kloves", - "__typename": "Person" - }, - { - "display": "Roger Pratt", - "__typename": "Person" - }, { "display": "Joanne K. Rowling", "__typename": "Person" } ], - "publisher": ["Warner Bros. Entertainment Danmark"], + "publisher": ["Bloomsbury Children's Books"], "identifiers": [ { - "value": "Z13 59388" + "value": "0-7475-6961-4" } ], - "contributors": [ - { - "display": "Daniel Radcliffe" - }, - { - "display": "Rupert Grint" - }, - { - "display": "Emma Watson" - }, + "contributors": [], + "edition": { + "summary": "2003", + "publicationYear": { + "display": "2003" + } + }, + "dateFirstEdition": { + "display": "2003", + "year": 2003 + }, + "audience": { + "generalAudience": [] + }, + "physicalDescriptions": [ { - "display": "Robbie Coltrane" - }, + "numberOfPages": 766, + "playingTime": { + "materialUnits": [ + { + "extent": null + } + ] + } + } + ], + "accessTypes": [ { - "display": "Ralph Fiennes" - }, + "code": "PHYSICAL" + } + ], + "access": [ { - "display": "Michael Gambon" - }, + "__typename": "InterLibraryLoan", + "loanIsPossible": true + } + ], + "shelfmark": { + "postfix": "Rowling", + "shelfmark": "83" + }, + "workYear": { + "year": 2003 + } + }, + { + "pid": "870970-basis:44761424", + "genreAndForm": ["roman", "fantasy"], + "source": ["Bibliotekskatalog"], + "languages": { + "main": [ + { + "display": "engelsk", + "isoCode": "eng" + } + ] + }, + "titles": { + "main": ["Harry Potter and the order of the Phoenix"], + "original": [] + }, + "fictionNonfiction": { + "display": "skønlitteratur", + "code": "FICTION" + }, + "materialTypes": [ { - "display": "Brendan Gleeson" - }, + "materialTypeSpecific": { + "display": "bog" + } + } + ], + "creators": [ { - "display": "Jason Isaacs" - }, + "display": "Joanne K. Rowling", + "__typename": "Person" + } + ], + "publisher": ["Bloomsbury"], + "identifiers": [ { - "display": "Gary Oldman" + "value": "9780747591269" } ], + "contributors": [], "edition": { - "summary": "1-disc edition, 2005", + "summary": "Bloomsbury, new pbk. edition 2007, 2007", "publicationYear": { - "display": "2005" + "display": "2007" } }, - "dateFirstEdition": null, + "dateFirstEdition": { + "display": "2003", + "year": 2003 + }, "audience": { - "generalAudience": ["Mærkning: Tilladt for børn over 11 år"] + "generalAudience": [] }, "physicalDescriptions": [ { - "numberOfPages": null, + "numberOfPages": 766, "playingTime": { "materialUnits": [ { @@ -23539,14 +21924,16 @@ } ], "shelfmark": { - "postfix": "Harry", - "shelfmark": "77.7" + "postfix": "Rowling", + "shelfmark": "83" }, - "workYear": null + "workYear": { + "year": 2003 + } }, { - "pid": "870970-basis:26205662", - "genreAndForm": [], + "pid": "870970-basis:44931893", + "genreAndForm": ["roman", "eventyrlige fortællinger"], "source": ["Bibliotekskatalog"], "languages": { "main": [ @@ -23557,82 +21944,133 @@ ] }, "titles": { - "main": ["Harry Potter og Flammernes Pokal"], + "main": ["Harry Potter and the order of the Phoenix"], "original": [] }, "fictionNonfiction": { - "display": "fiktion", + "display": "skønlitteratur", "code": "FICTION" }, "materialTypes": [ { "materialTypeSpecific": { - "display": "film (dvd)" + "display": "bog" } } ], "creators": [ { - "display": "Mike Newell", + "display": "Joanne K. Rowling", "__typename": "Person" - }, + } + ], + "publisher": ["Bloomsbury"], + "identifiers": [ { - "display": "Steve Kloves", - "__typename": "Person" - }, + "value": "9781408810590" + } + ], + "contributors": [], + "edition": { + "summary": "Signature edition, 2010", + "publicationYear": { + "display": "2010" + } + }, + "dateFirstEdition": { + "display": "2003", + "year": 2003 + }, + "audience": { + "generalAudience": [] + }, + "physicalDescriptions": [ { - "display": "Roger Pratt", - "__typename": "Person" - }, + "numberOfPages": 766, + "playingTime": { + "materialUnits": [ + { + "extent": null + } + ] + } + } + ], + "accessTypes": [ + { + "code": "PHYSICAL" + } + ], + "access": [ + { + "__typename": "InterLibraryLoan", + "loanIsPossible": true + } + ], + "shelfmark": { + "postfix": "Rowling", + "shelfmark": "83" + }, + "workYear": { + "year": 2003 + } + }, + { + "pid": "870970-basis:45671038", + "genreAndForm": ["roman"], + "source": ["Bibliotekskatalog"], + "languages": { + "main": [ + { + "display": "engelsk", + "isoCode": "eng" + } + ] + }, + "titles": { + "main": ["Harry Potter and the order of the phoenix"], + "original": [] + }, + "fictionNonfiction": { + "display": "skønlitteratur", + "code": "FICTION" + }, + "materialTypes": [ + { + "materialTypeSpecific": { + "display": "lydbog (cd)" + } + } + ], + "creators": [ { "display": "Joanne K. Rowling", "__typename": "Person" } ], - "publisher": ["Warner Bros. Entertainment Danmark"], + "publisher": ["HNP"], "identifiers": [ { - "value": "Z13 58609" + "value": "9781907545122" } ], "contributors": [ { - "display": "Daniel Radcliffe" - }, - { - "display": "Rupert Grint" - }, - { - "display": "Emma Watson" - }, - { - "display": "Robbie Coltrane" - }, - { - "display": "Ralph Fiennes" - }, - { - "display": "Michael Gambon" - }, - { - "display": "Brendan Gleeson" - }, - { - "display": "Jason Isaacs" - }, - { - "display": "Gary Oldman" + "display": "Stephen Fry" } ], "edition": { - "summary": "2-disc special edition, 2005", + "summary": "2010", "publicationYear": { - "display": "2005" + "display": "2010" } }, - "dateFirstEdition": null, + "dateFirstEdition": { + "display": "2003", + "year": 2003 + }, "audience": { - "generalAudience": ["Mærkning: Tilladt for børn over 11 år"] + "generalAudience": [] }, "physicalDescriptions": [ { @@ -23658,14 +22096,16 @@ } ], "shelfmark": { - "postfix": "Harry", - "shelfmark": "77.7" + "postfix": "Rowling", + "shelfmark": "Uden klassemærke" }, - "workYear": null + "workYear": { + "year": 2003 + } }, { - "pid": "870970-basis:27117112", - "genreAndForm": [], + "pid": "870970-basis:45696200", + "genreAndForm": ["roman", "fantasy"], "source": ["Bibliotekskatalog"], "languages": { "main": [ @@ -23676,86 +22116,52 @@ ] }, "titles": { - "main": ["Harry Potter og Flammernes Pokal"], + "main": ["Harry Potter and the order of the Phoenix"], "original": [] }, "fictionNonfiction": { - "display": "fiktion", + "display": "skønlitteratur", "code": "FICTION" }, "materialTypes": [ { "materialTypeSpecific": { - "display": "film (dvd)" + "display": "bog" } } ], "creators": [ - { - "display": "Mike Newell", - "__typename": "Person" - }, - { - "display": "Steve Kloves", - "__typename": "Person" - }, - { - "display": "Roger Pratt", - "__typename": "Person" - }, { "display": "Joanne K. Rowling", "__typename": "Person" } ], - "publisher": ["Warner Bros. Entertainment Danmark"], + "publisher": ["Bloomsbury"], "identifiers": [ { - "value": "76454" - } - ], - "contributors": [ - { - "display": "Daniel Radcliffe" - }, - { - "display": "Rupert Grint" - }, - { - "display": "Emma Watson" - }, - { - "display": "Robbie Coltrane" - }, - { - "display": "Ralph Fiennes" - }, - { - "display": "Michael Gambon" - }, - { - "display": "Brendan Gleeson" - }, - { - "display": "Jason Isaacs" + "value": "9781408855935" }, { - "display": "Gary Oldman" + "value": "9781408855690" } ], + "contributors": [], "edition": { - "summary": "2007", + "summary": "Bloomsbury, new edition 2014, 2014", "publicationYear": { - "display": "2007" + "display": "2014" } }, - "dateFirstEdition": null, + "dateFirstEdition": { + "display": "2003", + "year": 2003 + }, "audience": { - "generalAudience": ["Mærkning: Tilladt for børn over 11 år"] + "generalAudience": [] }, "physicalDescriptions": [ { - "numberOfPages": null, + "numberOfPages": 799, "playingTime": { "materialUnits": [ { @@ -23777,14 +22183,20 @@ } ], "shelfmark": { - "postfix": "Harry", - "shelfmark": "77.7" + "postfix": "Rowling", + "shelfmark": "83" }, - "workYear": null + "workYear": { + "year": 2003 + } }, { - "pid": "870970-basis:27122272", - "genreAndForm": [], + "pid": "870970-basis:53235212", + "genreAndForm": [ + "roman", + "eventyrlige fortællinger", + "fantasy" + ], "source": ["Bibliotekskatalog"], "languages": { "main": [ @@ -23795,86 +22207,50 @@ ] }, "titles": { - "main": ["Harry Potter og Flammernes Pokal"], + "main": ["Harry Potter and the Order of the Phoenix"], "original": [] }, "fictionNonfiction": { - "display": "fiktion", + "display": "skønlitteratur", "code": "FICTION" }, "materialTypes": [ { "materialTypeSpecific": { - "display": "film (blu-ray)" + "display": "bog" } } ], "creators": [ - { - "display": "Mike Newell", - "__typename": "Person" - }, - { - "display": "Steve Kloves", - "__typename": "Person" - }, - { - "display": "Roger Pratt", - "__typename": "Person" - }, { "display": "Joanne K. Rowling", "__typename": "Person" } ], - "publisher": ["Warner Bros. Entertainment Danmark"], + "publisher": ["Levine"], "identifiers": [ { - "value": "Y 15692" + "value": "9780439358064" } ], "contributors": [ { - "display": "Daniel Radcliffe" - }, - { - "display": "Rupert Grint" - }, - { - "display": "Emma Watson" - }, - { - "display": "Robbie Coltrane" - }, - { - "display": "Ralph Fiennes" - }, - { - "display": "Michael Gambon" - }, - { - "display": "Brendan Gleeson" - }, - { - "display": "Jason Isaacs" - }, - { - "display": "Gary Oldman" + "display": "Mary Grandpré" } ], "edition": { - "summary": "2007", + "summary": "Levine, 2003", "publicationYear": { - "display": "2007" + "display": "2003" } }, "dateFirstEdition": null, "audience": { - "generalAudience": ["Mærkning: Tilladt for børn over 11 år"] + "generalAudience": [] }, "physicalDescriptions": [ { - "numberOfPages": null, + "numberOfPages": 870, "playingTime": { "materialUnits": [ { @@ -23896,15 +22272,15 @@ } ], "shelfmark": { - "postfix": "Harry", - "shelfmark": "77.7" + "postfix": "Rowling", + "shelfmark": "83" }, "workYear": null } ], "latest": { - "pid": "870970-basis:27122272", - "genreAndForm": [], + "pid": "870970-basis:134620226", + "genreAndForm": ["roman", "fantasy", "romaner"], "source": ["Bibliotekskatalog"], "languages": { "main": [ @@ -23915,87 +22291,57 @@ ] }, "titles": { - "main": ["Harry Potter og Flammernes Pokal"], + "main": [ + "Harry Potter and the order of the Phoenix (Ill. Jim Kay)" + ], "original": [] }, "fictionNonfiction": { - "display": "fiktion", + "display": "skønlitteratur", "code": "FICTION" }, "materialTypes": [ { "materialTypeSpecific": { - "display": "film (blu-ray)" + "display": "bog" } } ], "creators": [ { - "display": "Mike Newell", - "__typename": "Person" - }, - { - "display": "Steve Kloves", - "__typename": "Person" - }, - { - "display": "Roger Pratt", + "display": "Joanne K. Rowling", "__typename": "Person" }, { - "display": "Joanne K. Rowling", + "display": "Jim Kay", "__typename": "Person" } ], - "publisher": ["Warner Bros. Entertainment Danmark"], + "publisher": ["Bloomsbury Children's Books"], "identifiers": [ { - "value": "Y 15692" - } - ], - "contributors": [ - { - "display": "Daniel Radcliffe" - }, - { - "display": "Rupert Grint" - }, - { - "display": "Emma Watson" - }, - { - "display": "Robbie Coltrane" - }, - { - "display": "Ralph Fiennes" - }, - { - "display": "Michael Gambon" - }, - { - "display": "Brendan Gleeson" - }, - { - "display": "Jason Isaacs" - }, + "value": "9781408845684" + } + ], + "contributors": [ { - "display": "Gary Oldman" + "display": "Neil Packer" } ], "edition": { - "summary": "2007", + "summary": "2022", "publicationYear": { - "display": "2007" + "display": "2022" } }, "dateFirstEdition": null, "audience": { - "generalAudience": ["Mærkning: Tilladt for børn over 11 år"] + "generalAudience": [] }, "physicalDescriptions": [ { - "numberOfPages": null, - "playingTime": "2 t., 37 min." + "numberOfPages": 564, + "playingTime": null } ], "accessTypes": [ @@ -24010,14 +22356,14 @@ } ], "shelfmark": { - "postfix": "Harry", - "shelfmark": "77.7" + "postfix": "Rowling", + "shelfmark": "83" }, "workYear": null }, "bestRepresentation": { - "pid": "870970-basis:26205530", - "genreAndForm": [], + "pid": "870970-basis:134620226", + "genreAndForm": ["roman", "fantasy", "romaner"], "source": ["Bibliotekskatalog"], "languages": { "main": [ @@ -24028,87 +22374,57 @@ ] }, "titles": { - "main": ["Harry Potter og Flammernes Pokal"], + "main": [ + "Harry Potter and the order of the Phoenix (Ill. Jim Kay)" + ], "original": [] }, "fictionNonfiction": { - "display": "fiktion", + "display": "skønlitteratur", "code": "FICTION" }, "materialTypes": [ { "materialTypeSpecific": { - "display": "film (dvd)" + "display": "bog" } } ], "creators": [ { - "display": "Mike Newell", - "__typename": "Person" - }, - { - "display": "Steve Kloves", - "__typename": "Person" - }, - { - "display": "Roger Pratt", + "display": "Joanne K. Rowling", "__typename": "Person" }, { - "display": "Joanne K. Rowling", + "display": "Jim Kay", "__typename": "Person" } ], - "publisher": ["Warner Bros. Entertainment Danmark"], + "publisher": ["Bloomsbury Children's Books"], "identifiers": [ { - "value": "Z13 59388" + "value": "9781408845684" } ], "contributors": [ { - "display": "Daniel Radcliffe" - }, - { - "display": "Rupert Grint" - }, - { - "display": "Emma Watson" - }, - { - "display": "Robbie Coltrane" - }, - { - "display": "Ralph Fiennes" - }, - { - "display": "Michael Gambon" - }, - { - "display": "Brendan Gleeson" - }, - { - "display": "Jason Isaacs" - }, - { - "display": "Gary Oldman" + "display": "Neil Packer" } ], "edition": { - "summary": "1-disc edition, 2005", + "summary": "2022", "publicationYear": { - "display": "2005" + "display": "2022" } }, "dateFirstEdition": null, "audience": { - "generalAudience": ["Mærkning: Tilladt for børn over 11 år"] + "generalAudience": [] }, "physicalDescriptions": [ { - "numberOfPages": null, - "playingTime": "ca. 2 t., 30 min." + "numberOfPages": 564, + "playingTime": null } ], "accessTypes": [ @@ -24123,25 +22439,25 @@ } ], "shelfmark": { - "postfix": "Harry", - "shelfmark": "77.7" + "postfix": "Rowling", + "shelfmark": "83" }, "workYear": null } } }, { - "workId": "work-of:870970-basis:24900770", + "workId": "work-of:870970-basis:26205530", "titles": { - "full": ["Harry Potter og hemmelighedernes kammer"], + "full": ["Harry Potter og Flammernes Pokal"], "original": [] }, "abstract": [ - "Harry Potter bringes i en flyvende bil tilbage til troldmandsskolen Hogwarts, hvor hemmelighedernes kammer er blevet åbnet, så onde kræfter kan tilintetgøre Hogwarts. Men Harry Potter er ikke kun troldmand. Han er også en sand helt" + "Troldmandsskolen Hogwarts skal dyste i magisk trekamp mod kollegaerne fra Durmstrang og Beauxbaton, og selv om Harry Potter ikke er fyldt de 17 år, som regler kræver, må han alligevel stille op i et grumt spil, som styres af selve mørkets herre" ], "creators": [ { - "display": "Chris Columbus (f. 1958)", + "display": "Mike Newell", "__typename": "Person" }, { @@ -24165,7 +22481,7 @@ "readThisWhenever": null, "members": [ { - "numberInSeries": "2", + "numberInSeries": "4", "work": { "workId": "work-of:870970-basis:22629344", "titles": { @@ -24176,205 +22492,93 @@ } }, { - "numberInSeries": "2", + "numberInSeries": "4", "work": { "workId": "work-of:870970-basis:22677780", "titles": { "main": ["Harry Potter og Hemmelighedernes Kammer"], - "full": ["Harry Potter og Hemmelighedernes Kammer"], - "original": ["Harry Potter and the Chamber of Secrets"] - } - } - }, - { - "numberInSeries": "2", - "work": { - "workId": "work-of:870970-basis:22995154", - "titles": { - "main": ["Harry Potter og fangen fra Azkaban"], - "full": ["Harry Potter og fangen fra Azkaban"], - "original": ["Harry Potter and the prisoner of Azkaban"] - } - } - }, - { - "numberInSeries": "2", - "work": { - "workId": "work-of:870970-basis:23540703", - "titles": { - "main": ["Harry Potter og Flammernes Pokal"], - "full": ["Harry Potter og Flammernes Pokal"], - "original": ["Harry Potter and the goblet of fire"] - } - } - }, - { - "numberInSeries": "2", - "work": { - "workId": "work-of:870970-basis:25245784", - "titles": { - "main": ["Harry Potter og Fønixordenen"], - "full": ["Harry Potter og Fønixordenen"], - "original": ["Harry Potter and the Order of the Phoenix"] - } - } - }, - { - "numberInSeries": "2", - "work": { - "workId": "work-of:870970-basis:25807995", - "titles": { - "main": ["Harry Potter og halvblodsprinsen"], - "full": ["Harry Potter og halvblodsprinsen"], - "original": ["Harry Potter and the half-blood prince"] - } - } - }, - { - "numberInSeries": "2", - "work": { - "workId": "work-of:870970-basis:27267912", - "titles": { - "main": ["Harry Potter og dødsregalierne"], - "full": ["Harry Potter og dødsregalierne"], - "original": ["Harry Potter and the deathly hallows"] - } - } - }, - { - "numberInSeries": "2", - "work": { - "workId": "work-of:870970-basis:52646251", - "titles": { - "main": ["Harry Potter og det forbandede barn"], - "full": [ - "Harry Potter og det forbandede barn : del et & to" - ], - "original": ["Harry Potter and the cursed child"] - } - } - } - ] - } - ], - "workYear": null, - "genreAndForm": ["børnefilm"], - "manifestations": { - "all": [ - { - "pid": "870970-basis:24817113", - "genreAndForm": [], - "source": ["Bibliotekskatalog"], - "languages": { - "main": [ - { - "display": "engelsk", - "isoCode": "eng" - } - ] - }, - "titles": { - "main": ["Harry Potter og hemmelighedernes kammer"], - "original": [] - }, - "fictionNonfiction": { - "display": "fiktion", - "code": "FICTION" - }, - "materialTypes": [ - { - "materialTypeSpecific": { - "display": "film (videobånd)" - } - } - ], - "creators": [ - { - "display": "Chris Columbus (f. 1958)", - "__typename": "Person" - }, - { - "display": "Steve Kloves", - "__typename": "Person" - }, - { - "display": "Roger Pratt", - "__typename": "Person" - }, - { - "display": "Joanne K. Rowling", - "__typename": "Person" - } - ], - "publisher": ["Sandrew Metronome"], - "identifiers": [], - "contributors": [ - { - "display": "Daniel Radcliffe" - }, - { - "display": "Rupert Grint" - }, - { - "display": "Emma Watson" - }, - { - "display": "Kenneth Branagh" - }, - { - "display": "John Cleese" - }, - { - "display": "Robbie Coltrane" - }, - { - "display": "Warwick Davis" - }, - { - "display": "Richard Griffiths" - } - ], - "edition": { - "summary": "2003", - "publicationYear": { - "display": "2003" + "full": ["Harry Potter og Hemmelighedernes Kammer"], + "original": ["Harry Potter and the Chamber of Secrets"] + } } }, - "dateFirstEdition": null, - "audience": { - "generalAudience": ["Mærkning: Tilladt for børn over 11 år"] + { + "numberInSeries": "4", + "work": { + "workId": "work-of:870970-basis:22995154", + "titles": { + "main": ["Harry Potter og fangen fra Azkaban"], + "full": ["Harry Potter og fangen fra Azkaban"], + "original": ["Harry Potter and the prisoner of Azkaban"] + } + } }, - "physicalDescriptions": [ - { - "numberOfPages": null, - "playingTime": { - "materialUnits": [ - { - "extent": null - } - ] + { + "numberInSeries": "4", + "work": { + "workId": "work-of:870970-basis:23540703", + "titles": { + "main": ["Harry Potter og Flammernes Pokal"], + "full": ["Harry Potter og Flammernes Pokal"], + "original": ["Harry Potter and the goblet of fire"] } } - ], - "accessTypes": [ - { - "code": "PHYSICAL" + }, + { + "numberInSeries": "4", + "work": { + "workId": "work-of:870970-basis:25245784", + "titles": { + "main": ["Harry Potter og Fønixordenen"], + "full": ["Harry Potter og Fønixordenen"], + "original": ["Harry Potter and the Order of the Phoenix"] + } } - ], - "access": [ - { - "__typename": "InterLibraryLoan", - "loanIsPossible": true + }, + { + "numberInSeries": "4", + "work": { + "workId": "work-of:870970-basis:25807995", + "titles": { + "main": ["Harry Potter og halvblodsprinsen"], + "full": ["Harry Potter og halvblodsprinsen"], + "original": ["Harry Potter and the half-blood prince"] + } } - ], - "shelfmark": { - "postfix": "Harry", - "shelfmark": "77.7" }, - "workYear": null - }, + { + "numberInSeries": "4", + "work": { + "workId": "work-of:870970-basis:27267912", + "titles": { + "main": ["Harry Potter og dødsregalierne"], + "full": ["Harry Potter og dødsregalierne"], + "original": ["Harry Potter and the deathly hallows"] + } + } + }, + { + "numberInSeries": "4", + "work": { + "workId": "work-of:870970-basis:52646251", + "titles": { + "main": ["Harry Potter og det forbandede barn"], + "full": [ + "Harry Potter og det forbandede barn : del et & to" + ], + "original": ["Harry Potter and the cursed child"] + } + } + } + ] + } + ], + "workYear": null, + "genreAndForm": ["børnefilm"], + "manifestations": { + "all": [ { - "pid": "870970-basis:24900770", + "pid": "870970-basis:26205530", "genreAndForm": [], "source": ["Bibliotekskatalog"], "languages": { @@ -24386,7 +22590,7 @@ ] }, "titles": { - "main": ["Harry Potter og hemmelighedernes kammer"], + "main": ["Harry Potter og Flammernes Pokal"], "original": [] }, "fictionNonfiction": { @@ -24402,7 +22606,7 @@ ], "creators": [ { - "display": "Chris Columbus (f. 1958)", + "display": "Mike Newell", "__typename": "Person" }, { @@ -24418,8 +22622,12 @@ "__typename": "Person" } ], - "publisher": ["Sandrew Metronome"], - "identifiers": [], + "publisher": ["Warner Bros. Entertainment Danmark"], + "identifiers": [ + { + "value": "Z13 59388" + } + ], "contributors": [ { "display": "Daniel Radcliffe" @@ -24431,25 +22639,28 @@ "display": "Emma Watson" }, { - "display": "Kenneth Branagh" + "display": "Robbie Coltrane" }, { - "display": "John Cleese" + "display": "Ralph Fiennes" }, { - "display": "Robbie Coltrane" + "display": "Michael Gambon" }, { - "display": "Warwick Davis" + "display": "Brendan Gleeson" }, { - "display": "Richard Griffiths" + "display": "Jason Isaacs" + }, + { + "display": "Gary Oldman" } ], "edition": { - "summary": "2003", + "summary": "1-disc edition, 2005", "publicationYear": { - "display": "2003" + "display": "2005" } }, "dateFirstEdition": null, @@ -24486,7 +22697,7 @@ "workYear": null }, { - "pid": "870970-basis:27129234", + "pid": "870970-basis:26205662", "genreAndForm": [], "source": ["Bibliotekskatalog"], "languages": { @@ -24498,7 +22709,7 @@ ] }, "titles": { - "main": ["Harry Potter og hemmelighedernes kammer"], + "main": ["Harry Potter og Flammernes Pokal"], "original": [] }, "fictionNonfiction": { @@ -24508,13 +22719,13 @@ "materialTypes": [ { "materialTypeSpecific": { - "display": "film (blu-ray)" + "display": "film (dvd)" } } ], "creators": [ { - "display": "Chris Columbus (f. 1958)", + "display": "Mike Newell", "__typename": "Person" }, { @@ -24533,7 +22744,7 @@ "publisher": ["Warner Bros. Entertainment Danmark"], "identifiers": [ { - "value": "Y 18472" + "value": "Z13 58609" } ], "contributors": [ @@ -24547,25 +22758,28 @@ "display": "Emma Watson" }, { - "display": "Kenneth Branagh" + "display": "Robbie Coltrane" }, { - "display": "John Cleese" + "display": "Ralph Fiennes" }, { - "display": "Robbie Coltrane" + "display": "Michael Gambon" }, { - "display": "Warwick Davis" + "display": "Brendan Gleeson" }, { - "display": "Richard Griffiths" + "display": "Jason Isaacs" + }, + { + "display": "Gary Oldman" } ], "edition": { - "summary": "2007", + "summary": "2-disc special edition, 2005", "publicationYear": { - "display": "2007" + "display": "2005" } }, "dateFirstEdition": null, @@ -24602,7 +22816,7 @@ "workYear": null }, { - "pid": "870970-basis:27129633", + "pid": "870970-basis:27117112", "genreAndForm": [], "source": ["Bibliotekskatalog"], "languages": { @@ -24614,7 +22828,7 @@ ] }, "titles": { - "main": ["Harry Potter og hemmelighedernes kammer"], + "main": ["Harry Potter og Flammernes Pokal"], "original": [] }, "fictionNonfiction": { @@ -24630,7 +22844,7 @@ ], "creators": [ { - "display": "Chris Columbus (f. 1958)", + "display": "Mike Newell", "__typename": "Person" }, { @@ -24649,7 +22863,7 @@ "publisher": ["Warner Bros. Entertainment Danmark"], "identifiers": [ { - "value": "Y 18471" + "value": "76454" } ], "contributors": [ @@ -24663,19 +22877,22 @@ "display": "Emma Watson" }, { - "display": "Kenneth Branagh" + "display": "Robbie Coltrane" }, { - "display": "John Cleese" + "display": "Ralph Fiennes" }, { - "display": "Robbie Coltrane" + "display": "Michael Gambon" }, { - "display": "Warwick Davis" + "display": "Brendan Gleeson" }, { - "display": "Richard Griffiths" + "display": "Jason Isaacs" + }, + { + "display": "Gary Oldman" } ], "edition": { @@ -24718,7 +22935,7 @@ "workYear": null }, { - "pid": "870970-basis:27963404", + "pid": "870970-basis:27122272", "genreAndForm": [], "source": ["Bibliotekskatalog"], "languages": { @@ -24730,7 +22947,7 @@ ] }, "titles": { - "main": ["Harry Potter og hemmelighedernes kammer"], + "main": ["Harry Potter og Flammernes Pokal"], "original": [] }, "fictionNonfiction": { @@ -24740,13 +22957,13 @@ "materialTypes": [ { "materialTypeSpecific": { - "display": "film (dvd)" + "display": "film (blu-ray)" } } ], "creators": [ { - "display": "Chris Columbus (f. 1958)", + "display": "Mike Newell", "__typename": "Person" }, { @@ -24765,7 +22982,7 @@ "publisher": ["Warner Bros. Entertainment Danmark"], "identifiers": [ { - "value": "58816" + "value": "Y 15692" } ], "contributors": [ @@ -24779,25 +22996,28 @@ "display": "Emma Watson" }, { - "display": "Kenneth Branagh" + "display": "Robbie Coltrane" }, { - "display": "John Cleese" + "display": "Ralph Fiennes" }, { - "display": "Robbie Coltrane" + "display": "Michael Gambon" }, { - "display": "Warwick Davis" + "display": "Brendan Gleeson" }, { - "display": "Richard Griffiths" + "display": "Jason Isaacs" + }, + { + "display": "Gary Oldman" } ], "edition": { - "summary": "1-disc edition, 2009", + "summary": "2007", "publicationYear": { - "display": "2009" + "display": "2007" } }, "dateFirstEdition": null, @@ -24835,7 +23055,7 @@ } ], "latest": { - "pid": "870970-basis:27963404", + "pid": "870970-basis:27122272", "genreAndForm": [], "source": ["Bibliotekskatalog"], "languages": { @@ -24847,7 +23067,7 @@ ] }, "titles": { - "main": ["Harry Potter og hemmelighedernes kammer"], + "main": ["Harry Potter og Flammernes Pokal"], "original": [] }, "fictionNonfiction": { @@ -24857,13 +23077,13 @@ "materialTypes": [ { "materialTypeSpecific": { - "display": "film (dvd)" + "display": "film (blu-ray)" } } ], "creators": [ { - "display": "Chris Columbus (f. 1958)", + "display": "Mike Newell", "__typename": "Person" }, { @@ -24882,7 +23102,7 @@ "publisher": ["Warner Bros. Entertainment Danmark"], "identifiers": [ { - "value": "58816" + "value": "Y 15692" } ], "contributors": [ @@ -24896,25 +23116,28 @@ "display": "Emma Watson" }, { - "display": "Kenneth Branagh" + "display": "Robbie Coltrane" }, { - "display": "John Cleese" + "display": "Ralph Fiennes" }, { - "display": "Robbie Coltrane" + "display": "Michael Gambon" }, { - "display": "Warwick Davis" + "display": "Brendan Gleeson" }, { - "display": "Richard Griffiths" + "display": "Jason Isaacs" + }, + { + "display": "Gary Oldman" } ], "edition": { - "summary": "1-disc edition, 2009", + "summary": "2007", "publicationYear": { - "display": "2009" + "display": "2007" } }, "dateFirstEdition": null, @@ -24924,7 +23147,7 @@ "physicalDescriptions": [ { "numberOfPages": null, - "playingTime": "ca. 2 t., 35 min." + "playingTime": "2 t., 37 min." } ], "accessTypes": [ @@ -24945,7 +23168,7 @@ "workYear": null }, "bestRepresentation": { - "pid": "870970-basis:27963404", + "pid": "870970-basis:26205530", "genreAndForm": [], "source": ["Bibliotekskatalog"], "languages": { @@ -24957,7 +23180,7 @@ ] }, "titles": { - "main": ["Harry Potter og hemmelighedernes kammer"], + "main": ["Harry Potter og Flammernes Pokal"], "original": [] }, "fictionNonfiction": { @@ -24973,7 +23196,7 @@ ], "creators": [ { - "display": "Chris Columbus (f. 1958)", + "display": "Mike Newell", "__typename": "Person" }, { @@ -24992,7 +23215,7 @@ "publisher": ["Warner Bros. Entertainment Danmark"], "identifiers": [ { - "value": "58816" + "value": "Z13 59388" } ], "contributors": [ @@ -25006,25 +23229,28 @@ "display": "Emma Watson" }, { - "display": "Kenneth Branagh" + "display": "Robbie Coltrane" }, { - "display": "John Cleese" + "display": "Ralph Fiennes" }, { - "display": "Robbie Coltrane" + "display": "Michael Gambon" }, { - "display": "Warwick Davis" + "display": "Brendan Gleeson" }, { - "display": "Richard Griffiths" + "display": "Jason Isaacs" + }, + { + "display": "Gary Oldman" } ], "edition": { - "summary": "1-disc edition, 2009", + "summary": "1-disc edition, 2005", "publicationYear": { - "display": "2009" + "display": "2005" } }, "dateFirstEdition": null, @@ -25034,7 +23260,7 @@ "physicalDescriptions": [ { "numberOfPages": null, - "playingTime": "ca. 2 t., 35 min." + "playingTime": "ca. 2 t., 30 min." } ], "accessTypes": [ @@ -25057,25 +23283,25 @@ } }, { - "workId": "work-of:870970-basis:25713583", + "workId": "work-of:870970-basis:24900770", "titles": { - "full": ["Harry Potter og fangen fra Azkaban"], + "full": ["Harry Potter og hemmelighedernes kammer"], "original": [] }, "abstract": [ - "Harry Potter er elev på trolddomsskolen på tredje år. Han får at vide, at hans forældres morder er flygtet fra Azkabanfængslet og nu også vil dræbe ham" + "Harry Potter bringes i en flyvende bil tilbage til troldmandsskolen Hogwarts, hvor hemmelighedernes kammer er blevet åbnet, så onde kræfter kan tilintetgøre Hogwarts. Men Harry Potter er ikke kun troldmand. Han er også en sand helt" ], "creators": [ { - "display": "Steve Kloves", + "display": "Chris Columbus (f. 1958)", "__typename": "Person" }, { - "display": "Alfonso Cuarón", + "display": "Steve Kloves", "__typename": "Person" }, { - "display": "Michael Seresin", + "display": "Roger Pratt", "__typename": "Person" }, { @@ -25091,461 +23317,104 @@ "readThisWhenever": null, "members": [ { - "numberInSeries": "3", - "work": { - "workId": "work-of:870970-basis:22629344", - "titles": { - "main": ["Harry Potter og de vises sten"], - "full": ["Harry Potter og de vises sten"], - "original": ["Harry Potter and the philosopher's stone"] - } - } - }, - { - "numberInSeries": "3", - "work": { - "workId": "work-of:870970-basis:22677780", - "titles": { - "main": ["Harry Potter og Hemmelighedernes Kammer"], - "full": ["Harry Potter og Hemmelighedernes Kammer"], - "original": ["Harry Potter and the Chamber of Secrets"] - } - } - }, - { - "numberInSeries": "3", - "work": { - "workId": "work-of:870970-basis:22995154", - "titles": { - "main": ["Harry Potter og fangen fra Azkaban"], - "full": ["Harry Potter og fangen fra Azkaban"], - "original": ["Harry Potter and the prisoner of Azkaban"] - } - } - }, - { - "numberInSeries": "3", - "work": { - "workId": "work-of:870970-basis:23540703", - "titles": { - "main": ["Harry Potter og Flammernes Pokal"], - "full": ["Harry Potter og Flammernes Pokal"], - "original": ["Harry Potter and the goblet of fire"] - } - } - }, - { - "numberInSeries": "3", - "work": { - "workId": "work-of:870970-basis:25245784", - "titles": { - "main": ["Harry Potter og Fønixordenen"], - "full": ["Harry Potter og Fønixordenen"], - "original": ["Harry Potter and the Order of the Phoenix"] - } - } - }, - { - "numberInSeries": "3", - "work": { - "workId": "work-of:870970-basis:25807995", - "titles": { - "main": ["Harry Potter og halvblodsprinsen"], - "full": ["Harry Potter og halvblodsprinsen"], - "original": ["Harry Potter and the half-blood prince"] - } - } - }, - { - "numberInSeries": "3", - "work": { - "workId": "work-of:870970-basis:27267912", - "titles": { - "main": ["Harry Potter og dødsregalierne"], - "full": ["Harry Potter og dødsregalierne"], - "original": ["Harry Potter and the deathly hallows"] - } - } - }, - { - "numberInSeries": "3", - "work": { - "workId": "work-of:870970-basis:52646251", - "titles": { - "main": ["Harry Potter og det forbandede barn"], - "full": [ - "Harry Potter og det forbandede barn : del et & to" - ], - "original": ["Harry Potter and the cursed child"] - } - } - } - ] - } - ], - "workYear": null, - "genreAndForm": ["børnefilm"], - "manifestations": { - "all": [ - { - "pid": "870970-basis:25713583", - "genreAndForm": [], - "source": ["Bibliotekskatalog"], - "languages": { - "main": [ - { - "display": "engelsk", - "isoCode": "eng" - } - ] - }, - "titles": { - "main": ["Harry Potter og fangen fra Azkaban"], - "original": [] - }, - "fictionNonfiction": { - "display": "fiktion", - "code": "FICTION" - }, - "materialTypes": [ - { - "materialTypeSpecific": { - "display": "film (dvd)" - } - } - ], - "creators": [ - { - "display": "Steve Kloves", - "__typename": "Person" - }, - { - "display": "Alfonso Cuarón", - "__typename": "Person" - }, - { - "display": "Michael Seresin", - "__typename": "Person" - }, - { - "display": "Joanne K. Rowling", - "__typename": "Person" - } - ], - "publisher": ["Sandrew Metronome"], - "identifiers": [ - { - "value": "Z13 58817" - } - ], - "contributors": [ - { - "display": "Daniel Radcliffe" - }, - { - "display": "Rupert Grint" - }, - { - "display": "Emma Watson" - }, - { - "display": "Julie Christie" - }, - { - "display": "Robbie Coltrane" - }, - { - "display": "Michael Gambov" - }, - { - "display": "Richard Griffiths" - }, - { - "display": "Gary Oldman" - }, - { - "display": "Alan Rickman" - } - ], - "edition": { - "summary": "1-disc edition, 2005", - "publicationYear": { - "display": "2005" - } - }, - "dateFirstEdition": null, - "audience": { - "generalAudience": ["Mærkning: Tilladt for børn over 11 år"] - }, - "physicalDescriptions": [ - { - "numberOfPages": null, - "playingTime": { - "materialUnits": [ - { - "extent": null - } - ] - } - } - ], - "accessTypes": [ - { - "code": "PHYSICAL" - } - ], - "access": [ - { - "__typename": "InterLibraryLoan", - "loanIsPossible": true - } - ], - "shelfmark": { - "postfix": "Harry", - "shelfmark": "77.7" - }, - "workYear": null - }, - { - "pid": "870970-basis:25833708", - "genreAndForm": [], - "source": ["Bibliotekskatalog"], - "languages": { - "main": [ - { - "display": "dansk", - "isoCode": "dan" - } - ] - }, - "titles": { - "main": ["Harry Potter og fangen fra Azkaban"], - "original": ["Harry Potter and the prisoner of Azkaban"] - }, - "fictionNonfiction": { - "display": "fiktion", - "code": "FICTION" - }, - "materialTypes": [ - { - "materialTypeSpecific": { - "display": "film (videobånd)" + "numberInSeries": "2", + "work": { + "workId": "work-of:870970-basis:22629344", + "titles": { + "main": ["Harry Potter og de vises sten"], + "full": ["Harry Potter og de vises sten"], + "original": ["Harry Potter and the philosopher's stone"] } } - ], - "creators": [ - { - "display": "Steve Kloves", - "__typename": "Person" - }, - { - "display": "Alfonso Cuarón", - "__typename": "Person" - }, - { - "display": "Michael Seresin", - "__typename": "Person" - }, - { - "display": "Joanne K. Rowling", - "__typename": "Person" - } - ], - "publisher": ["Sandrew Metronome"], - "identifiers": [ - { - "value": "58817" - } - ], - "contributors": [ - { - "display": "Daniel Radcliffe" - }, - { - "display": "Rupert Grint" - }, - { - "display": "Emma Watson" - }, - { - "display": "Julie Christie" - }, - { - "display": "Robbie Coltrane" - }, - { - "display": "Michael Gambov" - }, - { - "display": "Richard Griffiths" - }, - { - "display": "Gary Oldman" - }, - { - "display": "Alan Rickman" - } - ], - "edition": { - "summary": "2005", - "publicationYear": { - "display": "2005" - } - }, - "dateFirstEdition": null, - "audience": { - "generalAudience": ["Mærkning: Tilladt for børn over 11 år"] }, - "physicalDescriptions": [ - { - "numberOfPages": null, - "playingTime": { - "materialUnits": [ - { - "extent": null - } - ] + { + "numberInSeries": "2", + "work": { + "workId": "work-of:870970-basis:22677780", + "titles": { + "main": ["Harry Potter og Hemmelighedernes Kammer"], + "full": ["Harry Potter og Hemmelighedernes Kammer"], + "original": ["Harry Potter and the Chamber of Secrets"] } } - ], - "accessTypes": [ - { - "code": "PHYSICAL" - } - ], - "access": [ - { - "__typename": "InterLibraryLoan", - "loanIsPossible": true - } - ], - "shelfmark": { - "postfix": "Harry", - "shelfmark": "77.7" }, - "workYear": null - }, - { - "pid": "870970-basis:26632684", - "genreAndForm": [], - "source": ["Bibliotekskatalog"], - "languages": { - "main": [ - { - "display": "engelsk", - "isoCode": "eng" + { + "numberInSeries": "2", + "work": { + "workId": "work-of:870970-basis:22995154", + "titles": { + "main": ["Harry Potter og fangen fra Azkaban"], + "full": ["Harry Potter og fangen fra Azkaban"], + "original": ["Harry Potter and the prisoner of Azkaban"] } - ] - }, - "titles": { - "main": ["Harry Potter og fangen fra Azkaban"], - "original": [] - }, - "fictionNonfiction": { - "display": "fiktion", - "code": "FICTION" + } }, - "materialTypes": [ - { - "materialTypeSpecific": { - "display": "film (dvd)" + { + "numberInSeries": "2", + "work": { + "workId": "work-of:870970-basis:23540703", + "titles": { + "main": ["Harry Potter og Flammernes Pokal"], + "full": ["Harry Potter og Flammernes Pokal"], + "original": ["Harry Potter and the goblet of fire"] } } - ], - "creators": [ - { - "display": "Steve Kloves", - "__typename": "Person" - }, - { - "display": "Alfonso Cuarón", - "__typename": "Person" - }, - { - "display": "Michael Seresin", - "__typename": "Person" - }, - { - "display": "Joanne K. Rowling", - "__typename": "Person" - } - ], - "publisher": ["Warner Bros. Entertainment Danmark"], - "identifiers": [ - { - "value": "28445" - } - ], - "contributors": [ - { - "display": "Daniel Radcliffe" - }, - { - "display": "Rupert Grint" - }, - { - "display": "Emma Watson" - }, - { - "display": "Julie Christie" - }, - { - "display": "Robbie Coltrane" - }, - { - "display": "Michael Gambov" - }, - { - "display": "Richard Griffiths" - }, - { - "display": "Gary Oldman" - }, - { - "display": "Alan Rickman" - } - ], - "edition": { - "summary": "2-disc special edition, 2006", - "publicationYear": { - "display": "2006" - } - }, - "dateFirstEdition": null, - "audience": { - "generalAudience": ["Mærkning: Tilladt for børn over 11 år"] }, - "physicalDescriptions": [ - { - "numberOfPages": null, - "playingTime": { - "materialUnits": [ - { - "extent": null - } - ] + { + "numberInSeries": "2", + "work": { + "workId": "work-of:870970-basis:25245784", + "titles": { + "main": ["Harry Potter og Fønixordenen"], + "full": ["Harry Potter og Fønixordenen"], + "original": ["Harry Potter and the Order of the Phoenix"] } } - ], - "accessTypes": [ - { - "code": "PHYSICAL" - } - ], - "access": [ - { - "__typename": "InterLibraryLoan", - "loanIsPossible": true + }, + { + "numberInSeries": "2", + "work": { + "workId": "work-of:870970-basis:25807995", + "titles": { + "main": ["Harry Potter og halvblodsprinsen"], + "full": ["Harry Potter og halvblodsprinsen"], + "original": ["Harry Potter and the half-blood prince"] + } + } + }, + { + "numberInSeries": "2", + "work": { + "workId": "work-of:870970-basis:27267912", + "titles": { + "main": ["Harry Potter og dødsregalierne"], + "full": ["Harry Potter og dødsregalierne"], + "original": ["Harry Potter and the deathly hallows"] + } } - ], - "shelfmark": { - "postfix": "Harry", - "shelfmark": "77.7" }, - "workYear": null - }, + { + "numberInSeries": "2", + "work": { + "workId": "work-of:870970-basis:52646251", + "titles": { + "main": ["Harry Potter og det forbandede barn"], + "full": [ + "Harry Potter og det forbandede barn : del et & to" + ], + "original": ["Harry Potter and the cursed child"] + } + } + } + ] + } + ], + "workYear": null, + "genreAndForm": ["børnefilm"], + "manifestations": { + "all": [ { - "pid": "870970-basis:27129722", + "pid": "870970-basis:24817113", "genreAndForm": [], "source": ["Bibliotekskatalog"], "languages": { @@ -25557,7 +23426,7 @@ ] }, "titles": { - "main": ["Harry Potter og fangen fra Azkaban"], + "main": ["Harry Potter og hemmelighedernes kammer"], "original": [] }, "fictionNonfiction": { @@ -25567,21 +23436,21 @@ "materialTypes": [ { "materialTypeSpecific": { - "display": "film (blu-ray)" + "display": "film (videobånd)" } } ], "creators": [ { - "display": "Steve Kloves", + "display": "Chris Columbus (f. 1958)", "__typename": "Person" }, { - "display": "Alfonso Cuarón", + "display": "Steve Kloves", "__typename": "Person" }, { - "display": "Michael Seresin", + "display": "Roger Pratt", "__typename": "Person" }, { @@ -25589,12 +23458,8 @@ "__typename": "Person" } ], - "publisher": ["Warner Bros. Entertainment Danmark"], - "identifiers": [ - { - "value": "Y 15697" - } - ], + "publisher": ["Sandrew Metronome"], + "identifiers": [], "contributors": [ { "display": "Daniel Radcliffe" @@ -25606,28 +23471,25 @@ "display": "Emma Watson" }, { - "display": "Julie Christie" - }, - { - "display": "Robbie Coltrane" + "display": "Kenneth Branagh" }, { - "display": "Michael Gambov" + "display": "John Cleese" }, { - "display": "Richard Griffiths" + "display": "Robbie Coltrane" }, { - "display": "Gary Oldman" + "display": "Warwick Davis" }, { - "display": "Alan Rickman" + "display": "Richard Griffiths" } ], "edition": { - "summary": "2007", + "summary": "2003", "publicationYear": { - "display": "2007" + "display": "2003" } }, "dateFirstEdition": null, @@ -25664,7 +23526,7 @@ "workYear": null }, { - "pid": "870970-basis:27132170", + "pid": "870970-basis:24900770", "genreAndForm": [], "source": ["Bibliotekskatalog"], "languages": { @@ -25676,7 +23538,7 @@ ] }, "titles": { - "main": ["Harry Potter og fangen fra Azkaban"], + "main": ["Harry Potter og hemmelighedernes kammer"], "original": [] }, "fictionNonfiction": { @@ -25692,15 +23554,15 @@ ], "creators": [ { - "display": "Steve Kloves", + "display": "Chris Columbus (f. 1958)", "__typename": "Person" }, { - "display": "Alfonso Cuarón", + "display": "Steve Kloves", "__typename": "Person" }, { - "display": "Michael Seresin", + "display": "Roger Pratt", "__typename": "Person" }, { @@ -25708,12 +23570,8 @@ "__typename": "Person" } ], - "publisher": ["Warner Bros. Entertainment Danmark"], - "identifiers": [ - { - "value": "80959" - } - ], + "publisher": ["Sandrew Metronome"], + "identifiers": [], "contributors": [ { "display": "Daniel Radcliffe" @@ -25725,28 +23583,25 @@ "display": "Emma Watson" }, { - "display": "Julie Christie" - }, - { - "display": "Robbie Coltrane" + "display": "Kenneth Branagh" }, { - "display": "Michael Gambov" + "display": "John Cleese" }, { - "display": "Richard Griffiths" + "display": "Robbie Coltrane" }, { - "display": "Gary Oldman" + "display": "Warwick Davis" }, { - "display": "Alan Rickman" + "display": "Richard Griffiths" } ], "edition": { - "summary": "2007", + "summary": "2003", "publicationYear": { - "display": "2007" + "display": "2003" } }, "dateFirstEdition": null, @@ -25771,370 +23626,252 @@ } ], "access": [ - { - "__typename": "InterLibraryLoan", - "loanIsPossible": true - } - ], - "shelfmark": { - "postfix": "Harry", - "shelfmark": "77.7" - }, - "workYear": null - } - ], - "latest": { - "pid": "870970-basis:27132170", - "genreAndForm": [], - "source": ["Bibliotekskatalog"], - "languages": { - "main": [ - { - "display": "engelsk", - "isoCode": "eng" - } - ] - }, - "titles": { - "main": ["Harry Potter og fangen fra Azkaban"], - "original": [] - }, - "fictionNonfiction": { - "display": "fiktion", - "code": "FICTION" - }, - "materialTypes": [ - { - "materialTypeSpecific": { - "display": "film (dvd)" - } - } - ], - "creators": [ - { - "display": "Steve Kloves", - "__typename": "Person" - }, - { - "display": "Alfonso Cuarón", - "__typename": "Person" - }, - { - "display": "Michael Seresin", - "__typename": "Person" - }, - { - "display": "Joanne K. Rowling", - "__typename": "Person" - } - ], - "publisher": ["Warner Bros. Entertainment Danmark"], - "identifiers": [ - { - "value": "80959" - } - ], - "contributors": [ - { - "display": "Daniel Radcliffe" - }, - { - "display": "Rupert Grint" - }, - { - "display": "Emma Watson" - }, - { - "display": "Julie Christie" - }, - { - "display": "Robbie Coltrane" - }, - { - "display": "Michael Gambov" - }, - { - "display": "Richard Griffiths" - }, - { - "display": "Gary Oldman" - }, - { - "display": "Alan Rickman" - } - ], - "edition": { - "summary": "2007", - "publicationYear": { - "display": "2007" - } - }, - "dateFirstEdition": null, - "audience": { - "generalAudience": ["Mærkning: Tilladt for børn over 11 år"] - }, - "physicalDescriptions": [ - { - "numberOfPages": null, - "playingTime": "2 t., 12 min." - } - ], - "accessTypes": [ - { - "code": "PHYSICAL" - } - ], - "access": [ - { - "__typename": "InterLibraryLoan", - "loanIsPossible": true - } - ], - "shelfmark": { - "postfix": "Harry", - "shelfmark": "77.7" - }, - "workYear": null - }, - "bestRepresentation": { - "pid": "870970-basis:25713583", - "genreAndForm": [], - "source": ["Bibliotekskatalog"], - "languages": { - "main": [ - { - "display": "engelsk", - "isoCode": "eng" - } - ] - }, - "titles": { - "main": ["Harry Potter og fangen fra Azkaban"], - "original": [] - }, - "fictionNonfiction": { - "display": "fiktion", - "code": "FICTION" - }, - "materialTypes": [ - { - "materialTypeSpecific": { - "display": "film (dvd)" - } - } - ], - "creators": [ - { - "display": "Steve Kloves", - "__typename": "Person" - }, - { - "display": "Alfonso Cuarón", - "__typename": "Person" + { + "__typename": "InterLibraryLoan", + "loanIsPossible": true + } + ], + "shelfmark": { + "postfix": "Harry", + "shelfmark": "77.7" }, - { - "display": "Michael Seresin", - "__typename": "Person" + "workYear": null + }, + { + "pid": "870970-basis:27129234", + "genreAndForm": [], + "source": ["Bibliotekskatalog"], + "languages": { + "main": [ + { + "display": "engelsk", + "isoCode": "eng" + } + ] }, - { - "display": "Joanne K. Rowling", - "__typename": "Person" - } - ], - "publisher": ["Sandrew Metronome"], - "identifiers": [ - { - "value": "Z13 58817" - } - ], - "contributors": [ - { - "display": "Daniel Radcliffe" + "titles": { + "main": ["Harry Potter og hemmelighedernes kammer"], + "original": [] }, - { - "display": "Rupert Grint" + "fictionNonfiction": { + "display": "fiktion", + "code": "FICTION" }, - { - "display": "Emma Watson" + "materialTypes": [ + { + "materialTypeSpecific": { + "display": "film (blu-ray)" + } + } + ], + "creators": [ + { + "display": "Chris Columbus (f. 1958)", + "__typename": "Person" + }, + { + "display": "Steve Kloves", + "__typename": "Person" + }, + { + "display": "Roger Pratt", + "__typename": "Person" + }, + { + "display": "Joanne K. Rowling", + "__typename": "Person" + } + ], + "publisher": ["Warner Bros. Entertainment Danmark"], + "identifiers": [ + { + "value": "Y 18472" + } + ], + "contributors": [ + { + "display": "Daniel Radcliffe" + }, + { + "display": "Rupert Grint" + }, + { + "display": "Emma Watson" + }, + { + "display": "Kenneth Branagh" + }, + { + "display": "John Cleese" + }, + { + "display": "Robbie Coltrane" + }, + { + "display": "Warwick Davis" + }, + { + "display": "Richard Griffiths" + } + ], + "edition": { + "summary": "2007", + "publicationYear": { + "display": "2007" + } }, - { - "display": "Julie Christie" + "dateFirstEdition": null, + "audience": { + "generalAudience": ["Mærkning: Tilladt for børn over 11 år"] }, - { - "display": "Robbie Coltrane" + "physicalDescriptions": [ + { + "numberOfPages": null, + "playingTime": { + "materialUnits": [ + { + "extent": null + } + ] + } + } + ], + "accessTypes": [ + { + "code": "PHYSICAL" + } + ], + "access": [ + { + "__typename": "InterLibraryLoan", + "loanIsPossible": true + } + ], + "shelfmark": { + "postfix": "Harry", + "shelfmark": "77.7" }, - { - "display": "Michael Gambov" + "workYear": null + }, + { + "pid": "870970-basis:27129633", + "genreAndForm": [], + "source": ["Bibliotekskatalog"], + "languages": { + "main": [ + { + "display": "engelsk", + "isoCode": "eng" + } + ] }, - { - "display": "Richard Griffiths" + "titles": { + "main": ["Harry Potter og hemmelighedernes kammer"], + "original": [] }, - { - "display": "Gary Oldman" + "fictionNonfiction": { + "display": "fiktion", + "code": "FICTION" }, - { - "display": "Alan Rickman" - } - ], - "edition": { - "summary": "1-disc edition, 2005", - "publicationYear": { - "display": "2005" - } - }, - "dateFirstEdition": null, - "audience": { - "generalAudience": ["Mærkning: Tilladt for børn over 11 år"] - }, - "physicalDescriptions": [ - { - "numberOfPages": null, - "playingTime": "2 t., 16 min." - } - ], - "accessTypes": [ - { - "code": "PHYSICAL" - } - ], - "access": [ - { - "__typename": "InterLibraryLoan", - "loanIsPossible": true - } - ], - "shelfmark": { - "postfix": "Harry", - "shelfmark": "77.7" - }, - "workYear": null - } - } - }, - { - "workId": "work-of:776000-katalog:110342519", - "titles": { - "full": ["Harry Potter and the deathly hallows"], - "original": [] - }, - "abstract": [ - "Fantasy. Harry Potter er sammen med sine gode venner Ron og Hermione taget ud på en farlig færd. De skal finde den onde troldmand Voldemorts Horcruxer og ødelægge dem. Deres søgen bringer dem mange steder hen og ofte er de i livsfare. Men Voldemort og hans kumpaner er også på jagt efter de forsvundne Horcruxer" - ], - "creators": [ - { - "display": "Joanne K. Rowling", - "__typename": "Person" - } - ], - "series": [ - { - "title": "Harry Potter and the philosopher's stone", - "isPopular": true, - "readThisFirst": null, - "readThisWhenever": null, - "members": [ - { - "numberInSeries": "7", - "work": { - "workId": "work-of:870970-basis:22629344", - "titles": { - "main": ["Harry Potter og de vises sten"], - "full": ["Harry Potter og de vises sten"], - "original": ["Harry Potter and the philosopher's stone"] + "materialTypes": [ + { + "materialTypeSpecific": { + "display": "film (dvd)" } } - }, - { - "numberInSeries": "7", - "work": { - "workId": "work-of:870970-basis:22677780", - "titles": { - "main": ["Harry Potter og Hemmelighedernes Kammer"], - "full": ["Harry Potter og Hemmelighedernes Kammer"], - "original": ["Harry Potter and the Chamber of Secrets"] - } + ], + "creators": [ + { + "display": "Chris Columbus (f. 1958)", + "__typename": "Person" + }, + { + "display": "Steve Kloves", + "__typename": "Person" + }, + { + "display": "Roger Pratt", + "__typename": "Person" + }, + { + "display": "Joanne K. Rowling", + "__typename": "Person" + } + ], + "publisher": ["Warner Bros. Entertainment Danmark"], + "identifiers": [ + { + "value": "Y 18471" + } + ], + "contributors": [ + { + "display": "Daniel Radcliffe" + }, + { + "display": "Rupert Grint" + }, + { + "display": "Emma Watson" + }, + { + "display": "Kenneth Branagh" + }, + { + "display": "John Cleese" + }, + { + "display": "Robbie Coltrane" + }, + { + "display": "Warwick Davis" + }, + { + "display": "Richard Griffiths" } - }, - { - "numberInSeries": "7", - "work": { - "workId": "work-of:870970-basis:22995154", - "titles": { - "main": ["Harry Potter og fangen fra Azkaban"], - "full": ["Harry Potter og fangen fra Azkaban"], - "original": ["Harry Potter and the prisoner of Azkaban"] - } + ], + "edition": { + "summary": "2007", + "publicationYear": { + "display": "2007" } }, - { - "numberInSeries": "7", - "work": { - "workId": "work-of:870970-basis:23540703", - "titles": { - "main": ["Harry Potter og Flammernes Pokal"], - "full": ["Harry Potter og Flammernes Pokal"], - "original": ["Harry Potter and the goblet of fire"] - } - } + "dateFirstEdition": null, + "audience": { + "generalAudience": ["Mærkning: Tilladt for børn over 11 år"] }, - { - "numberInSeries": "7", - "work": { - "workId": "work-of:870970-basis:25245784", - "titles": { - "main": ["Harry Potter og Fønixordenen"], - "full": ["Harry Potter og Fønixordenen"], - "original": ["Harry Potter and the Order of the Phoenix"] + "physicalDescriptions": [ + { + "numberOfPages": null, + "playingTime": { + "materialUnits": [ + { + "extent": null + } + ] } } - }, - { - "numberInSeries": "7", - "work": { - "workId": "work-of:870970-basis:25807995", - "titles": { - "main": ["Harry Potter og halvblodsprinsen"], - "full": ["Harry Potter og halvblodsprinsen"], - "original": ["Harry Potter and the half-blood prince"] - } + ], + "accessTypes": [ + { + "code": "PHYSICAL" } - }, - { - "numberInSeries": "7", - "work": { - "workId": "work-of:870970-basis:27267912", - "titles": { - "main": ["Harry Potter og dødsregalierne"], - "full": ["Harry Potter og dødsregalierne"], - "original": ["Harry Potter and the deathly hallows"] - } + ], + "access": [ + { + "__typename": "InterLibraryLoan", + "loanIsPossible": true } + ], + "shelfmark": { + "postfix": "Harry", + "shelfmark": "77.7" }, - { - "numberInSeries": "7", - "work": { - "workId": "work-of:870970-basis:52646251", - "titles": { - "main": ["Harry Potter og det forbandede barn"], - "full": [ - "Harry Potter og det forbandede barn : del et & to" - ], - "original": ["Harry Potter and the cursed child"] - } - } - } - ] - } - ], - "workYear": { - "year": 2003 - }, - "genreAndForm": ["roman", "eventyrlige fortællinger", "fantasy"], - "manifestations": { - "all": [ + "workYear": null + }, { - "pid": "870970-basis:26838525", - "genreAndForm": ["roman"], + "pid": "870970-basis:27963404", + "genreAndForm": [], "source": ["Bibliotekskatalog"], "languages": { "main": [ @@ -26145,46 +23882,83 @@ ] }, "titles": { - "main": ["Harry Potter and the deathly hallows"], + "main": ["Harry Potter og hemmelighedernes kammer"], "original": [] }, "fictionNonfiction": { - "display": "skønlitteratur", + "display": "fiktion", "code": "FICTION" }, "materialTypes": [ { "materialTypeSpecific": { - "display": "bog" + "display": "film (dvd)" } } ], "creators": [ + { + "display": "Chris Columbus (f. 1958)", + "__typename": "Person" + }, + { + "display": "Steve Kloves", + "__typename": "Person" + }, + { + "display": "Roger Pratt", + "__typename": "Person" + }, { "display": "Joanne K. Rowling", "__typename": "Person" } ], - "publisher": ["Bloomsbury"], + "publisher": ["Warner Bros. Entertainment Danmark"], "identifiers": [ { - "value": "9780747591061" + "value": "58816" + } + ], + "contributors": [ + { + "display": "Daniel Radcliffe" + }, + { + "display": "Rupert Grint" + }, + { + "display": "Emma Watson" + }, + { + "display": "Kenneth Branagh" + }, + { + "display": "John Cleese" + }, + { + "display": "Robbie Coltrane" + }, + { + "display": "Warwick Davis" + }, + { + "display": "Richard Griffiths" } ], - "contributors": [], "edition": { - "summary": "1. edition, adult, 2007", + "summary": "1-disc edition, 2009", "publicationYear": { - "display": "2007" + "display": "2009" } }, "dateFirstEdition": null, "audience": { - "generalAudience": [] + "generalAudience": ["Mærkning: Tilladt for børn over 11 år"] }, "physicalDescriptions": [ { - "numberOfPages": 607, + "numberOfPages": null, "playingTime": { "materialUnits": [ { @@ -26206,331 +23980,368 @@ } ], "shelfmark": { - "postfix": "Rowling", - "shelfmark": "83" + "postfix": "Harry", + "shelfmark": "77.7" + }, + "workYear": null + } + ], + "latest": { + "pid": "870970-basis:27963404", + "genreAndForm": [], + "source": ["Bibliotekskatalog"], + "languages": { + "main": [ + { + "display": "engelsk", + "isoCode": "eng" + } + ] + }, + "titles": { + "main": ["Harry Potter og hemmelighedernes kammer"], + "original": [] + }, + "fictionNonfiction": { + "display": "fiktion", + "code": "FICTION" + }, + "materialTypes": [ + { + "materialTypeSpecific": { + "display": "film (dvd)" + } + } + ], + "creators": [ + { + "display": "Chris Columbus (f. 1958)", + "__typename": "Person" + }, + { + "display": "Steve Kloves", + "__typename": "Person" + }, + { + "display": "Roger Pratt", + "__typename": "Person" + }, + { + "display": "Joanne K. Rowling", + "__typename": "Person" + } + ], + "publisher": ["Warner Bros. Entertainment Danmark"], + "identifiers": [ + { + "value": "58816" + } + ], + "contributors": [ + { + "display": "Daniel Radcliffe" + }, + { + "display": "Rupert Grint" }, - "workYear": null - }, - { - "pid": "870970-basis:28346905", - "genreAndForm": [], - "source": ["Bibliotekskatalog"], - "languages": { - "main": [ - { - "display": "engelsk", - "isoCode": "eng" - } - ] + { + "display": "Emma Watson" }, - "titles": { - "main": ["Harry Potter and the deathly hallows"], - "original": [] + { + "display": "Kenneth Branagh" }, - "fictionNonfiction": { - "display": "vides ikke", - "code": "NOT_SPECIFIED" + { + "display": "John Cleese" }, - "materialTypes": [ - { - "materialTypeSpecific": { - "display": "bog" - } - } - ], - "creators": [ - { - "display": "Joanne K. Rowling", - "__typename": "Person" - } - ], - "publisher": ["Scholastic"], - "identifiers": [], - "contributors": [], - "edition": { - "summary": "2007", - "publicationYear": { - "display": "2007" - } + { + "display": "Robbie Coltrane" }, - "dateFirstEdition": null, - "audience": { - "generalAudience": [] + { + "display": "Warwick Davis" }, - "physicalDescriptions": [], - "accessTypes": [ + { + "display": "Richard Griffiths" + } + ], + "edition": { + "summary": "1-disc edition, 2009", + "publicationYear": { + "display": "2009" + } + }, + "dateFirstEdition": null, + "audience": { + "generalAudience": ["Mærkning: Tilladt for børn over 11 år"] + }, + "physicalDescriptions": [ + { + "numberOfPages": null, + "playingTime": "ca. 2 t., 35 min." + } + ], + "accessTypes": [ + { + "code": "PHYSICAL" + } + ], + "access": [ + { + "__typename": "InterLibraryLoan", + "loanIsPossible": true + } + ], + "shelfmark": { + "postfix": "Harry", + "shelfmark": "77.7" + }, + "workYear": null + }, + "bestRepresentation": { + "pid": "870970-basis:27963404", + "genreAndForm": [], + "source": ["Bibliotekskatalog"], + "languages": { + "main": [ { - "code": "PHYSICAL" + "display": "engelsk", + "isoCode": "eng" } - ], - "access": [ - { - "__typename": "InterLibraryLoan", - "loanIsPossible": true + ] + }, + "titles": { + "main": ["Harry Potter og hemmelighedernes kammer"], + "original": [] + }, + "fictionNonfiction": { + "display": "fiktion", + "code": "FICTION" + }, + "materialTypes": [ + { + "materialTypeSpecific": { + "display": "film (dvd)" } - ], - "shelfmark": { - "postfix": "Rowling", - "shelfmark": "Uden klassemærke" + } + ], + "creators": [ + { + "display": "Chris Columbus (f. 1958)", + "__typename": "Person" }, - "workYear": null - }, - { - "pid": "870970-basis:44176491", - "genreAndForm": ["roman"], - "source": ["Bibliotekskatalog"], - "languages": { - "main": [ - { - "display": "engelsk", - "isoCode": "eng" - } - ] + { + "display": "Steve Kloves", + "__typename": "Person" }, - "titles": { - "main": ["Harry Potter and the deathly hallows"], - "original": [] + { + "display": "Roger Pratt", + "__typename": "Person" }, - "fictionNonfiction": { - "display": "skønlitteratur", - "code": "FICTION" + { + "display": "Joanne K. Rowling", + "__typename": "Person" + } + ], + "publisher": ["Warner Bros. Entertainment Danmark"], + "identifiers": [ + { + "value": "58816" + } + ], + "contributors": [ + { + "display": "Daniel Radcliffe" }, - "materialTypes": [ - { - "materialTypeSpecific": { - "display": "bog" + { + "display": "Rupert Grint" + }, + { + "display": "Emma Watson" + }, + { + "display": "Kenneth Branagh" + }, + { + "display": "John Cleese" + }, + { + "display": "Robbie Coltrane" + }, + { + "display": "Warwick Davis" + }, + { + "display": "Richard Griffiths" + } + ], + "edition": { + "summary": "1-disc edition, 2009", + "publicationYear": { + "display": "2009" + } + }, + "dateFirstEdition": null, + "audience": { + "generalAudience": ["Mærkning: Tilladt for børn over 11 år"] + }, + "physicalDescriptions": [ + { + "numberOfPages": null, + "playingTime": "ca. 2 t., 35 min." + } + ], + "accessTypes": [ + { + "code": "PHYSICAL" + } + ], + "access": [ + { + "__typename": "InterLibraryLoan", + "loanIsPossible": true + } + ], + "shelfmark": { + "postfix": "Harry", + "shelfmark": "77.7" + }, + "workYear": null + } + } + }, + { + "workId": "work-of:870970-basis:25713583", + "titles": { + "full": ["Harry Potter og fangen fra Azkaban"], + "original": [] + }, + "abstract": [ + "Harry Potter er elev på trolddomsskolen på tredje år. Han får at vide, at hans forældres morder er flygtet fra Azkabanfængslet og nu også vil dræbe ham" + ], + "creators": [ + { + "display": "Steve Kloves", + "__typename": "Person" + }, + { + "display": "Alfonso Cuarón", + "__typename": "Person" + }, + { + "display": "Michael Seresin", + "__typename": "Person" + }, + { + "display": "Joanne K. Rowling", + "__typename": "Person" + } + ], + "series": [ + { + "title": "Harry Potter (film)", + "isPopular": true, + "readThisFirst": null, + "readThisWhenever": null, + "members": [ + { + "numberInSeries": "3", + "work": { + "workId": "work-of:870970-basis:22629344", + "titles": { + "main": ["Harry Potter og de vises sten"], + "full": ["Harry Potter og de vises sten"], + "original": ["Harry Potter and the philosopher's stone"] } } - ], - "creators": [ - { - "display": "Joanne K. Rowling", - "__typename": "Person" - } - ], - "publisher": ["Bloomsbury"], - "identifiers": [ - { - "value": "9780747591054" - } - ], - "contributors": [], - "edition": { - "summary": "1. edition, 2007", - "publicationYear": { - "display": "2007" - } - }, - "dateFirstEdition": null, - "audience": { - "generalAudience": [] }, - "physicalDescriptions": [ - { - "numberOfPages": 607, - "playingTime": { - "materialUnits": [ - { - "extent": null - } - ] + { + "numberInSeries": "3", + "work": { + "workId": "work-of:870970-basis:22677780", + "titles": { + "main": ["Harry Potter og Hemmelighedernes Kammer"], + "full": ["Harry Potter og Hemmelighedernes Kammer"], + "original": ["Harry Potter and the Chamber of Secrets"] } } - ], - "accessTypes": [ - { - "code": "PHYSICAL" - } - ], - "access": [ - { - "__typename": "InterLibraryLoan", - "loanIsPossible": true - } - ], - "shelfmark": { - "postfix": "Rowling", - "shelfmark": "83" - }, - "workYear": null - }, - { - "pid": "870970-basis:44179199", - "genreAndForm": ["roman"], - "source": ["Bibliotekskatalog"], - "languages": { - "main": [ - { - "display": "engelsk", - "isoCode": "eng" - } - ] - }, - "titles": { - "main": ["Harry Potter and the deathly hallows"], - "original": [] - }, - "fictionNonfiction": { - "display": "skønlitteratur", - "code": "FICTION" }, - "materialTypes": [ - { - "materialTypeSpecific": { - "display": "lydbog (cd)" + { + "numberInSeries": "3", + "work": { + "workId": "work-of:870970-basis:22995154", + "titles": { + "main": ["Harry Potter og fangen fra Azkaban"], + "full": ["Harry Potter og fangen fra Azkaban"], + "original": ["Harry Potter and the prisoner of Azkaban"] } } - ], - "creators": [ - { - "display": "Joanne K. Rowling", - "__typename": "Person" - }, - { - "display": "Stephen Fry", - "__typename": "Person" - } - ], - "publisher": ["HNP", "Bloomsbury"], - "identifiers": [ - { - "value": "9780747591092" - } - ], - "contributors": [], - "edition": { - "summary": "2007", - "publicationYear": { - "display": "2007" - } - }, - "dateFirstEdition": { - "display": "2007", - "year": 2007 - }, - "audience": { - "generalAudience": [] }, - "physicalDescriptions": [ - { - "numberOfPages": null, - "playingTime": { - "materialUnits": [ - { - "extent": null - } - ] + { + "numberInSeries": "3", + "work": { + "workId": "work-of:870970-basis:23540703", + "titles": { + "main": ["Harry Potter og Flammernes Pokal"], + "full": ["Harry Potter og Flammernes Pokal"], + "original": ["Harry Potter and the goblet of fire"] } } - ], - "accessTypes": [ - { - "code": "PHYSICAL" - } - ], - "access": [ - { - "__typename": "InterLibraryLoan", - "loanIsPossible": true - } - ], - "shelfmark": { - "postfix": "Rowling", - "shelfmark": "83" }, - "workYear": { - "year": 2007 - } - }, - { - "pid": "870970-basis:44183307", - "genreAndForm": ["roman"], - "source": ["Bibliotekskatalog"], - "languages": { - "main": [ - { - "display": "engelsk", - "isoCode": "eng" + { + "numberInSeries": "3", + "work": { + "workId": "work-of:870970-basis:25245784", + "titles": { + "main": ["Harry Potter og Fønixordenen"], + "full": ["Harry Potter og Fønixordenen"], + "original": ["Harry Potter and the Order of the Phoenix"] } - ] - }, - "titles": { - "main": ["Harry Potter and the deathly hallows"], - "original": [] - }, - "fictionNonfiction": { - "display": "skønlitteratur", - "code": "FICTION" + } }, - "materialTypes": [ - { - "materialTypeSpecific": { - "display": "lydbog (cd)" + { + "numberInSeries": "3", + "work": { + "workId": "work-of:870970-basis:25807995", + "titles": { + "main": ["Harry Potter og halvblodsprinsen"], + "full": ["Harry Potter og halvblodsprinsen"], + "original": ["Harry Potter and the half-blood prince"] } } - ], - "creators": [ - { - "display": "Joanne K. Rowling", - "__typename": "Person" - }, - { - "display": "Stephen Fry", - "__typename": "Person" - } - ], - "publisher": ["Bloomsbury"], - "identifiers": [ - { - "value": "9780747591108" - } - ], - "contributors": [], - "edition": { - "summary": "Adult, 2007", - "publicationYear": { - "display": "2007" - } - }, - "dateFirstEdition": { - "display": "2007", - "year": 2007 - }, - "audience": { - "generalAudience": [] }, - "physicalDescriptions": [ - { - "numberOfPages": null, - "playingTime": { - "materialUnits": [ - { - "extent": null - } - ] + { + "numberInSeries": "3", + "work": { + "workId": "work-of:870970-basis:27267912", + "titles": { + "main": ["Harry Potter og dødsregalierne"], + "full": ["Harry Potter og dødsregalierne"], + "original": ["Harry Potter and the deathly hallows"] } } - ], - "accessTypes": [ - { - "code": "PHYSICAL" - } - ], - "access": [ - { - "__typename": "InterLibraryLoan", - "loanIsPossible": true + }, + { + "numberInSeries": "3", + "work": { + "workId": "work-of:870970-basis:52646251", + "titles": { + "main": ["Harry Potter og det forbandede barn"], + "full": [ + "Harry Potter og det forbandede barn : del et & to" + ], + "original": ["Harry Potter and the cursed child"] + } } - ], - "shelfmark": { - "postfix": "Rowling", - "shelfmark": "83" - }, - "workYear": null - }, + } + ] + } + ], + "workYear": null, + "genreAndForm": ["børnefilm"], + "manifestations": { + "all": [ { - "pid": "870970-basis:44739496", - "genreAndForm": ["roman"], + "pid": "870970-basis:25713583", + "genreAndForm": [], "source": ["Bibliotekskatalog"], "languages": { "main": [ @@ -26541,49 +24352,86 @@ ] }, "titles": { - "main": ["Harry Potter and the deathly hallows"], + "main": ["Harry Potter og fangen fra Azkaban"], "original": [] }, "fictionNonfiction": { - "display": "skønlitteratur", + "display": "fiktion", "code": "FICTION" }, "materialTypes": [ { "materialTypeSpecific": { - "display": "bog" + "display": "film (dvd)" } } ], "creators": [ + { + "display": "Steve Kloves", + "__typename": "Person" + }, + { + "display": "Alfonso Cuarón", + "__typename": "Person" + }, + { + "display": "Michael Seresin", + "__typename": "Person" + }, { "display": "Joanne K. Rowling", "__typename": "Person" } ], - "publisher": ["Bloomsbury"], + "publisher": ["Sandrew Metronome"], "identifiers": [ { - "value": "9780747595830" + "value": "Z13 58817" + } + ], + "contributors": [ + { + "display": "Daniel Radcliffe" + }, + { + "display": "Rupert Grint" + }, + { + "display": "Emma Watson" + }, + { + "display": "Julie Christie" + }, + { + "display": "Robbie Coltrane" + }, + { + "display": "Michael Gambov" + }, + { + "display": "Richard Griffiths" + }, + { + "display": "Gary Oldman" + }, + { + "display": "Alan Rickman" } ], - "contributors": [], "edition": { - "summary": "Pbk. edition 2008, 2008", + "summary": "1-disc edition, 2005", "publicationYear": { - "display": "2008" + "display": "2005" } }, - "dateFirstEdition": { - "display": "2007", - "year": 2007 - }, + "dateFirstEdition": null, "audience": { - "generalAudience": [] + "generalAudience": ["Mærkning: Tilladt for børn over 11 år"] }, "physicalDescriptions": [ { - "numberOfPages": 607, + "numberOfPages": null, "playingTime": { "materialUnits": [ { @@ -26605,69 +24453,104 @@ } ], "shelfmark": { - "postfix": "Rowling", - "shelfmark": "83" + "postfix": "Harry", + "shelfmark": "77.7" }, - "workYear": { - "year": 2007 - } + "workYear": null }, { - "pid": "870970-basis:44931907", - "genreAndForm": ["roman", "eventyrlige fortællinger"], + "pid": "870970-basis:25833708", + "genreAndForm": [], "source": ["Bibliotekskatalog"], "languages": { "main": [ { - "display": "engelsk", - "isoCode": "eng" + "display": "dansk", + "isoCode": "dan" } ] }, "titles": { - "main": ["Harry Potter and the deathly hallows"], - "original": [] + "main": ["Harry Potter og fangen fra Azkaban"], + "original": ["Harry Potter and the prisoner of Azkaban"] }, "fictionNonfiction": { - "display": "skønlitteratur", + "display": "fiktion", "code": "FICTION" }, "materialTypes": [ { "materialTypeSpecific": { - "display": "bog" + "display": "film (videobånd)" } } ], "creators": [ + { + "display": "Steve Kloves", + "__typename": "Person" + }, + { + "display": "Alfonso Cuarón", + "__typename": "Person" + }, + { + "display": "Michael Seresin", + "__typename": "Person" + }, { "display": "Joanne K. Rowling", "__typename": "Person" } ], - "publisher": ["Bloomsbury"], + "publisher": ["Sandrew Metronome"], "identifiers": [ { - "value": "9781408810606" + "value": "58817" + } + ], + "contributors": [ + { + "display": "Daniel Radcliffe" + }, + { + "display": "Rupert Grint" + }, + { + "display": "Emma Watson" + }, + { + "display": "Julie Christie" + }, + { + "display": "Robbie Coltrane" + }, + { + "display": "Michael Gambov" + }, + { + "display": "Richard Griffiths" + }, + { + "display": "Gary Oldman" + }, + { + "display": "Alan Rickman" } ], - "contributors": [], "edition": { - "summary": "2010", + "summary": "2005", "publicationYear": { - "display": "2010" + "display": "2005" } }, - "dateFirstEdition": { - "display": "2007", - "year": 2007 - }, + "dateFirstEdition": null, "audience": { - "generalAudience": [] + "generalAudience": ["Mærkning: Tilladt for børn over 11 år"] }, "physicalDescriptions": [ { - "numberOfPages": 607, + "numberOfPages": null, "playingTime": { "materialUnits": [ { @@ -26689,16 +24572,14 @@ } ], "shelfmark": { - "postfix": "Rowling", - "shelfmark": "83" + "postfix": "Harry", + "shelfmark": "77.7" }, - "workYear": { - "year": 2007 - } + "workYear": null }, { - "pid": "870970-basis:45654265", - "genreAndForm": ["roman", "fantasy"], + "pid": "870970-basis:26632684", + "genreAndForm": [], "source": ["Bibliotekskatalog"], "languages": { "main": [ @@ -26709,52 +24590,86 @@ ] }, "titles": { - "main": ["Harry Potter and the deathly hallows"], + "main": ["Harry Potter og fangen fra Azkaban"], "original": [] }, "fictionNonfiction": { - "display": "skønlitteratur", + "display": "fiktion", "code": "FICTION" }, "materialTypes": [ { "materialTypeSpecific": { - "display": "bog" + "display": "film (dvd)" } } ], "creators": [ + { + "display": "Steve Kloves", + "__typename": "Person" + }, + { + "display": "Alfonso Cuarón", + "__typename": "Person" + }, + { + "display": "Michael Seresin", + "__typename": "Person" + }, { "display": "Joanne K. Rowling", "__typename": "Person" } ], - "publisher": ["Bloomsbury"], + "publisher": ["Warner Bros. Entertainment Danmark"], "identifiers": [ { - "value": "9781408855713" + "value": "28445" + } + ], + "contributors": [ + { + "display": "Daniel Radcliffe" + }, + { + "display": "Rupert Grint" + }, + { + "display": "Emma Watson" + }, + { + "display": "Julie Christie" + }, + { + "display": "Robbie Coltrane" + }, + { + "display": "Michael Gambov" + }, + { + "display": "Richard Griffiths" + }, + { + "display": "Gary Oldman" }, { - "value": "9781408855959" + "display": "Alan Rickman" } ], - "contributors": [], "edition": { - "summary": "Bloomsbury, new edition 2014, 2014", + "summary": "2-disc special edition, 2006", "publicationYear": { - "display": "2014" + "display": "2006" } }, - "dateFirstEdition": { - "display": "2007", - "year": 2007 - }, + "dateFirstEdition": null, "audience": { - "generalAudience": [] + "generalAudience": ["Mærkning: Tilladt for børn over 11 år"] }, "physicalDescriptions": [ { - "numberOfPages": 619, + "numberOfPages": null, "playingTime": { "materialUnits": [ { @@ -26776,16 +24691,14 @@ } ], "shelfmark": { - "postfix": "Rowling", - "shelfmark": "83" + "postfix": "Harry", + "shelfmark": "77.7" }, - "workYear": { - "year": 2007 - } + "workYear": null }, { - "pid": "870970-basis:45674525", - "genreAndForm": ["roman"], + "pid": "870970-basis:27129722", + "genreAndForm": [], "source": ["Bibliotekskatalog"], "languages": { "main": [ @@ -26796,54 +24709,82 @@ ] }, "titles": { - "main": [ - "Harry Potter and the deathly hallows (Ved Stephen Fry)" - ], + "main": ["Harry Potter og fangen fra Azkaban"], "original": [] }, "fictionNonfiction": { - "display": "skønlitteratur", + "display": "fiktion", "code": "FICTION" }, "materialTypes": [ { - "materialTypeSpecific": { - "display": "lydbog (cd)" - } - } - ], - "creators": [ + "materialTypeSpecific": { + "display": "film (blu-ray)" + } + } + ], + "creators": [ + { + "display": "Steve Kloves", + "__typename": "Person" + }, + { + "display": "Alfonso Cuarón", + "__typename": "Person" + }, + { + "display": "Michael Seresin", + "__typename": "Person" + }, { "display": "Joanne K. Rowling", "__typename": "Person" } ], - "publisher": ["HNP", "Bloomsbury"], + "publisher": ["Warner Bros. Entertainment Danmark"], "identifiers": [ { - "value": "9781408882245" - }, - { - "value": "9781408821572" + "value": "Y 15697" } ], "contributors": [ { - "display": "Stephen Fry" + "display": "Daniel Radcliffe" + }, + { + "display": "Rupert Grint" + }, + { + "display": "Emma Watson" + }, + { + "display": "Julie Christie" + }, + { + "display": "Robbie Coltrane" + }, + { + "display": "Michael Gambov" + }, + { + "display": "Richard Griffiths" + }, + { + "display": "Gary Oldman" + }, + { + "display": "Alan Rickman" } ], "edition": { - "summary": "HNP, Bloomsbury, New edition 2007, 2007", + "summary": "2007", "publicationYear": { "display": "2007" } }, - "dateFirstEdition": { - "display": "2007", - "year": 2007 - }, + "dateFirstEdition": null, "audience": { - "generalAudience": [] + "generalAudience": ["Mærkning: Tilladt for børn over 11 år"] }, "physicalDescriptions": [ { @@ -26869,20 +24810,14 @@ } ], "shelfmark": { - "postfix": "Rowling", - "shelfmark": "83" + "postfix": "Harry", + "shelfmark": "77.7" }, - "workYear": { - "year": 2007 - } + "workYear": null }, { - "pid": "870970-basis:53235786", - "genreAndForm": [ - "roman", - "eventyrlige fortællinger", - "fantasy" - ], + "pid": "870970-basis:27132170", + "genreAndForm": [], "source": ["Bibliotekskatalog"], "languages": { "main": [ @@ -26893,50 +24828,86 @@ ] }, "titles": { - "main": ["Harry Potter and the Deathly Hallows"], + "main": ["Harry Potter og fangen fra Azkaban"], "original": [] }, "fictionNonfiction": { - "display": "skønlitteratur", + "display": "fiktion", "code": "FICTION" }, "materialTypes": [ { "materialTypeSpecific": { - "display": "bog" + "display": "film (dvd)" } } ], "creators": [ + { + "display": "Steve Kloves", + "__typename": "Person" + }, + { + "display": "Alfonso Cuarón", + "__typename": "Person" + }, + { + "display": "Michael Seresin", + "__typename": "Person" + }, { "display": "Joanne K. Rowling", "__typename": "Person" } ], - "publisher": ["Levine"], + "publisher": ["Warner Bros. Entertainment Danmark"], "identifiers": [ { - "value": "9780545010221" + "value": "80959" } ], "contributors": [ { - "display": "Mary Grandpré" + "display": "Daniel Radcliffe" + }, + { + "display": "Rupert Grint" + }, + { + "display": "Emma Watson" + }, + { + "display": "Julie Christie" + }, + { + "display": "Robbie Coltrane" + }, + { + "display": "Michael Gambov" + }, + { + "display": "Richard Griffiths" + }, + { + "display": "Gary Oldman" + }, + { + "display": "Alan Rickman" } ], "edition": { - "summary": "Levine, 2007", + "summary": "2007", "publicationYear": { "display": "2007" } }, "dateFirstEdition": null, "audience": { - "generalAudience": [] + "generalAudience": ["Mærkning: Tilladt for børn over 11 år"] }, "physicalDescriptions": [ { - "numberOfPages": 759, + "numberOfPages": null, "playingTime": { "materialUnits": [ { @@ -26958,15 +24929,15 @@ } ], "shelfmark": { - "postfix": "Rowling", - "shelfmark": "83" + "postfix": "Harry", + "shelfmark": "77.7" }, "workYear": null } ], "latest": { - "pid": "870970-basis:45654265", - "genreAndForm": ["roman", "fantasy"], + "pid": "870970-basis:27132170", + "genreAndForm": [], "source": ["Bibliotekskatalog"], "languages": { "main": [ @@ -26977,53 +24948,87 @@ ] }, "titles": { - "main": ["Harry Potter and the deathly hallows"], + "main": ["Harry Potter og fangen fra Azkaban"], "original": [] }, "fictionNonfiction": { - "display": "skønlitteratur", + "display": "fiktion", "code": "FICTION" }, "materialTypes": [ { "materialTypeSpecific": { - "display": "bog" + "display": "film (dvd)" } } ], "creators": [ + { + "display": "Steve Kloves", + "__typename": "Person" + }, + { + "display": "Alfonso Cuarón", + "__typename": "Person" + }, + { + "display": "Michael Seresin", + "__typename": "Person" + }, { "display": "Joanne K. Rowling", "__typename": "Person" } ], - "publisher": ["Bloomsbury"], + "publisher": ["Warner Bros. Entertainment Danmark"], "identifiers": [ { - "value": "9781408855713" + "value": "80959" + } + ], + "contributors": [ + { + "display": "Daniel Radcliffe" + }, + { + "display": "Rupert Grint" + }, + { + "display": "Emma Watson" + }, + { + "display": "Julie Christie" + }, + { + "display": "Robbie Coltrane" + }, + { + "display": "Michael Gambov" + }, + { + "display": "Richard Griffiths" + }, + { + "display": "Gary Oldman" }, { - "value": "9781408855959" + "display": "Alan Rickman" } ], - "contributors": [], "edition": { - "summary": "Bloomsbury, new edition 2014, 2014", + "summary": "2007", "publicationYear": { - "display": "2014" + "display": "2007" } }, - "dateFirstEdition": { - "display": "2007", - "year": 2007 - }, + "dateFirstEdition": null, "audience": { - "generalAudience": [] + "generalAudience": ["Mærkning: Tilladt for børn over 11 år"] }, "physicalDescriptions": [ { - "numberOfPages": 619, - "playingTime": null + "numberOfPages": null, + "playingTime": "2 t., 12 min." } ], "accessTypes": [ @@ -27038,16 +25043,14 @@ } ], "shelfmark": { - "postfix": "Rowling", - "shelfmark": "83" + "postfix": "Harry", + "shelfmark": "77.7" }, - "workYear": { - "year": 2007 - } + "workYear": null }, "bestRepresentation": { - "pid": "870970-basis:45654265", - "genreAndForm": ["roman", "fantasy"], + "pid": "870970-basis:25713583", + "genreAndForm": [], "source": ["Bibliotekskatalog"], "languages": { "main": [ @@ -27058,53 +25061,87 @@ ] }, "titles": { - "main": ["Harry Potter and the deathly hallows"], + "main": ["Harry Potter og fangen fra Azkaban"], "original": [] }, "fictionNonfiction": { - "display": "skønlitteratur", + "display": "fiktion", "code": "FICTION" }, "materialTypes": [ { "materialTypeSpecific": { - "display": "bog" + "display": "film (dvd)" } } ], "creators": [ + { + "display": "Steve Kloves", + "__typename": "Person" + }, + { + "display": "Alfonso Cuarón", + "__typename": "Person" + }, + { + "display": "Michael Seresin", + "__typename": "Person" + }, { "display": "Joanne K. Rowling", "__typename": "Person" } ], - "publisher": ["Bloomsbury"], + "publisher": ["Sandrew Metronome"], "identifiers": [ { - "value": "9781408855713" + "value": "Z13 58817" + } + ], + "contributors": [ + { + "display": "Daniel Radcliffe" + }, + { + "display": "Rupert Grint" + }, + { + "display": "Emma Watson" + }, + { + "display": "Julie Christie" + }, + { + "display": "Robbie Coltrane" + }, + { + "display": "Michael Gambov" + }, + { + "display": "Richard Griffiths" + }, + { + "display": "Gary Oldman" }, { - "value": "9781408855959" + "display": "Alan Rickman" } ], - "contributors": [], "edition": { - "summary": "Bloomsbury, new edition 2014, 2014", + "summary": "1-disc edition, 2005", "publicationYear": { - "display": "2014" + "display": "2005" } }, - "dateFirstEdition": { - "display": "2007", - "year": 2007 - }, + "dateFirstEdition": null, "audience": { - "generalAudience": [] + "generalAudience": ["Mærkning: Tilladt for børn over 11 år"] }, "physicalDescriptions": [ { - "numberOfPages": 619, - "playingTime": null + "numberOfPages": null, + "playingTime": "2 t., 16 min." } ], "accessTypes": [ @@ -27119,12 +25156,10 @@ } ], "shelfmark": { - "postfix": "Rowling", - "shelfmark": "83" + "postfix": "Harry", + "shelfmark": "77.7" }, - "workYear": { - "year": 2007 - } + "workYear": null } } }, diff --git a/cypress/fixtures/search-result/facet-browser/searchWithPagination_terms_krimi.json b/cypress/fixtures/search-result/facet-browser/searchWithPagination_terms_krimi.json index 5c148d7788..a70b3ff684 100644 --- a/cypress/fixtures/search-result/facet-browser/searchWithPagination_terms_krimi.json +++ b/cypress/fixtures/search-result/facet-browser/searchWithPagination_terms_krimi.json @@ -2359,582 +2359,6 @@ } } }, - { - "workId": "work-of:870970-basis:27275745", - "titles": { "full": ["Snemanden"], "original": ["Snømannen"] }, - "abstract": [ - "Krimi. Vicekommissær Harry Hole får et anonymt brev om, at en seriemorder er på spil. En række mord og forsvindinger får overbevist politiet om, at en seriemorder ganske rigtigt er i gang, og Harry Hole går i gang med at løse den komplicerede sag" - ], - "creators": [{ "display": "Jo Nesbø", "__typename": "Person" }], - "series": [ - { - "title": "Krimiserien med Harry Hole", - "isPopular": true, - "members": [ - { - "numberInSeries": "7", - "workId": "work-of:870970-basis:26701139", - "titles": { - "main": ["Flagermusmanden"], - "full": ["Flagermusmanden"], - "original": ["Flaggermusmannen"] - } - }, - { - "numberInSeries": "7", - "workId": "work-of:870970-basis:26701112", - "titles": { - "main": ["Kakerlakkerne"], - "full": ["Kakerlakkerne"], - "original": ["Kakerlakkene"] - } - }, - { - "numberInSeries": "7", - "workId": "work-of:870970-basis:25660722", - "titles": { - "main": ["Rødhals"], - "full": ["Rødhals"], - "original": ["Rødstrupe"] - } - }, - { - "numberInSeries": "7", - "workId": "work-of:870970-basis:25932625", - "titles": { - "main": ["Sorgenfri"], - "full": ["Sorgenfri"], - "original": ["Sorgenfri (norsk)"] - } - }, - { - "numberInSeries": "7", - "workId": "work-of:870970-basis:26264340", - "titles": { - "main": ["Marekors"], - "full": ["Marekors"], - "original": ["Marekors (norsk)"] - } - }, - { - "numberInSeries": "7", - "workId": "work-of:870970-basis:26856353", - "titles": { - "main": ["Frelseren"], - "full": ["Frelseren"], - "original": ["Frelseren (norsk)"] - } - }, - { - "numberInSeries": "7", - "workId": "work-of:870970-basis:27275745", - "titles": { - "main": ["Snemanden"], - "full": ["Snemanden"], - "original": ["Snømannen"] - } - }, - { - "numberInSeries": "7", - "workId": "work-of:870970-basis:45363899", - "titles": { - "main": ["Panserhjerte"], - "full": ["Panserhjerte"], - "original": ["Panserhjerte (norsk)"] - } - }, - { - "numberInSeries": "7", - "workId": "work-of:870970-basis:29788596", - "titles": { - "main": ["Genfærd"], - "full": ["Genfærd"], - "original": ["Gjenferd"] - } - }, - { - "numberInSeries": "7", - "workId": "work-of:870970-basis:50689360", - "titles": { - "main": ["Politi"], - "full": ["Politi"], - "original": ["Politi (norsk)"] - } - }, - { - "numberInSeries": "7", - "workId": "work-of:870970-basis:53045650", - "titles": { - "main": ["Tørst"], - "full": ["Tørst"], - "original": ["Tørst (norsk)"] - } - }, - { - "numberInSeries": "7", - "workId": "work-of:870970-basis:46510534", - "titles": { - "main": ["Kniv"], - "full": ["Kniv"], - "original": ["Kniv (norsk)"] - } - }, - { - "numberInSeries": "7", - "workId": "work-of:870970-basis:134877804", - "titles": { - "main": ["Blodmånen"], - "full": ["Blodmånen"], - "original": ["Blodmåne (norsk)"] - } - } - ], - - "readThisFirst": null, - "readThisWhenever": null - } - ], - "workYear": null, - "genreAndForm": ["roman", "krimi", "romaner"], - "manifestations": { - "all": [ - { - "pid": "870970-basis:26923425", - "genreAndForm": ["roman", "krimi"], - "source": ["Bibliotekskatalog"], - "languages": { - "main": [{ "display": "dansk", "isoCode": "dan" }] - }, - "titles": { "main": ["Snemanden"], "original": ["Snømannen"] }, - "fictionNonfiction": { - "display": "skønlitteratur", - "code": "FICTION" - }, - "materialTypes": [ - { "materialTypeSpecific": { "display": "bog" } } - ], - "creators": [{ "display": "Jo Nesbø", "__typename": "Person" }], - "publisher": ["Modtryk"], - "identifiers": [{ "value": "9788770530934" }], - "contributors": [], - "edition": { - "summary": "2007", - "publicationYear": { "display": "2007" } - }, - "dateFirstEdition": null, - "audience": { "generalAudience": [] }, - "physicalDescription": { - "numberOfPages": 460, - "materialUnits": [{ "extent": null }] - }, - "accessTypes": [{ "code": "PHYSICAL" }], - "access": [ - { "__typename": "InterLibraryLoan", "loanIsPossible": true } - ], - "shelfmark": null, - "workYear": null - }, - { - "pid": "870970-basis:27092713", - "genreAndForm": ["roman"], - "source": ["Bibliotekskatalog"], - "languages": { - "main": [{ "display": "dansk", "isoCode": "dan" }] - }, - "titles": { "main": ["Snemanden"], "original": ["Snømannen"] }, - "fictionNonfiction": { - "display": "skønlitteratur", - "code": "FICTION" - }, - "materialTypes": [ - { "materialTypeSpecific": { "display": "lydbog (cd)" } } - ], - "creators": [{ "display": "Jo Nesbø", "__typename": "Person" }], - "publisher": ["Den grimme Ælling"], - "identifiers": [], - "contributors": [{ "display": "Bent Otto Hansen" }], - "edition": { - "summary": "2008", - "publicationYear": { "display": "2008" } - }, - "dateFirstEdition": null, - "audience": { "generalAudience": [] }, - "physicalDescription": { - "numberOfPages": null, - "materialUnits": [{ "extent": "15 t., 31 min." }] - }, - "accessTypes": [{ "code": "PHYSICAL" }], - "access": [ - { "__typename": "InterLibraryLoan", "loanIsPossible": true } - ], - "shelfmark": null, - "workYear": null - }, - { - "pid": "870970-basis:27275745", - "genreAndForm": ["roman", "krimi", "romaner"], - "source": ["Bibliotekskatalog"], - "languages": { - "main": [{ "display": "dansk", "isoCode": "dan" }] - }, - "titles": { "main": ["Snemanden"], "original": ["Snømannen"] }, - "fictionNonfiction": { - "display": "skønlitteratur", - "code": "FICTION" - }, - "materialTypes": [ - { "materialTypeSpecific": { "display": "bog" } } - ], - "creators": [{ "display": "Jo Nesbø", "__typename": "Person" }], - "publisher": ["Modtryk"], - "identifiers": [{ "value": "9788770531665" }], - "contributors": [], - "edition": { - "summary": "2. udgave, 2008", - "publicationYear": { "display": "2008" } - }, - "dateFirstEdition": { "display": "2007", "year": 2007 }, - "audience": { "generalAudience": [] }, - "physicalDescription": { - "numberOfPages": 459, - "materialUnits": [{ "extent": null }] - }, - "accessTypes": [{ "code": "PHYSICAL" }], - "access": [ - { "__typename": "InterLibraryLoan", "loanIsPossible": true } - ], - "shelfmark": null, - "workYear": null - }, - { - "pid": "870970-basis:27480004", - "genreAndForm": ["roman"], - "source": ["Bibliotekskatalog"], - "languages": { - "main": [{ "display": "dansk", "isoCode": "dan" }] - }, - "titles": { - "main": ["Snemanden (mp3)"], - "original": ["Snømannen"] - }, - "fictionNonfiction": { - "display": "skønlitteratur", - "code": "FICTION" - }, - "materialTypes": [ - { "materialTypeSpecific": { "display": "lydbog (cd-mp3)" } } - ], - "creators": [{ "display": "Jo Nesbø", "__typename": "Person" }], - "publisher": ["Modtryk"], - "identifiers": [{ "value": "9788770531917" }], - "contributors": [{ "display": "Bent Otto Hansen" }], - "edition": { - "summary": "2008", - "publicationYear": { "display": "2008" } - }, - "dateFirstEdition": null, - "audience": { "generalAudience": [] }, - "physicalDescription": { - "numberOfPages": null, - "materialUnits": [{ "extent": "14 t., 57 min." }] - }, - "accessTypes": [{ "code": "PHYSICAL" }], - "access": [ - { "__typename": "InterLibraryLoan", "loanIsPossible": true } - ], - "shelfmark": null, - "workYear": null - }, - { - "pid": "870970-basis:27587755", - "genreAndForm": ["roman", "krimi"], - "source": ["Bibliotekskatalog"], - "languages": { - "main": [{ "display": "dansk", "isoCode": "dan" }] - }, - "titles": { "main": ["Snemanden"], "original": ["Snømannen"] }, - "fictionNonfiction": { - "display": "skønlitteratur", - "code": "FICTION" - }, - "materialTypes": [ - { "materialTypeSpecific": { "display": "bog" } } - ], - "creators": [{ "display": "Jo Nesbø", "__typename": "Person" }], - "publisher": ["Modtryk"], - "identifiers": [{ "value": "9788770531900" }], - "contributors": [], - "edition": { - "summary": "3. udgave, 2008", - "publicationYear": { "display": "2008" } - }, - "dateFirstEdition": null, - "audience": { "generalAudience": [] }, - "physicalDescription": { - "numberOfPages": 459, - "materialUnits": [{ "extent": null }] - }, - "accessTypes": [{ "code": "PHYSICAL" }], - "access": [ - { "__typename": "InterLibraryLoan", "loanIsPossible": true } - ], - "shelfmark": null, - "workYear": null - }, - { - "pid": "870970-basis:28141963", - "genreAndForm": ["roman"], - "source": ["Bibliotekskatalog"], - "languages": { - "main": [{ "display": "dansk", "isoCode": "dan" }] - }, - "titles": { - "main": ["Snemanden (mp3)"], - "original": ["Snømannen"] - }, - "fictionNonfiction": { - "display": "skønlitteratur", - "code": "FICTION" - }, - "materialTypes": [ - { "materialTypeSpecific": { "display": "lydbog (cd-mp3)" } } - ], - "creators": [{ "display": "Jo Nesbø", "__typename": "Person" }], - "publisher": ["Modtryk"], - "identifiers": [{ "value": "9788770533522" }], - "contributors": [ - { "display": "Bent Otto Hansen" }, - { "display": "Allan Hilton Andersen" } - ], - "edition": { - "summary": "Ny udgave, 2009", - "publicationYear": { "display": "2009" } - }, - "dateFirstEdition": null, - "audience": { "generalAudience": [] }, - "physicalDescription": { - "numberOfPages": null, - "materialUnits": [{ "extent": "14 t., 57 min." }] - }, - "accessTypes": [{ "code": "PHYSICAL" }], - "access": [ - { "__typename": "InterLibraryLoan", "loanIsPossible": true } - ], - "shelfmark": null, - "workYear": null - }, - { - "pid": "870970-basis:28906129", - "genreAndForm": ["roman"], - "source": ["Bibliotekskatalog"], - "languages": { - "main": [{ "display": "dansk", "isoCode": "dan" }] - }, - "titles": { "main": ["Snemanden"], "original": ["Snømannen"] }, - "fictionNonfiction": { - "display": "skønlitteratur", - "code": "FICTION" - }, - "materialTypes": [ - { "materialTypeSpecific": { "display": "lydbog (online)" } } - ], - "creators": [{ "display": "Jo Nesbø", "__typename": "Person" }], - "publisher": ["Modtryk"], - "identifiers": [{ "value": "9788770534024" }], - "contributors": [ - { "display": "Bent Otto Hansen" }, - { "display": "Allan Hilton Andersen" } - ], - "edition": { - "summary": "2011", - "publicationYear": { "display": "2011" } - }, - "dateFirstEdition": { "display": "2007", "year": 2007 }, - "audience": { "generalAudience": [] }, - "physicalDescription": {}, - "accessTypes": [{ "code": "ONLINE" }], - "access": [], - "shelfmark": null, - "workYear": null - }, - { - "pid": "870970-basis:29301379", - "genreAndForm": ["roman", "krimi"], - "source": ["Bibliotekskatalog"], - "languages": { - "main": [{ "display": "dansk", "isoCode": "dan" }] - }, - "titles": { "main": ["Snemanden"], "original": ["Snømannen"] }, - "fictionNonfiction": { - "display": "skønlitteratur", - "code": "FICTION" - }, - "materialTypes": [ - { "materialTypeSpecific": { "display": "e-bog" } } - ], - "creators": [{ "display": "Jo Nesbø", "__typename": "Person" }], - "publisher": ["Modtryk"], - "identifiers": [{ "value": "9788770537988" }], - "contributors": [{ "display": "Allan Hilton Andersen" }], - "edition": { - "summary": "4. udgave, 2012", - "publicationYear": { "display": "2012" } - }, - "dateFirstEdition": null, - "audience": { "generalAudience": [] }, - "physicalDescription": {}, - "accessTypes": [{ "code": "ONLINE" }], - "access": [], - "shelfmark": null, - "workYear": null - }, - { - "pid": "870970-basis:52444764", - "genreAndForm": ["roman", "krimi", "romaner"], - "source": ["Bibliotekskatalog"], - "languages": { - "main": [{ "display": "dansk", "isoCode": "dan" }] - }, - "titles": { "main": ["Snemanden"], "original": ["Snømannen"] }, - "fictionNonfiction": { - "display": "skønlitteratur", - "code": "FICTION" - }, - "materialTypes": [ - { "materialTypeSpecific": { "display": "bog" } } - ], - "creators": [{ "display": "Jo Nesbø", "__typename": "Person" }], - "publisher": ["Modtryk"], - "identifiers": [{ "value": "9788771465815" }], - "contributors": [{ "display": "Allan Hilton Andersen" }], - "edition": { - "summary": "5. udgave, 2016", - "publicationYear": { "display": "2016" } - }, - "dateFirstEdition": null, - "audience": { "generalAudience": [] }, - "physicalDescription": { - "numberOfPages": 459, - "materialUnits": [{ "extent": null }] - }, - "accessTypes": [{ "code": "PHYSICAL" }], - "access": [ - { "__typename": "InterLibraryLoan", "loanIsPossible": true } - ], - "shelfmark": null, - "workYear": null - }, - { - "pid": "870970-basis:53790526", - "genreAndForm": ["roman", "krimi"], - "source": ["Bibliotekskatalog"], - "languages": { - "main": [{ "display": "dansk", "isoCode": "dan" }] - }, - "titles": { "main": ["Snemanden"], "original": ["Snømannen"] }, - "fictionNonfiction": { - "display": "skønlitteratur", - "code": "FICTION" - }, - "materialTypes": [ - { "materialTypeSpecific": { "display": "bog" } } - ], - "creators": [{ "display": "Jo Nesbø", "__typename": "Person" }], - "publisher": ["Modtryk"], - "identifiers": [{ "value": "9788771468250" }], - "contributors": [{ "display": "Allan Hilton Andersen" }], - "edition": { - "summary": "6. udgave, 2017", - "publicationYear": { "display": "2017" } - }, - "dateFirstEdition": null, - "audience": { "generalAudience": [] }, - "physicalDescription": { - "numberOfPages": 459, - "materialUnits": [{ "extent": null }] - }, - "accessTypes": [{ "code": "PHYSICAL" }], - "access": [ - { "__typename": "InterLibraryLoan", "loanIsPossible": true } - ], - "shelfmark": null, - "workYear": null - } - ], - "latest": { - "pid": "870970-basis:53790526", - "genreAndForm": ["roman", "krimi"], - "source": ["Bibliotekskatalog"], - "languages": { - "main": [{ "display": "dansk", "isoCode": "dan" }] - }, - "titles": { "main": ["Snemanden"], "original": ["Snømannen"] }, - "fictionNonfiction": { - "display": "skønlitteratur", - "code": "FICTION" - }, - "materialTypes": [ - { "materialTypeSpecific": { "display": "bog" } } - ], - "creators": [{ "display": "Jo Nesbø", "__typename": "Person" }], - "publisher": ["Modtryk"], - "identifiers": [{ "value": "9788771468250" }], - "contributors": [{ "display": "Allan Hilton Andersen" }], - "edition": { - "summary": "6. udgave, 2017", - "publicationYear": { "display": "2017" } - }, - "dateFirstEdition": null, - "audience": { "generalAudience": [] }, - "physicalDescription": { - "numberOfPages": 459, - "materialUnits": [{ "extent": null }] - }, - "accessTypes": [{ "code": "PHYSICAL" }], - "access": [ - { "__typename": "InterLibraryLoan", "loanIsPossible": true } - ], - "shelfmark": null, - "workYear": null - }, - "bestRepresentation": { - "pid": "870970-basis:53790526", - "genreAndForm": ["roman", "krimi"], - "source": ["Bibliotekskatalog"], - "languages": { - "main": [{ "display": "dansk", "isoCode": "dan" }] - }, - "titles": { "main": ["Snemanden"], "original": ["Snømannen"] }, - "fictionNonfiction": { - "display": "skønlitteratur", - "code": "FICTION" - }, - "materialTypes": [ - { "materialTypeSpecific": { "display": "bog" } } - ], - "creators": [{ "display": "Jo Nesbø", "__typename": "Person" }], - "publisher": ["Modtryk"], - "identifiers": [{ "value": "9788771468250" }], - "contributors": [{ "display": "Allan Hilton Andersen" }], - "edition": { - "summary": "6. udgave, 2017", - "publicationYear": { "display": "2017" } - }, - "dateFirstEdition": null, - "audience": { "generalAudience": [] }, - "physicalDescription": { - "numberOfPages": 459, - "materialUnits": [{ "extent": null }] - }, - "accessTypes": [{ "code": "PHYSICAL" }], - "access": [ - { "__typename": "InterLibraryLoan", "loanIsPossible": true } - ], - "shelfmark": null, - "workYear": null - } - } - }, { "workId": "work-of:870970-basis:25660722", "titles": { "full": ["Rødhals"], "original": ["Rødstrupe"] }, From 577d7f733f9d214ffdc0b9f33f4f2e1f4f92ea6d Mon Sep 17 00:00:00 2001 From: Adam Antal Date: Fri, 8 Nov 2024 12:54:07 +0100 Subject: [PATCH 15/28] Simplify className handling in HorizontalTermLine component --- src/components/horizontal-term-line/HorizontalTermLine.tsx | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/src/components/horizontal-term-line/HorizontalTermLine.tsx b/src/components/horizontal-term-line/HorizontalTermLine.tsx index eebec92550..0be6428d14 100644 --- a/src/components/horizontal-term-line/HorizontalTermLine.tsx +++ b/src/components/horizontal-term-line/HorizontalTermLine.tsx @@ -35,10 +35,7 @@ const HorizontalTermLine: React.FC = ({ return (

{title || ""}{" "} From 9089cc09a99ccacd5063cf38c05b250cdf708bb8 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 11 Nov 2024 02:33:09 +0000 Subject: [PATCH 16/28] Bump @storybook/react-webpack5 in the storybook group Bumps the storybook group with 1 update: [@storybook/react-webpack5](https://github.com/storybookjs/storybook/tree/HEAD/code/frameworks/react-webpack5). Updates `@storybook/react-webpack5` from 8.4.1 to 8.4.2 - [Release notes](https://github.com/storybookjs/storybook/releases) - [Changelog](https://github.com/storybookjs/storybook/blob/next/CHANGELOG.md) - [Commits](https://github.com/storybookjs/storybook/commits/v8.4.2/code/frameworks/react-webpack5) --- updated-dependencies: - dependency-name: "@storybook/react-webpack5" dependency-type: direct:development update-type: version-update:semver-patch dependency-group: storybook ... Signed-off-by: dependabot[bot] --- package.json | 2 +- yarn.lock | 133 ++++++++++++++++++++++++++++++--------------------- 2 files changed, 80 insertions(+), 55 deletions(-) diff --git a/package.json b/package.json index 89347a90fb..6a7dd8a495 100644 --- a/package.json +++ b/package.json @@ -69,7 +69,7 @@ "@storybook/addon-queryparams": "^7.0.1", "@storybook/addon-webpack5-compiler-babel": "^3.0.3", "@storybook/react": "^8.2.9", - "@storybook/react-webpack5": "^8.4.1", + "@storybook/react-webpack5": "^8.4.2", "@testing-library/dom": "^9.3.4", "@testing-library/react": "^14.2.2", "@testing-library/react-hooks": "^8.0.1", diff --git a/yarn.lock b/yarn.lock index ddec4b1244..78f7c4878f 100644 --- a/yarn.lock +++ b/yarn.lock @@ -2933,12 +2933,12 @@ ts-dedent "^2.0.0" util-deprecate "^1.0.2" -"@storybook/builder-webpack5@8.4.1": - version "8.4.1" - resolved "https://registry.yarnpkg.com/@storybook/builder-webpack5/-/builder-webpack5-8.4.1.tgz#5406600591b4838cacc046fbbdc33b46f2d92be0" - integrity sha512-rqSJcxcYiQyceNFSrT9qnI6hrW4/petb1n+oN8nG5HrRsl0zxOVzamMVyNzZxrAMKvq+VMJtLe1rQi8FnJNunw== +"@storybook/builder-webpack5@8.4.2": + version "8.4.2" + resolved "https://registry.yarnpkg.com/@storybook/builder-webpack5/-/builder-webpack5-8.4.2.tgz#ea2dce291f84c40e6c977c7dcdc6b9ffaab42aa8" + integrity sha512-Pqa0/sqqEujzcvs+/Cwf/5qRLC+atmceROCFokMOgpIaorTXlbmiQdJ2dBhMFNugLvXfL7dVQBjBfiuzhsQ57g== dependencies: - "@storybook/core-webpack" "8.4.1" + "@storybook/core-webpack" "8.4.2" "@types/node" "^22.0.0" "@types/semver" "^7.3.4" browser-assert "^1.2.1" @@ -2964,15 +2964,15 @@ webpack-hot-middleware "^2.25.1" webpack-virtual-modules "^0.6.0" -"@storybook/components@8.4.1": - version "8.4.1" - resolved "https://registry.yarnpkg.com/@storybook/components/-/components-8.4.1.tgz#90b92e2a187af2e51bf6e8ad7e1c8b9c718a57ad" - integrity sha512-bMPclbBhrWxhFlwqrC/h4fPLl05ouoi5D8SkQTHjeVxWN9eDnMVi76xM0YDct302Z3f0x5S3plIulp+4XRxrvg== +"@storybook/components@8.4.2": + version "8.4.2" + resolved "https://registry.yarnpkg.com/@storybook/components/-/components-8.4.2.tgz#e9e7d5dfaef3e36a2654c6bfbd79aa5a4f307a20" + integrity sha512-+W59oF7D73LAxLNmCfFrfs98cH9pyNHK9HlJoO5/lKbK4IdWhhOoqUR/AJ3ueksoLuetFat4DxyE8SN1H4Bvrg== -"@storybook/core-webpack@8.4.1": - version "8.4.1" - resolved "https://registry.yarnpkg.com/@storybook/core-webpack/-/core-webpack-8.4.1.tgz#28682704e33545874991bf5a1d84b644aa14153a" - integrity sha512-TptbDGaj9a8wJMF4g+C8t02CXl4BSd0BA/qGWBvzn3j4FJqeQ/m8elOXLYZrPbQKI6PjP0J4ayHkXdX2h0/tUw== +"@storybook/core-webpack@8.4.2": + version "8.4.2" + resolved "https://registry.yarnpkg.com/@storybook/core-webpack/-/core-webpack-8.4.2.tgz#989c109c6cae7542b269ef9b4351138f1350b1c0" + integrity sha512-bzGvzrLK/oDE9YlKayDEplcECURSa1oRkvV7rxI2sOTNfwuoxHJapvxFxazEKAHMVeSwfWDf4uKK0XeG2R/arA== dependencies: "@types/node" "^22.0.0" ts-dedent "^2.0.0" @@ -3018,18 +3018,18 @@ resolved "https://registry.yarnpkg.com/@storybook/icons/-/icons-1.2.12.tgz#3e4c939113b67df7ab17b78f805dbb57f4acf0db" integrity sha512-UxgyK5W3/UV4VrI3dl6ajGfHM4aOqMAkFLWe2KibeQudLf6NJpDrDMSHwZj+3iKC4jFU7dkKbbtH2h/al4sW3Q== -"@storybook/manager-api@8.4.1": - version "8.4.1" - resolved "https://registry.yarnpkg.com/@storybook/manager-api/-/manager-api-8.4.1.tgz#7f625d3eef1dfb35102ee1d73e334aacda2a09fe" - integrity sha512-7hb2k4zsp6lREGZbQ85QOlsC8EIMZXuY9Pg12VUgaZd+LmLjLuaqtrxRz3SwIgIWsRpFun9AHO0X37DmYNGTSw== +"@storybook/manager-api@8.4.2": + version "8.4.2" + resolved "https://registry.yarnpkg.com/@storybook/manager-api/-/manager-api-8.4.2.tgz#6bf972accfa6339034b50a7338654ad433aac6d1" + integrity sha512-rhPc4cgQDKDH8NUyRh/ZaJW7QIhR/PO5MNX4xc+vz71sM2nO7ONA/FrgLtCuu4SULdwilEPvGefYvLK0dE+Caw== -"@storybook/preset-react-webpack@8.4.1": - version "8.4.1" - resolved "https://registry.yarnpkg.com/@storybook/preset-react-webpack/-/preset-react-webpack-8.4.1.tgz#b5409acf42ae9acfa00eece104de0937ce281d61" - integrity sha512-Cm+u3/avHdoneEFHnvFRMPAElWtxyyOkcVsWHkM0rVhj7bxkzOyrBrenm1GiB8NamRosumsEnhREYFo2lthU2A== +"@storybook/preset-react-webpack@8.4.2": + version "8.4.2" + resolved "https://registry.yarnpkg.com/@storybook/preset-react-webpack/-/preset-react-webpack-8.4.2.tgz#7c67cbbfe54131019931732558dea8b838018592" + integrity sha512-Gt9hQRo1ythGFzATNV4WgQDlMDzBgiq7ks+YkW2/Xu5ZkrRrM/gK75fhmbICrknZl2pPPfNFXlECPWKAeTmwFA== dependencies: - "@storybook/core-webpack" "8.4.1" - "@storybook/react" "8.4.1" + "@storybook/core-webpack" "8.4.2" + "@storybook/react" "8.4.2" "@storybook/react-docgen-typescript-plugin" "1.0.6--canary.9.0c3f3b7.0" "@types/node" "^22.0.0" "@types/semver" "^7.3.4" @@ -3041,10 +3041,10 @@ tsconfig-paths "^4.2.0" webpack "5" -"@storybook/preview-api@8.4.1": - version "8.4.1" - resolved "https://registry.yarnpkg.com/@storybook/preview-api/-/preview-api-8.4.1.tgz#473db167a0c1b00a85a73c8ee04163cd3a6d7e2b" - integrity sha512-VdnESYfXCUasNtMd5s1Q8DPqMnAUdpROn8mE8UAD79Cy7DSNesI1q0SATuJqh5iYCT/+3Tpjfghsr2zC/mOh8w== +"@storybook/preview-api@8.4.2": + version "8.4.2" + resolved "https://registry.yarnpkg.com/@storybook/preview-api/-/preview-api-8.4.2.tgz#77640e16c8662b9aa3a9dd4ec1b7362b9b4f6b3f" + integrity sha512-5X/xvIvDPaWJKUBCo5zVeBbbjkhnwcI2KPkuOgrHVRRhuQ5WqD0RYxVtOOFNyQXme7g0nNl5RFNgvT7qv9qGeg== "@storybook/react-docgen-typescript-plugin@1.0.6--canary.9.0c3f3b7.0": version "1.0.6--canary.9.0c3f3b7.0" @@ -3064,37 +3064,37 @@ resolved "https://registry.yarnpkg.com/@storybook/react-dom-shim/-/react-dom-shim-8.3.3.tgz#0a23588f507c5c69b1153e43f16c37dbf38b82f1" integrity sha512-0dPC9K7+K5+X/bt3GwYmh+pCpisUyKVjWsI+PkzqGnWqaXFakzFakjswowIAIO1rf7wYZR591x3ehUAyL2bJiQ== -"@storybook/react-dom-shim@8.4.1": - version "8.4.1" - resolved "https://registry.yarnpkg.com/@storybook/react-dom-shim/-/react-dom-shim-8.4.1.tgz#aa6d4bddd5517748865b6575a70435ed35669ff5" - integrity sha512-XhvuqkpqtcUjDA8XE4osq140SCddX3VHMdj+IwlrMdoSl32CAya01TH5YDDx6YMy6hM/QQbyVKaemG7RB/oU4Q== +"@storybook/react-dom-shim@8.4.2": + version "8.4.2" + resolved "https://registry.yarnpkg.com/@storybook/react-dom-shim/-/react-dom-shim-8.4.2.tgz#cefc4b2cb7d3f632492867a3d5edbf568418c66a" + integrity sha512-FZVTM1f34FpGnf6e3MDIKkz05gmn8H9wEccvQAgr8pEFe8VWfrpVWeUrmatSAfgrCMNXYC1avDend8UX6IM8Fg== -"@storybook/react-webpack5@^8.4.1": - version "8.4.1" - resolved "https://registry.yarnpkg.com/@storybook/react-webpack5/-/react-webpack5-8.4.1.tgz#bf15bc60d8b84635a9f99e3f3cc45efc9c49a3b8" - integrity sha512-P4ZedIAx5SmkyKwTH5zbwG+en+DeeQfOT1nw0sL0aybVPGcwV+swyzcCnJFnmn0UIhSxuZ1InjN36nDZ6821mw== +"@storybook/react-webpack5@^8.4.2": + version "8.4.2" + resolved "https://registry.yarnpkg.com/@storybook/react-webpack5/-/react-webpack5-8.4.2.tgz#4d769f0c8d0309b275cd9f888cb95fdeb35f0edc" + integrity sha512-d2/kA7X7bFYnf3WI/aVKfg6ICMHiBIheSmgeY43R1E4K3KUjsJIVJDIliT+UKVZkEo0ie+rglZu0la1DO5Kl+Q== dependencies: - "@storybook/builder-webpack5" "8.4.1" - "@storybook/preset-react-webpack" "8.4.1" - "@storybook/react" "8.4.1" + "@storybook/builder-webpack5" "8.4.2" + "@storybook/preset-react-webpack" "8.4.2" + "@storybook/react" "8.4.2" "@types/node" "^22.0.0" -"@storybook/react@8.4.1", "@storybook/react@^8.2.9": - version "8.4.1" - resolved "https://registry.yarnpkg.com/@storybook/react/-/react-8.4.1.tgz#f75130b2bbed157f91de5f66b381ee063227c1a6" - integrity sha512-ZwszrzV47nWQEZ0X4LyNgv5OFq4iy/7LpmxW6IncIO7PWm70OWG2BVtKFNsNQx0LY+hOtllWZbvg06mPQzahFA== +"@storybook/react@8.4.2", "@storybook/react@^8.2.9": + version "8.4.2" + resolved "https://registry.yarnpkg.com/@storybook/react/-/react-8.4.2.tgz#a8d61902e0b72e99e96dfde4251eb0ce79249905" + integrity sha512-rO5/aVKBVhIKENcL7G8ud4QKC5OyWBPCkJIvY6XUHIuhErJy9/4pP+sZ85jypVwx5kq+EqCPF8AEOWjIxB/4/Q== dependencies: - "@storybook/components" "8.4.1" + "@storybook/components" "8.4.2" "@storybook/global" "^5.0.0" - "@storybook/manager-api" "8.4.1" - "@storybook/preview-api" "8.4.1" - "@storybook/react-dom-shim" "8.4.1" - "@storybook/theming" "8.4.1" + "@storybook/manager-api" "8.4.2" + "@storybook/preview-api" "8.4.2" + "@storybook/react-dom-shim" "8.4.2" + "@storybook/theming" "8.4.2" -"@storybook/theming@8.4.1": - version "8.4.1" - resolved "https://registry.yarnpkg.com/@storybook/theming/-/theming-8.4.1.tgz#483497e4853497555c233b7a0b4a92181f7aeb98" - integrity sha512-Sz24isryVFZaVahXkjgnCsMAQqQeeKg41AtLsldlYdesIo6fr5tc6/SkTUy+CYadK4Dkhqp+vVRDnwToYYRGhA== +"@storybook/theming@8.4.2": + version "8.4.2" + resolved "https://registry.yarnpkg.com/@storybook/theming/-/theming-8.4.2.tgz#0e385869a225040e326cfba301b6cdccd31dcb21" + integrity sha512-9j4fnu5LcV+qSs1rdwf61Bt14lms0T1LOZkHxGNcS1c1oH+cPS+sxECh2lxtni+mvOAHUlBs9pKhVZzRPdWpvg== "@szmarczak/http-timer@^1.1.2": version "1.1.2" @@ -12682,7 +12682,7 @@ string-env-interpolation@1.0.1, string-env-interpolation@^1.0.1: resolved "https://registry.npmjs.org/string-env-interpolation/-/string-env-interpolation-1.0.1.tgz" integrity sha512-78lwMoCcn0nNu8LszbP1UA7g55OeE4v7rCeWnM5B453rnNr4aq+5it3FEYtZrSEiMvHZOZ9Jlqb0OD0M2VInqg== -"string-width-cjs@npm:string-width@^4.2.0", string-width@^4.1.0, string-width@^4.2.0, string-width@^4.2.3: +"string-width-cjs@npm:string-width@^4.2.0": version "4.2.3" resolved "https://registry.yarnpkg.com/string-width/-/string-width-4.2.3.tgz#269c7117d27b05ad2e536830a8ec895ef9c6d010" integrity sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g== @@ -12717,6 +12717,15 @@ string-width@^3.0.0, string-width@^3.1.0: is-fullwidth-code-point "^2.0.0" strip-ansi "^5.1.0" +string-width@^4.1.0, string-width@^4.2.0, string-width@^4.2.3: + version "4.2.3" + resolved "https://registry.yarnpkg.com/string-width/-/string-width-4.2.3.tgz#269c7117d27b05ad2e536830a8ec895ef9c6d010" + integrity sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g== + dependencies: + emoji-regex "^8.0.0" + is-fullwidth-code-point "^3.0.0" + strip-ansi "^6.0.1" + string-width@^5.0.0, string-width@^5.0.1, string-width@^5.1.2: version "5.1.2" resolved "https://registry.yarnpkg.com/string-width/-/string-width-5.1.2.tgz#14f8daec6d81e7221d2a357e668cab73bdbca794" @@ -12811,7 +12820,7 @@ string_decoder@~1.1.1: dependencies: safe-buffer "~5.1.0" -"strip-ansi-cjs@npm:strip-ansi@^6.0.1", strip-ansi@^6.0.0, strip-ansi@^6.0.1: +"strip-ansi-cjs@npm:strip-ansi@^6.0.1": version "6.0.1" resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-6.0.1.tgz#9e26c63d30f53443e9489495b2105d37b67a85d9" integrity sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A== @@ -12839,6 +12848,13 @@ strip-ansi@^5.0.0, strip-ansi@^5.1.0, strip-ansi@^5.2.0: dependencies: ansi-regex "^4.1.0" +strip-ansi@^6.0.0, strip-ansi@^6.0.1: + version "6.0.1" + resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-6.0.1.tgz#9e26c63d30f53443e9489495b2105d37b67a85d9" + integrity sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A== + dependencies: + ansi-regex "^5.0.1" + strip-ansi@^7.0.1, strip-ansi@^7.1.0: version "7.1.0" resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-7.1.0.tgz#d5b6568ca689d8561370b0707685d22434faff45" @@ -14265,7 +14281,7 @@ wildcard@^2.0.0: resolved "https://registry.npmjs.org/wildcard/-/wildcard-2.0.0.tgz" integrity sha512-JcKqAHLPxcdb9KM49dufGXn2x3ssnfjbcaQdLlfZsL9rH9wgDQjUtDxbo8NE0F6SFvydeu1VhZe7hZuHsB2/pw== -"wrap-ansi-cjs@npm:wrap-ansi@^7.0.0", wrap-ansi@^7.0.0: +"wrap-ansi-cjs@npm:wrap-ansi@^7.0.0": version "7.0.0" resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-7.0.0.tgz#67e145cff510a6a6984bdf1152911d69d2eb9e43" integrity sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q== @@ -14300,6 +14316,15 @@ wrap-ansi@^6.2.0: string-width "^4.1.0" strip-ansi "^6.0.0" +wrap-ansi@^7.0.0: + version "7.0.0" + resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-7.0.0.tgz#67e145cff510a6a6984bdf1152911d69d2eb9e43" + integrity sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q== + dependencies: + ansi-styles "^4.0.0" + string-width "^4.1.0" + strip-ansi "^6.0.0" + wrap-ansi@^8.1.0: version "8.1.0" resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-8.1.0.tgz#56dc22368ee570face1b49819975d9b9a5ead214" From dc6c52b51568c6825779543f108c84424b467047 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 11 Nov 2024 02:33:25 +0000 Subject: [PATCH 17/28] Bump caniuse-lite from 1.0.30001677 to 1.0.30001680 Bumps [caniuse-lite](https://github.com/browserslist/caniuse-lite) from 1.0.30001677 to 1.0.30001680. - [Commits](https://github.com/browserslist/caniuse-lite/compare/1.0.30001677...1.0.30001680) --- updated-dependencies: - dependency-name: caniuse-lite dependency-type: direct:development update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- package.json | 2 +- yarn.lock | 39 ++++++++++++++++++++++++++++++++------- 2 files changed, 33 insertions(+), 8 deletions(-) diff --git a/package.json b/package.json index 89347a90fb..e5f140c4bd 100644 --- a/package.json +++ b/package.json @@ -87,7 +87,7 @@ "babel-plugin-istanbul": "^7.0.0", "babel-plugin-lodash": "^3.3.4", "babel-plugin-transform-react-remove-prop-types": "^0.4.24", - "caniuse-lite": "^1.0.30001677", + "caniuse-lite": "^1.0.30001680", "change-case-all": "^2.1.0", "chokidar-cli": "^3.0.0", "concurrently": "^9.0.1", diff --git a/yarn.lock b/yarn.lock index ddec4b1244..135df94edb 100644 --- a/yarn.lock +++ b/yarn.lock @@ -4938,10 +4938,10 @@ caniuse-api@^3.0.0: lodash.memoize "^4.1.2" lodash.uniq "^4.5.0" -caniuse-lite@^1.0.0, caniuse-lite@^1.0.30001646, caniuse-lite@^1.0.30001663, caniuse-lite@^1.0.30001677: - version "1.0.30001677" - resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001677.tgz#27c2e2c637e007cfa864a16f7dfe7cde66b38b5f" - integrity sha512-fmfjsOlJUpMWu+mAAtZZZHz7UEwsUxIIvu1TJfO1HqFQvB/B+ii0xr9B5HpbZY/mC4XZ8SvjHJqtAY6pDPQEog== +caniuse-lite@^1.0.0, caniuse-lite@^1.0.30001646, caniuse-lite@^1.0.30001663, caniuse-lite@^1.0.30001680: + version "1.0.30001680" + resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001680.tgz#5380ede637a33b9f9f1fc6045ea99bd142f3da5e" + integrity sha512-rPQy70G6AGUMnbwS1z6Xg+RkHYPAi18ihs47GH0jcxIG7wArmPgY3XbS2sRdBbxJljp3thdT8BIqv9ccCypiPA== capital-case@^1.0.4: version "1.0.4" @@ -12682,7 +12682,7 @@ string-env-interpolation@1.0.1, string-env-interpolation@^1.0.1: resolved "https://registry.npmjs.org/string-env-interpolation/-/string-env-interpolation-1.0.1.tgz" integrity sha512-78lwMoCcn0nNu8LszbP1UA7g55OeE4v7rCeWnM5B453rnNr4aq+5it3FEYtZrSEiMvHZOZ9Jlqb0OD0M2VInqg== -"string-width-cjs@npm:string-width@^4.2.0", string-width@^4.1.0, string-width@^4.2.0, string-width@^4.2.3: +"string-width-cjs@npm:string-width@^4.2.0": version "4.2.3" resolved "https://registry.yarnpkg.com/string-width/-/string-width-4.2.3.tgz#269c7117d27b05ad2e536830a8ec895ef9c6d010" integrity sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g== @@ -12717,6 +12717,15 @@ string-width@^3.0.0, string-width@^3.1.0: is-fullwidth-code-point "^2.0.0" strip-ansi "^5.1.0" +string-width@^4.1.0, string-width@^4.2.0, string-width@^4.2.3: + version "4.2.3" + resolved "https://registry.yarnpkg.com/string-width/-/string-width-4.2.3.tgz#269c7117d27b05ad2e536830a8ec895ef9c6d010" + integrity sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g== + dependencies: + emoji-regex "^8.0.0" + is-fullwidth-code-point "^3.0.0" + strip-ansi "^6.0.1" + string-width@^5.0.0, string-width@^5.0.1, string-width@^5.1.2: version "5.1.2" resolved "https://registry.yarnpkg.com/string-width/-/string-width-5.1.2.tgz#14f8daec6d81e7221d2a357e668cab73bdbca794" @@ -12811,7 +12820,7 @@ string_decoder@~1.1.1: dependencies: safe-buffer "~5.1.0" -"strip-ansi-cjs@npm:strip-ansi@^6.0.1", strip-ansi@^6.0.0, strip-ansi@^6.0.1: +"strip-ansi-cjs@npm:strip-ansi@^6.0.1": version "6.0.1" resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-6.0.1.tgz#9e26c63d30f53443e9489495b2105d37b67a85d9" integrity sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A== @@ -12839,6 +12848,13 @@ strip-ansi@^5.0.0, strip-ansi@^5.1.0, strip-ansi@^5.2.0: dependencies: ansi-regex "^4.1.0" +strip-ansi@^6.0.0, strip-ansi@^6.0.1: + version "6.0.1" + resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-6.0.1.tgz#9e26c63d30f53443e9489495b2105d37b67a85d9" + integrity sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A== + dependencies: + ansi-regex "^5.0.1" + strip-ansi@^7.0.1, strip-ansi@^7.1.0: version "7.1.0" resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-7.1.0.tgz#d5b6568ca689d8561370b0707685d22434faff45" @@ -14265,7 +14281,7 @@ wildcard@^2.0.0: resolved "https://registry.npmjs.org/wildcard/-/wildcard-2.0.0.tgz" integrity sha512-JcKqAHLPxcdb9KM49dufGXn2x3ssnfjbcaQdLlfZsL9rH9wgDQjUtDxbo8NE0F6SFvydeu1VhZe7hZuHsB2/pw== -"wrap-ansi-cjs@npm:wrap-ansi@^7.0.0", wrap-ansi@^7.0.0: +"wrap-ansi-cjs@npm:wrap-ansi@^7.0.0": version "7.0.0" resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-7.0.0.tgz#67e145cff510a6a6984bdf1152911d69d2eb9e43" integrity sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q== @@ -14300,6 +14316,15 @@ wrap-ansi@^6.2.0: string-width "^4.1.0" strip-ansi "^6.0.0" +wrap-ansi@^7.0.0: + version "7.0.0" + resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-7.0.0.tgz#67e145cff510a6a6984bdf1152911d69d2eb9e43" + integrity sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q== + dependencies: + ansi-styles "^4.0.0" + string-width "^4.1.0" + strip-ansi "^6.0.0" + wrap-ansi@^8.1.0: version "8.1.0" resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-8.1.0.tgz#56dc22368ee570face1b49819975d9b9a5ead214" From 0519221f58991f0cb0bc31f0077c7b283dec028d Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 11 Nov 2024 02:33:37 +0000 Subject: [PATCH 18/28] Bump storybook from 8.4.1 to 8.4.2 Bumps [storybook](https://github.com/storybookjs/storybook/tree/HEAD/code/lib/cli) from 8.4.1 to 8.4.2. - [Release notes](https://github.com/storybookjs/storybook/releases) - [Changelog](https://github.com/storybookjs/storybook/blob/next/CHANGELOG.md) - [Commits](https://github.com/storybookjs/storybook/commits/v8.4.2/code/lib/cli) --- updated-dependencies: - dependency-name: storybook dependency-type: direct:development update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- package.json | 2 +- yarn.lock | 49 +++++++++++++++++++++++++++++++++++++------------ 2 files changed, 38 insertions(+), 13 deletions(-) diff --git a/package.json b/package.json index 89347a90fb..c8a0b774cc 100644 --- a/package.json +++ b/package.json @@ -124,7 +124,7 @@ "replace-in-file": "^6.3.2", "sass": "^1.80.6", "source-map-support": "^0.5.21", - "storybook": "^8.4.1", + "storybook": "^8.4.2", "style-loader": "^4.0.0", "stylelint": "^15.11.0", "stylelint-config-prettier": "^9.0.5", diff --git a/yarn.lock b/yarn.lock index ddec4b1244..45349a5aa4 100644 --- a/yarn.lock +++ b/yarn.lock @@ -2977,10 +2977,10 @@ "@types/node" "^22.0.0" ts-dedent "^2.0.0" -"@storybook/core@8.4.1": - version "8.4.1" - resolved "https://registry.yarnpkg.com/@storybook/core/-/core-8.4.1.tgz#e6094f3c7cc2f0c81d1c1195c91a7230641ba9eb" - integrity sha512-q3Q4OFBj7MHHbIFYk/Beejlqv5j7CC3+VWhGcr0TK3SGvdCIZ7EliYuc5JIOgDlEPsnTIk+lkgWI4LAA9mLzSw== +"@storybook/core@8.4.2": + version "8.4.2" + resolved "https://registry.yarnpkg.com/@storybook/core/-/core-8.4.2.tgz#1e591fc6efef30e4e4fde4f266ca0cc9e756e516" + integrity sha512-hF8GWoUZTjwwuV5j4OLhMHZtZQL/NYcVUBReC2Ba06c8PkFIKqKZwATr1zKd301gQ5Qwcn9WgmZxJTMgdKQtOg== dependencies: "@storybook/csf" "^0.1.11" better-opn "^3.0.2" @@ -12618,12 +12618,12 @@ stop-iteration-iterator@^1.0.0: dependencies: internal-slot "^1.0.4" -storybook@^8.4.1: - version "8.4.1" - resolved "https://registry.yarnpkg.com/storybook/-/storybook-8.4.1.tgz#97baa471677566d614a5677deab0cd243c0142dc" - integrity sha512-0tfFIFghjho9FtnFoiJMoxhcs2iIdvEF81GTSVnTsDVJrYA84nB+FxN3UY1fT0BcQ8BFlbf+OhSjZL7ufqqWKA== +storybook@^8.4.2: + version "8.4.2" + resolved "https://registry.yarnpkg.com/storybook/-/storybook-8.4.2.tgz#02e71cf32db25af713b3681b1b52be1403b478dd" + integrity sha512-GMCgyAulmLNrkUtDkCpFO4SB77YrpiIxq6e5tzaQdXEuaDu1mdNwOuP3VG7nE2FzxmqDvagSgriM68YW9iFaZA== dependencies: - "@storybook/core" "8.4.1" + "@storybook/core" "8.4.2" stream-browserify@^2.0.0: version "2.0.2" @@ -12682,7 +12682,7 @@ string-env-interpolation@1.0.1, string-env-interpolation@^1.0.1: resolved "https://registry.npmjs.org/string-env-interpolation/-/string-env-interpolation-1.0.1.tgz" integrity sha512-78lwMoCcn0nNu8LszbP1UA7g55OeE4v7rCeWnM5B453rnNr4aq+5it3FEYtZrSEiMvHZOZ9Jlqb0OD0M2VInqg== -"string-width-cjs@npm:string-width@^4.2.0", string-width@^4.1.0, string-width@^4.2.0, string-width@^4.2.3: +"string-width-cjs@npm:string-width@^4.2.0": version "4.2.3" resolved "https://registry.yarnpkg.com/string-width/-/string-width-4.2.3.tgz#269c7117d27b05ad2e536830a8ec895ef9c6d010" integrity sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g== @@ -12717,6 +12717,15 @@ string-width@^3.0.0, string-width@^3.1.0: is-fullwidth-code-point "^2.0.0" strip-ansi "^5.1.0" +string-width@^4.1.0, string-width@^4.2.0, string-width@^4.2.3: + version "4.2.3" + resolved "https://registry.yarnpkg.com/string-width/-/string-width-4.2.3.tgz#269c7117d27b05ad2e536830a8ec895ef9c6d010" + integrity sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g== + dependencies: + emoji-regex "^8.0.0" + is-fullwidth-code-point "^3.0.0" + strip-ansi "^6.0.1" + string-width@^5.0.0, string-width@^5.0.1, string-width@^5.1.2: version "5.1.2" resolved "https://registry.yarnpkg.com/string-width/-/string-width-5.1.2.tgz#14f8daec6d81e7221d2a357e668cab73bdbca794" @@ -12811,7 +12820,7 @@ string_decoder@~1.1.1: dependencies: safe-buffer "~5.1.0" -"strip-ansi-cjs@npm:strip-ansi@^6.0.1", strip-ansi@^6.0.0, strip-ansi@^6.0.1: +"strip-ansi-cjs@npm:strip-ansi@^6.0.1": version "6.0.1" resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-6.0.1.tgz#9e26c63d30f53443e9489495b2105d37b67a85d9" integrity sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A== @@ -12839,6 +12848,13 @@ strip-ansi@^5.0.0, strip-ansi@^5.1.0, strip-ansi@^5.2.0: dependencies: ansi-regex "^4.1.0" +strip-ansi@^6.0.0, strip-ansi@^6.0.1: + version "6.0.1" + resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-6.0.1.tgz#9e26c63d30f53443e9489495b2105d37b67a85d9" + integrity sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A== + dependencies: + ansi-regex "^5.0.1" + strip-ansi@^7.0.1, strip-ansi@^7.1.0: version "7.1.0" resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-7.1.0.tgz#d5b6568ca689d8561370b0707685d22434faff45" @@ -14265,7 +14281,7 @@ wildcard@^2.0.0: resolved "https://registry.npmjs.org/wildcard/-/wildcard-2.0.0.tgz" integrity sha512-JcKqAHLPxcdb9KM49dufGXn2x3ssnfjbcaQdLlfZsL9rH9wgDQjUtDxbo8NE0F6SFvydeu1VhZe7hZuHsB2/pw== -"wrap-ansi-cjs@npm:wrap-ansi@^7.0.0", wrap-ansi@^7.0.0: +"wrap-ansi-cjs@npm:wrap-ansi@^7.0.0": version "7.0.0" resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-7.0.0.tgz#67e145cff510a6a6984bdf1152911d69d2eb9e43" integrity sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q== @@ -14300,6 +14316,15 @@ wrap-ansi@^6.2.0: string-width "^4.1.0" strip-ansi "^6.0.0" +wrap-ansi@^7.0.0: + version "7.0.0" + resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-7.0.0.tgz#67e145cff510a6a6984bdf1152911d69d2eb9e43" + integrity sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q== + dependencies: + ansi-styles "^4.0.0" + string-width "^4.1.0" + strip-ansi "^6.0.0" + wrap-ansi@^8.1.0: version "8.1.0" resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-8.1.0.tgz#56dc22368ee570face1b49819975d9b9a5ead214" From ce1048b7d800e08c15c4e87bcdb85e2dc2476282 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 11 Nov 2024 02:33:54 +0000 Subject: [PATCH 19/28] Bump postcss from 8.4.47 to 8.4.48 Bumps [postcss](https://github.com/postcss/postcss) from 8.4.47 to 8.4.48. - [Release notes](https://github.com/postcss/postcss/releases) - [Changelog](https://github.com/postcss/postcss/blob/main/CHANGELOG.md) - [Commits](https://github.com/postcss/postcss/compare/8.4.47...8.4.48) --- updated-dependencies: - dependency-name: postcss dependency-type: direct:development update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- package.json | 4 ++-- yarn.lock | 49 +++++++++++++++++++++++++++++++++++++------------ 2 files changed, 39 insertions(+), 14 deletions(-) diff --git a/package.json b/package.json index 89347a90fb..9815189703 100644 --- a/package.json +++ b/package.json @@ -116,7 +116,7 @@ "mutationobserver-shim": "^0.3.7", "nyc": "^17.1.0", "orval": "^6.26.0", - "postcss": "^8.4.47", + "postcss": "^8.4.48", "postcss-cli": "^11.0.0", "postcss-loader": "^8.1.1", "postcss-scss": "^4.0.9", @@ -176,6 +176,6 @@ "unfetch": "^5.0.0" }, "peerDependencies": { - "postcss": "^8.4.47" + "postcss": "^8.4.48" } } diff --git a/yarn.lock b/yarn.lock index ddec4b1244..b9ba496171 100644 --- a/yarn.lock +++ b/yarn.lock @@ -10797,10 +10797,10 @@ performance-now@^2.1.0: resolved "https://registry.npmjs.org/performance-now/-/performance-now-2.1.0.tgz" integrity sha1-Ywn04OX6kT7BxpMHrjZLSzd8nns= -picocolors@^1.0.0, picocolors@^1.0.1, picocolors@^1.1.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/picocolors/-/picocolors-1.1.0.tgz#5358b76a78cde483ba5cef6a9dc9671440b27d59" - integrity sha512-TQ92mBOW0l3LeMeyLV6mzy/kWr8lkd/hp3mTg7wYK7zJhuBStmGMBG0BdeDZS/dZx1IukaX6Bk11zcln25o1Aw== +picocolors@^1.0.0, picocolors@^1.0.1, picocolors@^1.1.1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/picocolors/-/picocolors-1.1.1.tgz#3d321af3eab939b083c8f929a1d12cda81c26b6b" + integrity sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA== picomatch@^2.0.4, picomatch@^2.2.1, picomatch@^2.3.1: version "2.3.1" @@ -11160,13 +11160,13 @@ postcss-value-parser@^4.1.0, postcss-value-parser@^4.2.0: resolved "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz" integrity sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ== -postcss@^8.4.21, postcss@^8.4.28, postcss@^8.4.33, postcss@^8.4.47: - version "8.4.47" - resolved "https://registry.yarnpkg.com/postcss/-/postcss-8.4.47.tgz#5bf6c9a010f3e724c503bf03ef7947dcb0fea365" - integrity sha512-56rxCq7G/XfB4EkXq9Egn5GCqugWvDFjafDOThIdMBsI15iqPqR5r15TfSr1YPYeEI19YeaXMCbY6u88Y76GLQ== +postcss@^8.4.21, postcss@^8.4.28, postcss@^8.4.33, postcss@^8.4.48: + version "8.4.48" + resolved "https://registry.yarnpkg.com/postcss/-/postcss-8.4.48.tgz#765f3f8abaa2a2b065cdddbc57ad4cb5a76e515f" + integrity sha512-GCRK8F6+Dl7xYniR5a4FYbpBzU8XnZVeowqsQFYdcXuSbChgiks7qybSkbvnaeqv0G0B+dd9/jJgH8kkLDQeEA== dependencies: nanoid "^3.3.7" - picocolors "^1.1.0" + picocolors "^1.1.1" source-map-js "^1.2.1" preact@~10.12.1: @@ -12682,7 +12682,7 @@ string-env-interpolation@1.0.1, string-env-interpolation@^1.0.1: resolved "https://registry.npmjs.org/string-env-interpolation/-/string-env-interpolation-1.0.1.tgz" integrity sha512-78lwMoCcn0nNu8LszbP1UA7g55OeE4v7rCeWnM5B453rnNr4aq+5it3FEYtZrSEiMvHZOZ9Jlqb0OD0M2VInqg== -"string-width-cjs@npm:string-width@^4.2.0", string-width@^4.1.0, string-width@^4.2.0, string-width@^4.2.3: +"string-width-cjs@npm:string-width@^4.2.0": version "4.2.3" resolved "https://registry.yarnpkg.com/string-width/-/string-width-4.2.3.tgz#269c7117d27b05ad2e536830a8ec895ef9c6d010" integrity sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g== @@ -12717,6 +12717,15 @@ string-width@^3.0.0, string-width@^3.1.0: is-fullwidth-code-point "^2.0.0" strip-ansi "^5.1.0" +string-width@^4.1.0, string-width@^4.2.0, string-width@^4.2.3: + version "4.2.3" + resolved "https://registry.yarnpkg.com/string-width/-/string-width-4.2.3.tgz#269c7117d27b05ad2e536830a8ec895ef9c6d010" + integrity sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g== + dependencies: + emoji-regex "^8.0.0" + is-fullwidth-code-point "^3.0.0" + strip-ansi "^6.0.1" + string-width@^5.0.0, string-width@^5.0.1, string-width@^5.1.2: version "5.1.2" resolved "https://registry.yarnpkg.com/string-width/-/string-width-5.1.2.tgz#14f8daec6d81e7221d2a357e668cab73bdbca794" @@ -12811,7 +12820,7 @@ string_decoder@~1.1.1: dependencies: safe-buffer "~5.1.0" -"strip-ansi-cjs@npm:strip-ansi@^6.0.1", strip-ansi@^6.0.0, strip-ansi@^6.0.1: +"strip-ansi-cjs@npm:strip-ansi@^6.0.1": version "6.0.1" resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-6.0.1.tgz#9e26c63d30f53443e9489495b2105d37b67a85d9" integrity sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A== @@ -12839,6 +12848,13 @@ strip-ansi@^5.0.0, strip-ansi@^5.1.0, strip-ansi@^5.2.0: dependencies: ansi-regex "^4.1.0" +strip-ansi@^6.0.0, strip-ansi@^6.0.1: + version "6.0.1" + resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-6.0.1.tgz#9e26c63d30f53443e9489495b2105d37b67a85d9" + integrity sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A== + dependencies: + ansi-regex "^5.0.1" + strip-ansi@^7.0.1, strip-ansi@^7.1.0: version "7.1.0" resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-7.1.0.tgz#d5b6568ca689d8561370b0707685d22434faff45" @@ -14265,7 +14281,7 @@ wildcard@^2.0.0: resolved "https://registry.npmjs.org/wildcard/-/wildcard-2.0.0.tgz" integrity sha512-JcKqAHLPxcdb9KM49dufGXn2x3ssnfjbcaQdLlfZsL9rH9wgDQjUtDxbo8NE0F6SFvydeu1VhZe7hZuHsB2/pw== -"wrap-ansi-cjs@npm:wrap-ansi@^7.0.0", wrap-ansi@^7.0.0: +"wrap-ansi-cjs@npm:wrap-ansi@^7.0.0": version "7.0.0" resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-7.0.0.tgz#67e145cff510a6a6984bdf1152911d69d2eb9e43" integrity sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q== @@ -14300,6 +14316,15 @@ wrap-ansi@^6.2.0: string-width "^4.1.0" strip-ansi "^6.0.0" +wrap-ansi@^7.0.0: + version "7.0.0" + resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-7.0.0.tgz#67e145cff510a6a6984bdf1152911d69d2eb9e43" + integrity sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q== + dependencies: + ansi-styles "^4.0.0" + string-width "^4.1.0" + strip-ansi "^6.0.0" + wrap-ansi@^8.1.0: version "8.1.0" resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-8.1.0.tgz#56dc22368ee570face1b49819975d9b9a5ead214" From 6ce9294028eefe0efa2b12a2185cf2ffca3ab13f Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 11 Nov 2024 02:34:05 +0000 Subject: [PATCH 20/28] Bump concurrently from 9.0.1 to 9.1.0 Bumps [concurrently](https://github.com/open-cli-tools/concurrently) from 9.0.1 to 9.1.0. - [Release notes](https://github.com/open-cli-tools/concurrently/releases) - [Commits](https://github.com/open-cli-tools/concurrently/compare/v9.0.1...v9.1.0) --- updated-dependencies: - dependency-name: concurrently dependency-type: direct:development update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- package.json | 2 +- yarn.lock | 39 ++++++++++++++++++++++++++++++++------- 2 files changed, 33 insertions(+), 8 deletions(-) diff --git a/package.json b/package.json index 89347a90fb..b55a1c58ee 100644 --- a/package.json +++ b/package.json @@ -90,7 +90,7 @@ "caniuse-lite": "^1.0.30001677", "change-case-all": "^2.1.0", "chokidar-cli": "^3.0.0", - "concurrently": "^9.0.1", + "concurrently": "^9.1.0", "core-js": "^3.39.0", "css-loader": "^7.1.2", "cssnano": "^7.0.6", diff --git a/yarn.lock b/yarn.lock index ddec4b1244..f06558a551 100644 --- a/yarn.lock +++ b/yarn.lock @@ -5390,10 +5390,10 @@ concat-stream@^1.6.0, concat-stream@^1.6.1, concat-stream@~1.6.0: readable-stream "^2.2.2" typedarray "^0.0.6" -concurrently@^9.0.1: - version "9.0.1" - resolved "https://registry.yarnpkg.com/concurrently/-/concurrently-9.0.1.tgz#01e171bf6c7af0c022eb85daef95bff04d8185aa" - integrity sha512-wYKvCd/f54sTXJMSfV6Ln/B8UrfLBKOYa+lzc6CHay3Qek+LorVSBdMVfyewFhRbH0Rbabsk4D+3PL/VjQ5gzg== +concurrently@^9.1.0: + version "9.1.0" + resolved "https://registry.yarnpkg.com/concurrently/-/concurrently-9.1.0.tgz#8da6d609f4321752912dab9be8710232ac496aa0" + integrity sha512-VxkzwMAn4LP7WyMnJNbHN5mKV9L2IbyDjpzemKr99sXNR3GqRNMMHdm7prV1ws9wg7ETj6WUkNOigZVsptwbgg== dependencies: chalk "^4.1.2" lodash "^4.17.21" @@ -12682,7 +12682,7 @@ string-env-interpolation@1.0.1, string-env-interpolation@^1.0.1: resolved "https://registry.npmjs.org/string-env-interpolation/-/string-env-interpolation-1.0.1.tgz" integrity sha512-78lwMoCcn0nNu8LszbP1UA7g55OeE4v7rCeWnM5B453rnNr4aq+5it3FEYtZrSEiMvHZOZ9Jlqb0OD0M2VInqg== -"string-width-cjs@npm:string-width@^4.2.0", string-width@^4.1.0, string-width@^4.2.0, string-width@^4.2.3: +"string-width-cjs@npm:string-width@^4.2.0": version "4.2.3" resolved "https://registry.yarnpkg.com/string-width/-/string-width-4.2.3.tgz#269c7117d27b05ad2e536830a8ec895ef9c6d010" integrity sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g== @@ -12717,6 +12717,15 @@ string-width@^3.0.0, string-width@^3.1.0: is-fullwidth-code-point "^2.0.0" strip-ansi "^5.1.0" +string-width@^4.1.0, string-width@^4.2.0, string-width@^4.2.3: + version "4.2.3" + resolved "https://registry.yarnpkg.com/string-width/-/string-width-4.2.3.tgz#269c7117d27b05ad2e536830a8ec895ef9c6d010" + integrity sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g== + dependencies: + emoji-regex "^8.0.0" + is-fullwidth-code-point "^3.0.0" + strip-ansi "^6.0.1" + string-width@^5.0.0, string-width@^5.0.1, string-width@^5.1.2: version "5.1.2" resolved "https://registry.yarnpkg.com/string-width/-/string-width-5.1.2.tgz#14f8daec6d81e7221d2a357e668cab73bdbca794" @@ -12811,7 +12820,7 @@ string_decoder@~1.1.1: dependencies: safe-buffer "~5.1.0" -"strip-ansi-cjs@npm:strip-ansi@^6.0.1", strip-ansi@^6.0.0, strip-ansi@^6.0.1: +"strip-ansi-cjs@npm:strip-ansi@^6.0.1": version "6.0.1" resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-6.0.1.tgz#9e26c63d30f53443e9489495b2105d37b67a85d9" integrity sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A== @@ -12839,6 +12848,13 @@ strip-ansi@^5.0.0, strip-ansi@^5.1.0, strip-ansi@^5.2.0: dependencies: ansi-regex "^4.1.0" +strip-ansi@^6.0.0, strip-ansi@^6.0.1: + version "6.0.1" + resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-6.0.1.tgz#9e26c63d30f53443e9489495b2105d37b67a85d9" + integrity sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A== + dependencies: + ansi-regex "^5.0.1" + strip-ansi@^7.0.1, strip-ansi@^7.1.0: version "7.1.0" resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-7.1.0.tgz#d5b6568ca689d8561370b0707685d22434faff45" @@ -14265,7 +14281,7 @@ wildcard@^2.0.0: resolved "https://registry.npmjs.org/wildcard/-/wildcard-2.0.0.tgz" integrity sha512-JcKqAHLPxcdb9KM49dufGXn2x3ssnfjbcaQdLlfZsL9rH9wgDQjUtDxbo8NE0F6SFvydeu1VhZe7hZuHsB2/pw== -"wrap-ansi-cjs@npm:wrap-ansi@^7.0.0", wrap-ansi@^7.0.0: +"wrap-ansi-cjs@npm:wrap-ansi@^7.0.0": version "7.0.0" resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-7.0.0.tgz#67e145cff510a6a6984bdf1152911d69d2eb9e43" integrity sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q== @@ -14300,6 +14316,15 @@ wrap-ansi@^6.2.0: string-width "^4.1.0" strip-ansi "^6.0.0" +wrap-ansi@^7.0.0: + version "7.0.0" + resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-7.0.0.tgz#67e145cff510a6a6984bdf1152911d69d2eb9e43" + integrity sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q== + dependencies: + ansi-styles "^4.0.0" + string-width "^4.1.0" + strip-ansi "^6.0.0" + wrap-ansi@^8.1.0: version "8.1.0" resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-8.1.0.tgz#56dc22368ee570face1b49819975d9b9a5ead214" From e40be64f612fa3fd5972cf8dec29d1cb07501d47 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 11 Nov 2024 02:34:19 +0000 Subject: [PATCH 21/28] Bump focus-trap-react from 10.3.0 to 10.3.1 Bumps [focus-trap-react](https://github.com/focus-trap/focus-trap-react) from 10.3.0 to 10.3.1. - [Release notes](https://github.com/focus-trap/focus-trap-react/releases) - [Changelog](https://github.com/focus-trap/focus-trap-react/blob/master/CHANGELOG.md) - [Commits](https://github.com/focus-trap/focus-trap-react/compare/v10.3.0...v10.3.1) --- updated-dependencies: - dependency-name: focus-trap-react dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- package.json | 2 +- yarn.lock | 49 +++++++++++++++++++++++++++++++++++++------------ 2 files changed, 38 insertions(+), 13 deletions(-) diff --git a/package.json b/package.json index 89347a90fb..5029b81fb5 100644 --- a/package.json +++ b/package.json @@ -158,7 +158,7 @@ "clsx": "^2.1.1", "dayjs": "^1.11.13", "downshift": "^9.0.8", - "focus-trap-react": "^10.3.0", + "focus-trap-react": "^10.3.1", "graphql": "^16.9.0", "graphql-tag": "^2.12.6", "lodash": "^4.17.21", diff --git a/yarn.lock b/yarn.lock index ddec4b1244..d43b485ff7 100644 --- a/yarn.lock +++ b/yarn.lock @@ -7327,18 +7327,18 @@ focus-lock@^0.9.1: dependencies: tslib "^2.0.3" -focus-trap-react@^10.3.0: - version "10.3.0" - resolved "https://registry.yarnpkg.com/focus-trap-react/-/focus-trap-react-10.3.0.tgz#79e2b63459d30a2f5545cf8491a8b02c1779882e" - integrity sha512-XrCTj44uNE0clTA47y1AbIb7tM7w6+zi6WrJzb4RxRe3uAIIivkBCwlsCqe7R3vPRT/LCQzfe4+N/KjtJMQMgw== +focus-trap-react@^10.3.1: + version "10.3.1" + resolved "https://registry.yarnpkg.com/focus-trap-react/-/focus-trap-react-10.3.1.tgz#55d8933fc7a2b124e92f233797f4d782214f56ae" + integrity sha512-PN4Ya9xf9nyj/Nd9VxBNMuD7IrlRbmaG6POAQ8VLqgtc6IY/Ln1tYakow+UIq4fihYYYFM70/2oyidE6bbiPgw== dependencies: - focus-trap "^7.6.0" + focus-trap "^7.6.1" tabbable "^6.2.0" -focus-trap@^7.6.0: - version "7.6.0" - resolved "https://registry.yarnpkg.com/focus-trap/-/focus-trap-7.6.0.tgz#7f3edab8135eaca92ab59b6e963eb5cc42ded715" - integrity sha512-1td0l3pMkWJLFipobUcGaf+5DTY4PLDDrcqoSaKP8ediO/CoWCCYk/fT/Y2A4e6TNB+Sh6clRJCjOPPnKoNHnQ== +focus-trap@^7.6.1: + version "7.6.1" + resolved "https://registry.yarnpkg.com/focus-trap/-/focus-trap-7.6.1.tgz#cdbcc7973fe135b2c739eabfebfa442351747361" + integrity sha512-nB8y4nQl8PshahLpGKZOq1sb0xrMVFSn6at7u/qOsBZTlZRzaapISGENcB6mOkoezbClZyiMwEF/dGY8AZ00rA== dependencies: tabbable "^6.2.0" @@ -12682,7 +12682,7 @@ string-env-interpolation@1.0.1, string-env-interpolation@^1.0.1: resolved "https://registry.npmjs.org/string-env-interpolation/-/string-env-interpolation-1.0.1.tgz" integrity sha512-78lwMoCcn0nNu8LszbP1UA7g55OeE4v7rCeWnM5B453rnNr4aq+5it3FEYtZrSEiMvHZOZ9Jlqb0OD0M2VInqg== -"string-width-cjs@npm:string-width@^4.2.0", string-width@^4.1.0, string-width@^4.2.0, string-width@^4.2.3: +"string-width-cjs@npm:string-width@^4.2.0": version "4.2.3" resolved "https://registry.yarnpkg.com/string-width/-/string-width-4.2.3.tgz#269c7117d27b05ad2e536830a8ec895ef9c6d010" integrity sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g== @@ -12717,6 +12717,15 @@ string-width@^3.0.0, string-width@^3.1.0: is-fullwidth-code-point "^2.0.0" strip-ansi "^5.1.0" +string-width@^4.1.0, string-width@^4.2.0, string-width@^4.2.3: + version "4.2.3" + resolved "https://registry.yarnpkg.com/string-width/-/string-width-4.2.3.tgz#269c7117d27b05ad2e536830a8ec895ef9c6d010" + integrity sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g== + dependencies: + emoji-regex "^8.0.0" + is-fullwidth-code-point "^3.0.0" + strip-ansi "^6.0.1" + string-width@^5.0.0, string-width@^5.0.1, string-width@^5.1.2: version "5.1.2" resolved "https://registry.yarnpkg.com/string-width/-/string-width-5.1.2.tgz#14f8daec6d81e7221d2a357e668cab73bdbca794" @@ -12811,7 +12820,7 @@ string_decoder@~1.1.1: dependencies: safe-buffer "~5.1.0" -"strip-ansi-cjs@npm:strip-ansi@^6.0.1", strip-ansi@^6.0.0, strip-ansi@^6.0.1: +"strip-ansi-cjs@npm:strip-ansi@^6.0.1": version "6.0.1" resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-6.0.1.tgz#9e26c63d30f53443e9489495b2105d37b67a85d9" integrity sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A== @@ -12839,6 +12848,13 @@ strip-ansi@^5.0.0, strip-ansi@^5.1.0, strip-ansi@^5.2.0: dependencies: ansi-regex "^4.1.0" +strip-ansi@^6.0.0, strip-ansi@^6.0.1: + version "6.0.1" + resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-6.0.1.tgz#9e26c63d30f53443e9489495b2105d37b67a85d9" + integrity sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A== + dependencies: + ansi-regex "^5.0.1" + strip-ansi@^7.0.1, strip-ansi@^7.1.0: version "7.1.0" resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-7.1.0.tgz#d5b6568ca689d8561370b0707685d22434faff45" @@ -14265,7 +14281,7 @@ wildcard@^2.0.0: resolved "https://registry.npmjs.org/wildcard/-/wildcard-2.0.0.tgz" integrity sha512-JcKqAHLPxcdb9KM49dufGXn2x3ssnfjbcaQdLlfZsL9rH9wgDQjUtDxbo8NE0F6SFvydeu1VhZe7hZuHsB2/pw== -"wrap-ansi-cjs@npm:wrap-ansi@^7.0.0", wrap-ansi@^7.0.0: +"wrap-ansi-cjs@npm:wrap-ansi@^7.0.0": version "7.0.0" resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-7.0.0.tgz#67e145cff510a6a6984bdf1152911d69d2eb9e43" integrity sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q== @@ -14300,6 +14316,15 @@ wrap-ansi@^6.2.0: string-width "^4.1.0" strip-ansi "^6.0.0" +wrap-ansi@^7.0.0: + version "7.0.0" + resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-7.0.0.tgz#67e145cff510a6a6984bdf1152911d69d2eb9e43" + integrity sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q== + dependencies: + ansi-styles "^4.0.0" + string-width "^4.1.0" + strip-ansi "^6.0.0" + wrap-ansi@^8.1.0: version "8.1.0" resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-8.1.0.tgz#56dc22368ee570face1b49819975d9b9a5ead214" From ec8d03acb2f87110503e054619e286eabefee98d Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 11 Nov 2024 02:34:28 +0000 Subject: [PATCH 22/28] Bump @cypress/code-coverage from 3.13.5 to 3.13.6 Bumps [@cypress/code-coverage](https://github.com/cypress-io/code-coverage) from 3.13.5 to 3.13.6. - [Release notes](https://github.com/cypress-io/code-coverage/releases) - [Changelog](https://github.com/cypress-io/code-coverage/blob/master/.releaserc) - [Commits](https://github.com/cypress-io/code-coverage/compare/v3.13.5...v3.13.6) --- updated-dependencies: - dependency-name: "@cypress/code-coverage" dependency-type: direct:development update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- package.json | 2 +- yarn.lock | 39 ++++++++++++++++++++++++++++++++------- 2 files changed, 33 insertions(+), 8 deletions(-) diff --git a/package.json b/package.json index 89347a90fb..092ea37e5e 100644 --- a/package.json +++ b/package.json @@ -54,7 +54,7 @@ "@chromatic-com/storybook": "^3", "@csstools/postcss-sass": "^5.1.1", "@cypress/browserify-preprocessor": "^3.0.2", - "@cypress/code-coverage": "^3.13.5", + "@cypress/code-coverage": "^3.13.6", "@graphql-codegen/add": "^3.1.1", "@graphql-codegen/cli": "^2.6.2", "@graphql-codegen/introspection": "^2.1.1", diff --git a/yarn.lock b/yarn.lock index ddec4b1244..533e649641 100644 --- a/yarn.lock +++ b/yarn.lock @@ -1229,10 +1229,10 @@ through2 "^2.0.0" watchify "^4.0.0" -"@cypress/code-coverage@^3.13.5": - version "3.13.5" - resolved "https://registry.yarnpkg.com/@cypress/code-coverage/-/code-coverage-3.13.5.tgz#a35d838b7a7507aa1de66a6a594ebe6ad97909d2" - integrity sha512-lnzHWnYgSk/MQRgKJOWg5QKbMgUerz+wvYuf2RzsHfDLFez9CLj4fZOSymJ/QkotfSDgLrerfGASLwHm4OH3qg== +"@cypress/code-coverage@^3.13.6": + version "3.13.6" + resolved "https://registry.yarnpkg.com/@cypress/code-coverage/-/code-coverage-3.13.6.tgz#573d0bb4f4fd3f11d16ff74999b4c4001c9044ab" + integrity sha512-nNVDYDK6r9zPqDIv9k7FibPP9/dATGRR3us9Ued/ldcxPz5x8WbVthjV5OIjqotRKEmS7wxiXFHSDhKJqaZNuw== dependencies: "@cypress/webpack-preprocessor" "^6.0.0" chalk "4.1.2" @@ -12682,7 +12682,7 @@ string-env-interpolation@1.0.1, string-env-interpolation@^1.0.1: resolved "https://registry.npmjs.org/string-env-interpolation/-/string-env-interpolation-1.0.1.tgz" integrity sha512-78lwMoCcn0nNu8LszbP1UA7g55OeE4v7rCeWnM5B453rnNr4aq+5it3FEYtZrSEiMvHZOZ9Jlqb0OD0M2VInqg== -"string-width-cjs@npm:string-width@^4.2.0", string-width@^4.1.0, string-width@^4.2.0, string-width@^4.2.3: +"string-width-cjs@npm:string-width@^4.2.0": version "4.2.3" resolved "https://registry.yarnpkg.com/string-width/-/string-width-4.2.3.tgz#269c7117d27b05ad2e536830a8ec895ef9c6d010" integrity sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g== @@ -12717,6 +12717,15 @@ string-width@^3.0.0, string-width@^3.1.0: is-fullwidth-code-point "^2.0.0" strip-ansi "^5.1.0" +string-width@^4.1.0, string-width@^4.2.0, string-width@^4.2.3: + version "4.2.3" + resolved "https://registry.yarnpkg.com/string-width/-/string-width-4.2.3.tgz#269c7117d27b05ad2e536830a8ec895ef9c6d010" + integrity sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g== + dependencies: + emoji-regex "^8.0.0" + is-fullwidth-code-point "^3.0.0" + strip-ansi "^6.0.1" + string-width@^5.0.0, string-width@^5.0.1, string-width@^5.1.2: version "5.1.2" resolved "https://registry.yarnpkg.com/string-width/-/string-width-5.1.2.tgz#14f8daec6d81e7221d2a357e668cab73bdbca794" @@ -12811,7 +12820,7 @@ string_decoder@~1.1.1: dependencies: safe-buffer "~5.1.0" -"strip-ansi-cjs@npm:strip-ansi@^6.0.1", strip-ansi@^6.0.0, strip-ansi@^6.0.1: +"strip-ansi-cjs@npm:strip-ansi@^6.0.1": version "6.0.1" resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-6.0.1.tgz#9e26c63d30f53443e9489495b2105d37b67a85d9" integrity sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A== @@ -12839,6 +12848,13 @@ strip-ansi@^5.0.0, strip-ansi@^5.1.0, strip-ansi@^5.2.0: dependencies: ansi-regex "^4.1.0" +strip-ansi@^6.0.0, strip-ansi@^6.0.1: + version "6.0.1" + resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-6.0.1.tgz#9e26c63d30f53443e9489495b2105d37b67a85d9" + integrity sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A== + dependencies: + ansi-regex "^5.0.1" + strip-ansi@^7.0.1, strip-ansi@^7.1.0: version "7.1.0" resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-7.1.0.tgz#d5b6568ca689d8561370b0707685d22434faff45" @@ -14265,7 +14281,7 @@ wildcard@^2.0.0: resolved "https://registry.npmjs.org/wildcard/-/wildcard-2.0.0.tgz" integrity sha512-JcKqAHLPxcdb9KM49dufGXn2x3ssnfjbcaQdLlfZsL9rH9wgDQjUtDxbo8NE0F6SFvydeu1VhZe7hZuHsB2/pw== -"wrap-ansi-cjs@npm:wrap-ansi@^7.0.0", wrap-ansi@^7.0.0: +"wrap-ansi-cjs@npm:wrap-ansi@^7.0.0": version "7.0.0" resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-7.0.0.tgz#67e145cff510a6a6984bdf1152911d69d2eb9e43" integrity sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q== @@ -14300,6 +14316,15 @@ wrap-ansi@^6.2.0: string-width "^4.1.0" strip-ansi "^6.0.0" +wrap-ansi@^7.0.0: + version "7.0.0" + resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-7.0.0.tgz#67e145cff510a6a6984bdf1152911d69d2eb9e43" + integrity sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q== + dependencies: + ansi-styles "^4.0.0" + string-width "^4.1.0" + strip-ansi "^6.0.0" + wrap-ansi@^8.1.0: version "8.1.0" resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-8.1.0.tgz#56dc22368ee570face1b49819975d9b9a5ead214" From ee85edd6bbe478089be11744f063b3167ab002e2 Mon Sep 17 00:00:00 2001 From: Jacob Pihl Date: Mon, 11 Nov 2024 14:42:25 +0100 Subject: [PATCH 23/28] Upgrade Typescript --- package.json | 2 +- yarn.lock | 39 +++++++-------------------------------- 2 files changed, 8 insertions(+), 33 deletions(-) diff --git a/package.json b/package.json index 6d5370bc5b..6f485aa882 100644 --- a/package.json +++ b/package.json @@ -134,7 +134,7 @@ "stylelint-webpack-plugin": "^5.0.1", "svg-url-loader": "^8.0.0", "ts-node": "^10.9.2", - "typescript": "^4.6.4", + "typescript": "^5.6.0", "vitest": "^0.28.5", "webpack": "^5.96.1", "webpack-cli": "^5.1.4", diff --git a/yarn.lock b/yarn.lock index 82be324070..9aafef48c7 100644 --- a/yarn.lock +++ b/yarn.lock @@ -12682,7 +12682,7 @@ string-env-interpolation@1.0.1, string-env-interpolation@^1.0.1: resolved "https://registry.npmjs.org/string-env-interpolation/-/string-env-interpolation-1.0.1.tgz" integrity sha512-78lwMoCcn0nNu8LszbP1UA7g55OeE4v7rCeWnM5B453rnNr4aq+5it3FEYtZrSEiMvHZOZ9Jlqb0OD0M2VInqg== -"string-width-cjs@npm:string-width@^4.2.0": +"string-width-cjs@npm:string-width@^4.2.0", string-width@^4.1.0, string-width@^4.2.0, string-width@^4.2.3: version "4.2.3" resolved "https://registry.yarnpkg.com/string-width/-/string-width-4.2.3.tgz#269c7117d27b05ad2e536830a8ec895ef9c6d010" integrity sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g== @@ -12717,15 +12717,6 @@ string-width@^3.0.0, string-width@^3.1.0: is-fullwidth-code-point "^2.0.0" strip-ansi "^5.1.0" -string-width@^4.1.0, string-width@^4.2.0, string-width@^4.2.3: - version "4.2.3" - resolved "https://registry.yarnpkg.com/string-width/-/string-width-4.2.3.tgz#269c7117d27b05ad2e536830a8ec895ef9c6d010" - integrity sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g== - dependencies: - emoji-regex "^8.0.0" - is-fullwidth-code-point "^3.0.0" - strip-ansi "^6.0.1" - string-width@^5.0.0, string-width@^5.0.1, string-width@^5.1.2: version "5.1.2" resolved "https://registry.yarnpkg.com/string-width/-/string-width-5.1.2.tgz#14f8daec6d81e7221d2a357e668cab73bdbca794" @@ -12820,7 +12811,7 @@ string_decoder@~1.1.1: dependencies: safe-buffer "~5.1.0" -"strip-ansi-cjs@npm:strip-ansi@^6.0.1": +"strip-ansi-cjs@npm:strip-ansi@^6.0.1", strip-ansi@^6.0.0, strip-ansi@^6.0.1: version "6.0.1" resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-6.0.1.tgz#9e26c63d30f53443e9489495b2105d37b67a85d9" integrity sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A== @@ -12848,13 +12839,6 @@ strip-ansi@^5.0.0, strip-ansi@^5.1.0, strip-ansi@^5.2.0: dependencies: ansi-regex "^4.1.0" -strip-ansi@^6.0.0, strip-ansi@^6.0.1: - version "6.0.1" - resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-6.0.1.tgz#9e26c63d30f53443e9489495b2105d37b67a85d9" - integrity sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A== - dependencies: - ansi-regex "^5.0.1" - strip-ansi@^7.0.1, strip-ansi@^7.1.0: version "7.1.0" resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-7.1.0.tgz#d5b6568ca689d8561370b0707685d22434faff45" @@ -13596,10 +13580,10 @@ typedarray@^0.0.6: resolved "https://registry.npmjs.org/typedarray/-/typedarray-0.0.6.tgz" integrity sha1-hnrHTjhkGHsdPUfZlqeOxciDB3c= -typescript@^4.6.4: - version "4.6.4" - resolved "https://registry.npmjs.org/typescript/-/typescript-4.6.4.tgz" - integrity sha512-9ia/jWHIEbo49HfjrLGfKbZSuWo9iTMwXO+Ca3pRsSpbsMbc7/IU8NKdCZVRRBafVPGnoJeFL76ZOAA84I9fEg== +typescript@^5.6.0: + version "5.6.3" + resolved "https://registry.yarnpkg.com/typescript/-/typescript-5.6.3.tgz#5f3449e31c9d94febb17de03cc081dd56d81db5b" + integrity sha512-hjcS1mhfuyi4WW8IWtjP7brDrG2cuDZukyrYrSauoXGNgx0S7zceP07adYkJycEr56BOUTNPzbInooiN3fn1qw== ua-parser-js@^0.7.30: version "0.7.36" @@ -14281,7 +14265,7 @@ wildcard@^2.0.0: resolved "https://registry.npmjs.org/wildcard/-/wildcard-2.0.0.tgz" integrity sha512-JcKqAHLPxcdb9KM49dufGXn2x3ssnfjbcaQdLlfZsL9rH9wgDQjUtDxbo8NE0F6SFvydeu1VhZe7hZuHsB2/pw== -"wrap-ansi-cjs@npm:wrap-ansi@^7.0.0": +"wrap-ansi-cjs@npm:wrap-ansi@^7.0.0", wrap-ansi@^7.0.0: version "7.0.0" resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-7.0.0.tgz#67e145cff510a6a6984bdf1152911d69d2eb9e43" integrity sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q== @@ -14316,15 +14300,6 @@ wrap-ansi@^6.2.0: string-width "^4.1.0" strip-ansi "^6.0.0" -wrap-ansi@^7.0.0: - version "7.0.0" - resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-7.0.0.tgz#67e145cff510a6a6984bdf1152911d69d2eb9e43" - integrity sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q== - dependencies: - ansi-styles "^4.0.0" - string-width "^4.1.0" - strip-ansi "^6.0.0" - wrap-ansi@^8.1.0: version "8.1.0" resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-8.1.0.tgz#56dc22368ee570face1b49819975d9b9a5ead214" From 2426f89d83faf31dee02a3150e547f6abcadb091 Mon Sep 17 00:00:00 2001 From: Jacob Pihl Date: Mon, 11 Nov 2024 14:51:18 +0100 Subject: [PATCH 24/28] Remove duplicate Cypress command --- cypress/support/index.ts | 9 --------- 1 file changed, 9 deletions(-) diff --git a/cypress/support/index.ts b/cypress/support/index.ts index c78909c807..bc5e11094f 100644 --- a/cypress/support/index.ts +++ b/cypress/support/index.ts @@ -23,14 +23,6 @@ Cypress.Commands.add("createFakeAuthenticatedSession", () => { window.sessionStorage.setItem(TOKEN_USER_KEY, "999"); }); -Cypress.Commands.add("createFakeLibrarySession", () => { - // Since the user token is shared in storybook by setting it in sessionStorage - // we can use that and fake that we have a inlogged user session - // by using the same principle. - // See userToken handling in .storybbok/preview.js. - window.sessionStorage.setItem(TOKEN_LIBRARY_KEY, "random-token"); -}); - /** * interceptGraphql is used to make a graphQLrequest that returns fixture data * @@ -123,7 +115,6 @@ declare global { */ createFakeLibrarySession(): void; createFakeAuthenticatedSession(): void; - createFakeLibrarySession(): void; interceptGraphql(prams: InterceptGraphqlParams): void; interceptRest(params: InterceptRestParams): void; getBySel( From 8cac7ae505b1dcfa1f2d70af39678bf1ce92ade3 Mon Sep 17 00:00:00 2001 From: Jacob Pihl Date: Mon, 11 Nov 2024 15:18:23 +0100 Subject: [PATCH 25/28] Remove args from custom Cypress commands The `cy.get` command in Cypress does not accept additional arguments after the selector string. --- cypress/support/index.ts | 33 ++++++++++----------------------- 1 file changed, 10 insertions(+), 23 deletions(-) diff --git a/cypress/support/index.ts b/cypress/support/index.ts index bc5e11094f..7dda58205c 100644 --- a/cypress/support/index.ts +++ b/cypress/support/index.ts @@ -86,22 +86,18 @@ Cypress.Commands.add( // Data cy attribute selector helpers. const visible = (checkVisible: boolean) => (checkVisible ? ":visible" : ""); -Cypress.Commands.add("getBySel", (selector, checkVisible = false, ...args) => { - return cy.get(`[data-cy="${selector}"]${visible(checkVisible)}`, ...args); +Cypress.Commands.add("getBySel", (selector, checkVisible = false) => { + return cy.get(`[data-cy="${selector}"]${visible(checkVisible)}`); +}); +Cypress.Commands.add("getBySelLike", (selector, checkVisible = false) => { + return cy.get(`[data-cy*="${selector}"]${visible(checkVisible)}`); }); -Cypress.Commands.add( - "getBySelLike", - (selector, checkVisible = false, ...args) => { - return cy.get(`[data-cy*="${selector}"]${visible(checkVisible)}`, ...args); - } -); Cypress.Commands.add( "getBySelStartEnd", - (startSelector, endSelector, checkVisible = false, ...args) => { + (startSelector, endSelector, checkVisible = false) => { const v = visible(checkVisible); return cy.get( - `[data-cy^="${startSelector}"]${v}[data-cy$="${endSelector}"]${v}`, - ...args + `[data-cy^="${startSelector}"]${v}[data-cy$="${endSelector}"]${v}` ); } ); @@ -117,21 +113,12 @@ declare global { createFakeAuthenticatedSession(): void; interceptGraphql(prams: InterceptGraphqlParams): void; interceptRest(params: InterceptRestParams): void; - getBySel( - selector: string, - checkVisible?: boolean, - ...args: unknown[] - ): Chainable; - getBySelLike( - selector: string, - checkVisible?: boolean, - ...args: unknown[] - ): Chainable; + getBySel(selector: string, checkVisible?: boolean): Chainable; + getBySelLike(selector: string, checkVisible?: boolean): Chainable; getBySelStartEnd( startSelector: string, endSelector: string, - checkVisible?: boolean, - ...args: unknown[] + checkVisible?: boolean ): Chainable; } } From 57a4d5f90a2eaf4852e30d09063b485d312c4536 Mon Sep 17 00:00:00 2001 From: Jacob Pihl Date: Mon, 11 Nov 2024 15:20:27 +0100 Subject: [PATCH 26/28] Fix operator in conditional --- src/apps/advanced-search/AdvancedSearchHeader.tsx | 2 +- src/apps/advanced-search/PreviewSection.tsx | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/apps/advanced-search/AdvancedSearchHeader.tsx b/src/apps/advanced-search/AdvancedSearchHeader.tsx index e85b44c1dd..ef1d2d0525 100644 --- a/src/apps/advanced-search/AdvancedSearchHeader.tsx +++ b/src/apps/advanced-search/AdvancedSearchHeader.tsx @@ -239,7 +239,7 @@ const AdvancedSearchHeader: React.FC = ({ type="button" className="link-tag advanced-search__back-button cursor-pointer" onClick={() => setIsFormMode(true)} - onKeyUp={(e) => e.key === "Enter" ?? setIsFormMode(!true)} + onKeyUp={(e) => e.key === "Enter" && setIsFormMode(!true)} > {t("toAdvancedSearchButtonText")} diff --git a/src/apps/advanced-search/PreviewSection.tsx b/src/apps/advanced-search/PreviewSection.tsx index fcdb81635d..7f6a03ece1 100644 --- a/src/apps/advanced-search/PreviewSection.tsx +++ b/src/apps/advanced-search/PreviewSection.tsx @@ -90,7 +90,7 @@ const PreviewSection: React.FC = ({ type="button" className="link-tag link-tag cursor-pointer capitalize-first" onClick={() => setIsFormMode(false)} - onKeyUp={(e) => e.key === "Enter" ?? setIsFormMode(false)} + onKeyUp={(e) => e.key === "Enter" && setIsFormMode(false)} data-cy="advanced-search-edit-cql" > {t("advancedSearchEditCqlText")} From f0acea95830b7cf218689f300014df94fb855249 Mon Sep 17 00:00:00 2001 From: Jacob Pihl Date: Mon, 11 Nov 2024 16:04:26 +0100 Subject: [PATCH 27/28] Fix type errors --- src/core/utils/config.tsx | 4 +++- src/core/utils/helpers/currency.ts | 5 ++++- src/core/utils/text.tsx | 4 +++- src/core/utils/url.tsx | 4 +++- src/core/utils/withSuffix.tsx | 8 +++++--- 5 files changed, 18 insertions(+), 7 deletions(-) diff --git a/src/core/utils/config.tsx b/src/core/utils/config.tsx index bf35c98321..318cf62321 100644 --- a/src/core/utils/config.tsx +++ b/src/core/utils/config.tsx @@ -58,7 +58,9 @@ export const useConfig = (): UseConfigFunction => { }; }; -export const withConfig = (Component: React.ComponentType) => { +export const withConfig = ( + Component: React.ComponentType +) => { return withSuffix(Component, "Config", addConfigEntries); }; diff --git a/src/core/utils/helpers/currency.ts b/src/core/utils/helpers/currency.ts index 8c7e2bd21d..19019a2539 100644 --- a/src/core/utils/helpers/currency.ts +++ b/src/core/utils/helpers/currency.ts @@ -1,6 +1,9 @@ // Formats a number as a Danish Krone (DKK) currency string using the "da-DK" locale. export function formatCurrency(number: number): string { - const options = { style: "currency", currency: "DKK" }; + const options: Intl.NumberFormatOptions = { + style: "currency", + currency: "DKK" + }; return number.toLocaleString("da-DK", options); } diff --git a/src/core/utils/text.tsx b/src/core/utils/text.tsx index 9f14ed4d58..5994892e88 100644 --- a/src/core/utils/text.tsx +++ b/src/core/utils/text.tsx @@ -147,6 +147,8 @@ export const useText = (): UseTextFunction => { }; }; -export const withText = (Component: React.ComponentType) => { +export const withText = ( + Component: React.ComponentType +) => { return withSuffix(Component, "Text", addTextEntries); }; diff --git a/src/core/utils/url.tsx b/src/core/utils/url.tsx index 499bd80f60..e6489fde67 100644 --- a/src/core/utils/url.tsx +++ b/src/core/utils/url.tsx @@ -19,7 +19,9 @@ export const useUrls = () => { return urls[name]; }; }; -export const withUrls = (Component: React.ComponentType) => { +export const withUrls = ( + Component: React.ComponentType +) => { return withSuffix(Component, "Url", addUrlEntries); }; diff --git a/src/core/utils/withSuffix.tsx b/src/core/utils/withSuffix.tsx index 20bc09be2d..6ffab9fb00 100644 --- a/src/core/utils/withSuffix.tsx +++ b/src/core/utils/withSuffix.tsx @@ -2,13 +2,14 @@ import { ActionCreatorWithPayload } from "@reduxjs/toolkit"; import React from "react"; import { store } from "../store"; -export default ( +export default function withSuffix( Component: React.ComponentType, suffix: string, reduxAction: ActionCreatorWithPayload -) => { +) { return (props: T) => { const pattern = new RegExp(`.*${suffix}$`, "g"); + // Match all props that ends with suffix. const suffixEntries = Object.fromEntries( Object.entries(props).filter(([prop]) => { @@ -30,10 +31,11 @@ export default ( }) ); } + // Since this is a High Order Functional Component // we do not know what props we are dealing with. // That is a part of the design. // eslint-disable-next-line react/jsx-props-no-spreading return ; }; -}; +} From 701cefe9466214fe1dcf80e9b18d4803621353cd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kasper=20Garn=C3=A6s?= Date: Tue, 12 Nov 2024 19:25:35 +0100 Subject: [PATCH 28/28] Use release 2024.46.0 of design system --- package.json | 2 +- yarn.lock | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/package.json b/package.json index 6f485aa882..535440701a 100644 --- a/package.json +++ b/package.json @@ -145,7 +145,7 @@ "prop-types": "Since we use former ddb-react components that depend on prop-types we keep this. Should be removed when usage of prop-types is deprecated." }, "dependencies": { - "@danskernesdigitalebibliotek/dpl-design-system": "^2024.45.0-61278e37e6e8fa118932c90aea48f0d491755b1f", + "@danskernesdigitalebibliotek/dpl-design-system": "^2024.46.0-26b569fe9286c99caa7d35dfffb9e4d176826c7a", "@fullcalendar/core": "^6.1.15", "@fullcalendar/daygrid": "^6.1.15", "@fullcalendar/interaction": "^6.1.15", diff --git a/yarn.lock b/yarn.lock index 9aafef48c7..316d8b445e 100644 --- a/yarn.lock +++ b/yarn.lock @@ -1285,10 +1285,10 @@ debug "^3.1.0" lodash.once "^4.1.1" -"@danskernesdigitalebibliotek/dpl-design-system@^2024.45.0-61278e37e6e8fa118932c90aea48f0d491755b1f": - version "2024.45.0-61278e37e6e8fa118932c90aea48f0d491755b1f" - resolved "https://npm.pkg.github.com/download/@danskernesdigitalebibliotek/dpl-design-system/2024.45.0-61278e37e6e8fa118932c90aea48f0d491755b1f/8a194c6efad566288fdeb396c704c783279426bf#8a194c6efad566288fdeb396c704c783279426bf" - integrity sha512-ukrsWmgHuid+uaY5fDomXa7ml0bz9B7zXBdro5TCBBh3e7cdvTtz3+huoTG37oeN3+xaKRCQh3PD6NcuqeuS+w== +"@danskernesdigitalebibliotek/dpl-design-system@^2024.46.0-26b569fe9286c99caa7d35dfffb9e4d176826c7a": + version "2024.46.0-26b569fe9286c99caa7d35dfffb9e4d176826c7a" + resolved "https://npm.pkg.github.com/download/@danskernesdigitalebibliotek/dpl-design-system/2024.46.0-26b569fe9286c99caa7d35dfffb9e4d176826c7a/697ea7fb8856dcd435d5be06269631a51f6a424e#697ea7fb8856dcd435d5be06269631a51f6a424e" + integrity sha512-AH0thsmmpWuuFO1AXOnmLfnbMSFZ/yJfY0Gtnp9CEDZR0edzaikAbHAXrR5p/OWt9MF2nnjWW9ht6JcxDQ9f7g== "@discoveryjs/json-ext@^0.5.0": version "0.5.7"