Skip to main content

16th OpenAIRE Graph Community Call

OpenAIRE Graph Community Calls. New developments, Use Cases & API, How it Works. Are you interested in the OpenAIRE Graph and how to use it? Are you a developer, computer scientist, or research data analyst or scientist? Joint he conversation in our dedic

Every month, on the third Wednesday from 11:00-12:00 CET, the OpenAIRE Graph team will host an online conference call open to all in the research community.
This 3-part series exploring Use Cases & API, New Developments, and How it Works is an opportunity to present and discuss recent developments in the OpenAIRE Graph and the ways you can best harness it for your projects. Join us in open discussion and give us your feedback about the vast knowledge graph and how we can better the service for your needs.

This month, Andrea Mannocci, data scientist at ISTI-CNR will present the OpenAIRE Graph and the SKG-IF (Scientific Knowledge Graph Interoperability Framework).

Event Information

Event Date Wednesday, 18 June 2025
Event End Date Wednesday, 18 June 2025
document.addEventListener("DOMContentLoaded", function() { function fixImages() { document.querySelectorAll('img').forEach(function(img) { var src = img.getAttribute('src'); if (src && src.startsWith('images/')) { img.setAttribute('src', '/' + src); } }); } // Εκτέλεση κατά το πρώτο φόρτωμα fixImages(); // Παρακολούθηση της σελίδας για dynamic αλλαγές (π.χ. lazy loading) var observer = new MutationObserver(fixImages); observer.observe(document.body, { childList: true, subtree: true }); }); document.addEventListener("DOMContentLoaded", function() { function fixAllImages() { document.querySelectorAll('img').forEach(function(img) { var src = img.getAttribute('src'); // Αν το src ξεκινάει με images/ χωρίς slash στην αρχή if (src && src.startsWith('images/')) { img.setAttribute('src', '/' + src); } }); } // 1. Εκτέλεση κατά το πρώτο φόρτωμα της σελίδας fixAllImages(); // 2. Παρακολούθηση για dynamic αλλαγές (Lazy Loading, Slider Navigation) var observer = new MutationObserver(fixAllImages); observer.observe(document.body, { childList: true, subtree: true }); // 3. Επιπλέον ασφάλεια: Διόρθωση σε κάθε κλικ (για αλλαγές στα Tabs) document.addEventListener('click', function() { setTimeout(fixAllImages, 50); setTimeout(fixAllImages, 150); // Μικρή καθυστέρηση για να προλάβει το animation του YOOtheme }); });